Browse Source

BUG修复

1、WMS制品上架任务和制品上架记录中包装规格和数量没值
master_hella_20240701
bjang03 6 months ago
parent
commit
6177e946b4
  1. 32
      src/views/wms/productionManage/productputaway/productputawayJobMain/productputawayJobMain.data.ts
  2. 38
      src/views/wms/productionManage/productputaway/productputawayRecordMain/productputawayRecordMain.data.ts
  3. 42
      src/views/wms/productionManage/productputaway/productputawayRequestMain/productputawayRequestMain.data.ts

32
src/views/wms/productionManage/productputaway/productputawayJobMain/productputawayJobMain.data.ts

@ -608,22 +608,22 @@ export const ProductputawayJobMainRules = reactive({
* @returns {Array}
*/
export const ProductputawayJobDetail = useCrudSchemas(reactive<CrudSchema[]>([
{
label: '采购订单号',
field: 'poNumber',
sort: 'custom',
table: {
width: 150
},
},
{
label: '订单行',
field: 'poLine',
sort: 'custom',
table: {
width: 150
},
},
// {
// label: '采购订单号',
// field: 'poNumber',
// sort: 'custom',
// table: {
// width: 150
// },
// },
// {
// label: '订单行',
// field: 'poLine',
// sort: 'custom',
// table: {
// width: 150
// },
// },
{
label: '物料代码',
field: 'itemCode',

38
src/views/wms/productionManage/productputaway/productputawayRecordMain/productputawayRecordMain.data.ts

@ -389,24 +389,24 @@ export const ProductputawayRecordMainRules = reactive({
* @returns {Array}
*/
export const ProductputawayRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([
{
label: '采购订单号',
field: 'poNumber',
sort: 'custom',
table: {
width: 150
},
sortTableDefault:2,
},
{
label: '订单行',
field: 'poLine',
sort: 'custom',
table: {
width: 150
},
sortTableDefault:2,
},
// {
// label: '采购订单号',
// field: 'poNumber',
// sort: 'custom',
// table: {
// width: 150
// },
// sortTableDefault:2,
// },
// {
// label: '订单行',
// field: 'poLine',
// sort: 'custom',
// table: {
// width: 150
// },
// sortTableDefault:2,
// },
{
label: '物料代码',
field: 'itemCode',
@ -753,4 +753,4 @@ export const ProductputawayRecordDetailRules = reactive({
creator: [
{ required: true, message: '请输入创建者', trigger: 'blur' }
],
})
})

42
src/views/wms/productionManage/productputaway/productputawayRequestMain/productputawayRequestMain.data.ts

@ -427,26 +427,26 @@ export const ProductputawayRequestMainRules = reactive({
* @returns {Array}
*/
export const ProductputawayRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([
{
label: '采购订单号',
field: 'poNumber',
sort: 'custom',
table: {
width: 150
},
isForm: false,
isTableForm: false,
},
{
label: '订单行',
field: 'poLine',
sort: 'custom',
table: {
width: 150
},
isForm: false,
isTableForm: false,
},
// {
// label: '采购订单号',
// field: 'poNumber',
// sort: 'custom',
// table: {
// width: 150
// },
// isForm: false,
// isTableForm: false,
// },
// {
// label: '订单行',
// field: 'poLine',
// sort: 'custom',
// table: {
// width: 150
// },
// isForm: false,
// isTableForm: false,
// },
{
label: '物料代码',
field: 'itemCode',
@ -824,4 +824,4 @@ export const ProductputawayRequestDetailRules = reactive({
itemCode: [
{ required: true, message: '请选择物料代码', trigger: 'change' }
],
})
})

Loading…
Cancel
Save