Browse Source

采购退货任务 退货记录去掉数量字段,修正退货数量字段

master_hella_20240701
songguoqiang 6 months ago
parent
commit
24a8874df7
  1. 26
      src/views/wms/purchasereceiptManage/purchasereturn/purchasereturnJobMain/purchasereturnJobMain.data.ts
  2. 28
      src/views/wms/purchasereceiptManage/purchasereturn/purchasereturnRecordMain/purchasereturnRecordMain.data.ts

26
src/views/wms/purchasereceiptManage/purchasereturn/purchasereturnJobMain/purchasereturnJobMain.data.ts

@ -837,21 +837,21 @@ export const PurchasereturnJobDetail = useCrudSchemas(reactive<CrudSchema[]>([
sortTableDefault: 18,
hiddenInMain:true,
},
{
label: '数量',
field: 'qty',
sort: 'custom',
table: {
width: 150
},
form: {
component: 'InputNumber',
},
sortTableDefault: 12,
},
// {
// label: '数量',
// field: 'qty',
// sort: 'custom',
// table: {
// width: 150
// },
// form: {
// component: 'InputNumber',
// },
// sortTableDefault: 12,
// },
{
label: '退货数量',
field: 'returnedQty',
field: 'qty',
sort: 'custom',
table: {
width: 150

28
src/views/wms/purchasereceiptManage/purchasereturn/purchasereturnRecordMain/purchasereturnRecordMain.data.ts

@ -484,7 +484,7 @@ export const PurchasereturnRecordDetail = useCrudSchemas(reactive<CrudSchema[]>(
},
{
label: '退货数量',
field: 'returnedQty',
field: 'qty',
sort: 'custom',
table: {
width: 150
@ -733,19 +733,19 @@ export const PurchasereturnRecordDetail = useCrudSchemas(reactive<CrudSchema[]>(
sortSearchDefault: 7,
hiddenInMain: true
},
{
label: '数量',
field: 'qty',
sort: 'custom',
table: {
width: 150
},
isTable:true,
sortTableDefault: 1005,
form: {
component: 'InputNumber',
}
},
// {
// label: '数量',
// field: 'qty',
// sort: 'custom',
// table: {
// width: 150
// },
// isTable:true,
// sortTableDefault: 1005,
// form: {
// component: 'InputNumber',
// }
// },
{
label: '计量单位',
field: 'uom',

Loading…
Cancel
Save