1. 입고화면의 구매담당/승인 필터 추가 및 합계금액 추가
2. 구매목록의 담당/승인자 목록이 공용코드 기반에서 실데이터 기반으로 변경되었습니다.
This commit is contained in:
		| @@ -51,6 +51,14 @@ namespace FEQ0000 | ||||
|                     ctl.KeyDown += ctl_KeyDown; | ||||
|                 } | ||||
|             } | ||||
|  | ||||
|             //필수로 | ||||
|             if(FCOMMON.info.Login.gcode == "K4PM") | ||||
|             { | ||||
|                 tbCostCenter.BackColor = Color.FromArgb(255, 255, 192); | ||||
|                 tbLineCode.BackColor = Color.FromArgb(255, 255, 192); | ||||
|                 tbManager.BackColor = Color.FromArgb(255, 255, 192); | ||||
|             } | ||||
|         } | ||||
|  | ||||
|         Boolean advInput = false; | ||||
| @@ -546,6 +554,28 @@ namespace FEQ0000 | ||||
|             } | ||||
|  | ||||
|  | ||||
|             if (FCOMMON.info.Login.gcode == "K4PM") | ||||
|             { | ||||
|                 if(tbCostCenter.Text.isEmpty()) | ||||
|                 { | ||||
|                     FCOMMON.Util.MsgE("CostCenter 를 입력하세요"); | ||||
|                     tbCostCenter.Focus(); | ||||
|                     return false; | ||||
|                 } | ||||
|                 if (tbLineCode.Text.isEmpty()) | ||||
|                 { | ||||
|                     FCOMMON.Util.MsgE("LineCode 를 입력하세요"); | ||||
|                     tbLineCode.Focus(); | ||||
|                     return false; | ||||
|                 } | ||||
|                 if (tbManager.Text.isEmpty()) | ||||
|                 { | ||||
|                     FCOMMON.Util.MsgE("구매담당자 를 입력하세요"); | ||||
|                     tbManager.Focus(); | ||||
|                     return false; | ||||
|                 } | ||||
|             } | ||||
|  | ||||
|  | ||||
|             //if (cbProcess.Text.Trim() == "") | ||||
|             //{ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 chi
					chi