diff --git a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/inventory/log.js b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/inventory/log.js index 6003865a..3e38b21a 100644 --- a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/inventory/log.js +++ b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/inventory/log.js @@ -152,27 +152,30 @@ export default function () { value: null, readOnly: true, }, - { - logic: "and", - column: "billTime", - action: "BiggerThanOrEqual", - value: null, - readOnly: true, - }, - { - logic: "and", - column: "billTime", - action: "SmallThanOrEqual", - value: null, - readOnly: true, - }, - { - logic: "and", - column: "isReplenished", - action: "equal", - value: true, - 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, + // }, + // { + // logic: "and", + // column: "isReplenished", + // action: "equal", + // value: true, + // readOnly: true, + // hidden: true, + // }, { logic: "and", column: "billType", diff --git a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/views/inventory/log.js b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/views/inventory/log.js index e47f63fa..6bd46998 100644 --- a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/views/inventory/log.js +++ b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/views/inventory/log.js @@ -33,9 +33,9 @@ export default { return postData; } const openDialog = async () => { - // const url = - // const method = - // const postData = buildQuery(); + const url = "settleaccount/vmi/replenished-export"; + const method = "POST"; + const postData = buildQuery(); const response = await request(url, postData, { method }); if (!response.errors) { window.open(getUrl(`settleaccount/getblobfile/download/${response.data}`));