|
@@ -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 {
|