This commit is contained in:
chikyun.kim
2018-12-22 19:30:02 +09:00
parent f957c5fcb1
commit 560f7d78bf
21 changed files with 1148 additions and 249 deletions

View File

@@ -1,6 +1,11 @@
181213 chi 구매등록시 필수항목 변경
181214 chi NR구매 메뉴 한글화
출력메뉴를 하단에서 상단으로 이동
웹캠기능 추가
unit 가 저장되지 않는현상제거(김효천c)
181213 chi 구매등록시 필수항목 변경
수령자는 비활성화 함
181212 chi 구매내역의 부서를 비고로 변경하고 크기를 50- >500으로 증가
181212 chi 구매내역의 부서를 비고로 변경하고 크기를 50- >500으로 증가
181210 chi NR구매등록시 이미지 표시 및 추가 기능
NR구매목록에서 권한 없는 사람이 더블클릭으로 편집할 수 있는 버그 수정
이미지 크기를 640*480 내에서 자동 조정 됨

View File

@@ -45,6 +45,7 @@ namespace Project
public string Barcode { get; set; }
public string lastid { get; set; }
public int CamIndex { get; set; }
public Setting() : this(Util.CurrentPath + "setting.xml") {}

View File

@@ -78,6 +78,7 @@ namespace Project
if (!Pub.setting.Barcode.isEmpty()) Pub.barcode.PortName = Pub.setting.Barcode;
Pub.barcode.ReceiveData += barcode_ReceiveData;
FCOMMON.info.camIndex = Pub.setting.CamIndex;
UpdateControls();
tmDisplay.Start(); //display timer
@@ -145,6 +146,7 @@ namespace Project
fSetting f = new fSetting();
if (f.ShowDialog() == DialogResult.OK)
{
FCOMMON.info.camIndex = Pub.setting.CamIndex;
Pub.setting.Save();
Pub.log.AddI("Setting Save");
Pub.log.Add(Pub.setting.ToString());