주문내역 엑셀 업로드기능에서 공백제거 추가, 주문내역에서 품목정보 생성하는 기능 추가(관리자)

This commit is contained in:
chi
2024-01-26 11:33:04 +09:00
parent 5d7945d5c9
commit d2c5ed6bd4
39 changed files with 1198 additions and 968 deletions

View File

@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호가 자동으로
// 지정되도록 할 수 있습니다.
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("24.01.24.1000")]
[assembly: AssemblyFileVersion("24.01.24.1000")]
[assembly: AssemblyVersion("24.01.26.1128")]
[assembly: AssemblyFileVersion("24.01.26.1128")]

View File

@@ -37,8 +37,8 @@ namespace Project
[DisplayName("업무일지8시간초과입력불가"),Description("업무일지 근무시간 란에 8시간을 초과 입력 할 수 없게 합니다")]
public Boolean Disable8HourOver { get; set; }
[DisplayName("원달러환율")]
public double wondoller { get; set; }
//[DisplayName("원달러환율")]
//public double wondoller { get; set; }
[Description("시작 화면")]
public eFormList startForm { get; set; }
@@ -99,7 +99,7 @@ namespace Project
public override void AfterLoad()
{
if (wondoller < 1) wondoller = 1200;
//if (wondoller < 1) wondoller = 1200;
if (Language.isEmpty()) Language = "Kor";
if (Password_Setup.isEmpty()) Password_Setup = "0000";
if (Password_User.isEmpty()) Password_User = "9999";

View File

@@ -351,7 +351,7 @@ namespace Project
{
//환율재적용 - 210711
FCOMMON.info.dollertowon = Pub.setting.wondoller;
//FCOMMON.info.dollertowon = Pub.setting.wondoller;
FCOMMON.info.NotShowJobReportview = Pub.setting.NotShowJobreportPRewView;
}