diff --git a/web/App_Code/Model/ViewModel/statistic.cs b/web/App_Code/Model/ViewModel/statistic.cs
new file mode 100644
index 0000000..aa02cec
--- /dev/null
+++ b/web/App_Code/Model/ViewModel/statistic.cs
@@ -0,0 +1,42 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+
+namespace Model.ViewModel
+{
+ ///
+ /// statistic 的摘要描述
+ ///
+ public class statistic
+ {
+ public statistic()
+ {
+ //
+ // TODO: 在這裡新增建構函式邏輯
+ //
+ }
+ public int num { get; set; }
+ public int kind { get; set; }
+
+ public string kindName { get; set; }
+ public string order_no { get; set; }
+ public string subject { get; set; }
+ public string u_name { get; set; }
+ public string pay_type { get; set; }
+ public double amount { get; set; }
+
+ public double price { get; set; }
+ public string pay_mode { get; set; }
+ public string status { get; set; }
+ public int f_num { get; set; }
+ public int acc_num { get; set; }
+ public int acc_kind { get; set; }
+ public double check_amount { get; set; }
+ public double remain_amount { get; set; }
+
+ public string check_status { get; set; }
+
+ }
+
+}
\ No newline at end of file
diff --git a/web/App_Code/api/StatisticController.cs b/web/App_Code/api/StatisticController.cs
new file mode 100644
index 0000000..b540479
--- /dev/null
+++ b/web/App_Code/api/StatisticController.cs
@@ -0,0 +1,27 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.Http;
+
+///
+/// StatisticController 的摘要描述
+///
+public class StatisticController : BaseApiController
+{
+ public StatisticController()
+ {
+ //
+ // TODO: 在這裡新增建構函式邏輯
+ //
+ }
+
+ [HttpPost]
+ [Route("api/Statistic/GetStatistic")]
+ public IHttpActionResult GetStatistic([FromBody] Model.ViewModel.statistic s)
+ {
+
+ return Ok();
+ }
+
+}
\ No newline at end of file
diff --git a/web/admin/activity/item_reg.aspx b/web/admin/activity/item_reg.aspx
index 7e8d4f9..ed86470 100644
--- a/web/admin/activity/item_reg.aspx
+++ b/web/admin/activity/item_reg.aspx
@@ -707,12 +707,12 @@
-
--%>
diff --git a/web/admin/activity/item_reg.aspx.cs b/web/admin/activity/item_reg.aspx.cs
index c9a7891..7928ed4 100644
--- a/web/admin/activity/item_reg.aspx.cs
+++ b/web/admin/activity/item_reg.aspx.cs
@@ -78,7 +78,7 @@ public partial class admin_activity_item_reg : MyWeb.config
if (prod.cycle.HasValue)
cycle.Text = prod.cycle.Value.ToString();
- customize_data.Text = prod.customize_data?.ToString();
+ //customize_data.Text = prod.customize_data?.ToString();
edit.Visible = true;
@@ -158,7 +158,7 @@ public partial class admin_activity_item_reg : MyWeb.config
actItem.extend = extend.Checked ? "Y" : "N";
actItem.is_reconcile = is_reconcile_item.Checked ? "Y" : "N";
actItem.demo = demo.Text;
- actItem.customize_data = customize_data.Text;
+ //actItem.customize_data = customize_data.Text;
actItem.sort_order = maxSort + 1;
_db.actItems.Add(actItem);
@@ -218,7 +218,7 @@ public partial class admin_activity_item_reg : MyWeb.config
actItem.extend = extend.Checked ? "Y" : "N";
actItem.is_reconcile = is_reconcile_item.Checked ? "Y" : "N";
actItem.demo = demo.Text;
- actItem.customize_data = customize_data.Text;
+ //actItem.customize_data = customize_data.Text;
_db.SaveChanges();
Model.admin_log admin_log = new Model.admin_log();
diff --git a/web/admin/activity/reg.aspx b/web/admin/activity/reg.aspx
index 94be567..056f57c 100644
--- a/web/admin/activity/reg.aspx
+++ b/web/admin/activity/reg.aspx
@@ -910,7 +910,7 @@
-
+
-
+
--%>
-
+
-
+
@@ -1011,12 +1017,7 @@
-
-
+
@@ -1043,12 +1044,12 @@
- --%>
diff --git a/web/admin/follower/reg.aspx b/web/admin/follower/reg.aspx
index 0d21b38..9a6df08 100644
--- a/web/admin/follower/reg.aspx
+++ b/web/admin/follower/reg.aspx
@@ -1597,12 +1597,12 @@
- --%>
建檔時間:
最後修改時間:
diff --git a/web/admin/follower/reg.aspx.cs b/web/admin/follower/reg.aspx.cs
index d0e2c4d..eaa6d2f 100644
--- a/web/admin/follower/reg.aspx.cs
+++ b/web/admin/follower/reg.aspx.cs
@@ -244,8 +244,21 @@ public partial class admin_follower_reg : MyWeb.config
_db.followers.Add(followers);
_db.SaveChanges();
}
+
int _id = followers.num;
+ //應該要自動將此人設為第一個親友資料,不然牌位燈打時又要再做一次
+ family_members fm=new family_members();
+ fm.follower_num = _id;
+ fm.fam_name = followers.u_name;
+ fm.fam_gender=followers.sex;
+ fm.deceased = false;
+ fm.birthdate = followers.birthday;
+
+ _db.family_members.Add(fm);
+ _db.SaveChanges();
+
+
if (_id > 0)
{
// 如果啟用 search_keywords 功能,生成並更新 search_keywords
diff --git a/web/admin/order/fastSignUp.vue b/web/admin/order/fastSignUp.vue
index d422cf8..8008d26 100644
--- a/web/admin/order/fastSignUp.vue
+++ b/web/admin/order/fastSignUp.vue
@@ -73,7 +73,7 @@
-
+
-
+
快速報名
@@ -162,7 +162,7 @@
-
+
diff --git a/web/admin/order/fastSignUp4.vue b/web/admin/order/fastSignUp4.vue
index 58e643e..11abee2 100644
--- a/web/admin/order/fastSignUp4.vue
+++ b/web/admin/order/fastSignUp4.vue
@@ -1,193 +1,193 @@
-
+
-
+
快速報名
儲存
返回
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 新增
-
-
+
+ e
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 新增
+
+
-
-
-
-
-
- {{ item.actItem_subject }}
-
-
-
-
-
- 標題
-
-
-
-
-
-
-
-
-
-
-
-
- 加入
-
-
-
-
- {{ renderContent( item.tablet.title) }}
-
-
-
-
-
-
- 陽上
-
-
-
-
-
-
-
-
-
-
-
-
- 加入
+
+
+
+
+
+ {{ item.actItem_subject }}
+
+
+
+
+
+ 標題
+
+
+
+
+
+
+
+
+
+
+
+
+ 加入
+
+
+
+
+ {{ renderContent( item.tablet.title) }}
+
+
+
+
+
+
+ 陽上
+
+
+
+
+
+
+
+
+
+
+
+
+ 加入
-
-
-
-
- {{ renderContent( item.tablet.alive) }}
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+ {{ renderContent( item.tablet.alive) }}
+
+
+
+
+
+
+
+
+
+
+
+
+