taiwan-invoice-skill 2.6.1 → 2.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/taiwan-invoice/README.md +331 -55
- package/assets/taiwan-invoice/examples/ecpay-invoice-example.py +598 -0
- package/assets/taiwan-invoice/scripts/__pycache__/core.cpython-312.pyc +0 -0
- package/assets/taiwan-invoice/scripts/__pycache__/generate-invoice-service.cpython-312.pyc +0 -0
- package/assets/taiwan-invoice/scripts/__pycache__/persist.cpython-312.pyc +0 -0
- package/assets/taiwan-invoice/scripts/__pycache__/recommend.cpython-312.pyc +0 -0
- package/assets/taiwan-invoice/scripts/__pycache__/search.cpython-312.pyc +0 -0
- package/assets/taiwan-invoice/scripts/__pycache__/test-invoice-amounts.cpython-312.pyc +0 -0
- package/assets/taiwan-invoice/scripts/error_handler.py +434 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<h1 align="center">
|
|
1
|
+
<h1 align="center">Taiwan Invoice Skill</h1>
|
|
2
2
|
|
|
3
3
|
<h3 align="center">台灣電子發票 AI 開發技能包</h3>
|
|
4
4
|
|
|
@@ -20,15 +20,90 @@
|
|
|
20
20
|
|
|
21
21
|
---
|
|
22
22
|
|
|
23
|
-
##
|
|
23
|
+
## 專案簡介
|
|
24
|
+
|
|
25
|
+
Taiwan Invoice Skill 是專為台灣電子發票整合設計的 AI 開發工具包,支援三大加值中心 (ECPay、SmilePay、Amego) 的完整 API 整合。本工具包提供企業級程式碼範例、智能搜尋引擎、錯誤處理系統與代碼生成器,協助開發團隊快速完成電子發票系統整合。
|
|
26
|
+
|
|
27
|
+
**版本:** 2.6.3
|
|
28
|
+
**狀態:** Production Ready
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## 核心特色
|
|
33
|
+
|
|
34
|
+
### 企業級程式碼標準
|
|
35
|
+
|
|
36
|
+
所有 Python 範例均達到生產環境品質:
|
|
37
|
+
|
|
38
|
+
- **完整型別定義** - Dataclass 搭配 Literal、Optional、Dict 型別提示
|
|
39
|
+
- **專業文件規範** - 詳細的 Docstring (Args/Returns/Raises/Example)
|
|
40
|
+
- **嚴謹錯誤處理** - 系統化錯誤分類與自動重試機制
|
|
41
|
+
- **實戰測試憑證** - 包含測試環境憑證,可直接執行驗證
|
|
42
|
+
|
|
43
|
+
### 生產級 Python 範例
|
|
44
|
+
|
|
45
|
+
**ecpay-invoice-example.py**
|
|
46
|
+
|
|
47
|
+
完整的 ECPay 發票整合實作:
|
|
48
|
+
|
|
49
|
+
- B2C 二聯式發票開立 (含稅金額)
|
|
50
|
+
- B2B 三聯式發票開立 (未稅金額 + 稅額)
|
|
51
|
+
- 發票作廢 (void_invoice)
|
|
52
|
+
- 發票折讓 (issue_allowance)
|
|
53
|
+
- AES-128-CBC 完整加解密實作
|
|
54
|
+
- B2B 金額自動計算 (含稅轉未稅+稅額)
|
|
55
|
+
|
|
56
|
+
### 系統化錯誤處理
|
|
57
|
+
|
|
58
|
+
**error_handler.py**
|
|
59
|
+
|
|
60
|
+
完整的錯誤處理機制與自動重試策略:
|
|
61
|
+
|
|
62
|
+
- 錯誤分類系統 (6 大類別)
|
|
63
|
+
- ECPay/SmilePay/Amego 三家錯誤碼對照
|
|
64
|
+
- 自動重試裝飾器 (指數退避策略)
|
|
65
|
+
- 4 種重試策略 (NO_RETRY/IMMEDIATE/EXPONENTIAL_BACKOFF/LINEAR_BACKOFF)
|
|
66
|
+
- 詳細錯誤建議與解決方案
|
|
67
|
+
- 完整日誌記錄系統
|
|
68
|
+
|
|
69
|
+
### BM25 智能搜尋引擎
|
|
70
|
+
|
|
71
|
+
採用 BM25 演算法的語義搜尋系統:
|
|
24
72
|
|
|
25
73
|
```bash
|
|
26
|
-
|
|
74
|
+
python scripts/search.py "10000016" --domain error
|
|
75
|
+
python scripts/search.py "CheckMacValue" --domain field
|
|
76
|
+
python scripts/search.py "B2B 稅額計算" --domain tax
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
### 智能推薦系統
|
|
80
|
+
|
|
81
|
+
基於關鍵字權重與 BM25 評分的加值中心推薦引擎:
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
python scripts/recommend.py "電商平台 高交易量 系統穩定"
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
### 自動化程式碼生成器
|
|
88
|
+
|
|
89
|
+
支援 TypeScript 與 Python 雙語言輸出:
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
python scripts/generate-invoice-service.py ECPay --output ts
|
|
93
|
+
python scripts/generate-invoice-service.py SmilePay --output py
|
|
27
94
|
```
|
|
28
95
|
|
|
29
96
|
---
|
|
30
97
|
|
|
31
|
-
##
|
|
98
|
+
## 快速開始
|
|
99
|
+
|
|
100
|
+
### 安裝
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
npm install -g taiwan-invoice-skill
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
### 初始化
|
|
32
107
|
|
|
33
108
|
```bash
|
|
34
109
|
# 進入專案目錄
|
|
@@ -43,49 +118,38 @@ taiwan-invoice init --ai antigravity # Antigravity
|
|
|
43
118
|
taiwan-invoice init --ai all # 全部安裝
|
|
44
119
|
```
|
|
45
120
|
|
|
46
|
-
|
|
47
|
-
<summary>完整平台列表</summary>
|
|
121
|
+
### 使用方式
|
|
48
122
|
|
|
49
|
-
|
|
50
|
-
taiwan-invoice init --ai kiro # Kiro (AWS)
|
|
51
|
-
taiwan-invoice init --ai codex # Codex CLI (OpenAI)
|
|
52
|
-
taiwan-invoice init --ai qoder # Qoder
|
|
53
|
-
taiwan-invoice init --ai roocode # Roo Code
|
|
54
|
-
taiwan-invoice init --ai gemini # Gemini CLI
|
|
55
|
-
taiwan-invoice init --ai trae # Trae (ByteDance)
|
|
56
|
-
taiwan-invoice init --ai opencode # OpenCode
|
|
57
|
-
taiwan-invoice init --ai continue # Continue
|
|
58
|
-
taiwan-invoice init --ai codebuddy # CodeBuddy (Tencent)
|
|
59
|
-
```
|
|
123
|
+
安裝完成後,在 AI 助手中直接使用自然語言描述需求:
|
|
60
124
|
|
|
61
|
-
|
|
125
|
+
```
|
|
126
|
+
使用綠界測試環境產生 B2C 發票開立程式碼,金額 1050 元
|
|
127
|
+
建立 SmilePay B2B 發票,未稅金額 1000 元,稅額 50 元
|
|
128
|
+
實作 Amego 發票作廢功能,發票號碼 AB12345678
|
|
129
|
+
```
|
|
62
130
|
|
|
63
131
|
---
|
|
64
132
|
|
|
65
|
-
##
|
|
133
|
+
## CLI 指令
|
|
66
134
|
|
|
67
135
|
```bash
|
|
68
|
-
|
|
69
|
-
taiwan-invoice
|
|
70
|
-
taiwan-invoice versions # 列出可用版本
|
|
71
|
-
taiwan-invoice update # 檢查更新
|
|
72
|
-
```
|
|
136
|
+
# 列出支援平台
|
|
137
|
+
taiwan-invoice list
|
|
73
138
|
|
|
74
|
-
|
|
139
|
+
# 顯示技能資訊
|
|
140
|
+
taiwan-invoice info
|
|
75
141
|
|
|
76
|
-
|
|
77
|
-
taiwan-invoice
|
|
78
|
-
taiwan-invoice init --global # 安裝到全域目錄(所有專案共用)
|
|
79
|
-
```
|
|
142
|
+
# 列出可用版本
|
|
143
|
+
taiwan-invoice versions
|
|
80
144
|
|
|
81
|
-
|
|
145
|
+
# 檢查更新
|
|
146
|
+
taiwan-invoice update
|
|
82
147
|
|
|
83
|
-
|
|
148
|
+
# 強制覆蓋安裝
|
|
149
|
+
taiwan-invoice init --force
|
|
84
150
|
|
|
85
|
-
|
|
86
|
-
taiwan-invoice init --ai
|
|
87
|
-
taiwan-invoice init --ai claude --global # ~/.claude/skills/taiwan-invoice/
|
|
88
|
-
taiwan-invoice init --ai antigravity --global # ~/.gemini/antigravity/global_skills/taiwan-invoice/
|
|
151
|
+
# 全域安裝 (所有專案共用)
|
|
152
|
+
taiwan-invoice init --ai claude --global
|
|
89
153
|
```
|
|
90
154
|
|
|
91
155
|
---
|
|
@@ -96,54 +160,266 @@ taiwan-invoice init --ai antigravity --global # ~/.gemini/antigravity/global_sk
|
|
|
96
160
|
|------|------|----------|
|
|
97
161
|
| **Claude Code** | Anthropic 官方 CLI | `/taiwan-invoice` |
|
|
98
162
|
| **Cursor** | AI 程式編輯器 | `/taiwan-invoice` |
|
|
99
|
-
| **Windsurf** | Codeium 編輯器 |
|
|
163
|
+
| **Windsurf** | Codeium 編輯器 | 自動載入 |
|
|
100
164
|
| **Copilot** | GitHub Copilot | `/taiwan-invoice` |
|
|
101
165
|
| **Antigravity** | Google AI 助手 | `/taiwan-invoice` |
|
|
102
166
|
| **Kiro** | AWS AI 助手 | `/taiwan-invoice` |
|
|
103
|
-
| **Codex** | OpenAI CLI |
|
|
104
|
-
| **Qoder** | Qodo AI 助手 |
|
|
167
|
+
| **Codex** | OpenAI CLI | 自動載入 |
|
|
168
|
+
| **Qoder** | Qodo AI 助手 | 自動載入 |
|
|
105
169
|
| **RooCode** | VSCode 擴充 | `/taiwan-invoice` |
|
|
106
|
-
| **Gemini CLI** | Google Gemini |
|
|
107
|
-
| **Trae** | ByteDance AI |
|
|
108
|
-
| **OpenCode** | 開源 AI 助手 |
|
|
109
|
-
| **Continue** | 開源 AI 助手 |
|
|
110
|
-
| **CodeBuddy** | Tencent AI |
|
|
170
|
+
| **Gemini CLI** | Google Gemini | 自動載入 |
|
|
171
|
+
| **Trae** | ByteDance AI | 自動載入 |
|
|
172
|
+
| **OpenCode** | 開源 AI 助手 | 自動載入 |
|
|
173
|
+
| **Continue** | 開源 AI 助手 | 自動載入 |
|
|
174
|
+
| **CodeBuddy** | Tencent AI | 自動載入 |
|
|
111
175
|
|
|
112
176
|
---
|
|
113
177
|
|
|
114
|
-
##
|
|
178
|
+
## 加值中心支援
|
|
115
179
|
|
|
116
|
-
| 加值中心 |
|
|
117
|
-
|
|
118
|
-
| **ECPay 綠界** | AES-128-CBC
|
|
119
|
-
| **SmilePay 速買配** | URL
|
|
120
|
-
| **Amego 光貿** | MD5
|
|
180
|
+
| 加值中心 | 加密技術 | API 風格 | 技術特點 |
|
|
181
|
+
|----------|----------|----------|----------|
|
|
182
|
+
| **ECPay 綠界** | AES-128-CBC | RESTful + Form POST | 市佔率高,文件完整 |
|
|
183
|
+
| **SmilePay 速買配** | URL Signature | RESTful JSON | 雙協定支援,整合簡單 |
|
|
184
|
+
| **Amego 光貿** | MD5 Signature | RESTful JSON (MIG 4.0) | API 設計清晰,架構現代化 |
|
|
185
|
+
|
|
186
|
+
---
|
|
187
|
+
|
|
188
|
+
## 程式碼範例
|
|
189
|
+
|
|
190
|
+
### ECPay 發票整合
|
|
191
|
+
|
|
192
|
+
```python
|
|
193
|
+
from ecpay_invoice import ECPayInvoiceService
|
|
194
|
+
|
|
195
|
+
service = ECPayInvoiceService(
|
|
196
|
+
merchant_id='2000132',
|
|
197
|
+
hash_key='ejCk326UnaZWKisg',
|
|
198
|
+
hash_iv='q9jcZX8Ib9LM8wYk',
|
|
199
|
+
is_test=True
|
|
200
|
+
)
|
|
201
|
+
|
|
202
|
+
# B2C 發票開立
|
|
203
|
+
response = service.issue_invoice(invoice_data)
|
|
204
|
+
print(f"發票號碼: {response.invoice_number}")
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
完整範例: [ecpay-invoice-example.py](examples/ecpay-invoice-example.py)
|
|
208
|
+
|
|
209
|
+
### 錯誤處理範例
|
|
210
|
+
|
|
211
|
+
```python
|
|
212
|
+
from error_handler import InvoiceErrorHandler, retry_on_error
|
|
213
|
+
|
|
214
|
+
# 方式 1: 查詢錯誤資訊
|
|
215
|
+
handler = InvoiceErrorHandler(provider='ecpay')
|
|
216
|
+
info = handler.get_error_info('10000016')
|
|
217
|
+
print(info.suggestion)
|
|
218
|
+
# 輸出: 檢查 B2C/B2B 金額計算
|
|
219
|
+
|
|
220
|
+
# 方式 2: 自動重試裝飾器
|
|
221
|
+
@retry_on_error(max_retries=3, backoff_factor=2)
|
|
222
|
+
def issue_invoice(data):
|
|
223
|
+
# 發票開立邏輯
|
|
224
|
+
# 失敗時自動重試 3 次 (1s, 2s, 4s 間隔)
|
|
225
|
+
pass
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
完整範例: [error_handler.py](scripts/error_handler.py)
|
|
121
229
|
|
|
122
230
|
---
|
|
123
231
|
|
|
124
232
|
## 智能工具
|
|
125
233
|
|
|
126
|
-
|
|
234
|
+
所有工具皆採用純 Python 實作,無需安裝外部依賴套件。
|
|
235
|
+
|
|
236
|
+
### BM25 搜尋引擎
|
|
127
237
|
|
|
128
238
|
```bash
|
|
129
|
-
#
|
|
239
|
+
# 錯誤碼查詢
|
|
130
240
|
python scripts/search.py "10000016" --domain error
|
|
131
241
|
|
|
132
|
-
#
|
|
133
|
-
python scripts/
|
|
242
|
+
# 欄位映射搜尋
|
|
243
|
+
python scripts/search.py "CheckMacValue" --domain field
|
|
134
244
|
|
|
135
|
-
#
|
|
136
|
-
python scripts/
|
|
245
|
+
# 稅務規則查詢
|
|
246
|
+
python scripts/search.py "B2B 稅額計算" --domain tax
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
支援搜尋域:
|
|
250
|
+
- `provider` - 加值中心比較
|
|
251
|
+
- `operation` - API 操作端點
|
|
252
|
+
- `error` - 錯誤碼查詢
|
|
253
|
+
- `field` - 欄位映射
|
|
254
|
+
- `tax` - 稅務規則
|
|
255
|
+
- `troubleshoot` - 疑難排解
|
|
256
|
+
|
|
257
|
+
### 加值中心推薦系統
|
|
258
|
+
|
|
259
|
+
```bash
|
|
260
|
+
# 根據需求推薦加值中心
|
|
261
|
+
python scripts/recommend.py "電商平台 高交易量 系統穩定"
|
|
262
|
+
python scripts/recommend.py "整合簡單 快速上線"
|
|
263
|
+
python scripts/recommend.py "API 設計 現代化"
|
|
264
|
+
```
|
|
265
|
+
|
|
266
|
+
### 程式碼生成器
|
|
267
|
+
|
|
268
|
+
```bash
|
|
269
|
+
# 生成 TypeScript 服務模組
|
|
270
|
+
python scripts/generate-invoice-service.py ECPay --output ts > ecpay-service.ts
|
|
271
|
+
|
|
272
|
+
# 生成 Python 服務模組
|
|
273
|
+
python scripts/generate-invoice-service.py SmilePay --output py > smilepay-service.py
|
|
274
|
+
```
|
|
275
|
+
|
|
276
|
+
---
|
|
277
|
+
|
|
278
|
+
## 功能列表
|
|
279
|
+
|
|
280
|
+
### 發票開立
|
|
281
|
+
|
|
282
|
+
- B2C 二聯式發票 (一般稅額、特種稅額)
|
|
283
|
+
- B2B 三聯式發票 (未稅金額 + 稅額)
|
|
284
|
+
- 捐贈發票 (愛心碼)
|
|
285
|
+
- 載具發票 (手機條碼、自然人憑證)
|
|
286
|
+
|
|
287
|
+
### 發票管理
|
|
288
|
+
|
|
289
|
+
- 發票作廢 (Issue Date 當日)
|
|
290
|
+
- 發票折讓 (Issue Allowance)
|
|
291
|
+
- 發票查詢 (Query Invoice)
|
|
292
|
+
- 發票通知 (Notification)
|
|
293
|
+
|
|
294
|
+
### 支援項目類型
|
|
295
|
+
|
|
296
|
+
- 一般商品
|
|
297
|
+
- 組合商品
|
|
298
|
+
- 服務項目
|
|
299
|
+
- 贈品 (零元項目)
|
|
300
|
+
|
|
301
|
+
---
|
|
302
|
+
|
|
303
|
+
## 技術規格
|
|
304
|
+
|
|
305
|
+
### 系統需求
|
|
306
|
+
|
|
307
|
+
- **Node.js**: >= 18.0.0 (CLI 工具)
|
|
308
|
+
- **Python**: >= 3.8 (範例程式與智能工具)
|
|
309
|
+
|
|
310
|
+
### Python 依賴
|
|
311
|
+
|
|
312
|
+
```bash
|
|
313
|
+
# 範例程式所需依賴
|
|
314
|
+
pip install pycryptodome requests
|
|
315
|
+
|
|
316
|
+
# 智能工具無需外部依賴 (純 Python 標準庫)
|
|
317
|
+
```
|
|
318
|
+
|
|
319
|
+
### 支援的加密方式
|
|
320
|
+
|
|
321
|
+
- **AES-128-CBC** - ECPay 電子發票
|
|
322
|
+
- **URL Signature** - SmilePay 參數簽章
|
|
323
|
+
- **MD5 Signature** - Amego MIG 4.0
|
|
324
|
+
|
|
325
|
+
---
|
|
326
|
+
|
|
327
|
+
## 專案結構
|
|
328
|
+
|
|
329
|
+
```
|
|
330
|
+
taiwan-invoice/
|
|
331
|
+
├── README.md # 本文件
|
|
332
|
+
├── SKILL.md # AI 技能文檔
|
|
333
|
+
├── EXAMPLES.md # 程式碼範例集
|
|
334
|
+
│
|
|
335
|
+
├── references/ # API 文件
|
|
336
|
+
│ ├── ecpay-api.md # ECPay API 規格
|
|
337
|
+
│ ├── smilepay-api.md # SmilePay API 規格
|
|
338
|
+
│ └── amego-api.md # Amego API 規格
|
|
339
|
+
│
|
|
340
|
+
├── examples/ # 生產級 Python 範例
|
|
341
|
+
│ └── ecpay-invoice-example.py # ECPay 完整範例 (500+ 行)
|
|
342
|
+
│
|
|
343
|
+
├── scripts/ # Python 智能工具
|
|
344
|
+
│ ├── search.py # BM25 搜尋引擎
|
|
345
|
+
│ ├── recommend.py # 加值中心推薦系統
|
|
346
|
+
│ ├── generate-invoice-service.py # 代碼生成器
|
|
347
|
+
│ └── error_handler.py # 錯誤處理系統 (300+ 行)
|
|
348
|
+
│
|
|
349
|
+
└── data/ # CSV 數據檔
|
|
350
|
+
├── providers.csv # 加值中心比較
|
|
351
|
+
├── operations.csv # API 端點定義
|
|
352
|
+
├── error-codes.csv # 錯誤碼對照表
|
|
353
|
+
├── field-mappings.csv # 欄位映射關係
|
|
354
|
+
└── tax-rules.csv # 稅務計算規則
|
|
137
355
|
```
|
|
138
356
|
|
|
139
357
|
---
|
|
140
358
|
|
|
359
|
+
## 常見問題
|
|
360
|
+
|
|
361
|
+
<details>
|
|
362
|
+
<summary><b>是否需要申請加值中心憑證?</b></summary>
|
|
363
|
+
|
|
364
|
+
是的。需向選定的加值中心申請商店代號 (Merchant ID) 與 API 金鑰 (Hash Key/IV)。三家加值中心皆提供測試環境與測試帳號供開發使用。
|
|
365
|
+
|
|
366
|
+
</details>
|
|
367
|
+
|
|
368
|
+
<details>
|
|
369
|
+
<summary><b>Python 範例程式是否可直接用於生產環境?</b></summary>
|
|
370
|
+
|
|
371
|
+
可以。所有範例程式皆為生產級品質,使用前僅需:
|
|
372
|
+
|
|
373
|
+
1. 安裝必要依賴套件:`pip install pycryptodome requests`
|
|
374
|
+
2. 將測試環境憑證替換為正式環境憑證
|
|
375
|
+
3. 依需求調整業務邏輯與錯誤處理機制
|
|
376
|
+
4. 進行完整的單元測試與整合測試
|
|
377
|
+
|
|
378
|
+
</details>
|
|
379
|
+
|
|
380
|
+
<details>
|
|
381
|
+
<summary><b>如何選擇合適的加值中心?</b></summary>
|
|
382
|
+
|
|
383
|
+
**加值中心選擇建議:**
|
|
384
|
+
|
|
385
|
+
- **ECPay 綠界**: 市佔率最高,技術文件最完整,適合需要穩定性的專案
|
|
386
|
+
- **SmilePay 速買配**: 支援雙協定,整合流程簡化,適合需要快速上線的專案
|
|
387
|
+
- **Amego 光貿**: API 設計現代化,RESTful 架構清晰,適合追求技術美感的專案
|
|
388
|
+
|
|
389
|
+
可使用本工具包提供的智能推薦系統,根據專案需求自動分析推薦。
|
|
390
|
+
|
|
391
|
+
</details>
|
|
392
|
+
|
|
393
|
+
<details>
|
|
394
|
+
<summary><b>AI 助手無法載入技能檔案?</b></summary>
|
|
395
|
+
|
|
396
|
+
**疑難排解步驟:**
|
|
397
|
+
|
|
398
|
+
1. 確認 SKILL.md 檔案存在於正確的目錄路徑
|
|
399
|
+
2. 檢查檔案開頭的 YAML frontmatter 格式是否正確
|
|
400
|
+
3. 重新啟動 AI 編碼助手應用程式
|
|
401
|
+
4. 嘗試使用 `/taiwan-invoice` 斜線命令手動觸發
|
|
402
|
+
5. 確認 AI 助手版本支援 Skills 功能
|
|
403
|
+
|
|
404
|
+
</details>
|
|
405
|
+
|
|
406
|
+
---
|
|
407
|
+
|
|
141
408
|
## 授權
|
|
142
409
|
|
|
143
410
|
[MIT License](https://github.com/Moksa1123/taiwan-ecommerce-toolkit/blob/main/LICENSE)
|
|
144
411
|
|
|
145
412
|
---
|
|
146
413
|
|
|
414
|
+
## 相關連結
|
|
415
|
+
|
|
416
|
+
- [Taiwan Payment Skill](../taiwan-payment/README.md) - 金流整合
|
|
417
|
+
- [Taiwan Logistics Skill](../taiwan-logistics/README.md) - 物流串接
|
|
418
|
+
- [NPM Package](https://www.npmjs.com/package/taiwan-invoice-skill)
|
|
419
|
+
- [GitHub Repository](https://github.com/Moksa1123/taiwan-ecommerce-toolkit)
|
|
420
|
+
|
|
421
|
+
---
|
|
422
|
+
|
|
147
423
|
<p align="center">
|
|
148
424
|
<sub>Made by <strong>Moksa</strong></sub><br>
|
|
149
425
|
<sub>service@moksaweb.com</sub>
|