Browse Source

20240926

java8
qiezi 1 year ago
parent
commit
75777d5ad0
  1. 6
      src/views/modules/quote/detail/primary/quoteDetailCost.vue
  2. 16
      src/views/modules/quote/detail/primary/quoteDetailRouting.vue

6
src/views/modules/quote/detail/primary/quoteDetailCost.vue

@ -89,6 +89,12 @@ export default {
this.quoteDetail.adjustPartCost = data.row.unitQuotePrice;
this.quoteDetail.bomUnYield = data.row.actualQuotePrice;
this.quoteDetail.adjustBomUnYield = data.row.actualQuotePrice;
this.quoteDetail.labourCost = data.row.labourCost;
this.quoteDetail.adjustLabourCost = data.row.labourCost;
this.quoteDetail.machineCost = data.row.machineCost;
this.quoteDetail.adjustMachineCost = data.row.machineCost;
this.quoteDetail.fabricateCost = data.row.manufactureCost;
this.quoteDetail.adjustFabricateCost = data.row.manufactureCost;
this.quoteDetail.toolCost = data.row.toolCost;
this.quoteDetail.adjustToolCost = data.row.toolCost;
this.quoteDetail.packCost = data.row.packCost;

16
src/views/modules/quote/detail/primary/quoteDetailRouting.vue

@ -442,10 +442,10 @@ export default {
},{
userId: this.$store.state.user.name,
functionId: 5011,
serialNumber: '5011Table5MachineCost',
serialNumber: '5011Table5TotalMachCost',
tableId: "5011Table5",
tableName: "报价工艺信息",
columnProp: 'machineCost',
columnProp: 'totalMachCost',
headerAlign: "center",
align: "right",
columnLabel: '单位机器成本',
@ -459,10 +459,10 @@ export default {
},{
userId: this.$store.state.user.name,
functionId: 5011,
serialNumber: '5011Table5MachineCost',
serialNumber: '5011Table5TotalManCost',
tableId: "5011Table5",
tableName: "报价工艺信息",
columnProp: 'unitManufacturingCosts',
columnProp: 'totalManCost',
headerAlign: "center",
align: "right",
columnLabel: '单位制造成本',
@ -476,10 +476,10 @@ export default {
},{
userId: this.$store.state.user.name,
functionId: 5011,
serialNumber: '5011Table5LaborCosts',
serialNumber: '5011Table5TotalLaborCost',
tableId: "5011Table5",
tableName: "报价工艺信息",
columnProp: 'laborCosts',
columnProp: 'totalLaborCost',
headerAlign: "center",
align: "right",
columnLabel: '单位人工成本',
@ -493,10 +493,10 @@ export default {
},{
userId: this.$store.state.user.name,
functionId: 5011,
serialNumber: '5011Table5QuoteUnitCost',
serialNumber: '5011Table5TotalCost',
tableId: "5011Table5",
tableName: "报价工艺信息",
columnProp: 'quoteUnitCost',
columnProp: 'totalCost',
headerAlign: "center",
align: "right",
columnLabel: '单位报价成本',

Loading…
Cancel
Save