fix:库存统计修正

This commit is contained in:
shijing 2025-12-02 17:02:13 +08:00
parent 84562cfb37
commit 76d3cc25cc
1 changed files with 12 additions and 6 deletions

View File

@ -321,15 +321,21 @@ export default {
that.initChartOptions();
},
initChartOptions() {
this.$API.bi.dataset.exec.req("materialCount", {query: {
let that = this;
let query = {
"select_dept": "",
"groupby_dept": "",
"material_types": this.params.type,
"select_material": "material.cate as cate",
"groupby_material": "material.cate",
"select_material_name": "",
"groupby_material_name": ""
}}).then((res) => {
"select_material": "",
"groupby_material": ""
};
if(that.params.type==40){
query.select_material="material.cate as cate";
query.groupby_material="material.cate";
query.select_material_name = "";
query.groupby_material_name = "";
}
this.$API.bi.dataset.exec.req("materialCount", {query:query }).then((res) => {
if (res.echart_options) {
this.echartsOptions = JSON.parse(res.echart_options);
}