fix(wms/coil/stock, wms/report): 修复两处功能问题

1. 补充卷库存查询的质检状态参数
2. 修复自定义导出列重复添加和缓存解析重复数据的问题
This commit is contained in:
砂糖
2026-07-08 13:07:50 +08:00
parent 682b939cb9
commit 6e28ba0342
2 changed files with 9 additions and 4 deletions

View File

@@ -497,7 +497,11 @@ export default {
loadDialogData() {
if (!this.currentWarehouse) return;
this.dialogLoading = true;
const baseParams = { warehouseId: this.currentWarehouse.warehouseId, dataType: 1, status: 0 };
const baseParams = {
warehouseId: this.currentWarehouse.warehouseId,
qualityStatusCsv: this.queryParams.qualityStatusCsv || '',
dataType: 1, status: 0,
};
Promise.all([
listLightCoil({ ...baseParams, pageSize: 99999, pageNum: 1 }),
listMaterialCoil({ ...baseParams, pageNum: this.dialogPageNum, pageSize: this.dialogPageSize }),