@@ -550,7 +550,7 @@ public class MzyRequestServiceImpl implements MzyRequestService {
if (birthDay != null) {
int age = DateUtil.getAge(birthDay);
//6岁以内的小朋友挂号费上调50%
- if (age <= 6) {
+ if (age <= 6 && !(StrUtil.isNotBlank(patientId) && shareholderCardService.checkGhDiscount(patientId))) {
if (mzyZdChargeType.getReqFee() != null) {
checkFee = checkFee.add(mzyZdChargeType.getReqFee());
}