Browse Source

HL-5576装配&预生产报工明细中批次字段没有带入当前日期作为默认批次号

hella_online_20240823
wangyufei 3 months ago
parent
commit
e5a9902c61
  1. 1
      src/views/wms/productionManage/productreceipt/productreceiptRequestMain/index.vue
  2. 1
      src/views/wms/productionManage/productreceiptAssemble/productreceiptAssembleRequestMain/index.vue

1
src/views/wms/productionManage/productreceipt/productreceiptRequestMain/index.vue

@ -281,6 +281,7 @@ const setTableFormsValues = async (val, index1) => {
newRow['itemCode'] = val[index1]['itemCode']
newRow['uom'] = val[0]['uom']
newRow['produceDate'] = dayjs().valueOf()
newRow['batch'] = formatTime(new Date(), 'yyyyMMdd')
const param1 = {
productItemCode: val[0]['itemCode'],

1
src/views/wms/productionManage/productreceiptAssemble/productreceiptAssembleRequestMain/index.vue

@ -245,6 +245,7 @@ const setTableFormsValues = async (val, index1) => {
newRow['itemCode'] = val[index1]['itemCode']
newRow['uom'] = val[0]['uom']
newRow['produceDate'] = dayjs().valueOf()
newRow['batch'] = formatTime(new Date(), 'yyyyMMdd')
const param1 = {
productItemCode: val[0]['itemCode'],

Loading…
Cancel
Save