휴가 승인자 정보 추적

This commit is contained in:
chi
2024-05-08 14:53:55 +09:00
parent 7eb2dbd2cd
commit e4f8981491
201 changed files with 1355 additions and 3219 deletions

View File

@@ -1,4 +1,5 @@
using FarPoint.Win;
using FCOMMON;
using System;
using System.Collections.Generic;
using System.ComponentModel;
@@ -10,7 +11,7 @@ using System.Windows.Forms;
namespace FPJ0000.JobReport_
{
public partial class K5Dailyform : Form
public partial class K5Dailyform : fBase
{
Boolean binit = false;
public K5Dailyform()
@@ -23,6 +24,7 @@ namespace FPJ0000.JobReport_
private void rJobReport_Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
this.tbProcess.Items.Clear();
tbProcess.Items.Add("--전체--");

View File

@@ -1,4 +1,5 @@
using FarPoint.Win;
using FCOMMON;
using System;
using System.Collections.Generic;
using System.ComponentModel;
@@ -10,7 +11,7 @@ using System.Windows.Forms;
namespace FPJ0000.JobReport_
{
public partial class fJobChartMenu : Form
public partial class fJobChartMenu : fBase
{
Boolean binit = false;
@@ -28,6 +29,7 @@ namespace FPJ0000.JobReport_
}
private void fJobChartMenu_Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
this.tbProcess.Items.Clear();
tbProcess.Items.Add("--전체--");

View File

@@ -90,6 +90,7 @@ namespace FPJ0000
}
private void __Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
this.dtSD.Text = DateTime.Now.ToString("yyyy-MM-01");
var sdate = DateTime.Parse(dtSD.Text);
this.dtED.Text = sdate.AddMonths(1).AddDays(-1).ToShortDateString();

View File

@@ -30,7 +30,7 @@ namespace FPJ0000
private void __Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
//공정목록
var taProc = new dsReportTableAdapters.ProcessListTableAdapter();

View File

@@ -1,4 +1,5 @@
using System;
using FCOMMON;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
@@ -9,7 +10,7 @@ using System.Windows.Forms;
namespace FPJ0000.JobReport_
{
public partial class fJobReportImport : Form
public partial class fJobReportImport : fBase
{
DataTable dt = new dsPRJ.JobReportDataTable();
DataTable dtExcel = new DataTable();
@@ -21,8 +22,7 @@ namespace FPJ0000.JobReport_
private void __Load(object sender, EventArgs e)
{
//this.sd.Value = DateTime.Parse(DateTime.Now.Year.ToString("0000") + "-01-01");
//this.ed.Value = DateTime.Now;
EnsureVisibleAndUsableSize();
//담당자목록

View File

@@ -1,4 +1,5 @@
using System;
using FCOMMON;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
@@ -10,7 +11,7 @@ using System.Windows.Forms;
namespace FPJ0000.JobReport_
{
public partial class fJobReport_Add : Form
public partial class fJobReport_Add : fBase
{
dsPRJ.JobReportRow dr;
Boolean copyMOde = false;
@@ -73,6 +74,7 @@ namespace FPJ0000.JobReport_
}
private void fJobReport_Add_Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
//사용자목록
this.bs.DataSource = dr;
this.dateTimePicker1.CustomFormat = "yyyy-MM-dd HH:mm.ss";

View File

@@ -1,4 +1,5 @@
using System;
using FCOMMON;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
@@ -9,7 +10,7 @@ using System.Windows.Forms;
namespace FPJ0000.JobReport_
{
public partial class fJobReport_AddAI : Form
public partial class fJobReport_AddAI : fBase
{
dsPRJ.EETGW_JobReport_AutoInputRow dr;
Boolean copyMOde = false;
@@ -61,6 +62,7 @@ namespace FPJ0000.JobReport_
private void fJobReport_Add_Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
//사용자목록
this.bs.DataSource = dr;

View File

@@ -1,4 +1,5 @@
using System;
using FCOMMON;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
@@ -9,7 +10,7 @@ using System.Windows.Forms;
namespace FPJ0000.JobReport_
{
public partial class fLovProject : Form
public partial class fLovProject : fBase
{
public string Title { get; set; }
public int Index { get; set; }
@@ -31,8 +32,8 @@ namespace FPJ0000.JobReport_
private void fLovItem_Load(object sender, EventArgs e)
{
//search data
// var dt = this.ta.GetSearch(this.keyword);
EnsureVisibleAndUsableSize();
// var dt = this.ta.GetSearch(this.keyword);
this.taPrj.FillSearch(this.dsMSSQL.Projects,this.keyword,FCOMMON.info.Login.gcode);
this.taJob.FillSearch(this.dsQuery.JobReportItemList, this.keyword, FCOMMON.info.Login.gcode);

View File

@@ -1,4 +1,5 @@
using System;
using FCOMMON;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
@@ -10,7 +11,7 @@ using System.Windows.Forms;
namespace FPJ0000.JobReport_
{
public partial class fProjectConnect : Form
public partial class fProjectConnect : fBase
{
public fProjectConnect(string sd, string ed)
{
@@ -20,8 +21,9 @@ namespace FPJ0000.JobReport_
}
private void fProjectConnect_Load(object sender, EventArgs e)
{
RefreshList();
{
EnsureVisibleAndUsableSize();
RefreshList();
}
void RefreshList()

View File

@@ -1,4 +1,5 @@
using System;
using FCOMMON;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
@@ -10,7 +11,7 @@ using System.Windows.Forms;
namespace FPJ0000.JobReport_
{
public partial class fSelectProcess : Form
public partial class fSelectProcess : fBase
{
public List<string> values = new List<string>();
public fSelectProcess(string[] list)
@@ -21,7 +22,7 @@ namespace FPJ0000.JobReport_
private void fSelectProcess_Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
//공정목록
var taProc = new dsReportTableAdapters.ProcessListTableAdapter();
var dtProcList = taProc.GetData(FCOMMON.info.Login.gcode);

View File

@@ -1,4 +1,5 @@
using System;
using FCOMMON;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
@@ -9,7 +10,7 @@ using System.Windows.Forms;
namespace FPJ0000.JobReport_
{
public partial class rJobChart : Form
public partial class rJobChart : fBase
{
public rJobChart(string uid,string sdate, string edate)
{
@@ -22,6 +23,7 @@ namespace FPJ0000.JobReport_
private void rJobReport_Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
this.Show();
Application.DoEvents();

View File

@@ -1,4 +1,5 @@
using System;
using FCOMMON;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
@@ -9,7 +10,7 @@ using System.Windows.Forms;
namespace FPJ0000.JobReport_
{
public partial class rJobReport : Form
public partial class rJobReport : fBase
{
public rJobReport()
{
@@ -19,6 +20,7 @@ namespace FPJ0000.JobReport_
private void rJobReport_Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
this.tbProcess.Items.Clear();
tbProcess.Items.Add("전체");
var taProcess = new dsReportTableAdapters.ProcessListTableAdapter();

View File

@@ -1,4 +1,5 @@
using System;
using FCOMMON;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
@@ -9,7 +10,7 @@ using System.Windows.Forms;
namespace FPJ0000.JobReport_
{
public partial class rJobReportDay : Form
public partial class rJobReportDay : fBase
{
// Boolean binit = false;
public rJobReportDay(string baseday )
@@ -23,6 +24,7 @@ namespace FPJ0000.JobReport_
private void rJobReport_Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
this.tbProcess.Items.Clear();
tbProcess.Items.Add("전체");
var taProcess = new dsReportTableAdapters.ProcessListTableAdapter();

View File

@@ -1,4 +1,5 @@
using System;
using FCOMMON;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
@@ -9,7 +10,7 @@ using System.Windows.Forms;
namespace FPJ0000.JobReport_
{
public partial class rJobReportOT : Form
public partial class rJobReportOT : fBase
{
public rJobReportOT()
{
@@ -18,8 +19,9 @@ namespace FPJ0000.JobReport_
}
private void rJobReport_Load(object sender, EventArgs e)
{
this.tbProcess.Items.Clear();
{
EnsureVisibleAndUsableSize();
this.tbProcess.Items.Clear();
tbProcess.Items.Add("전체");
var taProcess = new dsReportTableAdapters.ProcessListTableAdapter();
var dtProcessList = taProcess.GetData(FCOMMON.info.Login.gcode);

View File

@@ -1,4 +1,5 @@
using System;
using FCOMMON;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
@@ -9,7 +10,7 @@ using System.Windows.Forms;
namespace FPJ0000.JobReport_
{
public partial class rJobReportPrj : Form
public partial class rJobReportPrj : fBase
{
Boolean binit = false;
public rJobReportPrj(string baseday)
@@ -23,6 +24,7 @@ namespace FPJ0000.JobReport_
private void rJobReport_Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
this.tbProcess.Items.Clear();
tbProcess.Items.Add("--전체--");
var taProcess = new dsReportTableAdapters.ProcessListTableAdapter();

View File

@@ -1,4 +1,5 @@
using System;
using FCOMMON;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
@@ -9,7 +10,7 @@ using System.Windows.Forms;
namespace FPJ0000.JobReport_
{
public partial class rJobReportPrjSche : Form
public partial class rJobReportPrjSche : fBase
{
Boolean binit = false;
public rJobReportPrjSche()
@@ -20,6 +21,7 @@ namespace FPJ0000.JobReport_
private void rJobReport_Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
var myCI = new System.Globalization.CultureInfo("ko-KR");
var myCal = myCI.Calendar;

View File

@@ -1,4 +1,5 @@
using NetOffice.OutlookApi;
using FCOMMON;
using NetOffice.OutlookApi;
using System;
using System.Collections.Generic;
using System.ComponentModel;
@@ -10,7 +11,7 @@ using System.Windows.Forms;
namespace FPJ0000.JobReport_
{
public partial class rJobReportType : Form
public partial class rJobReportType : fBase
{
Boolean binit = false;
public rJobReportType()
@@ -24,6 +25,7 @@ namespace FPJ0000.JobReport_
private void rJobReport_Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
this.tbProcess.Items.Clear();
tbProcess.Items.Add("--전체--");
var taProcess = new dsReportTableAdapters.ProcessListTableAdapter();

View File

@@ -1,4 +1,5 @@
using FarPoint.Win;
using FCOMMON;
using System;
using System.Collections.Generic;
using System.ComponentModel;
@@ -10,7 +11,7 @@ using System.Windows.Forms;
namespace FPJ0000.JobReport_
{
public partial class rJobReportUser : Form
public partial class rJobReportUser : fBase
{
Boolean binit = false;
public rJobReportUser()
@@ -23,7 +24,7 @@ namespace FPJ0000.JobReport_
private void rJobReport_Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
this.fpSpread1_Sheet2.AddSelection(2, 3, 4, 3);
// fpSpread1_Sheet2.Columns[1, 0].AllowAutoSort = true;
//this.fpSpread1_Sheet2.ColumnHeader.AutoTextIndex = 1;

View File

@@ -1,4 +1,5 @@
using Microsoft.Reporting.WinForms;
using FCOMMON;
using Microsoft.Reporting.WinForms;
using System;
using System.Collections.Generic;
using System.ComponentModel;
@@ -10,7 +11,7 @@ using System.Windows.Forms;
namespace FPJ0000.JobReport_
{
public partial class rK5Dailyform : Form
public partial class rK5Dailyform : fBase
{
public rK5Dailyform()
{
@@ -20,6 +21,7 @@ namespace FPJ0000.JobReport_
private void rJobReport_Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
this.dtSD.Text = DateTime.Now.AddDays(-7).ToString("yyyy-MM-01");
this.dtED.Text = DateTime.Parse(dtSD.Text).AddMonths(1).AddDays(-1).ToString("yyyy-MM-dd");
this.Show();