From 68860331ce2b641486afb8a15639bfd9ef7e554f Mon Sep 17 00:00:00 2001 From: minom Date: Fri, 14 Aug 2026 15:54:52 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=BA=E4=BA=8B=E8=B3=87=E6=96=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/App_Code/Model/Model.Context.cs | 12 + web/App_Code/Model/Model.cs | 241 ++++++++++ web/App_Code/Model/Model.edmx | 660 ++++++++++++++++++++++++++ web/App_Code/Model/Model.edmx.diagram | 12 + web/admin/hrs/basic/company.aspx | 13 + web/admin/hrs/basic/company.aspx.cs | 14 + web/admin/receipt/receipt.vue | 2 +- 7 files changed, 953 insertions(+), 1 deletion(-) create mode 100644 web/admin/hrs/basic/company.aspx create mode 100644 web/admin/hrs/basic/company.aspx.cs diff --git a/web/App_Code/Model/Model.Context.cs b/web/App_Code/Model/Model.Context.cs index 072874c..efbcd6e 100644 --- a/web/App_Code/Model/Model.Context.cs +++ b/web/App_Code/Model/Model.Context.cs @@ -100,6 +100,18 @@ namespace Model public virtual DbSet receipt_style { get; set; } public virtual DbSet receipt_style_d { get; set; } public virtual DbSet pre_order { get; set; } + public virtual DbSet hr_arrange { get; set; } + public virtual DbSet hr_company { get; set; } + public virtual DbSet hr_employee { get; set; } + public virtual DbSet hr_employee_family { get; set; } + public virtual DbSet hr_employee_ins { get; set; } + public virtual DbSet hr_employee_ins_fam { get; set; } + public virtual DbSet hr_employee_job { get; set; } + public virtual DbSet hr_employee_traffic { get; set; } + public virtual DbSet hr_ins_grade { get; set; } + public virtual DbSet hr_ins_ratio { get; set; } + public virtual DbSet hr_org { get; set; } + public virtual DbSet hr_section { get; set; } public virtual int pager_eztrust(Nullable startRowIndex, Nullable pageSize, string tableName, string columnName, string sqlWhere, string orderBy, ObjectParameter rowCount) { diff --git a/web/App_Code/Model/Model.cs b/web/App_Code/Model/Model.cs index bdeefe0..f46f0f6 100644 --- a/web/App_Code/Model/Model.cs +++ b/web/App_Code/Model/Model.cs @@ -1108,6 +1108,247 @@ namespace Model using System; using System.Collections.Generic; + public partial class hr_arrange + { + public string company_id { get; set; } + public string arrange_id { get; set; } + public string name { get; set; } + public string descriptions { get; set; } + public string default_time { get; set; } + } +} +namespace Model +{ + using System; + using System.Collections.Generic; + + public partial class hr_company + { + public string company_id { get; set; } + public string name { get; set; } + public string parent_id { get; set; } + public string super_visor { get; set; } + public string contactor { get; set; } + public string web_site { get; set; } + public string tel { get; set; } + public string address { get; set; } + public string email { get; set; } + public string fax { get; set; } + public string compiled { get; set; } + public string eng_name { get; set; } + public string descriptions { get; set; } + } +} +namespace Model +{ + using System; + using System.Collections.Generic; + + public partial class hr_employee + { + public string company_id { get; set; } + public string employee_id { get; set; } + public string name { get; set; } + public string org_no { get; set; } + public string emp_type { get; set; } + public string salary_type { get; set; } + public string status { get; set; } + public string eng_name { get; set; } + public string work_email { get; set; } + public string self_email { get; set; } + public string tel { get; set; } + public string mobile { get; set; } + public string address { get; set; } + public string contactor { get; set; } + public string contactor_tel { get; set; } + public string contactor_mobile { get; set; } + public string contactor_address { get; set; } + public string contactor_email { get; set; } + public Nullable birth_day { get; set; } + public string blood { get; set; } + public Nullable height { get; set; } + public Nullable weight { get; set; } + public string marrige { get; set; } + public string sex { get; set; } + public string military { get; set; } + public string religion { get; set; } + public string political { get; set; } + public string nation { get; set; } + public string aboriginal { get; set; } + public string disability { get; set; } + public string animal { get; set; } + public string star { get; set; } + public string id_no { get; set; } + public string stay_id { get; set; } + } +} +namespace Model +{ + using System; + using System.Collections.Generic; + + public partial class hr_employee_family + { + public string company_id { get; set; } + public string employee_id { get; set; } + public string family_seq { get; set; } + public string name { get; set; } + public string relation { get; set; } + public string sex { get; set; } + public string id_no { get; set; } + public Nullable birth_day { get; set; } + public string tel { get; set; } + public string mobile { get; set; } + public string email { get; set; } + public string status { get; set; } + } +} +namespace Model +{ + using System; + using System.Collections.Generic; + + public partial class hr_employee_ins + { + public string id { get; set; } + public string company_id { get; set; } + public string employee_id { get; set; } + public string ins_type { get; set; } + public System.DateTime effective_date { get; set; } + public string effective_type { get; set; } + public string ins_grade { get; set; } + public string ins_condition { get; set; } + public string reason { get; set; } + public string descriptions { get; set; } + } +} +namespace Model +{ + using System; + using System.Collections.Generic; + + public partial class hr_employee_ins_fam + { + public string ins_id { get; set; } + public string family_seq { get; set; } + public System.DateTime effective_date { get; set; } + public string effective_type { get; set; } + public string reason { get; set; } + public string descriptions { get; set; } + public string ins_condition { get; set; } + } +} +namespace Model +{ + using System; + using System.Collections.Generic; + + public partial class hr_employee_job + { + public string company_id { get; set; } + public string employee_id { get; set; } + public string job_company { get; set; } + public string job_org { get; set; } + public string title { get; set; } + public string role_id { get; set; } + } +} +namespace Model +{ + using System; + using System.Collections.Generic; + + public partial class hr_employee_traffic + { + public string company_id { get; set; } + public string employee_id { get; set; } + public string traffic_type { get; set; } + public string license { get; set; } + public string car { get; set; } + } +} +namespace Model +{ + using System; + using System.Collections.Generic; + + public partial class hr_ins_grade + { + public string ins_type { get; set; } + public string seq_no { get; set; } + public Nullable start_amt { get; set; } + public Nullable end_amt { get; set; } + public Nullable self_pay { get; set; } + public Nullable comp_pay { get; set; } + public Nullable gov_pay { get; set; } + public Nullable ins_amt { get; set; } + public System.DateTime effective_date { get; set; } + } +} +namespace Model +{ + using System; + using System.Collections.Generic; + + public partial class hr_ins_ratio + { + public string ins_type { get; set; } + public Nullable ratio { get; set; } + public Nullable employee_ratio { get; set; } + public Nullable company_ratio { get; set; } + public Nullable gov_ratio { get; set; } + public Nullable avg_dependents { get; set; } + public string round_mode { get; set; } + public string round_precision { get; set; } + public string calc_sequence { get; set; } + public string remainder_bearer { get; set; } + public System.DateTime effective_date { get; set; } + } +} +namespace Model +{ + using System; + using System.Collections.Generic; + + public partial class hr_org + { + public string company_id { get; set; } + public string org_no { get; set; } + public string name { get; set; } + public string parent_no { get; set; } + public string charge_role { get; set; } + public string eng_name { get; set; } + public string descriptions { get; set; } + public string status { get; set; } + public string org_type { get; set; } + } +} +namespace Model +{ + using System; + using System.Collections.Generic; + + public partial class hr_section + { + public string company_id { get; set; } + public string section_id { get; set; } + public string name { get; set; } + public string start_time { get; set; } + public string end_time { get; set; } + public string start_buffer { get; set; } + public string end_buffer { get; set; } + public string launch_rest_start { get; set; } + public string launch_rest_end { get; set; } + public string dinner_rest_start { get; set; } + public string dinner_rest_end { get; set; } + public Nullable work_time { get; set; } + } +} +namespace Model +{ + using System; + using System.Collections.Generic; + public partial class item { public int num { get; set; } diff --git a/web/App_Code/Model/Model.edmx b/web/App_Code/Model/Model.edmx index e3caff7..61685d5 100644 --- a/web/App_Code/Model/Model.edmx +++ b/web/App_Code/Model/Model.edmx @@ -556,6 +556,227 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2251,6 +2472,18 @@ + + + + + + + + + + + + @@ -4709,6 +4942,18 @@ + + + + + + + + + + + + @@ -5544,6 +5789,216 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -6699,6 +7154,211 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/App_Code/Model/Model.edmx.diagram b/web/App_Code/Model/Model.edmx.diagram index bdc415a..99ea8c3 100644 --- a/web/App_Code/Model/Model.edmx.diagram +++ b/web/App_Code/Model/Model.edmx.diagram @@ -170,6 +170,18 @@ + + + + + + + + + + + + diff --git a/web/admin/hrs/basic/company.aspx b/web/admin/hrs/basic/company.aspx new file mode 100644 index 0000000..d058ca6 --- /dev/null +++ b/web/admin/hrs/basic/company.aspx @@ -0,0 +1,13 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/admin/Templates/TBS5ADM001/MasterPage.master" AutoEventWireup="true" CodeFile="company.aspx.cs" Inherits="admin_hrs_basic_company" %> + + + + + + + + + + + + diff --git a/web/admin/hrs/basic/company.aspx.cs b/web/admin/hrs/basic/company.aspx.cs new file mode 100644 index 0000000..0011015 --- /dev/null +++ b/web/admin/hrs/basic/company.aspx.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +public partial class admin_hrs_basic_company : System.Web.UI.Page +{ + protected void Page_Load(object sender, EventArgs e) + { + + } +} \ No newline at end of file diff --git a/web/admin/receipt/receipt.vue b/web/admin/receipt/receipt.vue index 91c327f..076c31a 100644 --- a/web/admin/receipt/receipt.vue +++ b/web/admin/receipt/receipt.vue @@ -3,7 +3,7 @@
-

收款收據開立作業

+

收據基本資料