| | |
| | | #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"; |