|
@@ -229,6 +229,12 @@ export default {
|
|
width: 100
|
|
width: 100
|
|
},
|
|
},
|
|
{
|
|
{
|
|
|
|
+ label: "销售利润",
|
|
|
|
+ prop: "salesProfit",
|
|
|
|
+ overHidden: true,
|
|
|
|
+ width: 100
|
|
|
|
+ },
|
|
|
|
+ {
|
|
label: "产品利率",
|
|
label: "产品利率",
|
|
prop: "grossProfitRate",
|
|
prop: "grossProfitRate",
|
|
overHidden: true,
|
|
overHidden: true,
|
|
@@ -458,6 +464,7 @@ export default {
|
|
item.property == "fd" ||
|
|
item.property == "fd" ||
|
|
item.property == "fc" ||
|
|
item.property == "fc" ||
|
|
item.property == "singleTicketMargin"||
|
|
item.property == "singleTicketMargin"||
|
|
|
|
+ item.property == "salesProfit"||
|
|
item.property == "outFactoryPrice"
|
|
item.property == "outFactoryPrice"
|
|
) {
|
|
) {
|
|
let amountSum = 0;
|
|
let amountSum = 0;
|
|
@@ -507,6 +514,9 @@ export default {
|
|
if (item.property == "outFactoryPrice") {
|
|
if (item.property == "outFactoryPrice") {
|
|
sums[index] = micrometerFormat(outFactoryPriceSum);
|
|
sums[index] = micrometerFormat(outFactoryPriceSum);
|
|
}
|
|
}
|
|
|
|
+ if (item.property == "salesProfit") {
|
|
|
|
+ sums[index] = micrometerFormat(salesProfit);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|