Ejemplo n.º 1
0
        public ActionResult SaveForm(string keyValue, string strEntity, string strmes_ProductOrderDetailEntity)
        {
            Mes_ProductOrderHeadEntity   entity = strEntity.ToObject <Mes_ProductOrderHeadEntity>();
            Mes_ProductOrderDetailEntity mes_ProductOrderDetailEntity = strmes_ProductOrderDetailEntity.ToObject <Mes_ProductOrderDetailEntity>();

            mes_ProductOrderHeadIBLL.SaveEntity(keyValue, entity, mes_ProductOrderDetailEntity);
            return(Success("保存成功!"));
        }
Ejemplo n.º 2
0
        public ActionResult SaveForm(string keyValue, string strEntity, string strmes_ProductOrderDetailList)
        {
            Mes_ProductOrderHeadEntity          entity = strEntity.ToObject <Mes_ProductOrderHeadEntity>();
            List <Mes_ProductOrderDetailEntity> mes_ProductOrderDetailList = strmes_ProductOrderDetailList.ToObject <List <Mes_ProductOrderDetailEntity> >();

            productOrderMakeIBLL.SaveEntity(keyValue, entity, mes_ProductOrderDetailList);
            return(Success("保存成功!"));
        }