feat(订单明细): 添加删除订单明细功能

feat(辅料管理): 新增辅料变动记录功能

feat(仪表拓扑): 在仪表标签中显示上次抄表记录

fix(设备管理): 修复图片预览空值问题

refactor(员工管理): 部门树显示负责人信息

style(备件变动): 优化备件变动页面布局

docs(订单记录): 更新操作类型映射表

test(销售异议): 新增销售异议管理模块

chore: 更新.gitignore文件
This commit is contained in:
砂糖
2026-01-04 14:42:51 +08:00
parent aeecf4bcf7
commit 42dbbf79ae
16 changed files with 1724 additions and 316 deletions

View File

@@ -214,10 +214,11 @@ export default {
let currentX = margin; // 当前X坐标
let currentY = margin; // 当前Y坐标
let currentIndex = 0; // 当前处理的库位索引
const totalCount = this.warehouseList.length;
const list = this.warehouseList.filter(item => item.actualWarehouseCode.includes('X'));
const totalCount = list.length;
// 遍历所有库位生成二维码并添加到PDF
for (const [index, item] of this.warehouseList.entries()) {
for (const [index, item] of list.entries()) {
currentIndex = index;
// 跳过无ID的项