fix: 6车间看板按型号和工段聚合

This commit is contained in:
caoqianming 2024-03-20 17:04:39 +08:00
parent 193d2e32a8
commit 9d8384c365
1 changed files with 6 additions and 1 deletions

View File

@ -433,7 +433,12 @@ export default {
getMtask() {
let that = this;
let obj = {
query: { start_date: this.weekFirst, end_date: this.weekLast, dept_name: "6车间" },
query: {
start_date: this.weekFirst, end_date: this.weekLast, dept_name: "6车间",
select_cols_material: ", material.model AS 型号", group_bys_material: ", material.model",
select_cols_mgroup: ", mgroup.name AS 工段", group_bys_mgroup: ", mgroup.name",
is_count_utask: -1
},
};
//
that.$API.bi.dataset.exec.req('lineWeek', obj).then((res) => {