|
@@ -74,7 +74,7 @@
|
|
|
a.`no`,
|
|
|
a.item_price,a.goods_name,a.admin_confirm_input,b.car_no,
|
|
|
b.base_part_money,a.total_money,a.pay_money,a.create_time,
|
|
|
- b.real_in_time,b.real_out_time
|
|
|
+ b.real_in_time,b.real_out_time,b.car_no ,a.net_weight,a.card_size,a.pay_status
|
|
|
from tb_business a,tb_business_car b
|
|
|
WHERE a.id=b.business_id and (a.declare_no='' or a.declare_no is null)
|
|
|
<if test="cardNo !='' and cardNo !=null">
|
|
@@ -83,6 +83,9 @@
|
|
|
<if test="adminConfirmInput !='-1'">
|
|
|
and a.admin_confirm_input=#{adminConfirmInput}
|
|
|
</if>
|
|
|
+ <if test="customerId !=null and customerId !=''">
|
|
|
+ and a.customer_id=#{customerId}
|
|
|
+ </if>
|
|
|
ORDER BY a.create_time desc
|
|
|
</select>
|
|
|
|