1. CR구매현황 화면에서 SID가 없는 데이터는 표시되지 않습니다.
 현재조건 : 상태값(진행,완료,완료(보고)) AND SID AND 구매요청수량>0 AND CR값 2. 구매수량 -> 구매요청 으로 글자가 변경되었습니다. (CR구매현황,파트리스트) 3. 파트리스트 글자를 부품목록 으로 변경(프로젝트목록,파트리스트) 4. 부품목록 화면 SID 컬럼 정렬기능 추가
This commit is contained in:
		| @@ -131,7 +131,8 @@ namespace FPJ0000 | ||||
|  | ||||
|             try | ||||
|             { | ||||
|                 this.taPartStatus.Fill(this.dsPRJ.ProjectPartStatus, FCOMMON.info.Login.gcode); | ||||
|                 var taPartStatus = new dsPRJTableAdapters.ProjectPartStatusTableAdapter(); | ||||
|                 taPartStatus.Fill(this.dsPRJ.ProjectPartStatus, FCOMMON.info.Login.gcode); | ||||
|                 //this.bsPart.Sort = "bbuy,bconfirm,userManager,project"; | ||||
|                 if (this.bsPart.Count > 0) this.bsPart.Position = 0; //210120 (박성민s) | ||||
|             } | ||||
| @@ -358,7 +359,8 @@ namespace FPJ0000 | ||||
|  | ||||
|             try | ||||
|             { | ||||
|                 var cnt = this.taPartStatus.Update(this.dsPRJ.ProjectPartStatus); | ||||
|                 var taPartStatus = new dsPRJTableAdapters.ProjectPartStatusTableAdapter(); | ||||
|                 var cnt = taPartStatus.Update(this.dsPRJ.ProjectPartStatus); | ||||
|                 FCOMMON.Util.MsgI(cnt.ToString() + "건의 자료가 업데이트 되었습니다."); | ||||
|                 this.dsPRJ.AcceptChanges(); | ||||
|             } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 chi
					chi