Files
thinkyu/branches/1150807/DOC/講師個人費用彙整表.md
T
sryang 577060bc78 chore: 首次簽入 Thinkyu ASP.NET 專案
- 加入 Visual Studio / ASP.NET .gitignore
- 排除建置輸出、IDE 設定、NuGet packages、大型 MSI 安裝檔
2026-09-10 09:42:37 +08:00

36 lines
1.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 講師個人費用彙整表
這是用來彙整講師個人費用的查詢與報表
## 查詢畫面
畫面:~\Forms\領據系統\財稅作業與領據關帳.aspx 裡面的 "Tab 0: 個人費用彙整表"
Script~\Scripts\財稅作業與領據關帳.js
### 查詢條件輸入
- 起日 (日期輸入)
- 迄日 (日期輸入)
- 身分別 (下拉,選項來源:GetDropdownLists("身分別"))
- 付款方式 (下拉,選項來源:GetDropdownLists("付款方式"))
- 查詢按鈕 呼叫 SearchSummaryTable,輸出方式="DATA"
- 匯出按鈕 呼叫 SearchSummaryTable,輸出方式="EXPORT"
### 查詢結果
- 領款人姓名 (講師/非講師姓名)
- 身分證字號
- 堂數 (數量 + 單位)
- 扣繳類別
- 帳戶名
- 付款金額
- 匯款帳號
- 銀行分行代碼
- 銀行分行
## 後端服務
~/Services/領據處理.asmx
- GetDropdownLists(類別):取得下拉清單選項
- SearchSummaryTable(DateTime? 起日, DateTime? 迄日, string 身分別, string 付款方式, string 輸出方式)
- 查詢講師個人費用彙整表資料
- 輸出方式:DATA=查詢結果資料 / EXPORT=匯出Excel
- 實際 SQL 我自己寫,DATA 輸出會符合查詢結果的畫面欄位
- 匯出我自己寫