|
@@ -156,6 +156,28 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
unit2TenThousand,
|
|
|
+ addDataToCompany(c1,c2){
|
|
|
+ // Number(addition(c1.total_tips,c2.total_tips)).toFixed(2)
|
|
|
+ return {
|
|
|
+ companyName:'普润&锦兴&知事',
|
|
|
+ cost_tips:Number(addition(c1.cost_tips,c2.cost_tips)).toFixed(2),
|
|
|
+ total_tips:Number(c1.total_tips).toFixed(2),
|
|
|
+ monthinfo:c1.monthinfo.map((item,index) => ({
|
|
|
+ mcgd_th_total:Number(addition(item.mcgd_th_total,c2.monthinfo[index].mcgd_th_total)).toFixed(2),
|
|
|
+ mcgd_total:Number(addition(item.mcgd_total,c2.monthinfo[index].mcgd_total)).toFixed(2),
|
|
|
+ msale_total:Number(addition(item.msale_total,c2.monthinfo[index].msale_total)).toFixed(2),
|
|
|
+ mth_total:Number(addition(item.mth_total,c2.monthinfo[index].mth_total)).toFixed(2),
|
|
|
+ type:item.type
|
|
|
+ })),
|
|
|
+ dayinfo:c1.monthinfo.map((item,index) => ({
|
|
|
+ cgd_th_total:Number(addition(item.cgd_th_total,c2.monthinfo[index].cgd_th_total)).toFixed(2),
|
|
|
+ cgd_total:Number(addition(item.cgd_total,c2.monthinfo[index].cgd_total)).toFixed(2),
|
|
|
+ sale_total:Number(addition(item.sale_total,c2.monthinfo[index].sale_total)).toFixed(2),
|
|
|
+ th_total:Number(addition(item.th_total,c2.monthinfo[index].th_total)).toFixed(2),
|
|
|
+ type:item.type
|
|
|
+ })),
|
|
|
+ }
|
|
|
+ },
|
|
|
setCellClassName({ column }) {
|
|
|
const { label } = column;
|
|
|
return label === "当月营业收入(净)" || label === '当月成本合计' ? "pure__cell" : "";
|
|
@@ -173,6 +195,20 @@ export default {
|
|
|
|
|
|
const res = await asyncRequest.companyEveryMonth({ daytime: this.daytime , companyNo: this.companyNo});
|
|
|
|
|
|
+ const jxIndex = res.data.findIndex((item) => item.companyName === "北京锦兴弘昌科技有限公司");
|
|
|
+ const prIndex = res.data.findIndex((item) => item.companyName === "北京普润心堂商贸有限公司");
|
|
|
+
|
|
|
+ if(jxIndex >= 0 && prIndex >= 0){
|
|
|
+ const jxItem = res.data[jxIndex];
|
|
|
+ res.data[prIndex] = this.addDataToCompany(jxItem,res.data[prIndex]);
|
|
|
+ res.data.splice(jxIndex,1);
|
|
|
+ }
|
|
|
+
|
|
|
+ if(this.companyNo === "GS2302231124114965"){
|
|
|
+ const jxResult = await asyncRequest.companyEveryMonth({ daytime: this.daytime , companyNo: "GS2304031312553746"});
|
|
|
+ res.data[prIndex] = this.addDataToCompany(jxResult.data[0],res.data[prIndex]);
|
|
|
+ }
|
|
|
+
|
|
|
// const isBeforeDate = this.getDiffDay() < 0 && this.companyNo === "GS2302231323386950"
|
|
|
|
|
|
if (res.code === 0 && res.data && res.data.length > 0) {
|
|
@@ -244,7 +280,7 @@ export default {
|
|
|
this.tableData = [
|
|
|
...this.tableData,
|
|
|
{
|
|
|
- companyName:companyName.indexOf('普润') !== -1 ? "普润&锦兴&知事" : companyName, // 公司名称
|
|
|
+ companyName, // 公司名称
|
|
|
cost_tips, // 当月成本指标
|
|
|
total_tips, // 当月营收目标
|
|
|
info: [{...item}], // 直营.. 渠道 销售
|