|
|
@@ -549,18 +549,18 @@ public class MzyRequestServiceImpl implements MzyRequestService {
|
|
|
mzyZdChargeType.setOthFee(checkFee);
|
|
|
if (birthDay != null) {
|
|
|
int age = DateUtil.getAge(birthDay);
|
|
|
- //6岁以内的小朋友挂号费上调50%
|
|
|
- if (age <= 6 && !(StrUtil.isNotBlank(patientId) && shareholderCardService.checkGhDiscount(patientId))) {
|
|
|
- if (mzyZdChargeType.getReqFee() != null) {
|
|
|
- checkFee = checkFee.add(mzyZdChargeType.getReqFee());
|
|
|
- }
|
|
|
- if (mzyZdChargeType.getClinicFee() != null) {
|
|
|
- checkFee = checkFee.add(mzyZdChargeType.getClinicFee());
|
|
|
- }
|
|
|
- BigDecimal tempFee = checkFee.multiply(BigDecimal.valueOf(0.5));
|
|
|
- mzyZdChargeType.setOthFee(mzyZdChargeType.getOthFee().add(tempFee));
|
|
|
- mzyZdChargeType.setMessage("根据【湘医保发〔2020〕51 号】价格通知,不满7周岁的儿童挂号费上调50%!");
|
|
|
- }
|
|
|
+// //6岁以内的小朋友挂号费上调50%
|
|
|
+// if (age <= 6 && !(StrUtil.isNotBlank(patientId) && shareholderCardService.checkGhDiscount(patientId))) {
|
|
|
+// if (mzyZdChargeType.getReqFee() != null) {
|
|
|
+// checkFee = checkFee.add(mzyZdChargeType.getReqFee());
|
|
|
+// }
|
|
|
+// if (mzyZdChargeType.getClinicFee() != null) {
|
|
|
+// checkFee = checkFee.add(mzyZdChargeType.getClinicFee());
|
|
|
+// }
|
|
|
+// BigDecimal tempFee = checkFee.multiply(BigDecimal.valueOf(0.5));
|
|
|
+// mzyZdChargeType.setOthFee(mzyZdChargeType.getOthFee().add(tempFee));
|
|
|
+// mzyZdChargeType.setMessage("根据【湘医保发〔2020〕51 号】价格通知,不满7周岁的儿童挂号费上调50%!");
|
|
|
+// }
|
|
|
}
|
|
|
//看病人身份是是否有挂号优惠
|
|
|
if(StrUtil.isNotBlank(patientId) && !Constants.TSMZ_CODE.equals(mzyRequest.getUnitCode()) && shareholderCardService.checkGhDiscount(patientId)){
|