add filter & paras name

This commit is contained in:
2026-03-03 08:08:55 +08:00
parent 38291885dd
commit fbd66c308c
3 changed files with 9 additions and 2 deletions
+7
View File
@@ -27,11 +27,18 @@ class SignTodoApiService {
}) async {
// 準備傳送給 SP 的參數 Map (不含 tokenfetchProcedure 會補齊)
final Map<String, String> params = {
/* 配合 server 程式, 參數一律用 para0x 以方便排序 20260302 Michael
"sign_type": type,
"uuid": uuid,
"source_pk_value": billNo,
"sign_note": note,
"next_signer": nextSigner.isEmpty ? "*" : nextSigner, // 根據 SP 註解,空值傳 *
*/
"para01": type,
"para02": uuid,
"para03": billNo,
"para04": note,
"para05": nextSigner.isEmpty ? "*" : nextSigner, // 根據 SP 註解,空值傳 *
};
try {