|
@@ -171,24 +171,21 @@ export default {
|
|
|
})
|
|
|
};
|
|
|
|
|
|
- if(this.companyNo === ""){
|
|
|
- result.data.forEach((item) => item.total_tips = 0);
|
|
|
-
|
|
|
- for(const c of this.cp_companies.filter(({value}) => value !== "")){
|
|
|
- const res = await asyncRequest.companyEvery({ year: (this.daytime.split('-'))[0], companyNo: c.value });
|
|
|
- result.data = result.data.reduce((prev,curr,index) => {
|
|
|
- return [
|
|
|
- ...prev,
|
|
|
- {
|
|
|
- ...curr,
|
|
|
- total_tips:Number(addition(Number(curr.total_tips).toFixed(2),Number(res.data[index].total_tips).toFixed(2))).toFixed(2)
|
|
|
- }
|
|
|
- ]
|
|
|
- },[])
|
|
|
-
|
|
|
-
|
|
|
- }
|
|
|
- }
|
|
|
+ // if(this.companyNo === ""){
|
|
|
+ // result.data.forEach((item) => item.total_tips = 0);
|
|
|
+ // for(const c of this.cp_companies.filter(({value}) => value !== "")){
|
|
|
+ // const res = await asyncRequest.companyEvery({ year: (this.daytime.split('-'))[0], companyNo: c.value });
|
|
|
+ // result.data = result.data.reduce((prev,curr,index) => {
|
|
|
+ // return [
|
|
|
+ // ...prev,
|
|
|
+ // {
|
|
|
+ // ...curr,
|
|
|
+ // total_tips:Number(addition(Number(curr.total_tips).toFixed(2),Number(res.data[index].total_tips).toFixed(2))).toFixed(2)
|
|
|
+ // }
|
|
|
+ // ]
|
|
|
+ // },[])
|
|
|
+ // }
|
|
|
+ // }
|
|
|
|
|
|
|
|
|
switch(Number(result.code)){
|