Browse Source

Merge branch 'master' of http://git.shengws.com/csx/gdyb

csx 3 years ago
parent
commit
3d018e56ff
2 changed files with 14 additions and 3 deletions
  1. 13 2
      controllers/sg/his_api_controller.go
  2. 1 1
      service/his_service.go

+ 13 - 2
controllers/sg/his_api_controller.go View File

@@ -1691,8 +1691,19 @@ func (c *HisApiController) GetBatchSettleList() {
1691 1691
 		var res ResultSeventeen
1692 1692
 		if err := json.Unmarshal(userJSONBytes, &res); err != nil {
1693 1693
 			utils.ErrorLog("解析失败:%v", err)
1694
-			c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
1695
-			return
1694
+			//c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
1695
+			adminUser := c.GetAdminUserInfo()
1696
+			errlog := &models.HisOrderError{
1697
+				UserOrgId: adminUser.CurrentOrgId,
1698
+				Ctime:     time.Now().Unix(),
1699
+				Mtime:     time.Now().Unix(),
1700
+				ErrMsg:    res.ErrMsg + "解析失败",
1701
+				Status:    1,
1702
+				PatientId: item.ID,
1703
+				Stage:     20,
1704
+			}
1705
+			service.CreateErrMsgLog(errlog)
1706
+			continue
1696 1707
 		}
1697 1708
 
1698 1709
 		if res.Infcode != 0 {

+ 1 - 1
service/his_service.go View File

@@ -1364,6 +1364,6 @@ func GetPsnByPatientId(patient_id int64) (psn models.HisPsn, err error) {
1364 1364
 }
1365 1365
 
1366 1366
 func GetAllHisOrder(org_id int64) (his []*models.HisOrder, err error) {
1367
-	err = readDb.Model(&models.HisOrder{}).Where("user_org_id = ? AND status = 1 AND order_status = 2 AND setl_id <> '' AND id >= 1755", org_id).Order("setl_time asc").Find(&his).Error
1367
+	err = readDb.Model(&models.HisOrder{}).Where("user_org_id = ? AND status = 1 AND order_status = 2 AND setl_id <> '' AND id >= 2499", org_id).Order("setl_time asc").Find(&his).Error
1368 1368
 	return
1369 1369
 }