Browse Source

基础数据列名对照完毕

master
姜旭之 1 year ago
parent
commit
2bc8fc431c
  1. 20
      code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/material.js
  2. 2
      code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/price-list-app-service-bj.js
  3. 2
      code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/price-list.js
  4. 6
      code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/tb_re-parts-relationship_service.js
  5. 18
      code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/views/invoice/invoice_map_group.js

20
code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/material.js

@ -2,28 +2,12 @@ const schema = {
title: "物料主数据", title: "物料主数据",
type: "object", type: "object",
properties: { properties: {
factory: {
title: "工厂",
type: "string",
},
materialCode: { materialCode: {
title: "物料号", title: "厂内物料号",
type: "string", type: "string",
}, },
materialDesc: { materialDesc: {
title: "物料描述", title: "厂内物料描述",
type: "string",
},
unit: {
title: "基本计量单位",
type: "string",
},
estimateType: {
title: "估价类",
type: "string",
},
estimateTypeDesc: {
title: "估价类描述",
type: "string", type: "string",
}, },
}, },

2
code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/price-list-app-service-bj.js

@ -3,7 +3,7 @@ const schema = {
type: "object", type: "object",
properties: { properties: {
lu: { lu: {
title: "零件号", title: "客户零件号",
type: "string", type: "string",
}, },
price: { price: {

2
code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/price-list.js

@ -5,7 +5,7 @@ const schema = {
type: "object", type: "object",
properties: { properties: {
lu: { lu: {
title: "零件号", title: "销售零件号",
type: "string", type: "string",
}, },
price: { price: {

6
code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/tb_re-parts-relationship_service.js

@ -5,15 +5,15 @@ const schema = {
type: "object", type: "object",
properties: { properties: {
lu: { lu: {
title: "客户零件号", title: "客户物料号",
type: "string", type: "string",
}, },
repLU: { repLU: {
title: "替换客户零件号", title: "替换客户物料号",
type: "string", type: "string",
}, },
businessType: { businessType: {
title: "业务类", title: "业务类",
input: "select", input: "select",
options: businessTypes, options: businessTypes,
}, },

18
code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/views/invoice/invoice_map_group.js

@ -59,27 +59,27 @@ export default {
const model = ref({ const model = ref({
invoicE_WAIT_DETAIL: [ invoicE_WAIT_DETAIL: [
{ {
version: 11111, version: 1111,
invbillNum: "INV230725142640-001", invbillNum: "INV230725142640-001",
inGroupNum: "INV2023", inGroupNum: "INV2023",
lu: "lu", lu: "lu",
price: 11111, price: 1111,
qty: 11111, qty: 1111,
amt: 11111, amt: 1111,
bussiessType: "bussiessType", bussiessType: "bussiessType",
}, },
{ {
version: 22222, version: 2222,
invbillNum: "INV230725142640-002", invbillNum: "INV230725142640-002",
inGroupNum: "INV2023", inGroupNum: "INV2023",
lu: "lu", lu: "lu",
price: 22222, price: 2222,
qty: 22222, qty: 2222,
amt: 22222, amt: 2222,
bussiessType: "bussiessType", bussiessType: "bussiessType",
}, },
], ],
invoicE_MAP_GROUP: [{ version: "version" }], invoicE_MAP_GROUP: [{ version: 1111, invbillNum: "INV230725142640-001", inGroupNum: "INV2023" }],
invoicE_NOT_SETTLE: [{ version: "version" }], invoicE_NOT_SETTLE: [{ version: "version" }],
}); });

Loading…
Cancel
Save