Commit 4300d3091dca9f789e0ed720481e46dff0c8c2d2
1 parent
6cba6348
update 修复空托出库查询条件bug
Showing
2 changed files
with
2 additions
and
2 deletions
ant-design-vue-jeecg/src/components/jeecgbiz/JSelectMultiEmptyContainer.vue
huaheng-wms-core/src/main/java/org/jeecg/modules/wms/config/location/mapper/xml/LocationMapper.xml
... | ... | @@ -32,7 +32,7 @@ |
32 | 32 | AND cc.code = #{map.containerCode} |
33 | 33 | </if> |
34 | 34 | <if test="map.locationCode != null and map.locationCode !=''"> |
35 | - AND t.location_code = #{map.locationCode} | |
35 | + AND t.code = #{map.locationCode} | |
36 | 36 | </if> |
37 | 37 | AND cc.warehouse_code = #{map.warehouseCode}) |
38 | 38 | <if test="map.locationStatus != null and map.locationStatus !=''"> |
... | ... |