You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
349 lines
6.1 KiB
349 lines
6.1 KiB
1 year ago
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
|
||
|
import { dateFormatter,dateFormatter2 } from '@/utils/formatTime'
|
||
|
|
||
|
/**
|
||
|
* @returns {Array} 库存事务
|
||
|
*/
|
||
|
export const Transaction = useCrudSchemas(reactive<CrudSchema[]>([
|
||
|
{
|
||
|
label: '事务号',
|
||
|
field: 'number',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 180
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '事务类型',
|
||
|
field: 'transactionType',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '库存动作',
|
||
|
field: 'inventoryAction',
|
||
|
dictType: DICT_TYPE.INVENTORY_ACTION,
|
||
|
dictClass: 'string',
|
||
|
isTable: true,
|
||
|
isSearch: true,
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '操作员',
|
||
|
field: 'worker',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '业务类型',
|
||
|
field: 'businessType',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '记录号',
|
||
|
field: 'recordNumber',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '物料代码',
|
||
|
field: 'itemCode',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
isSearch: true,
|
||
|
},
|
||
|
{
|
||
|
label: '数量',
|
||
|
field: 'qty',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
form: {
|
||
|
component: 'InputNumber',
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label: '计量单位',
|
||
|
field: 'uom',
|
||
|
dictType: DICT_TYPE.UOM,
|
||
|
dictClass: 'string',
|
||
|
isTable: true,
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
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',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '金额',
|
||
|
field: 'amount',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '包装号',
|
||
|
field: 'packingNumber',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '器具号',
|
||
|
field: 'containerNumber',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '批次',
|
||
|
field: 'batch',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
isSearch: true,
|
||
|
},
|
||
|
{
|
||
|
label: '库位代码',
|
||
|
field: 'locationCode',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '库存状态',
|
||
|
field: 'inventoryStatus',
|
||
|
dictType: DICT_TYPE.INVENTORY_STATUS,
|
||
|
dictClass: 'string',
|
||
|
isTable: true,
|
||
|
isSearch: true,
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '仓库代码',
|
||
|
field: 'warehouseCode',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '库区代码',
|
||
|
field: 'areaCode',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '库位组代码',
|
||
|
field: 'locationGroupCode',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: 'ERP库位代码',
|
||
|
field: 'erpLocationCode',
|
||
|
dictType: DICT_TYPE.ERP_LOCATION,
|
||
|
dictClass: 'string',
|
||
|
isTable: true,
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '替代批次',
|
||
|
field: 'altBatch',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '到货日期',
|
||
|
field: 'arriveDate',
|
||
|
isTable: true,
|
||
|
formatter: dateFormatter2,
|
||
|
detail: {
|
||
|
dateFormat: 'YYYY-MM-DD'
|
||
|
},
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
form: {
|
||
|
component: 'DatePicker',
|
||
|
componentProps: {
|
||
|
style: {width: '100%'},
|
||
|
type: 'date',
|
||
|
dateFormat: 'YYYY-MM-DD',
|
||
|
valueFormat: 'x',
|
||
|
}
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '生产日期',
|
||
|
field: 'produceDate',
|
||
|
isTable: true,
|
||
|
formatter: dateFormatter2,
|
||
|
detail: {
|
||
|
dateFormat: 'YYYY-MM-DD'
|
||
|
},
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
form: {
|
||
|
component: 'DatePicker',
|
||
|
componentProps: {
|
||
|
style: {width: '100%'},
|
||
|
type: 'date',
|
||
|
dateFormat: 'YYYY-MM-DD',
|
||
|
valueFormat: 'x',
|
||
|
}
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '生效时间',
|
||
|
field: 'activeTime',
|
||
|
isTable: true,
|
||
|
formatter: dateFormatter,
|
||
|
detail: {
|
||
|
dateFormat: 'YYYY-MM-DD HH:mm:ss'
|
||
|
},
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
form: {
|
||
|
component: 'DatePicker',
|
||
|
componentProps: {
|
||
|
type: 'datetime',
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label: '失效日期',
|
||
|
field: 'expireDate',
|
||
|
isTable: true,
|
||
|
formatter: dateFormatter2,
|
||
|
detail: {
|
||
|
dateFormat: 'YYYY-MM-DD'
|
||
|
},
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
form: {
|
||
|
component: 'DatePicker',
|
||
|
componentProps: {
|
||
|
style: {width: '100%'},
|
||
|
type: 'date',
|
||
|
dateFormat: 'YYYY-MM-DD',
|
||
|
valueFormat: 'x',
|
||
|
}
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '货主代码',
|
||
|
field: 'ownerCode',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
},
|
||
|
]))
|
||
|
|
||
|
// 表单校验
|
||
|
export const TransactionRules = reactive({
|
||
|
number: [
|
||
|
{ required: true, message: '请输入事务号', trigger: 'blur' }
|
||
|
],
|
||
|
transactionType: [
|
||
|
{ required: true, message: '请选择事务类型', trigger: 'change' }
|
||
|
],
|
||
|
inventoryAction: [
|
||
|
{ required: true, message: '请选择库存动作', trigger: 'change' }
|
||
|
],
|
||
|
worker: [
|
||
|
{ required: true, message: '请选择操作员', trigger: 'change' }
|
||
|
],
|
||
|
businessType: [
|
||
|
{ required: true, message: '请选择业务类型', trigger: 'change' }
|
||
|
],
|
||
|
recordNumber: [
|
||
|
{ required: true, message: '请选择记录号', trigger: 'change' }
|
||
|
],
|
||
|
activeTime: [
|
||
|
{ required: true, message: '请选择生效时间', trigger: 'change' }
|
||
|
],
|
||
|
itemCode: [
|
||
|
{ required: true, message: '请选择物料代码', trigger: 'change' }
|
||
|
],
|
||
|
batch: [
|
||
|
{ required: true, message: '请输入批次', trigger: 'blur' }
|
||
|
],
|
||
|
inventoryStatus: [
|
||
|
{ required: true, message: '请选择库存状态', trigger: 'change' }
|
||
|
],
|
||
|
})
|