|
@@ -24,6 +24,7 @@
|
|
|
t.equip_num AS equipNum,
|
|
t.equip_num AS equipNum,
|
|
|
t.check_date AS checkDate,
|
|
t.check_date AS checkDate,
|
|
|
t.payment_status AS paymentStatus,
|
|
t.payment_status AS paymentStatus,
|
|
|
|
|
+ t.no_tax_payment_status AS noTaxPaymentStatus,
|
|
|
t.confirm_date AS confirmDate,
|
|
t.confirm_date AS confirmDate,
|
|
|
t.reduction_radio AS reductionRadio,
|
|
t.reduction_radio AS reductionRadio,
|
|
|
t.equip_main_type AS equipMainType,
|
|
t.equip_main_type AS equipMainType,
|
|
@@ -49,6 +50,9 @@
|
|
|
<if test="reqVO.paymentStatus != null">
|
|
<if test="reqVO.paymentStatus != null">
|
|
|
AND t.payment_status = #{reqVO.paymentStatus}
|
|
AND t.payment_status = #{reqVO.paymentStatus}
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="reqVO.noTaxPaymentStatus != null">
|
|
|
|
|
+ AND t.no_tax_payment_status = #{reqVO.noTaxPaymentStatus}
|
|
|
|
|
+ </if>
|
|
|
|
|
|
|
|
<if test="reqVO.feeType != null">
|
|
<if test="reqVO.feeType != null">
|
|
|
AND t.fee_type = #{reqVO.feeType}
|
|
AND t.fee_type = #{reqVO.feeType}
|
|
@@ -116,6 +120,9 @@
|
|
|
<if test="reqVO.paymentStatus != null">
|
|
<if test="reqVO.paymentStatus != null">
|
|
|
AND t.payment_status = #{reqVO.paymentStatus}
|
|
AND t.payment_status = #{reqVO.paymentStatus}
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="reqVO.noTaxPaymentStatus != null">
|
|
|
|
|
+ AND t.no_tax_payment_status = #{reqVO.noTaxPaymentStatus}
|
|
|
|
|
+ </if>
|
|
|
<if test="reqVO.feeType != null">
|
|
<if test="reqVO.feeType != null">
|
|
|
AND t.fee_type = #{reqVO.feeType}
|
|
AND t.fee_type = #{reqVO.feeType}
|
|
|
</if>
|
|
</if>
|