Commit 362733b2 authored by hongguangwu's avatar hongguangwu

Merge remote-tracking branch 'origin/MVP1.7.14' into MVP1.7.14

parents 8371a0d0 d27feb89
...@@ -881,7 +881,7 @@ public class TInsuranceDetailController { ...@@ -881,7 +881,7 @@ public class TInsuranceDetailController {
* @return * @return
*/ */
@Operation(description = "查询在用或者在途的商险数据") @Operation(description = "查询在用或者在途的商险数据")
@GetMapping("/getOnProcessInsurancesInfo") @PostMapping("/getOnProcessInsurancesInfo")
public R<List<TInsurancePreDetail>> getInProcessInsurancesInfo(@RequestParam String empIdcard) { public R<List<TInsurancePreDetail>> getInProcessInsurancesInfo(@RequestParam String empIdcard) {
return R.ok(tInsuranceDetailService.getOnProcessInsurancesInfo(empIdcard)); return R.ok(tInsuranceDetailService.getOnProcessInsurancesInfo(empIdcard));
} }
......
...@@ -619,7 +619,7 @@ ...@@ -619,7 +619,7 @@
t_insurance_detail a t_insurance_detail a
where where
a.DELETE_FLAG = 0 a.DELETE_FLAG = 0
and (a.BUY_HANDLE_STATUS in (1,2) or (a.BUY_HANDLE_STATUS = 3 and a.isEffect = 0 and a.isOverdue = 0)) and (a.BUY_HANDLE_STATUS in (1,2) or (a.BUY_HANDLE_STATUS = 3 and a.IS_EFFECT = 0 and a.IS_OVERDUE = 0))
AND EMP_IDCARD_NO = #{empIdCard} AND EMP_IDCARD_NO = #{empIdCard}
</select> </select>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment