1
yangle
2024-10-09 ec5c31cfa93b3c195e4d2721ea689da6ac1e4f2e
WebAPI/Controllers/基础资料/基础资料/Gy_MaterTypeBillController.cs
@@ -868,11 +868,11 @@
        [Route("Gy_MaterType/Gy_MaterTypeTreeListByLevel")]
        [HttpGet]
        public object Gy_MaterTypeTreeListByLevel()
        public object Gy_MaterTypeTreeListByLevel(string HOrgID)
        {
            try
            {
                string sql1 = string.Format("select hitemid,hnumber,hname,hparentid,hlevel from Gy_MaterType order by hnumber");
                string sql1 = string.Format("select hitemid,hnumber,hname,hparentid,hlevel from Gy_MaterType where HUSEORGID = '" + HOrgID + "' order by hnumber");
                ds = oCN.RunProcReturn(sql1, "Gy_MaterType");