yusijie
2024-05-31 5b896f973c393358d1e8acc01a2f6fc67bd887ee
WebAPI/Controllers/ReportPlatFormController.cs
@@ -161,13 +161,13 @@
        #region 报工平台删除资源列表
        [Route("ReportPlatForm/DeleteGetLineBindBillList")]
        [HttpGet]
        public object DeleteGetLineBindBillList(string HSourceID)
        public object DeleteGetLineBindBillList(string HSourceID,string user)
        {
            try
            {
                oCN.BeginTran();
                //更新切换状态值
                string sql = string.Format(@"delete Gy_SourceRelationSet  where HSourceID='" + HSourceID + "'");
                string sql = string.Format(@"delete Gy_SourceRelationSet  where HSourceID='" + HSourceID + "' and HUserName = '" + user + "'");
                oCN.RunProc(sql);
                oCN.Commit();
                objJsonResult.code = "1";