|
|
@@ -1167,14 +1167,14 @@ public class SubmitRequest {
|
|
|
// 司机
|
|
|
if (code.equals("041") || code.equals("YD11")) {
|
|
|
kind.sumInsured = insOrdersKind.getAmount();
|
|
|
- kind.unitInsured = insOrdersKind.getUnitAmount();
|
|
|
+ kind.unitInsured = insOrdersKind.getAmount();
|
|
|
kind.quantity = 1;
|
|
|
}
|
|
|
// 乘客
|
|
|
else if (code.equals("044") || code.equals("YD12")) {
|
|
|
- kind.unitInsured = insOrdersKind.getUnitAmount();
|
|
|
+ kind.unitInsured = insOrdersKind.getAmount();
|
|
|
kind.sumInsured =
|
|
|
- insOrdersKind.getUnitAmount().multiply(new BigDecimal(Integer.parseInt(vehicle.getSeat()) - 1));;
|
|
|
+ insOrdersKind.getAmount().multiply(new BigDecimal(Integer.parseInt(vehicle.getSeat()) - 1));;
|
|
|
kind.quantity = Integer.parseInt(vehicle.getSeat()) - 1;
|
|
|
}
|
|
|
// 绝对免赔
|