| | |
| | | string uomcode = obj["uomcode"].ToString(); //单位编码 |
| | | string warehousecode = obj["warehousecode"].ToString(); //所属仓库编码 |
| | | string stocktypecode = obj["stocktypecode"].ToString(); //存货类型编码 |
| | | string materialtypecode = obj["materialtypecode"].ToString(); //物料类型编码 |
| | | string minstockqty = obj["minstockqty"].ToString(); //最小库存 |
| | | string maxstockqty = obj["maxstockqty"].ToString(); //最大库存 |
| | | string is_batchno = obj["is_batchno"].ToString(); //是否批次管理 |
| | |
| | | string is_outcheck = obj["is_outcheck"].ToString(); //是否出厂检验 |
| | | var username = HttpContext.Current.Request.Cookies["admin"].Value.ToString(); //操作人员 |
| | | string OperType = obj["OperType"].ToString(); //操作类型 |
| | | mes = ProductModelBLL.AddUpdateInventoryFile(materialid, materialcode, materialname, materialspec, uomcode, warehousecode, stocktypecode, materialtypecode, minstockqty, maxstockqty,is_batchno,is_fifo,is_incheck,is_outcheck, username, OperType); |
| | | mes = ProductModelBLL.AddUpdateInventoryFile(materialid, materialcode, materialname, materialspec, uomcode, warehousecode, stocktypecode, minstockqty, maxstockqty,is_batchno,is_fifo,is_incheck,is_outcheck, username, OperType); |
| | | return TJson.toJson(mes); |
| | | } |
| | | #endregion |