Browse Source

Merge branch 'master_hella' of http://dev.ccwin-in.com:3000/sfms3.0/sfms3.0-ui into master_hella

hella_online_20240829
陈薪名 5 months ago
parent
commit
ed584ca084
  1. 5
      src/views/wms/basicDataManage/itemManage/itemarea/index.vue
  2. 4
      src/views/wms/deliversettlementManage/customerreturn/customerreturnRecordMain/customerreturnRecordMain.data.ts
  3. 5
      src/views/wms/deliversettlementManage/deliverplan/deliverPlanMain/index.vue
  4. 2
      src/views/wms/deliversettlementManage/saleShipmentMainRequest/index.vue
  5. 5
      src/views/wms/inventoryjobManage/scrap/scrapRequestMain/index.vue
  6. 7
      src/views/wms/inventoryjobManage/sparepartsrequisition/sparepartsrequisitionRequestMain/index.vue
  7. 8
      src/views/wms/inventoryjobManage/unplannedissue/unplannedissueRequestMain/index.vue
  8. 4
      src/views/wms/issueManage/preparetoissueplan/preparetoissueMain/index.vue
  9. 2
      src/views/wms/moveManage/inventorychange/inventorychangeRequestMain/index.vue
  10. 11
      src/views/wms/productionManage/processproduction/processproductionRequest/index.vue
  11. 5
      src/views/wms/productionManage/productionplan/productionMainAssemble/index.vue
  12. 2
      src/views/wms/productionManage/productionplan/productionMainAssemble/productionMainAssemble.data.ts
  13. 4
      src/views/wms/productionManage/productionplan/productionMainAssembleSparePart/index.vue
  14. 4
      src/views/wms/productionManage/productionplan/productionMainPredictSparePart/index.vue
  15. 5
      src/views/wms/productionManage/productputawayAssemble/productputawayAssembleRequestMain/index.vue
  16. 2
      src/views/wms/productionManage/productscrap/productscrapRequestMain/index.vue
  17. 2
      src/views/wms/purchasereceiptManage/purchasereceipt/purchasereceiptRequestMain/index.vue
  18. 2
      src/views/wms/purchasereceiptManage/sparereceipt/sparereceiptRequestMain/index.vue
  19. 2
      src/views/wms/purchasereceiptManage/supplierdeliver/supplierdeliverRequestMain/labelForm.vue

5
src/views/wms/basicDataManage/itemManage/itemarea/index.vue

@ -122,6 +122,7 @@ const updataTableColumns = (val) => {
const searchTableSuccess = (formField, searchField, val, formRef, type, row ) => {
nextTick(() => {
if (type == 'tableForm') {
if(formField == 'locationCode'){
val.forEach(item=>{
const newRow = {...row}
if(formField == 'locationCode') {
@ -133,6 +134,10 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
newRow['id'] = item['id']
tableData.value.push(newRow)
})
} else {
row[formField] = val[0][searchField]
}
}else{
const setV = {}

4
src/views/wms/deliversettlementManage/customerreturn/customerreturnRecordMain/customerreturnRecordMain.data.ts

@ -508,7 +508,7 @@ export const CustomerreturnRecordDetail = useCrudSchemas(reactive<CrudSchema[]>(
},
{
label: '批次',
field: 'batch',
field: 'toBatch',
sort: 'custom',
table: {
width: 150
@ -516,7 +516,7 @@ export const CustomerreturnRecordDetail = useCrudSchemas(reactive<CrudSchema[]>(
},
{
label: '包装号',
field: 'packingNumber',
field: 'toPackingNumber',
sort: 'custom',
table: {
width: 150

5
src/views/wms/deliversettlementManage/deliverplan/deliverPlanMain/index.vue

@ -160,16 +160,19 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
val.forEach(item=>{
if(tableData.value.find(item1=>item1['itemCode'] == item['itemCode'])) return
const newRow = JSON.parse(JSON.stringify({...tableFormKeys,...item}))
row[formField] = item[searchField]
newRow['uom'] = item['customerUom']
newRow['id'] = item['id']
tableData.value.push(newRow)
})
}else{
row[formField] = val[0][searchField]
}
// if(formField == 'itemCode') {
// row['uom'] = val[0]['customerUom']
// }
//
row[formField] = val[0][searchField]
} else {
const setV = {}
if(formField == 'customerDockCode') {

2
src/views/wms/deliversettlementManage/saleShipmentMainRequest/index.vue

@ -123,6 +123,8 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
}else if(formField == 'fromLocationCode'){
row['fromLocationCode'] = val[0]['defaultLocationCode']
}else{
row[formField] = val[0][searchField]
}
}else {
const setV = {}

5
src/views/wms/inventoryjobManage/scrap/scrapRequestMain/index.vue

@ -128,6 +128,7 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
// tableData.value.push(newRow)
// })
//
if(formField == 'packingNumber'){
let param = {'itemCodes':val.map(item=>item.itemCode).join(',') as string}
StdcostpriceApi.queryStdcostpriceByItemCode(param).then(res => {
val.forEach(item=>{
@ -144,6 +145,10 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
})
// row['singlePrice'] = res.price
})
} else {
row[formField] = val[0][searchField]
}
} else {
const setV = {}
setV[formField] = val[0][searchField]

7
src/views/wms/inventoryjobManage/sparepartsrequisition/sparepartsrequisitionRequestMain/index.vue

@ -113,8 +113,9 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
nextTick(() => {
if (type == 'tableForm') {
//
let newRow = JSON.parse(JSON.stringify(tableFormKeys))
if(formField=='itemCode'){
val.forEach(item=>{
let newRow = JSON.parse(JSON.stringify(tableFormKeys))
newRow['packingNumber'] = item['packingNumber']
newRow['containerNumber'] = item['containerNumber']
newRow['batch'] = item['batch']
@ -124,6 +125,10 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
newRow['uom'] = item['uom']
tableData.value.push(newRow)
})
} else {
row[formField] = val[0][searchField]
}
} else {
const setV = {}
setV[formField] = val[0][searchField]

8
src/views/wms/inventoryjobManage/unplannedissue/unplannedissueRequestMain/index.vue

@ -127,12 +127,12 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
newRow['qty'] = item['qty']
tableData.value.push(newRow)
})
}
if(formField === 'costcentreCode'){
}else if(formField === 'costcentreCode'){
row['costcentreCode'] = val[0]['costcentreCode']
}
if(formField === 'qadProjectCode'){
}else if(formField === 'qadProjectCode'){
row['qadProjectCode'] = val[0]['projectCode']
} else {
row[formField] = val[0][searchField]
}
} else {
const setV = {}

4
src/views/wms/issueManage/preparetoissueplan/preparetoissueMain/index.vue

@ -114,13 +114,15 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
if (formField == 'itemCode') {
row['itemCode'] = val[0]['componentItemCode']
row['uom'] = val[0]['componentUom']
} else {
} else if(formField == 'workStation'){
val.forEach(item=>{
const newRow = JSON.parse(JSON.stringify({...tableFormKeys,...item}))
newRow[formField] = item[searchField]
newRow['toLocationCode'] = item['rawLocationCode']
tableData.value.push(newRow)
})
} else {
row[formField] = val[0][searchField]
}
} else {
const setV = {}

2
src/views/wms/moveManage/inventorychange/inventorychangeRequestMain/index.vue

@ -160,6 +160,8 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
newRow['uom'] = item['uom']
tableData.value.push(newRow)
})
} else {
row[formField] = val[0][searchField]
}
} else {

11
src/views/wms/productionManage/processproduction/processproductionRequest/index.vue

@ -135,15 +135,14 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
})
tableData.value.push(newRow)
})
}
if(formField === 'processCode'){
}else if(formField === 'processCode'){
row['processCode']=val[0]['code']
}
if(formField === 'locationCode'){
}else if(formField === 'locationCode'){
row['locationCode']=val[0]['code']
}
if(formField === 'componentItemCode'){
}else if(formField === 'componentItemCode'){
row['componentItemCode']=val[0]['componentItemCode']
} else {
row[formField] = val[0][searchField]
}
}else{
const setV = {}

5
src/views/wms/productionManage/productionplan/productionMainAssemble/index.vue

@ -117,6 +117,7 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
// }).catch(err =>{
// console.log(err);
// })
if(formField == 'itemCode'){
val.forEach(async item=>{
const newRow = JSON.parse(JSON.stringify({...tableFormKeys,...item}))
newRow[formField] = item[searchField]
@ -138,6 +139,10 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
})
tableData.value.push(newRow)
})
} else {
row[formField] = val[0][searchField]
}
} else {
const setV = {}
if(formField == 'workshop'){

2
src/views/wms/productionManage/productionplan/productionMainAssemble/productionMainAssemble.data.ts

@ -656,7 +656,7 @@ export const ProductionDetail = useCrudSchemas(reactive<CrudSchema[]>([
tableForm:{
multiple: true,
enterSearch:true,
isInpuFocusShow: true,
// isInpuFocusShow: true,
searchListPlaceholder: '请选择物料代码', // 输入框占位文本
searchField: 'itemCode', // 查询弹窗赋值字段
searchTitle: '生产线物料关系信息', // 查询弹窗标题

4
src/views/wms/productionManage/productionplan/productionMainAssembleSparePart/index.vue

@ -117,6 +117,7 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
// }).catch(err =>{
// console.log(err);
// })
if(formField == 'itemCode'){
val.forEach(async item=>{
const newRow = JSON.parse(JSON.stringify({...tableFormKeys,...item}))
newRow[formField] = item[searchField]
@ -138,6 +139,9 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
})
tableData.value.push(newRow)
})
} else {
row[formField] = val[0][searchField]
}
} else {
const setV = {}
if(formField == 'workshop'){

4
src/views/wms/productionManage/productionplan/productionMainPredictSparePart/index.vue

@ -117,6 +117,7 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
// }).catch(err =>{
// console.log(err);
// })
if(formField == 'itemCode'){
val.forEach(async item=>{
const newRow = JSON.parse(JSON.stringify({...tableFormKeys,...item}))
newRow[formField] = item[searchField]
@ -138,6 +139,9 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
})
tableData.value.push(newRow)
})
} else {
row[formField] = val[0][searchField]
}
} else {
const setV = {}
if(formField == 'workshop'){

5
src/views/wms/productionManage/productputawayAssemble/productputawayAssembleRequestMain/index.vue

@ -109,6 +109,7 @@ const updataTableColumns = (val) => {
const searchTableSuccess = (formField, searchField, val, formRef, type, row ) => {
nextTick(() => {
if (type == 'tableForm') {
if(formField=='itemCode'){
//
val.forEach(item=>{
const newRow = JSON.parse(JSON.stringify({...tableFormKeys,...item}))
@ -122,6 +123,10 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
newRow['fromLocationCode'] = item['locationCode']
tableData.value.push(newRow)
})
} else {
row[formField] = val[0][searchField]
}
} else {
const setV = {}
setV[formField] = val[0][searchField]

2
src/views/wms/productionManage/productscrap/productscrapRequestMain/index.vue

@ -342,6 +342,8 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
})
}else if(formField == 'bomVersion'){
row['bomVersion'] = val[0]['version']
} else {
row[formField] = val[0][searchField]
}
} else {
const setV = {}

2
src/views/wms/purchasereceiptManage/purchasereceipt/purchasereceiptRequestMain/index.vue

@ -246,6 +246,8 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
row['packUnit'] = val[0]['packUnit']
}else if(formField == 'defaultToLocationCode'){
row['defaultToLocationCode'] = val[0]['code']
} else {
row[formField] = val[0][searchField]
}
} else {
const setV = {}

2
src/views/wms/purchasereceiptManage/sparereceipt/sparereceiptRequestMain/index.vue

@ -193,6 +193,8 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
row['packUnit'] = val[0]['packUnit']
}else if(formField == 'defaultToLocationCode'){
row['defaultToLocationCode'] = val[0]['code']
} else {
row[formField] = val[0][searchField]
}
} else {
const setV = {}

2
src/views/wms/purchasereceiptManage/supplierdeliver/supplierdeliverRequestMain/labelForm.vue

@ -484,7 +484,7 @@ const blurOne = (oneRow, twoRow) => {
// twoRow.children = []
// twoRow.qtyOne = parseFloat(twoRow.xNumber) * parseFloat(oneRow.packQty)
// }
twoRow.qtyOne = parseFloat(twoRow.xNumber) * parseFloat(oneRow.packQty)
twoRow.qtyOne = parseFloat(twoRow.xNumber)? parseFloat(twoRow.xNumber)* parseFloat(oneRow.packQty) : ''
// let num = 0
// oneRow.packageList.forEach((item) => {
// num += parseFloat(item.xNumber) || 0

Loading…
Cancel
Save