diff --git a/Models/eva_adjust_postponement_quota/eva_adjust_postponement_quotaService.cs b/Models/eva_adjust_postponement_quota/eva_adjust_postponement_quotaService.cs index 05406bb..86e7121 100644 --- a/Models/eva_adjust_postponement_quota/eva_adjust_postponement_quotaService.cs +++ b/Models/eva_adjust_postponement_quota/eva_adjust_postponement_quotaService.cs @@ -516,6 +516,7 @@ namespace TodoAPI2.Models { model.theDate = MyHelper.GetDateFromString(model.theDate_text); model.theDate_text = MyHelper.GetDateStringForReport(model.theDate); + model.decimal_limit_quota = Convert.ToDecimal(model.limit_quota); var postponement_data = (from postponement in _repository.Context.eva_adjust_postponement join create_evaluation in _repository.Context.eva_create_evaluation on postponement.create_evaluation_id equals create_evaluation.id diff --git a/Models/rep_eva_savemessage/rep_eva_savemessageReportRequestModel.cs b/Models/rep_eva_savemessage/rep_eva_savemessageReportRequestModel.cs index ad90b6b..7f424af 100644 --- a/Models/rep_eva_savemessage/rep_eva_savemessageReportRequestModel.cs +++ b/Models/rep_eva_savemessage/rep_eva_savemessageReportRequestModel.cs @@ -18,6 +18,7 @@ namespace TodoAPI2.Models public int? theRound { get; set; } public decimal? limit_frame_quota { get; set; } public string limit_quota { get; set; } + public decimal? decimal_limit_quota { get; set; } public string command_no { get; set; } public string theDate_text { get; set; } public DateTime? theDate { get; set; }