|
@@ -11,6 +11,7 @@
|
|
AND (lower(number) like lower(CONCAT('%',#{searchKeyWord},'%'))
|
|
AND (lower(number) like lower(CONCAT('%',#{searchKeyWord},'%'))
|
|
OR lower(customer) like lower(CONCAT('%',#{searchKeyWord},'%'))
|
|
OR lower(customer) like lower(CONCAT('%',#{searchKeyWord},'%'))
|
|
OR lower(car_number) like lower(CONCAT('%',#{searchKeyWord},'%'))
|
|
OR lower(car_number) like lower(CONCAT('%',#{searchKeyWord},'%'))
|
|
|
|
+ OR lower(contract_no) like lower(CONCAT('%',#{searchKeyWord},'%'))
|
|
</if>
|
|
</if>
|
|
</select>
|
|
</select>
|
|
<!-- 获得检斤管理列表 -->
|
|
<!-- 获得检斤管理列表 -->
|
|
@@ -20,6 +21,7 @@
|
|
id,
|
|
id,
|
|
number,
|
|
number,
|
|
customer,
|
|
customer,
|
|
|
|
+ contract_no as contractNo,
|
|
car_number as carNumber,
|
|
car_number as carNumber,
|
|
goods_name as goodsName,
|
|
goods_name as goodsName,
|
|
gross_weight as grossWeight,
|
|
gross_weight as grossWeight,
|
|
@@ -30,6 +32,7 @@
|
|
gross_date as grossDate,
|
|
gross_date as grossDate,
|
|
tare_date as tareDate,
|
|
tare_date as tareDate,
|
|
status,
|
|
status,
|
|
|
|
+ address_url as addressUrl,
|
|
status_flag as statusFlag
|
|
status_flag as statusFlag
|
|
FROM weighing_management
|
|
FROM weighing_management
|
|
WHERE delete_flag = '0'
|
|
WHERE delete_flag = '0'
|
|
@@ -37,6 +40,7 @@
|
|
AND (lower(number) like lower(CONCAT('%',#{searchKeyWord},'%'))
|
|
AND (lower(number) like lower(CONCAT('%',#{searchKeyWord},'%'))
|
|
OR lower(customer) like lower(CONCAT('%',#{searchKeyWord},'%'))
|
|
OR lower(customer) like lower(CONCAT('%',#{searchKeyWord},'%'))
|
|
OR lower(car_number) like lower(CONCAT('%',#{searchKeyWord},'%'))
|
|
OR lower(car_number) like lower(CONCAT('%',#{searchKeyWord},'%'))
|
|
|
|
+ OR lower(contract_no) like lower(CONCAT('%',#{searchKeyWord},'%'))
|
|
</if>
|
|
</if>
|
|
ORDER BY update_date DESC
|
|
ORDER BY update_date DESC
|
|
<if test="currentPage != null and currentPage != ''">
|
|
<if test="currentPage != null and currentPage != ''">
|