|
|
@@ -119,12 +119,15 @@
|
|
|
WHEN '3' THEN '已提现'
|
|
|
WHEN '4' THEN '驳回'
|
|
|
ELSE ''
|
|
|
- END AS "auditingStatus"
|
|
|
+ END AS "auditingStatus",
|
|
|
+ CASE WHEN '自动审核' THEN '1'
|
|
|
+ ELSE '2' END as "checkStatus"
|
|
|
FROM
|
|
|
sys_user_account_history his
|
|
|
LEFT JOIN ins_area_company ins ON his.suborder = ins.id
|
|
|
LEFT JOIN ins_orders o ON o.orderno = ins.orderno
|
|
|
left join sys_amount_auditing saa on saa.id =his.auditiing_id
|
|
|
+ left join ins_fee_audit ifa on ifa.ins_order_no = ins.id
|
|
|
WHERE
|
|
|
his.property !=1 and his.property !=2
|
|
|
<if test="myIncomeAndExpensesQueryDto.incomeAndExpensesType !=null and myIncomeAndExpensesQueryDto.incomeAndExpensesType != '' and myIncomeAndExpensesQueryDto.incomeAndExpensesType != '0' ">
|