| | |
| | | } |
| | | #endregion |
| | | |
| | | #region ç产æ¥è®¡åå¹³å° çå¬åå
æ ¼æ°æ®ä¿®æ¹æä¸å¤©çæäº§æ°é |
| | | [Route("JIT_DayPlanPlatFormBill/UpdateDayPlanQty")] |
| | | [HttpGet] |
| | | public object UpdateDayPlanQty(int HWorkBillSortInterID, string HMasterDate, string HQty, string HSumWorkQty) |
| | | { |
| | | try |
| | | { |
| | | string sql = $"exec h_p_JIT_UpdateDayPlanQty {HWorkBillSortInterID},'{HMasterDate}','{HQty}','{HSumWorkQty}'"; |
| | | |
| | | //æ´æ°ææ°å¢è®¢åæä¸å¤©çæäº§æ°é |
| | | oCN.RunProc(sql); |
| | | |
| | | objJsonResult.code = "1"; |
| | | objJsonResult.count = 1; |
| | | objJsonResult.Message = "æäº§æ°éä¿®æ¹æåï¼"; |
| | | objJsonResult.data = ""; |
| | | return objJsonResult; |
| | | |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "æäº§æ°éä¿®æ¹å¤±è´¥ï¼" + e.ToString(); |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | } |
| | | #endregion |
| | | |
| | | #region ç产æ¥è®¡åå¹³å° æ ¹æ®è½¦é´æ·»å æªæäº§ç产订åï¼äº¤æå夿åï¼ |
| | | [Route("JIT_DayPlanPlatFormBill/JIT_ICMOBillListByDept_Reply")] |
| | | [HttpGet] |