| | |
| | | return ProductModelDAL.InventoryFileAssociationRoute(partcode); |
| | | } |
| | | #endregion |
| | | |
| | | #region[存货档案关联工艺路线提交] |
| | | public static ToMessage SaveInventoryFile(string partcode,string username, List<ObjectData> json) |
| | | { |
| | | return ProductModelDAL.SaveInventoryFile(partcode, username, json); |
| | | } |
| | | #endregion |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | #region[工艺路线查询] |
| | | public static ToMessage RouteSearch(string routecode, string routename, string description, string createuser, int startNum, int endNum, string prop, string order) |
| | | { |
| | | return ProductModelDAL.RouteSearch(routecode, routename, description, createuser, startNum, endNum, prop, order); |
| | | } |
| | | #endregion |
| | | |
| | | #region[工艺路线预览] |
| | | public static ToMessage ViewRoute(string routecode) |
| | | { |
| | | return ProductModelDAL.ViewRoute(routecode); |
| | | } |
| | | #endregion |
| | | |
| | | #region[工艺路线新增] |
| | | public static ToMessage AddUpdateRoute(string id,string opertype, string username, RoutEdit json) |
| | | { |
| | | return ProductModelDAL.AddUpdateRoute(id,opertype,username, json); |
| | | } |
| | | #endregion |
| | | |
| | | #region[工艺路线删除] |
| | | public static ToMessage DeleteRoute(string routecode) |
| | | { |
| | | return ProductModelDAL.DeleteRoute(routecode); |
| | | } |
| | | #endregion |
| | | |
| | | |
| | | |
| | | #region[工序查询] |
| | | public static ToMessage StepSearch(string stepcode, string stepname, string enable,string steptypecode, string createuser, int startNum, int endNum, string prop, string order) |
| | | { |
| | | return ProductModelDAL.StepSearch(stepcode, stepname, enable, steptypecode, createuser, startNum, endNum, prop, order); |
| | | } |
| | | #endregion |
| | | |
| | | #region[工序新增编辑] |
| | | public static ToMessage AddUpdateStep(string stepid, string stepcode, string stepname, string steptypecode, string enable, string description, string username, string operType) |
| | | { |
| | | return ProductModelDAL.AddUpdateStep(stepid, stepcode, stepname, steptypecode, enable, description, username, operType); |
| | | } |
| | | #endregion |
| | | |
| | | #region[工序删除] |
| | | public static ToMessage DeleteStep(string stepcode) |
| | | { |
| | | return ProductModelDAL.DeleteStep(stepcode); |
| | | } |
| | | #endregion |
| | | |
| | | #region[工序定义关联工作站查询] |
| | | public static ToMessage StepAssociationEqp(string stepcode) |
| | | { |
| | | return ProductModelDAL.StepAssociationEqp(stepcode); |
| | | } |
| | | #endregion |
| | | |
| | | #region [工序定义关联工作站提交] |
| | | public static ToMessage SaveStepAssociationEqp(string stepcode, string username, List<ObjectData> json) |
| | | { |
| | | return ProductModelDAL.SaveStepAssociationEqp(stepcode,username,json); |
| | | } |
| | | #endregion |
| | | } |
| | | } |