@@ -92,7 +92,7 @@ function getNowCarriers(data) {
if (res.code == 200) {
form.value.carriers =
res.data.dayworkCarrierList && res.data.dayworkCarrierList.length > 0
- ? res.data.dayworkCarrierList.map((v) => ({
+ ? res.data.dayworkCarrierList.filter(v => v.processInspectionId == "0").map((v) => ({
value: v.carrierId,
label: v.carrierCode,
}))
@@ -74,7 +74,7 @@ function getNowCarriers(data, index) {
form.value.batches[index].carriers =
id: v.carrierId,
code: v.carrierCode,