|
|
|
@ -4,29 +4,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<select id="getTotalCountBy" resultType="Integer"> |
|
|
|
|
select count(t.orderSelfNum) |
|
|
|
|
from ${tableName} `o` |
|
|
|
|
left join (SELECT |
|
|
|
|
`i`.`is_opai`, |
|
|
|
|
ORDER.serviceNum service_num, |
|
|
|
|
i.is_opai opai, |
|
|
|
|
`i`.`latest_in_time`, |
|
|
|
|
`i`.`total`, |
|
|
|
|
i.STATUS AS statuses, |
|
|
|
|
`i`.`orderSelfNum`, |
|
|
|
|
i.create_time AS invoice_time, |
|
|
|
|
`i`.`status`, |
|
|
|
|
`i`.`in_num`, |
|
|
|
|
`i`.`delive_num`, |
|
|
|
|
`i`.`out_num`, |
|
|
|
|
`i`.`sorting`, |
|
|
|
|
`i`.`sign_num`, |
|
|
|
|
`i`.`trans_num`, |
|
|
|
|
`i`.`update_time`, |
|
|
|
|
`i`.`administrators_id`, |
|
|
|
|
`i`.`warehouse_id`, |
|
|
|
|
`i`.`create_time`, |
|
|
|
|
`i`.`finish_time`, |
|
|
|
|
`i`.`type`, |
|
|
|
|
`order`.`id`, |
|
|
|
|
`order`.`number`, |
|
|
|
|
`order`.`servicenum`, |
|
|
|
|
`order`.`location_id`, |
|
|
|
|
`order`.`on_shelf_type`, |
|
|
|
|
`order`.`source`, |
|
|
|
|
`order`.`emergency`, |
|
|
|
|
`order`.`selfnumber`, |
|
|
|
|
`i`.`delive_total`, |
|
|
|
|
`order`.`contact`, |
|
|
|
|
`order`.`phone`, |
|
|
|
|
`order`.`address`, |
|
|
|
|
`order`.`door`, |
|
|
|
|
`order`.`payment`, |
|
|
|
|
`i`.`delives_num` |
|
|
|
|
FROM `ht_order_count` `i` |
|
|
|
|
INNER JOIN `ht_order` `order` ON `order`.`selfnumber` = `i`.`orderSelfNum` |
|
|
|
|
WHERE |
|
|
|
|
`i`.`status` <> 11 |
|
|
|
|
AND `i`.`delete_time` = '0' |
|
|
|
|
AND `i`.`goods_type` = '1' |
|
|
|
|
AND ( ( `i`.`in_num` + `i`.`delives_num` ) > 0 ) |
|
|
|
|
and `i`.warehouse_id = #{oldWarehouseId} |
|
|
|
|
<if test="param != null and param != ''"> |
|
|
|
|
AND `i`.`orderSelfNum` = #{param} |
|
|
|
|
</if> |
|
|
|
|
ORDER BY |
|
|
|
|
`i`.`update_time` DESC) t on `o`.order_code = t.orderSelfNum |
|
|
|
|
|
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
<select id="getTotalCountByInventory" resultType="int"> |
|
|
|
|
SELECT |
|
|
|
|
count(`i`.`orderSelfNum`) |
|
|
|
|
FROM |
|
|
|
|
`ht_order_count` `i` |
|
|
|
|
FROM `ht_order_count` `i` |
|
|
|
|
INNER JOIN `ht_order` `order` ON `order`.`selfnumber` = `i`.`orderSelfNum` |
|
|
|
|
WHERE |
|
|
|
|
`i`.`status` <> 11 |
|
|
|
|
and `i`.`history_type` = 0 |
|
|
|
|
AND `i`.`delete_time` = '0' |
|
|
|
|
AND ( ( `i`.`in_num` + `i`.`delives_num` ) > 0 ) |
|
|
|
|
AND `i`.`goods_type` = '1' |
|
|
|
|
AND `i`.warehouse_id = #{oldWarehouseId} |
|
|
|
|
AND ( ( `i`.`in_num` + `i`.`delives_num` ) > 0 ) |
|
|
|
|
and `i`.warehouse_id = #{oldWarehouseId} |
|
|
|
|
<if test="param != null and param != ''"> |
|
|
|
|
AND `i`.`orderSelfNum` = #{param} |
|
|
|
|
</if> |
|
|
|
|
ORDER BY |
|
|
|
|
`i`.`update_time` DESC |
|
|
|
|
|
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<select id="findOrderCodeListByPage" resultType="java.lang.String"> |
|
|
|
|
|
|
|
|
|
<select id="findOrderCodeListByPageWithInventoryId" resultType="java.lang.String"> |
|
|
|
|
SELECT |
|
|
|
|
`i`.`orderSelfNum` |
|
|
|
|
FROM |
|
|
|
@ -46,6 +99,27 @@
|
|
|
|
|
`i`.`id` ASC |
|
|
|
|
LIMIT #{pageNum},#{pageSize} |
|
|
|
|
</select> |
|
|
|
|
findOrderCodeListByPage |
|
|
|
|
<select id="findOrderCodeListByPage" resultType="java.lang.String"> |
|
|
|
|
select t.orderSelfNum |
|
|
|
|
from ${tableName} `o` |
|
|
|
|
left join (SELECT |
|
|
|
|
`i`.`orderSelfNum` |
|
|
|
|
FROM `ht_order_count` `i` |
|
|
|
|
INNER JOIN `ht_order` `order` ON `order`.`selfnumber` = `i`.`orderSelfNum` |
|
|
|
|
WHERE |
|
|
|
|
`i`.`status` <> 11 |
|
|
|
|
AND `i`.`delete_time` = '0' |
|
|
|
|
AND `i`.`goods_type` = '1' |
|
|
|
|
AND ( ( `i`.`in_num` + `i`.`delives_num` ) > 0 ) |
|
|
|
|
and `i`.warehouse_id = #{oldWarehouseId} |
|
|
|
|
<if test="param != null and param != ''"> |
|
|
|
|
AND `i`.`orderSelfNum` = #{param} |
|
|
|
|
</if> |
|
|
|
|
ORDER BY |
|
|
|
|
`i`.`id` DESC) t on `o`.order_code = t.orderSelfNum |
|
|
|
|
LIMIT #{pageNum},#{pageSize} |
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
<select id="getGoodsTypeByOrderCode" resultType="java.lang.Integer"> |
|
|
|
|
select goods_type |
|
|
|
|