|
|
@ -312,8 +312,11 @@ const getSearchTableData = async (number,formField,searchField,isAll)=>{ |
|
|
|
let produceDateStr = formatDate(newRow['produceDate'],'YYYYMMDD'); |
|
|
|
newRow['batch'] = produceDateStr |
|
|
|
newRow['supplierBatch'] = produceDateStr |
|
|
|
newRow.expireDate = row['expireTime']?addDay(newRow['produceDate'],row['expireTime']).valueOf():dayjs('2099-12-31').valueOf() |
|
|
|
|
|
|
|
newRow.expireDate = row['expireTime'] ? addDay(newRow['produceDate'], row['expireTime']).valueOf() : dayjs('2099-12-31').valueOf() |
|
|
|
// 可以允许超发 |
|
|
|
if (newRow['allowOverShipment'] == 'TRUE') { |
|
|
|
newRow['qty'] =0 |
|
|
|
} |
|
|
|
tableData.value.push(newRow) |
|
|
|
itemCodes.push(row['itemCode']) |
|
|
|
}) |
|
|
@ -356,9 +359,9 @@ const submitForm = async (formType, submitData) => { |
|
|
|
// data.subList = tableData.value // 拼接子表数据参数 |
|
|
|
data.subList = [] |
|
|
|
for (let item of tableData.value) { |
|
|
|
if(item.qty>0){ |
|
|
|
// if(item.qty>0){ |
|
|
|
data.subList.push(item) // 拼接子表数据参数 |
|
|
|
} |
|
|
|
// } |
|
|
|
|
|
|
|
} |
|
|
|
let isHave = data.subList.some((item) => { |
|
|
@ -374,6 +377,9 @@ const submitForm = async (formType, submitData) => { |
|
|
|
// 2.2. 如果物料不允许超发,申请发货数量不能大于 计划数量 - 已发货数量 |
|
|
|
let itemCodes = [] |
|
|
|
let itemCodeSum = [] |
|
|
|
// 2.3 如果物料发货是0,不可以提交 |
|
|
|
let itemCodesQtyIsZ = [] |
|
|
|
console.log(222, data.subList) |
|
|
|
data.subList.forEach(item=>{ |
|
|
|
if(item['allowOverShipment']!='TRUE'){ |
|
|
|
let qtyDefault = item['planQty'] - item['shippedQty'] |
|
|
@ -395,7 +401,23 @@ const submitForm = async (formType, submitData) => { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
console.log(item['qty']) |
|
|
|
if(!item['qty']||item['qty']==0){ |
|
|
|
itemCodesQtyIsZ.push({ |
|
|
|
itemCode:item['itemCode'], |
|
|
|
poLine:item['poLine'] |
|
|
|
}) |
|
|
|
} |
|
|
|
}) |
|
|
|
if(itemCodesQtyIsZ.length>0){ |
|
|
|
let str = '' |
|
|
|
itemCodesQtyIsZ.forEach(cur => { |
|
|
|
str += `【物料号${cur.itemCode}-订单行${cur.poLine}】` |
|
|
|
}) |
|
|
|
message.error(`${str}${t('ts.发货数量必须大于0')}`) |
|
|
|
return |
|
|
|
} |
|
|
|
return |
|
|
|
if(itemCodes.length>0){ |
|
|
|
let str = '' |
|
|
|
itemCodes.forEach(cur => { |
|
|
|