Browse Source

修改扣减单状态字段名称[CI SKIP]

master
wanggang 12 months ago
parent
commit
c98ae56f24
  1. 4
      code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/_options.js

4
code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/_options.js

@ -20,11 +20,11 @@ const stateOptions = [
{ value: 8, label: "已提交QAD" }, { value: 8, label: "已提交QAD" },
{ value: 9, label: "红冲" }, { value: 9, label: "红冲" },
]; ];
const state = { title: "扣减单状态", type: "number", input: "select", options: stateOptions }; const state = { title: "状态", type: "number", input: "select", options: stateOptions };
const state2 = Object.assign(Object.assign({}, state), { const state2 = Object.assign(Object.assign({}, state), {
options: stateOptions.filter((a) => parseInt(a.value) > 0).filter((a) => parseInt(a.value) !== 6 && parseInt(a.value) !== 7), options: stateOptions.filter((a) => parseInt(a.value) > 0).filter((a) => parseInt(a.value) !== 6 && parseInt(a.value) !== 7),
}); });
const state3 = Object.assign(Object.assign({}, state), { options: stateOptions.filter((a) => parseInt(a.value) > 3) }); const state3 = Object.assign(Object.assign({}, state), { title: "扣减单状态", options: stateOptions.filter((a) => parseInt(a.value) > 3) });
const businessType = { const businessType = {
title: "业务类型", title: "业务类型",

Loading…
Cancel
Save