|
|
@ -91,6 +91,7 @@ import * as defaultButtons from '@/utils/disposition/defaultButtons' |
|
|
|
import { formatDate } from '@/utils/formatTime' |
|
|
|
import { usePageLoading } from '@/hooks/web/usePageLoading' |
|
|
|
import {importTemplateHoldOk} from "@/api/wms/inventorymoveRequestMain"; |
|
|
|
import * as ruleApi from '@/api/wms/rule/index' |
|
|
|
const { loadStart, loadDone } = usePageLoading() |
|
|
|
// 库存转移申请 |
|
|
|
defineOptions({ name: 'InventorymoveRequestMain' }) |
|
|
@ -348,20 +349,37 @@ console.log('tableFormColumns',InventorymoveRequestDetail.allSchemas.tableFormCo |
|
|
|
const updataTableColumns = (val) => { |
|
|
|
tableColumns.value = val |
|
|
|
} |
|
|
|
|
|
|
|
const fromManagementPrecision = ref('') |
|
|
|
// 查询页面返回 |
|
|
|
const searchTableSuccess = (formField, searchField, val, formRef, type, row ) => { |
|
|
|
nextTick(() => { |
|
|
|
nextTick(async() => { |
|
|
|
if (type == 'tableForm') { |
|
|
|
if(formField == 'fromPackingNumber'){ |
|
|
|
val = val.filter(item=>!tableData.value.find(item1=>item1['itemCode']==item['itemCode']&&item1['fromBatch']==item['batch']&&item1['fromPackingNumber']==item['packingNumber']&&item1['fromLocationCode']==item['locationCode']&&item1['fromInventoryStatus']==item['inventoryStatus'])) |
|
|
|
if(val.length==0) return |
|
|
|
val.forEach(item=>{ |
|
|
|
val.forEach(async item=>{ |
|
|
|
const newRow = JSON.parse(JSON.stringify({...tableFormKeys,...item})) |
|
|
|
newRow['fromPackingNumber'] = item['packingNumber'] |
|
|
|
newRow['fromContainerNumber'] = item['containerNumber'] |
|
|
|
newRow['itemCode'] = item['itemCode'] |
|
|
|
newRow['fromBatch'] = item['batch'] |
|
|
|
if (item['batch'] != '') { |
|
|
|
newRow['fromBatch'] = item['batch'] |
|
|
|
}else{ |
|
|
|
newRow['fromBatch'] = getFormattedDate(); // 获取 YYYYMMDD 格式的日期 |
|
|
|
} |
|
|
|
await ruleApi.getManagementPrecision({ |
|
|
|
itemCodes: [row['itemCode']], |
|
|
|
locationCode:val[0]['locationCode'] |
|
|
|
}).then((res) => { |
|
|
|
fromManagementPrecision.value = res[0].ManagementPrecision |
|
|
|
}) |
|
|
|
if (fromManagementPrecision.value == 'BY_QUANTITY') { |
|
|
|
newRow['fromBatchFormItemType'] = 'FormDate' |
|
|
|
newRow['disabled_fromBatch'] = false |
|
|
|
} else { |
|
|
|
newRow['fromBatchFormItemType'] = '' |
|
|
|
newRow['disabled_fromBatch'] = true |
|
|
|
} |
|
|
|
newRow['fromInventoryStatus'] = item['inventoryStatus'] |
|
|
|
newRow['fromLocationCode'] = item['locationCode'] |
|
|
|
newRow['uom'] = item['uom'] |
|
|
@ -824,4 +842,11 @@ onMounted(async () => { |
|
|
|
importTemplateData.templateUrl = await InventorymoveRequestMainApi.importTemplateExceptMove() |
|
|
|
} |
|
|
|
}) |
|
|
|
const getFormattedDate = () =>{ |
|
|
|
const a = new Date(); |
|
|
|
const year = a.getFullYear(); |
|
|
|
const month = String(a.getMonth() + 1).padStart(2, '0'); |
|
|
|
const day = String(a.getDate()).padStart(2, '0'); |
|
|
|
return `${year}${month}${day}`; |
|
|
|
} |
|
|
|
</script> |
|
|
|