|
@@ -11038,7 +11038,7 @@ ORDER by gctggrc.id DESC
|
|
|
int ccpId = (int)_view.Data.GetType().GetProperty("ccpId").GetValue(_view.Data, null);
|
|
|
int sign = (int)_view.Data.GetType().GetProperty("sign").GetValue(_view.Data, null);
|
|
|
int hotelId = (int)_view.Data.GetType().GetProperty("hotelId").GetValue(_view.Data, null);
|
|
|
-
|
|
|
+ _logger.LogInformation($"【iOS推送通知Exception】Begin");
|
|
|
//2024-10-21 新增LZ UID
|
|
|
var userIds = new List<int>() { 21 };
|
|
|
string title = $"费用审核";
|
|
@@ -11050,10 +11050,12 @@ ORDER by gctggrc.id DESC
|
|
|
else if (_dto.Id > 0) content = $"[更新-酒店费用录入({groupInfo?.TeamName ?? "-"})]一项费用:{(ccpInfo.PayMoney * ccpInfo.DayRate).ToString("#0.00")} CNY;";
|
|
|
|
|
|
await GeneralMethod.iOS_PushNotifications("051", title, "", content);
|
|
|
+ _logger.LogInformation($"【iOS推送通知Exception】End");
|
|
|
}
|
|
|
catch (Exception ex)
|
|
|
{
|
|
|
_logger.LogInformation($"【iOS推送通知Exception】【{ex.Message}】");
|
|
|
+ Log.Error($"【iOS推送通知Exception】【{ex.Message}】");
|
|
|
|
|
|
}
|
|
|
|