|
|
@ -34,7 +34,7 @@ function balanceSchema() { |
|
|
|
], |
|
|
|
}, |
|
|
|
|
|
|
|
BSEQty: { |
|
|
|
bseQty: { |
|
|
|
title: "期初发货数量", |
|
|
|
type: "string", |
|
|
|
input: "number", |
|
|
@ -44,7 +44,7 @@ function balanceSchema() { |
|
|
|
}, |
|
|
|
], |
|
|
|
}, |
|
|
|
BRETQty: { |
|
|
|
bretQty: { |
|
|
|
title: "期初退货数量", |
|
|
|
type: "string", |
|
|
|
input: "number", |
|
|
@ -54,7 +54,7 @@ function balanceSchema() { |
|
|
|
}, |
|
|
|
], |
|
|
|
}, |
|
|
|
SEQTY : { |
|
|
|
seqty : { |
|
|
|
title: "实际发货数量", |
|
|
|
type: "string", |
|
|
|
input: "number", |
|
|
@ -64,7 +64,7 @@ function balanceSchema() { |
|
|
|
}, |
|
|
|
], |
|
|
|
}, |
|
|
|
RETQty: { |
|
|
|
retQty: { |
|
|
|
title: "实际退货数量", |
|
|
|
type: "string", |
|
|
|
input: "number", |
|
|
@ -74,7 +74,7 @@ function balanceSchema() { |
|
|
|
}, |
|
|
|
], |
|
|
|
}, |
|
|
|
CANQty: { |
|
|
|
canQty: { |
|
|
|
title: "可结数量", |
|
|
|
type: "string", |
|
|
|
input: "number", |
|
|
@ -85,7 +85,7 @@ function balanceSchema() { |
|
|
|
], |
|
|
|
}, |
|
|
|
|
|
|
|
NOTQty: { |
|
|
|
notQty: { |
|
|
|
title: "不可结数量", |
|
|
|
type: "string", |
|
|
|
input: "number", |
|
|
@ -96,7 +96,7 @@ function balanceSchema() { |
|
|
|
], |
|
|
|
}, |
|
|
|
|
|
|
|
SE_SA_CAN_QTY: { |
|
|
|
sE_SA_CAN_QTY: { |
|
|
|
title: "有发有结有价格数量", |
|
|
|
type: "string", |
|
|
|
input: "number", |
|
|
@ -107,7 +107,7 @@ function balanceSchema() { |
|
|
|
], |
|
|
|
}, |
|
|
|
|
|
|
|
SE_SA_NOT_QTY: { |
|
|
|
sE_SA_NOT_QTY: { |
|
|
|
title: "有发有结无价格数量", |
|
|
|
type: "string", |
|
|
|
input: "number", |
|
|
@ -118,7 +118,7 @@ function balanceSchema() { |
|
|
|
], |
|
|
|
}, |
|
|
|
|
|
|
|
ONLY_SE_QTY: { |
|
|
|
onlY_SE_QTY: { |
|
|
|
title: "有发运无结算数量", |
|
|
|
type: "string", |
|
|
|
input: "number", |
|
|
@ -129,7 +129,7 @@ function balanceSchema() { |
|
|
|
], |
|
|
|
}, |
|
|
|
|
|
|
|
ONLY_SA_QTY: { |
|
|
|
onlY_SA_QTY: { |
|
|
|
title: "有结算无发运数量", |
|
|
|
type: "string", |
|
|
|
input: "number", |
|
|
@ -139,7 +139,7 @@ function balanceSchema() { |
|
|
|
}, |
|
|
|
], |
|
|
|
}, |
|
|
|
INVQty: { |
|
|
|
invQty: { |
|
|
|
title: "已开票数量", |
|
|
|
type: "string", |
|
|
|
input: "number", |
|
|
@ -151,7 +151,8 @@ function balanceSchema() { |
|
|
|
}, |
|
|
|
sebegin: { |
|
|
|
title: "发运开始", |
|
|
|
type: "datetime", |
|
|
|
type: "datetime", |
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
seend: { |
|
|
@ -178,14 +179,20 @@ function balanceSchema() { |
|
|
|
|
|
|
|
const schema = balanceSchema(); |
|
|
|
|
|
|
|
Object.keys(schema.properties).forEach((o) => { |
|
|
|
if (o === "sebegin" || o === "seend" || o === "sabegin" || o === "saend") { |
|
|
|
schema.properties[o].hideForList = true; |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
const baseUrl = "settleaccount/vmi"; |
|
|
|
const queryUrl = `${baseUrl}/get-receive-ship-sum`; |
|
|
|
const queryUrl = `${baseUrl}/get-ship_rec_sumlist`; |
|
|
|
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}/get-receive-ship-sum-export`; |
|
|
|
const exportUrl = `${baseUrl}/get-receive-ship-sum`; |
|
|
|
const queryMethod = "POST"; |
|
|
|
const detailsMethod = "POST"; |
|
|
|
const createMethod = "POST"; |
|
|
|