Commit 4300d3091dca9f789e0ed720481e46dff0c8c2d2

Authored by 唐高鑫
1 parent 6cba6348

update 修复空托出库查询条件bug

ant-design-vue-jeecg/src/components/jeecgbiz/JSelectMultiEmptyContainer.vue
... ... @@ -47,7 +47,7 @@ export default {
47 47 // 多条件查询配置
48 48 queryConfigDefault: [
49 49 {
50   - key: 'locationCode',
  50 + key: 'Code',
51 51 label: '库位编码',
52 52 },
53 53 ],
... ...
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 !=''">
... ...