wanggang
1 year ago
12 changed files with 136 additions and 886 deletions
@ -1,262 +0,0 @@ |
|||
import { billType, codeType, subBillType } from "./inventory.js"; |
|||
|
|||
const schema = { |
|||
title: "寄售库存调整", |
|||
type: "object", |
|||
properties: { |
|||
logType: { |
|||
title: "库存事务分类", |
|||
type: "string", |
|||
default: "Type500", |
|||
hidden: true, |
|||
}, |
|||
changedType: { |
|||
title: "变动类型", |
|||
type: "string", |
|||
default: "in", |
|||
hidden: true, |
|||
}, |
|||
partCode: { |
|||
title: "LU零件号", |
|||
type: "string", |
|||
rules: [ |
|||
{ |
|||
required: true, |
|||
}, |
|||
], |
|||
}, |
|||
customerPartCode: { |
|||
title: "客户零件号", |
|||
type: "string", |
|||
rules: [ |
|||
{ |
|||
required: true, |
|||
}, |
|||
], |
|||
}, |
|||
codeType, |
|||
billType, |
|||
qty: { |
|||
title: "数量", |
|||
type: "number", |
|||
input: "number", |
|||
}, |
|||
billTime: { |
|||
title: "发运日期", |
|||
type: "string", |
|||
input: "datetime", |
|||
}, |
|||
changedNumber: { |
|||
title: "变动单号", |
|||
type: "string", |
|||
rules: [ |
|||
{ |
|||
required: true, |
|||
}, |
|||
], |
|||
}, |
|||
changedTime: { |
|||
title: "变动时间", |
|||
type: "string", |
|||
input: "datetime", |
|||
}, |
|||
deliverTime: { |
|||
title: "订单日期", |
|||
type: "string", |
|||
input: "datetime", |
|||
}, |
|||
erpToLoc: { |
|||
title: "ERP库位", |
|||
type: "string", |
|||
rules: [ |
|||
{ |
|||
required: true, |
|||
}, |
|||
], |
|||
}, |
|||
orderNum: { |
|||
title: "EDI原始订单号", |
|||
type: "string", |
|||
rules: [ |
|||
{ |
|||
required: true, |
|||
}, |
|||
], |
|||
}, |
|||
changedBy: { |
|||
title: "变动人", |
|||
type: "string", |
|||
rules: [ |
|||
{ |
|||
required: true, |
|||
}, |
|||
], |
|||
}, |
|||
subBillType, |
|||
reMark: { |
|||
title: "备注", |
|||
type: "string", |
|||
input: "textarea", |
|||
}, |
|||
vinCode: { |
|||
title: "EDI订单生产码", |
|||
type: "string", |
|||
rules: [ |
|||
{ |
|||
required: true, |
|||
}, |
|||
], |
|||
}, |
|||
billNum: { |
|||
title: "WMS发运单号", |
|||
type: "string", |
|||
rules: [ |
|||
{ |
|||
required: true, |
|||
}, |
|||
], |
|||
}, |
|||
}, |
|||
}; |
|||
|
|||
const baseUrl = "settleaccount/vmi"; |
|||
const queryUrl = `${baseUrl}/log`; |
|||
const detailsUrl = `${baseUrl}/get/%s`; |
|||
const createUrl = "settleaccount/vmi/edit-balance"; |
|||
const updateUrl = `${baseUrl}/update/%s`; |
|||
const deleteUrl = `${baseUrl}/delete-list`; |
|||
const importUrl = `${baseUrl}/import`; |
|||
const exportUrl = `${baseUrl}/export`; |
|||
const queryMethod = "POST"; |
|||
const detailsMethod = "POST"; |
|||
const createMethod = "POST"; |
|||
const updateMethod = "POST"; |
|||
const deleteMethod = "POST"; |
|||
const importMethod = "POST"; |
|||
const exportMethod = "POST"; |
|||
|
|||
export default function () { |
|||
return { |
|||
query: { |
|||
url: queryUrl, |
|||
method: queryMethod, |
|||
hasFilter: true, |
|||
schema: { |
|||
title: "通用代码", |
|||
type: "object", |
|||
properties: { |
|||
logTypes: { type: "array", hidden: true, default: ["Type500", "Type600"] }, |
|||
filters: { |
|||
title: "项目", |
|||
type: "array", |
|||
hidden: true, |
|||
items: { |
|||
type: "object", |
|||
properties: { |
|||
logic: { |
|||
type: "int", |
|||
}, |
|||
column: { |
|||
type: "string", |
|||
}, |
|||
action: { |
|||
type: "int", |
|||
}, |
|||
value: { |
|||
type: "string", |
|||
}, |
|||
}, |
|||
}, |
|||
default: [ |
|||
{ |
|||
logic: "and", |
|||
column: "erpToLoc", |
|||
action: "like", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "createdDate", |
|||
action: "like", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "lu", |
|||
action: "like", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "tmpe4", |
|||
action: "like", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "vinCode", |
|||
action: "like", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "codeType", |
|||
action: "like", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "proType", |
|||
action: "like", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
// {
|
|||
// logic: "and",
|
|||
// column: "logType",
|
|||
// action: "in",
|
|||
// value: "Type500, Type600",
|
|||
// readOnly: true,
|
|||
// },
|
|||
], |
|||
}, |
|||
skipCount: { |
|||
hidden: true, |
|||
default: 0, |
|||
}, |
|||
maxResultCount: { |
|||
hidden: true, |
|||
default: 10, |
|||
}, |
|||
sorting: { |
|||
hidden: true, |
|||
}, |
|||
}, |
|||
}, |
|||
}, |
|||
table: { |
|||
schema: schema, |
|||
}, |
|||
edit: { |
|||
detailsUrl, |
|||
createUrl, |
|||
updateUrl, |
|||
deleteUrl, |
|||
importUrl, |
|||
exportUrl, |
|||
detailsMethod, |
|||
createMethod, |
|||
updateMethod, |
|||
deleteMethod, |
|||
importMethod, |
|||
exportMethod, |
|||
schema: schema, |
|||
}, |
|||
}; |
|||
} |
@ -1,139 +0,0 @@ |
|||
import useVmi from "./vmi.js"; |
|||
|
|||
const schema = useVmi(); |
|||
|
|||
const baseUrl = "settleaccount/vmi"; |
|||
const queryUrl = `${baseUrl}/backup`; |
|||
const detailsUrl = `${baseUrl}/get/%s`; |
|||
const createUrl = `${baseUrl}/create`; |
|||
const updateUrl = `${baseUrl}/update/%s`; |
|||
const deleteUrl = `${baseUrl}/delete-list`; |
|||
const importUrl = `${baseUrl}/code-setting-upload-excel-import`; |
|||
const exportUrl = `${baseUrl}/backup-export`; |
|||
const invokeUrl = "settleaccount/vmi/invoke"; |
|||
const queryMethod = "POST"; |
|||
const detailsMethod = "POST"; |
|||
const createMethod = "POST"; |
|||
const updateMethod = "POST"; |
|||
const deleteMethod = "POST"; |
|||
const importMethod = "POST"; |
|||
const exportMethod = "POST"; |
|||
const invokeMethod = "POST"; |
|||
|
|||
export default function () { |
|||
return { |
|||
query: { |
|||
url: queryUrl, |
|||
method: queryMethod, |
|||
hasFilter: true, |
|||
autoSubmit: true, |
|||
disableQueryOnLoad: true, |
|||
schema: { |
|||
title: "时点库存余额查询", |
|||
type: "object", |
|||
properties: { |
|||
name: { |
|||
title: "时间", |
|||
type: "string", |
|||
input: "select", |
|||
url: "settleaccount/vmi/snapshot", |
|||
value: "name", |
|||
label: "name", |
|||
defaultSelected: true, |
|||
clearable: false, |
|||
}, |
|||
filters: { |
|||
title: "项目", |
|||
type: "array", |
|||
hidden: true, |
|||
items: { |
|||
type: "object", |
|||
properties: { |
|||
logic: { |
|||
type: "int", |
|||
}, |
|||
column: { |
|||
type: "string", |
|||
}, |
|||
action: { |
|||
type: "int", |
|||
}, |
|||
value: { |
|||
type: "string", |
|||
}, |
|||
}, |
|||
}, |
|||
default: [ |
|||
{ |
|||
logic: "and", |
|||
column: "erpToLoc", |
|||
action: "like", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "partCode", |
|||
action: "like", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "vinCode", |
|||
action: "like", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "codeType", |
|||
action: "equal", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "billType", |
|||
action: "equal", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
], |
|||
}, |
|||
skipCount: { |
|||
hidden: true, |
|||
default: 0, |
|||
}, |
|||
maxResultCount: { |
|||
hidden: true, |
|||
default: 10, |
|||
}, |
|||
sorting: { |
|||
hidden: true, |
|||
}, |
|||
}, |
|||
}, |
|||
}, |
|||
table: { |
|||
schema: schema, |
|||
}, |
|||
edit: { |
|||
detailsUrl, |
|||
createUrl, |
|||
updateUrl, |
|||
deleteUrl, |
|||
importUrl, |
|||
exportUrl, |
|||
invokeUrl, |
|||
detailsMethod, |
|||
createMethod, |
|||
updateMethod, |
|||
deleteMethod, |
|||
importMethod, |
|||
exportMethod, |
|||
invokeMethod, |
|||
schema: schema, |
|||
}, |
|||
}; |
|||
} |
@ -1,123 +0,0 @@ |
|||
import useVmi from "./vmi.js"; |
|||
|
|||
const schema = useVmi(); |
|||
|
|||
const baseUrl = "settleaccount/vmi"; |
|||
const queryUrl = `${baseUrl}/balance`; |
|||
const detailsUrl = `${baseUrl}/get/%s`; |
|||
const createUrl = `${baseUrl}/create`; |
|||
const updateUrl = `${baseUrl}/update/%s`; |
|||
const deleteUrl = `${baseUrl}/delete-list`; |
|||
const importUrl = `${baseUrl}/code-setting-upload-excel-import`; |
|||
const exportUrl = `${baseUrl}/balance-export`; |
|||
const queryMethod = "POST"; |
|||
const detailsMethod = "POST"; |
|||
const createMethod = "POST"; |
|||
const updateMethod = "POST"; |
|||
const deleteMethod = "POST"; |
|||
const importMethod = "POST"; |
|||
const exportMethod = "POST"; |
|||
|
|||
export default function () { |
|||
return { |
|||
query: { |
|||
url: queryUrl, |
|||
method: queryMethod, |
|||
hasFilter: true, |
|||
schema: { |
|||
title: "寄售库存", |
|||
type: "object", |
|||
properties: { |
|||
filters: { |
|||
title: "项目", |
|||
type: "array", |
|||
hidden: true, |
|||
items: { |
|||
type: "object", |
|||
properties: { |
|||
logic: { |
|||
type: "int", |
|||
}, |
|||
column: { |
|||
type: "string", |
|||
}, |
|||
action: { |
|||
type: "int", |
|||
}, |
|||
value: { |
|||
type: "string", |
|||
}, |
|||
}, |
|||
}, |
|||
default: [ |
|||
{ |
|||
logic: "and", |
|||
column: "erpToLoc", |
|||
action: "like", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "partCode", |
|||
action: "like", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "vinCode", |
|||
action: "like", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "codeType", |
|||
action: "equal", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "billType", |
|||
action: "equal", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
], |
|||
}, |
|||
skipCount: { |
|||
hidden: true, |
|||
default: 0, |
|||
}, |
|||
maxResultCount: { |
|||
hidden: true, |
|||
default: 10, |
|||
}, |
|||
sorting: { |
|||
hidden: true, |
|||
}, |
|||
}, |
|||
}, |
|||
}, |
|||
table: { |
|||
schema: schema, |
|||
}, |
|||
edit: { |
|||
detailsUrl, |
|||
createUrl, |
|||
updateUrl, |
|||
deleteUrl, |
|||
importUrl, |
|||
exportUrl, |
|||
detailsMethod, |
|||
createMethod, |
|||
updateMethod, |
|||
deleteMethod, |
|||
importMethod, |
|||
exportMethod, |
|||
schema: schema, |
|||
}, |
|||
}; |
|||
} |
@ -1,248 +0,0 @@ |
|||
import { billType, codeType, subBillType } from "./inventory.js"; |
|||
|
|||
//变动单据号、发生时间、生产码类型、、订单号、库位、变动数、EDI顺序号、备注、变动类型(In、Out标识)、发货类型(JIS\JIT\买单件\备件等)、
|
|||
//实扣LU零件号、实扣客户零件号、结算LU零件号、结算客户零件号、实扣生产码、结算生产码
|
|||
//库位、开始结束时间段、发货类型、生产码、生产码类型、LU零件号、订单号
|
|||
const options = [ |
|||
{ value: null, label: "" }, |
|||
{ value: true, label: "是" }, |
|||
{ value: false, label: "否" }, |
|||
]; |
|||
const schema = { |
|||
title: "库存事务日志", |
|||
type: "object", |
|||
properties: { |
|||
partCode: { |
|||
title: "LU零件号", |
|||
type: "string", |
|||
}, |
|||
customerPartCode: { |
|||
title: "客户零件号", |
|||
type: "string", |
|||
}, |
|||
codeType, |
|||
billType, |
|||
qty: { |
|||
title: "数量", |
|||
type: "number", |
|||
}, |
|||
billTime: { |
|||
title: "发运日期", |
|||
type: "string", |
|||
input: "datetime", |
|||
}, |
|||
deliverTime: { |
|||
title: "订单日期", |
|||
type: "string", |
|||
input: "datetime", |
|||
}, |
|||
erpToLoc: { |
|||
title: "ERP库位", |
|||
type: "string", |
|||
}, |
|||
seq: { |
|||
title: "EDI顺序号", |
|||
type: "string", |
|||
}, |
|||
orderNum: { |
|||
title: "客户订单号", |
|||
type: "string", |
|||
}, |
|||
uniqueCode: { |
|||
title: "塑件唯一码", |
|||
type: "string", |
|||
}, |
|||
matchNumber: { |
|||
title: "EDI总成号", |
|||
type: "string", |
|||
}, |
|||
pjsNum: { |
|||
title: "PJIS生产顺序号", |
|||
type: "string", |
|||
}, |
|||
changedNumber: { |
|||
title: "变动单号", |
|||
type: "string", |
|||
}, |
|||
changedTime: { |
|||
title: "变动时间", |
|||
type: "string", |
|||
input: "datetime", |
|||
}, |
|||
changedBy: { |
|||
title: "变动人", |
|||
type: "string", |
|||
}, |
|||
partCode2: { |
|||
title: "结算厂内零件号", |
|||
type: "string", |
|||
}, |
|||
realCode: { |
|||
title: "WMS实发生产码", |
|||
type: "string", |
|||
}, |
|||
vinCode: { |
|||
title: "EDI订单生产码", |
|||
type: "string", |
|||
}, |
|||
settlementVinCode: { |
|||
title: "结算生产码", |
|||
type: "string", |
|||
}, |
|||
subBillType, |
|||
isReplenished: { |
|||
title: "是否补货", |
|||
type: "boolean", |
|||
input: "select", |
|||
options, |
|||
}, |
|||
configcode: { |
|||
title: "配置码", |
|||
type: "string", |
|||
}, |
|||
}, |
|||
}; |
|||
|
|||
const baseUrl = "settleaccount/vmi"; |
|||
const queryUrl = `${baseUrl}/log`; |
|||
const detailsUrl = `${baseUrl}/get/%s`; |
|||
const createUrl = `${baseUrl}/create`; |
|||
const updateUrl = `${baseUrl}/update/%s`; |
|||
const deleteUrl = `${baseUrl}/delete-list`; |
|||
const importUrl = `${baseUrl}/log-import`; |
|||
const exportUrl = `${baseUrl}/log-export`; |
|||
const queryMethod = "POST"; |
|||
const detailsMethod = "POST"; |
|||
const createMethod = "POST"; |
|||
const updateMethod = "POST"; |
|||
const deleteMethod = "POST"; |
|||
const importMethod = "POST"; |
|||
const exportMethod = "POST"; |
|||
|
|||
export default function () { |
|||
return { |
|||
query: { |
|||
url: queryUrl, |
|||
method: queryMethod, |
|||
hasFilter: true, |
|||
schema: { |
|||
title: "通用代码", |
|||
type: "object", |
|||
properties: { |
|||
// logTypes: { type: "array", hidden: true, default: ["Type200", "Type400"] },
|
|||
filters: { |
|||
title: "项目", |
|||
type: "array", |
|||
hidden: true, |
|||
items: { |
|||
type: "object", |
|||
properties: { |
|||
logic: { |
|||
type: "int", |
|||
}, |
|||
column: { |
|||
type: "string", |
|||
}, |
|||
action: { |
|||
type: "int", |
|||
}, |
|||
value: { |
|||
type: "string", |
|||
}, |
|||
}, |
|||
}, |
|||
default: [ |
|||
{ |
|||
logic: "and", |
|||
column: "erpToLoc", |
|||
action: "like", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "billType", |
|||
action: "equal", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "vinCode", |
|||
action: "like", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "codeType", |
|||
action: "equal", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "partCode", |
|||
action: "like", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "orderNum", |
|||
action: "like", |
|||
value: null, |
|||
readOnly: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "billTime", |
|||
action: "biggerThanOrEqual", |
|||
value: null, |
|||
readOnly: true, |
|||
hidden: true, |
|||
}, |
|||
{ |
|||
logic: "and", |
|||
column: "billTime", |
|||
action: "smallThanOrEqual", |
|||
value: null, |
|||
readOnly: true, |
|||
hidden: true, |
|||
}, |
|||
], |
|||
}, |
|||
skipCount: { |
|||
hidden: true, |
|||
default: 0, |
|||
}, |
|||
maxResultCount: { |
|||
hidden: true, |
|||
default: 10, |
|||
}, |
|||
sorting: { |
|||
hidden: true, |
|||
}, |
|||
}, |
|||
}, |
|||
}, |
|||
table: { |
|||
schema: schema, |
|||
}, |
|||
edit: { |
|||
detailsUrl, |
|||
createUrl, |
|||
updateUrl, |
|||
deleteUrl, |
|||
importUrl, |
|||
exportUrl, |
|||
detailsMethod, |
|||
createMethod, |
|||
updateMethod, |
|||
deleteMethod, |
|||
importMethod, |
|||
exportMethod, |
|||
schema: schema, |
|||
}, |
|||
}; |
|||
} |
@ -1,88 +0,0 @@ |
|||
import { codeType, deliverBillType, deliverSubBillType } from "../_options.js"; |
|||
|
|||
export default function () { |
|||
return { |
|||
title: "寄售库存", |
|||
type: "object", |
|||
properties: { |
|||
// id: {
|
|||
// type: "string",
|
|||
// hidden: true,
|
|||
// showForList: false,
|
|||
// },
|
|||
// lu: {
|
|||
// title: "LU零件号",
|
|||
// type: "string",
|
|||
// },
|
|||
realPartCode: { |
|||
title: "LU零件号", |
|||
type: "string", |
|||
}, |
|||
custPartCode: { |
|||
title: "客户零件号", |
|||
type: "string", |
|||
}, |
|||
codeType, |
|||
deliverBillType, |
|||
qty: { |
|||
title: "数量", |
|||
type: "string", |
|||
}, |
|||
billTime: { |
|||
title: "发运日期", |
|||
type: "string", |
|||
input: "datetime", |
|||
}, |
|||
assembleData: { |
|||
title: "订单日期", |
|||
type: "string", |
|||
input: "datetime", |
|||
}, |
|||
erpToLoc: { |
|||
title: "ERP库位", |
|||
type: "string", |
|||
}, |
|||
seq: { |
|||
title: "EDI顺序号", |
|||
type: "string", |
|||
}, |
|||
orderNum: { |
|||
title: "客户订单号", |
|||
type: "string", |
|||
}, |
|||
uniqueCode: { |
|||
title: "塑件唯一码", |
|||
type: "string", |
|||
}, |
|||
matchNumber: { |
|||
title: "EDI总成号", |
|||
type: "string", |
|||
}, |
|||
pjsNum: { |
|||
title: "PJIS生产顺序号", |
|||
type: "string", |
|||
}, |
|||
realCode: { |
|||
title: "实际生产码", |
|||
type: "string", |
|||
}, |
|||
configcode: { |
|||
title: "配置码", |
|||
type: "string", |
|||
}, |
|||
// factory: {
|
|||
// title: "工厂",
|
|||
// type: "string",
|
|||
// },
|
|||
// deliverSubBillType,
|
|||
vinCode: { |
|||
title: "EDI订单生产码", |
|||
type: "string", |
|||
}, |
|||
reMark: { |
|||
title: "备注", |
|||
type: "string", |
|||
}, |
|||
}, |
|||
}; |
|||
} |
Loading…
Reference in new issue