@ -11,7 +11,6 @@
<result property= "warehouseCode" column= "warehouse_code" />
<result property= "warehouseName" column= "warehouse_name" />
<result property= "warehouseCategoryId" column= "warehouse_category_id" />
<result property= "warehouseCategoryName" column= "category_name" />
<result property= "warehouseFloor" column= "warehouse_floor" />
<result property= "deptId" column= "dept_id" />
<result property= "multiRowType" column= "multi_row_type" />
@ -21,7 +20,10 @@
<result property= "workbinFlag" column= "workbin_flag" />
<result property= "warehouseLocation" column= "warehouse_location" />
<result property= "activeFlag" column= "active_flag" />
<result property= "auditFlag" column= "audit_flag" />
<result property= "inRequirement" column= "in_requirement" />
<result property= "outRequirement" column= "out_requirement" />
<result property= "returnRequirement" column= "return_requirement" />
<result property= "autoFlag" column= "auto_flag" />
<result property= "returnFlag" column= "return_flag" />
<result property= "remark" column= "remark" />
<result property= "createBy" column= "create_by" />
@ -65,21 +67,15 @@
<result property= "pickFlag" column= "sub_pick_flag" />
<result property= "isOpenKnFlag" column= "sub_is_open_kn_flag" />
<result property= "locationScrapType" column= "sub_location_scrap_type" />
<result property= "locationAttr" column= "sub_location_attr" />
<result property= "turnDemand" column= "sub_turn_demand" />
<result property= "checkCode" column= "sub_check_code" />
<result property= "workArea" column= "sub_work_area" />
<result property= "volumeLimit" column= "sub_volume_limit" />
<result property= "weightLimit" column= "sub_weight_limit" />
<result property= "boxLimit" column= "sub_box_limit" />
<result property= "palletLimit" column= "sub_pallet_limit" />
<result property= "length" column= "sub_length" />
<result property= "width" column= "sub_width" />
<result property= "height" column= "sub_height" />
</resultMap>
<sql id= "selectWmsBaseWarehouseVo" >
select warehouse_id, warehouse_instock_type, warehouse_type, warehouse_code, warehouse_name, warehouse_category_id, warehouse_floor, dept_id, multi_row_type, multi_side_type, batch_mix, product_mix, workbin_flag, warehouse_location, active_flag, audit _flag, return_flag, remark, create_by, create_time, update_by, update_time, del_flag, factory_id, data_source, schame, line_flag from wms_base_warehouse
select warehouse_id, warehouse_instock_type, warehouse_type, warehouse_code, warehouse_name, warehouse_category_id, warehouse_floor, dept_id, multi_row_type, multi_side_type, batch_mix, product_mix, workbin_flag, warehouse_location, active_flag, in_requirement, out_requirement, return_requirement, auto _flag, return_flag, remark, create_by, create_time, update_by, update_time, del_flag, factory_id, data_source, schame, line_flag from wms_base_warehouse
</sql>
<select id= "selectWmsBaseWarehouseList" parameterType= "WmsBaseWarehouse" resultMap= "WmsBaseWarehouseResult" >
@ -99,7 +95,7 @@
<if test= "workbinFlag != null and workbinFlag != ''" > and workbin_flag = #{workbinFlag}</if>
<if test= "warehouseLocation != null and warehouseLocation != ''" > and warehouse_location = #{warehouseLocation}</if>
<if test= "activeFlag != null and activeFlag != ''" > and active_flag = #{activeFlag}</if>
<if test= " auditFlag != null and auditFlag != ''"> and audit_flag = #{auditFlag }</if>
<if test= " inRequirement != null and inRequirement != ''"> and in_requirement = #{inRequirement }</if>
<if test= "returnFlag != null and returnFlag != ''" > and return_flag = #{returnFlag}</if>
<if test= "factoryId != null " > and factory_id = #{factoryId}</if>
<if test= "dataSource != null and dataSource != ''" > and data_source = #{dataSource}</if>
@ -109,8 +105,8 @@
</select>
<select id= "selectWmsBaseWarehouseWithLocationByWarehouseId" parameterType= "Long" resultMap= "WmsBaseWarehouseWmsBaseLocationResult" >
select a.warehouse_id, a.warehouse_instock_type, a.warehouse_type, a.warehouse_code, a.warehouse_name, a.warehouse_category_id, a.warehouse_floor, a.dept_id, a.multi_row_type, a.multi_side_type, a.batch_mix, a.product_mix, a.workbin_flag, a.warehouse_location, a.active_flag, a.audit _flag, a.return_flag, a.remark, a.create_by, a.create_time, a.update_by, a.update_time, a.del_flag, a.factory_id, a.data_source, a.schame, a.line_flag,
b.location_id as sub_location_id, b.warehouse_id as sub_warehouse_id, b.location_code as sub_location_code, b.loc_row as sub_loc_row, b.layer_num as sub_layer_num, b.loc_column as sub_loc_column, b.active_flag as sub_active_flag, b.manual_flag as sub_manual_flag, b.qty_limit as sub_qty_limit, b.instock_flag as sub_instock_flag, b.outstock_flag as sub_outstock_flag, b.location_status as sub_location_status, b.batch_mix as sub_batch_mix, b.create_by as sub_create_by, b.create_time as sub_create_time, b.update_by as sub_update_by, b.update_time as sub_update_time, b.remark as sub_remark, b.del_flag as sub_del_flag, b.shelf_order as sub_shelf_order, b.check_order as sub_check_order, b.pick_order as sub_pick_order, b.pick_flag as sub_pick_flag, b.is_open_kn_flag as sub_is_open_kn_flag, b.location_scrap_type as sub_location_scrap_type, b.location_attr as sub_location_attr, b.turn_demand as sub_turn_demand, b.check_code as sub_check_code, b.work_area as sub_work_area, b. volume_limit as sub_volume_limit, b.weight_limit as sub_weight_limit, b.box_limit as sub_box_limit, b.pallet_limit as sub_palle t_limit, b.length as sub_length, b.width as sub_width, b.height as sub_height
select a.warehouse_id, a.warehouse_instock_type, a.warehouse_type, a.warehouse_code, a.warehouse_name, a.warehouse_category_id, a.warehouse_floor, a.dept_id, a.multi_row_type, a.multi_side_type, a.batch_mix, a.product_mix, a.workbin_flag, a.warehouse_location, a.active_flag, a.in_requirement, a.out_requirement,a.return_requirement,a.auto _flag, a.return_flag, a.remark, a.create_by, a.create_time, a.update_by, a.update_time, a.del_flag, a.factory_id, a.data_source, a.schame, a.line_flag,
b.location_id as sub_location_id, b.warehouse_id as sub_warehouse_id, b.location_code as sub_location_code, b.loc_row as sub_loc_row, b.layer_num as sub_layer_num, b.loc_column as sub_loc_column, b.active_flag as sub_active_flag, b.manual_flag as sub_manual_flag, b.qty_limit as sub_qty_limit, b.instock_flag as sub_instock_flag, b.outstock_flag as sub_outstock_flag, b.location_status as sub_location_status, b.batch_mix as sub_batch_mix, b.create_by as sub_create_by, b.create_time as sub_create_time, b.update_by as sub_update_by, b.update_time as sub_update_time, b.remark as sub_remark, b.del_flag as sub_del_flag, b.shelf_order as sub_shelf_order, b.check_order as sub_check_order, b.pick_order as sub_pick_order, b.pick_flag as sub_pick_flag, b.is_open_kn_flag as sub_is_open_kn_flag, b.location_scrap_type as sub_location_scrap_type, b.volume_limit as sub_volume_limit, b.weight_limit as sub_weight_limit, b.length as sub_length, b.width as sub_width, b.height as sub_height
from wms_base_warehouse a
left join wms_base_location b on b.warehouse_id = a.warehouse_id
where a.warehouse_id = #{warehouseId}
@ -133,7 +129,10 @@
<if test= "workbinFlag != null" > workbin_flag,</if>
<if test= "warehouseLocation != null" > warehouse_location,</if>
<if test= "activeFlag != null and activeFlag != ''" > active_flag,</if>
<if test= "auditFlag != null" > audit_flag,</if>
<if test= "inRequirement != null and inRequirement != ''" > in_requirement,</if>
<if test= "outRequirement != null and outRequirement != ''" > out_requirement,</if>
<if test= "returnRequirement != null and returnRequirement != ''" > return_requirement,</if>
<if test= "autoFlag != null and autoFlag != ''" > auto_flag,</if>
<if test= "returnFlag != null and returnFlag != ''" > return_flag,</if>
<if test= "remark != null" > remark,</if>
<if test= "createBy != null" > create_by,</if>
@ -161,7 +160,10 @@
<if test= "workbinFlag != null" > #{workbinFlag},</if>
<if test= "warehouseLocation != null" > #{warehouseLocation},</if>
<if test= "activeFlag != null and activeFlag != ''" > #{activeFlag},</if>
<if test= "auditFlag != null" > #{auditFlag},</if>
<if test= "inRequirement != null and inRequirement != ''" > #{inRequirement},</if>
<if test= "outRequirement != null and outRequirement != ''" > #{outRequirement},</if>
<if test= "returnRequirement != null and returnRequirement != ''" > #{returnRequirement},</if>
<if test= "autoFlag != null and autoFlag != ''" > #{autoFlag},</if>
<if test= "returnFlag != null and returnFlag != ''" > #{returnFlag},</if>
<if test= "remark != null" > #{remark},</if>
<if test= "createBy != null" > #{createBy},</if>
@ -193,7 +195,10 @@
<if test= "workbinFlag != null" > workbin_flag = #{workbinFlag},</if>
<if test= "warehouseLocation != null" > warehouse_location = #{warehouseLocation},</if>
<if test= "activeFlag != null and activeFlag != ''" > active_flag = #{activeFlag},</if>
<if test= "auditFlag != null" > audit_flag = #{auditFlag},</if>
<if test= "inRequirement != null and inRequirement != ''" > in_requirement = #{inRequirement},</if>
<if test= "outRequirement != null and outRequirement != ''" > out_requirement = #{outRequirement},</if>
<if test= "returnRequirement != null and returnRequirement != ''" > return_requirement = #{returnRequirement},</if>
<if test= "autoFlag != null and autoFlag != ''" > auto_flag = #{autoFlag},</if>
<if test= "returnFlag != null and returnFlag != ''" > return_flag = #{returnFlag},</if>
<if test= "remark != null" > remark = #{remark},</if>
<if test= "createBy != null" > create_by = #{createBy},</if>
@ -232,9 +237,9 @@
</delete>
<insert id= "batchWmsBaseLocation" >
insert into wms_base_location( location_id, warehouse_id, location_code, loc_row, layer_num, loc_column, active_flag, manual_flag, qty_limit, instock_flag, outstock_flag, location_status, batch_mix, create_by, create_time, update_by, update_time, remark, del_flag, shelf_order, check_order, pick_order, pick_flag, is_open_kn_flag, location_scrap_type, location_attr, turn_demand, check_code, work_area, volume_limit, weight_limit, box_limit, palle t_limit, length, width, height) values
insert into wms_base_location( location_id, warehouse_id, location_code, loc_row, layer_num, loc_column, active_flag, manual_flag, qty_limit, instock_flag, outstock_flag, location_status, batch_mix, create_by, create_time, update_by, update_time, remark, del_flag, shelf_order, check_order, pick_order, pick_flag, is_open_kn_flag, location_scrap_type, volume_limit, weight_limit, length, width, height) values
<foreach item= "item" index= "index" collection= "list" separator= "," >
( #{item.locationId}, #{item.warehouseId}, #{item.locationCode}, #{item.locRow}, #{item.layerNum}, #{item.locColumn}, #{item.activeFlag}, #{item.manualFlag}, #{item.qtyLimit}, #{item.instockFlag}, #{item.outstockFlag}, #{item.locationStatus}, #{item.batchMix}, #{item.createBy}, #{item.createTime}, #{item.updateBy}, #{item.updateTime}, #{item.remark}, #{item.delFlag}, #{item.shelfOrder}, #{item.checkOrder}, #{item.pickOrder}, #{item.pickFlag}, #{item.isOpenKnFlag}, #{item.locationScrapType}, #{item.locationAttr}, #{item.turnDemand}, #{item.checkCode}, #{item.workArea}, #{item.volumeLimit}, #{item.weightLimit}, #{item.boxLimit}, #{item.palletLimit}, #{item. length}, #{item.width}, #{item.height})
( #{item.locationId}, #{item.warehouseId}, #{item.locationCode}, #{item.locRow}, #{item.layerNum}, #{item.locColumn}, #{item.activeFlag}, #{item.manualFlag}, #{item.qtyLimit}, #{item.instockFlag}, #{item.outstockFlag}, #{item.locationStatus}, #{item.batchMix}, #{item.createBy}, #{item.createTime}, #{item.updateBy}, #{item.updateTime}, #{item.remark}, #{item.delFlag}, #{item.shelfOrder}, #{item.checkOrder}, #{item.pickOrder}, #{item.pickFlag}, #{item.isOpenKnFlag}, #{item.locationScrapType}, #{item.locationAttr}, #{item.turnDemand}, #{item.checkCode}, #{item.workArea}, #{item.volumeLimit}, #{item.weightLimit}, #{item.length}, #{item.width}, #{item.height})
</foreach>
</insert>
@ -244,10 +249,10 @@
<select id= "selectWmsBaseWarehouseJoinList" parameterType= "WmsBaseWarehouse" resultMap= "WmsBaseWarehouseResult" >
select wbw.warehouse_id, wbw.warehouse_instock_type, wbw.warehouse_type, wbw.warehouse_code, wbw.warehouse_name,
wbw.warehouse_category_id, wbw.warehouse_floor, wbw.dept_id, wbw.multi_row_type, wbw.multi_side_type, wbw.batch_mix,
wbw.product_mix, wbw.workbin_flag, wbw.warehouse_location, wbw.active_flag, wbw.audit_flag, wbw.return_flag,wbc.category_name
wbw.product_mix, wbw.workbin_flag, wbw.warehouse_location, wbw.active_flag, wbw.in_requirement,
wbw.out_requirement,wbw.return_requirement,wbw.auto_flag,
wbw.return_flag,wbc.category_name
from wms_base_warehouse wbw left join wms_base_category wbc on wbw.warehouse_category_id = wbc.category_id
<where >
<if test= "warehouseInstockType != null and warehouseInstockType != ''" > and warehouse_instock_type = #{warehouseInstockType}</if>
<if test= "warehouseType != null and warehouseType != ''" > and warehouse_type = #{warehouseType}</if>
@ -263,7 +268,8 @@
<if test= "workbinFlag != null and workbinFlag != ''" > and workbin_flag = #{workbinFlag}</if>
<if test= "warehouseLocation != null and warehouseLocation != ''" > and warehouse_location like concat('%', #{warehouseLocation}, '%')</if>
<if test= "activeFlag != null and activeFlag != ''" > and active_flag = #{activeFlag}</if>
<if test= "auditFlag != null and auditFlag != ''" > and audit_flag = #{auditFlag}</if>
<if test= "inRequirement != null and inRequirement != ''" > and in_requirement = #{inRequirement}</if>
<if test= "outRequirement != null and outRequirement != ''" > and out_requirement = #{outRequirement}</if>
<if test= "returnFlag != null and returnFlag != ''" > and return_flag = #{returnFlag}</if>
<if test= "factoryId != null " > and factory_id = #{factoryId}</if>
</where>
@ -271,7 +277,12 @@
<select id= "selectWmsBaseWarehouseByWarehouseId" parameterType= "Long" resultMap= "WmsBaseWarehouseResult" >
select a.warehouse_id, a.warehouse_instock_type, a.warehouse_type, a.warehouse_code, a.warehouse_name, a.warehouse_category_id, a.warehouse_floor, a.dept_id, a.multi_row_type, a.multi_side_type, a.batch_mix, a.product_mix, a.workbin_flag, a.warehouse_location, a.active_flag, a.audit_flag, a.return_flag, a.remark, a.create_by, a.create_time, a.update_by, a.update_time, a.del_flag, a.factory_id, a.data_source, a.schame, a.line_flag
select a.warehouse_id, a.warehouse_instock_type, a.warehouse_type, a.warehouse_code, a.warehouse_name,
a.warehouse_category_id, a.warehouse_floor, a.dept_id, a.multi_row_type,
a.multi_side_type, a.batch_mix, a.product_mix, a.workbin_flag, a.warehouse_location,
a.active_flag, a.in_requirement, a.out_requirement,a.return_requirement,a.auto_flag,
a.return_flag, a.remark, a.create_by, a.create_time, a.update_by, a.update_time, a.del_flag,
a.factory_id, a.data_source, a.schame, a.line_flag
from wms_base_warehouse a
where a.warehouse_id = #{warehouseId}
</select>