Browse Source

11月8日库存管理

XMLWAN 3 years ago
parent
commit
f868c5b8c9
2 changed files with 2 additions and 2 deletions
  1. 1 1
      conf/app.conf
  2. 1 1
      service/doctor_schedule_service.go

+ 1 - 1
conf/app.conf View File

@@ -1,5 +1,5 @@
1 1
 appname = 血透
2
-httpport = 9529
2
+httpport = 9531
3 3
 runmode = dev
4 4
 
5 5
 #

+ 1 - 1
service/doctor_schedule_service.go View File

@@ -709,7 +709,7 @@ func GetPatientScheduleIsExist(patient_id int64, startime int64, schedule_type i
709 709
 	return &schedule, nil
710 710
 }
711 711
 
712
-func CreateDialysisPrescription(prescription models.DialysisPrescription) error {
712
+func CreateDialysisPrescription(prescription *models.DialysisPrescription) error {
713 713
 
714 714
 	err := XTReadDB().Create(&prescription).Error
715 715