|
@ -123,6 +123,7 @@ public class PatientReservationService extends BaseService {
|
|
|
public void patientCancelOrder(Long id,String patient) {
|
|
|
PatientReservation obj = patientReservationDao.findOne(id);
|
|
|
if (obj.getStatus()!=0) {
|
|
|
obj.setStatus(0);
|
|
|
obj.setCanceler(patient);
|
|
|
obj.setCancelerName(obj.getName());
|
|
|
obj.setCancelerType(5);
|