Browse Source

销售退货有效期

master
han\hanst 1 month ago
parent
commit
a800325bd2
  1. 22
      src/views/modules/sales-return/sales-return-inbound.vue

22
src/views/modules/sales-return/sales-return-inbound.vue

@ -145,6 +145,20 @@
<el-input v-model="inboundItem.batchNo" placeholder="请输入批号" />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="WDR">
<el-input v-model="inboundItem.wdr" placeholder="请输入批号" />
</el-form-item>
</el-col>
<el-col :span="12"><el-form-item label="有效期">
<el-date-picker
v-model="inboundItem.ifsExpiryDate"
type="date"
placeholder="选择有效期"
value-format="yyyy-MM-dd"
style="width: 100%"
/>
</el-form-item></el-col>
<el-col :span="12">
<el-form-item label="高度(mm)">
<el-input v-model="inboundItem.height" type="number" placeholder="请输入高度" />
@ -403,7 +417,9 @@ export default {
invUOM: row.invUOM,
transQty: '',
uom: row.returnUOM,
locationNo: 'AS',
wdr:'*',
ifsExpiryDate:'',
locationNo: '',
batchNo: `${this.scanRmaNo}-${row.rmaLineNo}-1`,
site: this.site,
height: this.parseHeightFromPartNo(row.invPartNo) //
@ -545,8 +561,10 @@ export default {
warehouseId: this.warehouseId,
height: item.height || null, // (mm)
rmaLineNo: item.rmaLineNo,
engChgLevel: row.engChgLevel || "1",
engChgLevel: item.engChgLevel || "1",
invUOM: item.invUOM,
wdr:item.wdr,
expiryDate:item.ifsExpiryDate,
packUnitList: this.handlingUnit.map(hu => ({
code: hu.code,
qty: hu.qty,

Loading…
Cancel
Save