|
@@ -502,17 +502,13 @@ func CreateOrderInfo(order *models.HisOrderInfo) (err error) {
|
502
|
502
|
err = writeDb.Create(&order).Error
|
503
|
503
|
return
|
504
|
504
|
}
|
505
|
|
-
|
506
|
505
|
func FindPatientPrescriptionInfo(org_id int64, patient_id int64, record_date int64) (info models.HisPrescriptionInfo, err error) {
|
507
|
506
|
err = readDb.Model(&models.HisPrescriptionInfo{}).Where("user_org_id = ? AND status = 1 AND record_date = ? AND patient_id = ?", org_id, record_date, patient_id).First(&info).Error
|
508
|
507
|
return
|
509
|
|
-
|
510
|
508
|
}
|
511
|
|
-
|
512
|
509
|
func FindHisPatientPrescriptionInfo(org_id int64, his_patient_id int64, record_date int64) (info models.HisPrescriptionInfo, err error) {
|
513
|
510
|
err = readDb.Model(&models.HisPrescriptionInfo{}).Where("user_org_id = ? AND status = 1 AND record_date = ? AND his_patient_id = ?", org_id, record_date, his_patient_id).First(&info).Error
|
514
|
511
|
return
|
515
|
|
-
|
516
|
512
|
}
|
517
|
513
|
|
518
|
514
|
func FindLastPatientPrescriptionInfo(org_id int64, patient_id int64, record_date int64) (info models.HisPrescriptionInfo, err error) {
|
|
@@ -523,7 +519,6 @@ func FindLastPatientPrescriptionInfo(org_id int64, patient_id int64, record_date
|
523
|
519
|
func SavePatientPrescriptionInfo(info models.HisPrescriptionInfo) (err error) {
|
524
|
520
|
err = writeDb.Save(&info).Error
|
525
|
521
|
return
|
526
|
|
-
|
527
|
522
|
}
|
528
|
523
|
|
529
|
524
|
func GetHisOrderList(user_org_id int64, page int64, limit int64, start_time int64, end_time int64, doctor_id int64, keywords string) (order []*models.HisOrder, err error, total int64) {
|
|
@@ -572,47 +567,43 @@ func UpDatePrescriptionOrderStatus(user_org_id int64, ids []int64) (err error) {
|
572
|
567
|
|
573
|
568
|
func UpDatePrescriptionInfoNumber(user_org_id int64, id int64, number string, record_time int64) (err error) {
|
574
|
569
|
err = writeDb.Model(&models.HisPrescriptionInfo{}).Where("user_org_id = ? AND status = 1 AND patient_id = ? AND record_date = ?", user_org_id, id, record_time).Updates(map[string]interface{}{"batch_number": number, "prescription_status": 2, "mtime": time.Now().Unix()}).Error
|
575
|
|
-
|
576
|
570
|
return
|
577
|
571
|
}
|
578
|
572
|
|
579
|
573
|
func UpDateHisPrescriptionInfoNumber(user_org_id int64, his_patient_id int64, number string, record_time int64) (err error) {
|
580
|
574
|
err = writeDb.Model(&models.HisPrescriptionInfo{}).Where("user_org_id = ? AND status = 1 AND his_patient_id = ? AND record_date = ?", user_org_id, his_patient_id, record_time).Updates(map[string]interface{}{"batch_number": number, "prescription_status": 2, "mtime": time.Now().Unix()}).Error
|
581
|
|
-
|
582
|
575
|
return
|
583
|
576
|
}
|
584
|
577
|
|
585
|
578
|
type HisOrder struct {
|
586
|
|
- ID int64 `gorm:"column:id" json:"id" form:"id"`
|
587
|
|
- UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
|
588
|
|
- HisPatientId int64 `gorm:"column:his_patient_id" json:"his_patient_id" form:"his_patient_id"`
|
589
|
|
- SettleAccountsDate int64 `gorm:"column:settle_accounts_date" json:"settle_accounts_date" form:"settle_accounts_date"`
|
590
|
|
- Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
|
591
|
|
- Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
|
592
|
|
- Status int64 `gorm:"column:status" json:"status" form:"status"`
|
593
|
|
- Number string `gorm:"column:number" json:"number" form:"number"`
|
594
|
|
- PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
|
595
|
|
- MedfeeSumamt float64 `gorm:"column:medfee_sumamt" json:"medfee_sumamt" form:"medfee_sumamt"`
|
596
|
|
- OrderStatus float64 `gorm:"column:order_status" json:"order_status" form:"order_status"`
|
597
|
|
- PayWay int64 `gorm:"column:pay_way" json:"pay_way" form:"pay_way"`
|
598
|
|
- PayPrice float64 `gorm:"column:pay_price" json:"pay_price" form:"pay_price"`
|
599
|
|
- PayCardNo string `gorm:"column:pay_card_no" json:"pay_card_no" form:"pay_card_no"`
|
600
|
|
- DiscountPrice float64 `gorm:"column:discount_price" json:"discount_price" form:"discount_price"`
|
601
|
|
- PreferentialPrice float64 `gorm:"column:preferential_price" json:"preferential_price" form:"preferential_price"`
|
602
|
|
- RealityPrice float64 `gorm:"column:reality_price" json:"reality_price" form:"reality_price"`
|
603
|
|
- FoundPrice float64 `gorm:"column:found_price" json:"found_price" form:"found_price"`
|
604
|
|
- MedicalInsurancePrice float64 `gorm:"column:medical_insurance_price" json:"medical_insurance_price" form:"medical_insurance_price"`
|
605
|
|
- PrivatePrice float64 `gorm:"column:private_price" json:"private_price" form:"private_price"`
|
606
|
|
- Creator int64 `gorm:"column:creator" json:"creator" form:"creator"`
|
607
|
|
- Modify int64 `gorm:"column:modify" json:"modify" form:"modify"`
|
608
|
|
- IsPre int64 `gorm:"column:is_pre" json:"is_pre" form:"is_pre"`
|
609
|
|
-
|
610
|
|
- SzChargeInfo string `gorm:"column:sz_charge_info" json:"sz_charge_info" form:"sz_charge_info"`
|
611
|
|
- SzProjectInfo string `gorm:"column:sz_project_info" json:"sz_project_info" form:"sz_project_info"`
|
612
|
|
- SzMedicineInsuranceInfo string `gorm:"column:sz_medicine_insurance_info" json:"sz_medicine_insurance_info" form:"sz_medicine_insurance_info"`
|
613
|
|
-
|
614
|
|
- MzNumber string `gorm:"column:mz_number" json:"mz_number" form:"mz_number"`
|
615
|
|
- OrgSetlNumber string `gorm:"column:org_setl_number" json:"org_setl_number" form:"org_setl_number"`
|
|
579
|
+ ID int64 `gorm:"column:id" json:"id" form:"id"`
|
|
580
|
+ UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
|
|
581
|
+ HisPatientId int64 `gorm:"column:his_patient_id" json:"his_patient_id" form:"his_patient_id"`
|
|
582
|
+ SettleAccountsDate int64 `gorm:"column:settle_accounts_date" json:"settle_accounts_date" form:"settle_accounts_date"`
|
|
583
|
+ Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
|
|
584
|
+ Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
|
|
585
|
+ Status int64 `gorm:"column:status" json:"status" form:"status"`
|
|
586
|
+ Number string `gorm:"column:number" json:"number" form:"number"`
|
|
587
|
+ PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
|
|
588
|
+ MedfeeSumamt float64 `gorm:"column:medfee_sumamt" json:"medfee_sumamt" form:"medfee_sumamt"`
|
|
589
|
+ OrderStatus float64 `gorm:"column:order_status" json:"order_status" form:"order_status"`
|
|
590
|
+ PayWay int64 `gorm:"column:pay_way" json:"pay_way" form:"pay_way"`
|
|
591
|
+ PayPrice float64 `gorm:"column:pay_price" json:"pay_price" form:"pay_price"`
|
|
592
|
+ PayCardNo string `gorm:"column:pay_card_no" json:"pay_card_no" form:"pay_card_no"`
|
|
593
|
+ DiscountPrice float64 `gorm:"column:discount_price" json:"discount_price" form:"discount_price"`
|
|
594
|
+ PreferentialPrice float64 `gorm:"column:preferential_price" json:"preferential_price" form:"preferential_price"`
|
|
595
|
+ RealityPrice float64 `gorm:"column:reality_price" json:"reality_price" form:"reality_price"`
|
|
596
|
+ FoundPrice float64 `gorm:"column:found_price" json:"found_price" form:"found_price"`
|
|
597
|
+ MedicalInsurancePrice float64 `gorm:"column:medical_insurance_price" json:"medical_insurance_price" form:"medical_insurance_price"`
|
|
598
|
+ PrivatePrice float64 `gorm:"column:private_price" json:"private_price" form:"private_price"`
|
|
599
|
+ Creator int64 `gorm:"column:creator" json:"creator" form:"creator"`
|
|
600
|
+ Modify int64 `gorm:"column:modify" json:"modify" form:"modify"`
|
|
601
|
+ IsPre int64 `gorm:"column:is_pre" json:"is_pre" form:"is_pre"`
|
|
602
|
+ SzChargeInfo string `gorm:"column:sz_charge_info" json:"sz_charge_info" form:"sz_charge_info"`
|
|
603
|
+ SzProjectInfo string `gorm:"column:sz_project_info" json:"sz_project_info" form:"sz_project_info"`
|
|
604
|
+ SzMedicineInsuranceInfo string `gorm:"column:sz_medicine_insurance_info" json:"sz_medicine_insurance_info" form:"sz_medicine_insurance_info"`
|
|
605
|
+ MzNumber string `gorm:"column:mz_number" json:"mz_number" form:"mz_number"`
|
|
606
|
+ OrgSetlNumber string `gorm:"column:org_setl_number" json:"org_setl_number" form:"org_setl_number"`
|
616
|
607
|
|
617
|
608
|
HisOrderInfo models.HisOrderInfo `gorm:"ForeignKey:ID;AssociationForeignKey:OrderId" json:"order_info"`
|
618
|
609
|
Patients models.Patients `gorm:"ForeignKey:PatientId;AssociationForeignKey:ID" json:"patient"`
|