2 コミット 466f410bc0 ... 10c2d9d3fb

作者 SHA1 メッセージ 日付
  陈少旭 10c2d9d3fb Merge branch '20230223_xt_api_new_branch' of http://git.shengws.com/csx/XT_New into 20230223_xt_api_new_branch 2 週間 前
  陈少旭 b49724feae 提交代码 2 週間 前
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1 1
      service/his_service.go

+ 1 - 1
service/his_service.go ファイルの表示

@@ -1743,7 +1743,7 @@ func GetHisPrescriptionByType(change_type int64, record_time int64, org_id int64
1743 1743
 	return
1744 1744
 }
1745 1745
 
1746
-func GetCallHisPrescriptions(start_time int64, end_time int64, org_id int64, patient_id int64, p_type int64) (advice []*VMOtherHisPrescriptionInfo, err error) {
1746
+func GetCallHisPrescriptions(start_time int64, end_time int64, org_id int64, patient_id int64, p_type int64) (advice []VMOtherHisPrescriptionInfo, err error) {
1747 1747
 	err = readDb.Model(&VMOtherHisPrescriptionInfo{}).Where("patient_id = ? AND user_org_id = ? AND  status=1 AND record_date >= ? AND record_date <= ? AND p_type = ?", patient_id, org_id, start_time, end_time, p_type).
1748 1748
 		Preload("VMHisPrescription", func(db *gorm.DB) *gorm.DB {
1749 1749
 			return db.Where("status = 1 AND user_org_id = ?", org_id).