|
|
|
@ -78,7 +78,18 @@ |
|
|
|
<el-input v-model="recvItem.height" /> |
|
|
|
</el-form-item></el-col> |
|
|
|
<el-col :span="18"><el-form-item label="送货单信息"> |
|
|
|
<el-input v-model="recvItem.supplierBatchNo" placeholder="请输入送货单信息" /> |
|
|
|
<el-input v-model="recvItem.deliveryNote" /> |
|
|
|
</el-form-item></el-col> |
|
|
|
<el-col :span="12"><el-form-item label="供应商生产日期"> |
|
|
|
<el-date-picker v-model="recvItem.supplierManufactureDate" type="date" format="yyyy-MM-dd" |
|
|
|
value-format="yyyy-MM-dd" placeholder="请选择" style="width: 100%" |
|
|
|
inputmode="none" |
|
|
|
autocomplete="off" |
|
|
|
autocorrect="off" |
|
|
|
spellcheck="false" /> |
|
|
|
</el-form-item></el-col> |
|
|
|
<el-col :span="12"><el-form-item label="供应商批次号"> |
|
|
|
<el-input v-model="recvItem.supplierBatchNo" placeholder="请输入供应商批次号" /> |
|
|
|
</el-form-item></el-col> |
|
|
|
<el-col :span="12"><el-form-item label="WDR"> |
|
|
|
<el-input v-model="recvItem.wdr" disabled placeholder="请输入WDR" /> |
|
|
|
@ -327,7 +338,9 @@ export default { |
|
|
|
batchNo: row.orderNo+'-'+row.lineNo+'-'+row.releaseNo+'-'+nextItemNo, |
|
|
|
deliveryDate: row.plannedDeliveryDate || '', |
|
|
|
arrivalDate: this.getCurrentDate(), |
|
|
|
supplierBatchNo: '', |
|
|
|
supplierManufactureDate: row.supplierManufactureDate || '', |
|
|
|
supplierBatchNo: row.supplierBatchNo || '', |
|
|
|
deliveryNote: row.deliveryNote || '', |
|
|
|
wdr:"*", |
|
|
|
height: height, |
|
|
|
locationNo: locationNo |
|
|
|
@ -540,6 +553,7 @@ export default { |
|
|
|
deliveryDate: item.deliveryDate, |
|
|
|
arrivalDate: item.arrivalDate, |
|
|
|
supplierBatchNo: item.supplierBatchNo, |
|
|
|
deliveryNote: item.deliveryNote, |
|
|
|
samplePercent: item.samplePercent || 0, |
|
|
|
sampleQty: item.sampleQty || 0, |
|
|
|
qtyToReceive: item.qtyToReceive, |
|
|
|
@ -561,7 +575,7 @@ export default { |
|
|
|
needCheck: item.needCheck , |
|
|
|
warehouseType: item.warehouseType , |
|
|
|
// 日期字段 |
|
|
|
manufactureDate: item.manufactureDate, |
|
|
|
supplierManufactureDate: item.supplierManufactureDate, |
|
|
|
height: item.height, |
|
|
|
// 处理单元列表 |
|
|
|
handlingUnitList: this.handlingUnit.map(hu => ({ |
|
|
|
|