fix(wms): 更新镀锌原料标签判断逻辑并调整标签尺寸
修改多个文件中的镀锌原料仓库判断条件,增加新的仓库ID支持 调整DuGeTag.vue中标签的高度为100mm 更新base.vue中的标签类型判断逻辑,增加更多产品类型处理 修正DuGeTag.vue中的联系电话信息
This commit is contained in:
@@ -661,7 +661,7 @@ export default {
|
||||
const itemType = row.itemType || '';
|
||||
const warehouseId = row.warehouseId || '';
|
||||
// 在镀锌颜料库的卷使用镀锌原料标签
|
||||
if (itemType == 'raw_material' && warehouseId == '1988150263284953089') {
|
||||
if (itemType == 'raw_material' && (warehouseId == '1988150263284953089' || warehouseId == '1988150487185289217')) {
|
||||
this.labelRender.type = '5';
|
||||
} else if (itemType == 'raw_material') {
|
||||
this.labelRender.type = '2';
|
||||
|
||||
Reference in New Issue
Block a user