示例#1
0
 /// <summary>
 /// 修改定性指标设置表单
 /// </summary>
 /// <param name="zbbh">指标编号</param>
 /// <param name="jxbm">绩效年度编码</param>
 /// <param name="entity">定性指标设置实体</param>
 /// <returns></returns>
 public void ModifyQualitativeIndicatorsForm(string zbbh, string jxbm, BpeTB001Entity entity)
 {
     try
     {
         bpeTB001Service.SaveForm(zbbh, jxbm, entity);
     }
     catch (Exception)
     {
         throw;
     }
 }
示例#2
0
 /// <summary>
 /// 新增定性指标设置表单
 /// </summary>
 /// <param name="entity">定性指标设置实体</param>
 /// <returns></returns>
 public void CreateQualitativeIndicatorsForm(BpeTB001Entity entity)
 {
     try
     {
         bpeTB001Service.SaveForm(null, null, entity);
     }
     catch (Exception)
     {
         throw;
     }
 }
示例#3
0
 public ActionResult SaveQual(BpeTB001Entity qual)
 {
     if (string.IsNullOrEmpty(qual.CREATOR))
     {
         bll.CreateQualitativeIndicatorsForm(qual);
     }
     else
     {
         bll.ModifyQualitativeIndicatorsForm(qual.ZBBH, qual.JXBM, qual);
     }
     return(Success("操作成功"));
 }