yl
2024-09-05 c43a4dfbc7a80d6be6e9823cdd0e182898fc2562
VueWebCoreApi/DLL/BLL/BasicSettingBLL.cs
@@ -49,16 +49,16 @@
        #region[组织架构,查询组织信息]
        public static ToMessage STorgData(string storg_code, string storg_name)
        public static ToMessage STorgData(string storg_code, string storg_name,string torgtype_code)
        {
            return BasicSettingDAL.STorgData(storg_code, storg_name);
            return BasicSettingDAL.STorgData(storg_code, storg_name, torgtype_code);
        }
        #endregion
        #region [组织架构新增编辑]
        public static ToMessage AddUpdateOrganization(string OrganCode, string OrganName, string leve, string parent_id,string storgcode, string torg_seq, string status, string OperType, User us)
        public static ToMessage AddUpdateOrganization(string OrganCode, string OrganName, string leve, string parent_id,string storgcode,string torgtype_code, string torg_seq, string status, string OperType, User us)
        {
            return BasicSettingDAL.AddUpdateOrganization(OrganCode, OrganName, leve, parent_id, storgcode, torg_seq, status, OperType, us);
            return BasicSettingDAL.AddUpdateOrganization(OrganCode, OrganName, leve, parent_id, storgcode, torgtype_code, torg_seq, status, OperType, us);
        }
        #endregion
@@ -350,9 +350,9 @@
        #endregion
        #region[工序新增编辑]
        public static ToMessage AddUpdateStep(string stepid, string stepcode, string stepname, string steptypecode, string enable, string description, User us, string operType)
        public static ToMessage AddUpdateStep(string operType, User us, TFlw_Rteqp tflw_rteqp)
        {
            return BasicSettingDAL.AddUpdateStep(stepid,stepcode, stepname, steptypecode, enable, description, us, operType);
            return BasicSettingDAL.AddUpdateStep(operType,us, tflw_rteqp);
        }
        #endregion
@@ -363,6 +363,20 @@
        }
        #endregion
        #region[工序定义关联工作站查询]
        public static ToMessage StepAssociationEqp(string stepcode,User us)
        {
            return BasicSettingDAL.StepAssociationEqp(stepcode, us);
        }
        #endregion
        #region [工序定义关联工作站提交]
        public static ToMessage SaveStepAssociationEqp(string stepcode, User us, List<ObjectData> json)
        {
            return BasicSettingDAL.SaveStepAssociationEqp(stepcode, us, json);
        }
        #endregion
        #region[节拍工价,产品信息查询]
        public static ToMessage PartSelect()