Browse Source

库存余额 库存事务 添加字段

master
陈薪名 8 months ago
parent
commit
8b98819b2a
  1. 27
      src/views/wms/inventoryManage/balance/balance.data.ts
  2. 27
      src/views/wms/inventoryManage/transaction/transaction.data.ts

27
src/views/wms/inventoryManage/balance/balance.data.ts

@ -62,6 +62,33 @@ export const Balance = useCrudSchemas(reactive<CrudSchema[]>([
width: 150
},
},
{
label: '库区类型',
field: 'areaType',
sort: 'custom',
dictType: DICT_TYPE.AREA_TYPE,
dictClass: 'string',
isTable: true,
table: {
width: 150
},
},
{
label: '包装规格',
field: 'packUnit',
sort: 'custom',
table: {
width: 150
},
},
{
label: '包装数量',
field: 'packQty',
sort: 'custom',
table: {
width: 150
},
},
{
label: '库位代码',
field: 'locationCode',

27
src/views/wms/inventoryManage/transaction/transaction.data.ts

@ -88,6 +88,33 @@ export const Transaction = useCrudSchemas(reactive<CrudSchema[]>([
width: 150
},
},
{
label: '库区类型',
field: 'areaType',
sort: 'custom',
dictType: DICT_TYPE.AREA_TYPE,
dictClass: 'string',
isTable: true,
table: {
width: 150
},
},
{
label: '包装规格',
field: 'packUnit',
sort: 'custom',
table: {
width: 150
},
},
{
label: '包装数量',
field: 'packQty',
sort: 'custom',
table: {
width: 150
},
},
{
label: '单价',
field: 'singlePrice',

Loading…
Cancel
Save