fix: 6车间看板按型号和工段聚合
This commit is contained in:
parent
193d2e32a8
commit
9d8384c365
|
@ -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) => {
|
||||
|
|
Loading…
Reference in New Issue