|
@@ -75,7 +75,7 @@ public class GroupRule {
|
|
|
break;
|
|
|
case "幼儿":
|
|
|
if (age != null) {
|
|
|
- if (age <= 2.5D) {
|
|
|
+ if (age < 6.0D && 1.0D <= age) {
|
|
|
BillMsg commonBillMsg = MsgUtil.getCommonBillMsg(
|
|
|
billNeoMaxDTO.getOrderName(), billNeoMaxDTO.getOrderStandName(),
|
|
|
"幼儿", type, billNeoMaxDTO.getType());
|
|
@@ -85,7 +85,7 @@ public class GroupRule {
|
|
|
break;
|
|
|
case "儿童":
|
|
|
if (age != null) {
|
|
|
- if (age <= 15.0D && age > 2.5D) {
|
|
|
+ if (age < 18.0D && age >= 6.0D) {
|
|
|
BillMsg commonBillMsg = MsgUtil.getCommonBillMsg(
|
|
|
billNeoMaxDTO.getOrderName(), billNeoMaxDTO.getOrderStandName(),
|
|
|
"儿童", type, billNeoMaxDTO.getType());
|