Browse Source

update

master
wanggang 1 year ago
parent
commit
186962383f
  1. 14
      code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/invoice/invoice_map_group.js

14
code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/invoice/invoice_map_group.js

@ -1,5 +1,6 @@
import version from "../version.js"; import version from "../version.js";
import { state2 as state, state3 } from "../state.js"; import { state2, state3 } from "../state.js";
import invoiceState from "../invoiceState.js";
const schema = { const schema = {
title: "通用代码", title: "通用代码",
@ -16,23 +17,16 @@ const schema = {
type: "string", type: "string",
link: true, link: true,
}, },
// settleGroupNum: {
// title: "结算分组号",
// type: "string",
// },
amt: { amt: {
title: "金额", title: "金额",
type: "decimal", type: "decimal",
}, },
state, state: state2,
invoiceState,
taxAmt: { taxAmt: {
title: "税额", title: "税额",
type: "decimal", type: "decimal",
}, },
Extend2: {
title: "扩展字段2",
type: "string",
},
}, },
}; };
const queryUrl = "settleaccount/invoice_service/main-query"; const queryUrl = "settleaccount/invoice_service/main-query";

Loading…
Cancel
Save