trustbase-seller-backend 0.3.0 → 0.3.1
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/package.json +1 -1
- package/routes/onboard.html +29 -6
- package/routes/onboard.js +8 -4
- package/routes/sp-applyment.js +5 -3
- package/test-onboard-applyment.js +42 -4
package/package.json
CHANGED
package/routes/onboard.html
CHANGED
|
@@ -60,6 +60,9 @@ h1{font-size:22px;margin-bottom:4px}
|
|
|
60
60
|
#apply-form .afield input,#apply-form .afield select{width:100%;padding:10px 12px;border:1px solid #D4CDBF;border-radius:8px;font-size:15px;background:#fff;transition:border-color .15s,box-shadow .15s}
|
|
61
61
|
#apply-form .afield input::placeholder{color:#BDB5A6}
|
|
62
62
|
#apply-form .afield input.amanual{margin-top:6px;border-style:dashed}
|
|
63
|
+
/* 结算规则只读展示框 (按主体推导, 商户不用选; settlement_id=结算规则 ID 716/719/727,
|
|
64
|
+
qualification_type=行业类目 MCC — 两次微信实测错误交叉锁定后的正确口径) */
|
|
65
|
+
#apply-form .arule{padding:10px 12px;border:1px dashed #D4CDBF;border-radius:8px;background:#F7F3EB;color:#6B655B;font-size:14px}
|
|
63
66
|
#apply-form .afield input:focus,#apply-form .afield select:focus{outline:none;border-color:#C4633C;box-shadow:0 0 0 3px rgba(196,99,60,.15)}
|
|
64
67
|
/* 上传卡片 (结构由 mountApplyUpload 生成: 标题label + label.sbtn>input + span#st_*) */
|
|
65
68
|
#apply-form .auploads{display:grid;grid-template-columns:1fr 1fr;gap:12px 14px}
|
|
@@ -196,14 +199,15 @@ img.auprev{display:none;width:100%;max-height:140px;object-fit:cover;border-radi
|
|
|
196
199
|
<div class="afield"><label for="a_merchant_name">营业执照名称</label><input id="a_merchant_name" placeholder="全称, 与执照一致"></div>
|
|
197
200
|
<div class="afield"><label for="a_license_number">统一社会信用代码</label><input id="a_license_number" placeholder="18 位, 9 开头"></div>
|
|
198
201
|
<div class="afield"><label for="a_service_phone">客服电话</label><input id="a_service_phone" placeholder="交易记录向买家展示"></div>
|
|
199
|
-
<div class="afield"><label
|
|
202
|
+
<div class="afield"><label>结算规则 (按主体自动确定, 不用选)</label>
|
|
203
|
+
<div class="arule" id="a_settlement_rule">719 · 个体户通用(0.6% T+1)</div></div>
|
|
204
|
+
<div class="afield"><label for="a_settlement_id">行业类目 (微信 MCC 编码)</label>
|
|
200
205
|
<input id="a_settlement_filter" placeholder="搜索: 编码或名称 (如 5732 / 电子)" style="margin-bottom:6px">
|
|
201
206
|
<select id="a_settlement_id">
|
|
202
|
-
<option value=""
|
|
207
|
+
<option value="">请选择行业类目</option>
|
|
203
208
|
<option value="__MANUAL__">手动输入编码</option>
|
|
204
209
|
</select>
|
|
205
210
|
<input id="a_settlement_manual" class="amanual" placeholder="4 位 MCC 编码, 如: 5311" style="display:none"></div>
|
|
206
|
-
<div class="afield afield-full"><label for="a_qualification_type">类目资质描述 <span class="aopt">通用类目留空</span></label><input id="a_qualification_type" placeholder="通用零售/餐饮留空即可;特殊行业(医疗/教育/食品)需对应资质"></div>
|
|
207
211
|
</div>
|
|
208
212
|
</div>
|
|
209
213
|
|
|
@@ -643,7 +647,7 @@ function applyFormBody(){
|
|
|
643
647
|
var body={
|
|
644
648
|
subject_type:aval('a_subject_type'),merchant_shortname:aval('a_shortname'),merchant_name:aval('a_merchant_name'),
|
|
645
649
|
license_number:aval('a_license_number'),service_phone:aval('a_service_phone'),
|
|
646
|
-
|
|
650
|
+
qualification_type:aval('a_settlement_id'), // 行业类目 MCC (settlement_id=结算规则由后端按主体推导, 前端不发)
|
|
647
651
|
contact_name:aval('a_contact_name'),contact_mobile:aval('a_contact_mobile'),contact_email:aval('a_contact_email'),
|
|
648
652
|
legal_name:aval('a_legal_name'),legal_id_number:aval('a_legal_id_number'),
|
|
649
653
|
legal_id_period_begin:aval('a_period_begin'),legal_id_period_end:aval('a_period_end'),
|
|
@@ -782,8 +786,8 @@ async function queryApplyment(){
|
|
|
782
786
|
}
|
|
783
787
|
// F1 预填: 台账快照回填非敏感字段 + 照片 media_id 复用 (敏感字段是密文/脱敏, 需重填)
|
|
784
788
|
var PREFILL_MAP={subject_type:'a_subject_type',merchant_shortname:'a_shortname',merchant_name:'a_merchant_name',
|
|
785
|
-
license_number:'a_license_number',service_phone:'a_service_phone',
|
|
786
|
-
|
|
789
|
+
license_number:'a_license_number',service_phone:'a_service_phone',
|
|
790
|
+
contact_email:'a_contact_email',legal_name:'a_legal_name',
|
|
787
791
|
legal_id_period_begin:'a_period_begin',legal_id_period_end:'a_period_end',
|
|
788
792
|
account_type:'a_account_type',account_bank:'a_account_bank',bank_name:'a_bank_name',bank_address_code:'a_bank_address_code',
|
|
789
793
|
store_name:'a_store_name',store_address_code:'a_store_address_code',store_address:'a_store_address',
|
|
@@ -810,6 +814,16 @@ function prefillApplyForm(snap){
|
|
|
810
814
|
var e=document.getElementById(PREFILL_MAP[k]);
|
|
811
815
|
if(e&&!e.value) e.value=v;
|
|
812
816
|
}
|
|
817
|
+
// 行业类目 (MCC) 预填: 新口径 qualification_type=MCC; 旧台账曾把 MCC 误存进 settlement_id
|
|
818
|
+
// → 兼容回填 (旧值若是 4 位 MCC 而非 716/719/727, 填回"行业类目"框; 结算规则按主体重新推导)
|
|
819
|
+
var mcc=snap.qualification_type;
|
|
820
|
+
if((!mcc||mcc==='无'||mcc==='零售') && snap.settlement_id && ['716','719','727'].indexOf(String(snap.settlement_id))<0){
|
|
821
|
+
mcc=snap.settlement_id;
|
|
822
|
+
}
|
|
823
|
+
if(mcc && mcc!=='无' && String(mcc).indexOf('***')!==0){
|
|
824
|
+
var se=document.getElementById('a_settlement_id');
|
|
825
|
+
if(se&&!se.value) se.value=mcc; // 不在码表 (手填值) 时 select 置空, 商户重选/手填
|
|
826
|
+
}
|
|
813
827
|
// 照片复用: media_id 还在微信侧有效 → 槽位走"已上传"双态 (占位图+替换/删除, 无第二个空框)
|
|
814
828
|
var reused=0;
|
|
815
829
|
PREFILL_MEDIA.forEach(function(k){
|
|
@@ -971,9 +985,18 @@ async function restoreIdentity(){
|
|
|
971
985
|
// 手动输入接管 (沿用 id 移交逻辑)
|
|
972
986
|
linkSelectManual('a_settlement_id','a_settlement_manual','__MANUAL__');
|
|
973
987
|
}
|
|
988
|
+
// 结算规则只读展示 (settlement_id 按主体推导: 企业 716 / 个体户 719 / 其他组织 727; 商户不用选)
|
|
989
|
+
var SETTLE_RULES={SUBJECT_TYPE_INDIVIDUAL:'719 · 个体户通用(0.6% T+1)',
|
|
990
|
+
SUBJECT_TYPE_ENTERPRISE:'716 · 企业通用(0.6% T+1)',SUBJECT_TYPE_OTHERS:'727 · 其他组织通用(0.6% T+1)'};
|
|
991
|
+
function paintSettleRule(){
|
|
992
|
+
var el=document.getElementById('a_settlement_rule');
|
|
993
|
+
if(el&&subj) el.textContent=SETTLE_RULES[subj.value]||SETTLE_RULES.SUBJECT_TYPE_INDIVIDUAL;
|
|
994
|
+
}
|
|
995
|
+
paintSettleRule();
|
|
974
996
|
if(subj&&stl){
|
|
975
997
|
subj.addEventListener('change',function(){
|
|
976
998
|
stl.value = subj.value==='SUBJECT_TYPE_ENTERPRISE' ? '5311' : '5331';
|
|
999
|
+
paintSettleRule();
|
|
977
1000
|
// F4: 企业主体显示身份证居住地址(必填) + UBO 说明; 个体户隐藏
|
|
978
1001
|
var ent = subj.value==='SUBJECT_TYPE_ENTERPRISE';
|
|
979
1002
|
var ia=document.getElementById('afield_idaddr'); if(ia) ia.style.display=ent?'':'none';
|
package/routes/onboard.js
CHANGED
|
@@ -606,15 +606,17 @@ function createOnboardRouter(deps) {
|
|
|
606
606
|
account_name: "开户名称", account_number: "银行账号", account_bank: "开户银行",
|
|
607
607
|
store_name: "门店名称", store_address_code: "门店省市编码", store_address: "门店详细地址",
|
|
608
608
|
website_url: "网站网址", appid: "公众号/小程序 AppID",
|
|
609
|
-
service_phone: "客服电话",
|
|
609
|
+
service_phone: "客服电话", qualification_type: "行业类目 (MCC 编码)",
|
|
610
610
|
license_media_id: "营业执照照片", legal_id_front_media_id: "身份证人像面", legal_id_back_media_id: "身份证国徽面",
|
|
611
611
|
store_entrance_media_id: "门店门头照片", store_indoor_media_id: "门店内部照片",
|
|
612
612
|
web_home_media_id: "网站首页截图", web_product_media_id: "商品/服务页截图", mp_media_id: "公众号/小程序页面截图",
|
|
613
613
|
};
|
|
614
|
-
// 通用必填
|
|
614
|
+
// 通用必填 — 字段语义最终修正 (两次微信实测错误交叉锁定):
|
|
615
|
+
// settlement_id = 结算规则 ID (716/719/727, 后端按主体推导, 不依赖前端);
|
|
616
|
+
// qualification_type = 行业类目编码 MCC (表单"行业类目"下拉值, 必填 — "无"不是合法行业编码)
|
|
615
617
|
const APPLY_REQUIRED_COMMON = ["contact_name", "contact_mobile", "contact_email", "merchant_shortname", "merchant_name", "license_number",
|
|
616
618
|
"legal_name", "legal_id_number", "legal_id_period_begin", "legal_id_period_end",
|
|
617
|
-
"account_name", "account_number", "account_bank", "service_phone", "
|
|
619
|
+
"account_name", "account_number", "account_bank", "service_phone", "qualification_type"];
|
|
618
620
|
// 场景化必填 (2026-10-03 xiaomu 拍板三场景: 线下门店 / 互联网网站 / 公众号·小程序)
|
|
619
621
|
// F2 fix: WEB 场景微信端只有 web_info.domain 无 pics — 截图降为可选 (收集进台账备用, 不进微信 body)
|
|
620
622
|
const APPLY_SCENE_CFG = {
|
|
@@ -765,7 +767,9 @@ CREATE TABLE IF NOT EXISTS onboard_applyments (
|
|
|
765
767
|
}
|
|
766
768
|
payload.sales_scene = scene; // 场景必带 (SP 侧按它组装 biz_store_info/web_info/mp_info)
|
|
767
769
|
// 通用类目资质留空 → 默认 "无" (微信通用场景接受, 避免留空被 SP 拒)
|
|
768
|
-
|
|
770
|
+
// settlement_id = 结算规则 ID, 按主体推导 (商户不用选; 前端不传也兜底)
|
|
771
|
+
payload.settlement_id = payload.subject_type === "SUBJECT_TYPE_ENTERPRISE" ? "716"
|
|
772
|
+
: (payload.subject_type === "SUBJECT_TYPE_OTHERS" ? "727" : "719");
|
|
769
773
|
// M2 断点 c: tb_address 贯通 — SP 台账落列, FINISHED 后 oracle 引导金才知道发给谁
|
|
770
774
|
const identity = await ensureSellerIdentity(basePaths.baseDir());
|
|
771
775
|
payload.tb_address = identity.address;
|
package/routes/sp-applyment.js
CHANGED
|
@@ -241,9 +241,11 @@ function buildApplymentBody(form, enc, opts) {
|
|
|
241
241
|
sales_info: salesInfo,
|
|
242
242
|
},
|
|
243
243
|
settlement_info: {
|
|
244
|
-
|
|
245
|
-
//
|
|
246
|
-
qualification_type
|
|
244
|
+
// 字段语义最终修正 (两次微信实测错误交叉锁定):
|
|
245
|
+
// settlement_id = 结算规则 ID (716 企业 / 719 个体户 / 727 其他组织, 卖家侧按主体推导)
|
|
246
|
+
// qualification_type = 行业类目编码 MCC (5311 百货商店等; "无"不是合法行业编码)
|
|
247
|
+
settlement_id: reqStr(f.settlement_id, "结算规则 ID", 16),
|
|
248
|
+
qualification_type: reqStr(f.qualification_type, "行业类目编码(MCC)", 128),
|
|
247
249
|
},
|
|
248
250
|
bank_account_info: {
|
|
249
251
|
bank_account_type: f.account_type === "BANK_ACCOUNT_TYPE_PERSONAL" ? "BANK_ACCOUNT_TYPE_PERSONAL" : "BANK_ACCOUNT_TYPE_CORPORATE",
|
|
@@ -111,7 +111,7 @@ async function fillForm(base) {
|
|
|
111
111
|
account_type: "BANK_ACCOUNT_TYPE_PERSONAL",
|
|
112
112
|
account_name: "张三", account_number: PLAINTEXT.card, account_bank: "招商银行",
|
|
113
113
|
store_name: "张三餐饮店南山店", store_address_code: "440300", store_address: "南山区xx路1号",
|
|
114
|
-
service_phone: "0755-12345678",
|
|
114
|
+
service_phone: "0755-12345678", qualification_type: "5331", // 行业类目 MCC (settlement_id 结算规则由后端按主体推导)
|
|
115
115
|
...media,
|
|
116
116
|
};
|
|
117
117
|
}
|
|
@@ -291,7 +291,11 @@ test("onboard 页面含进件表单 (btn-apply-submit) 且第③步状态机元
|
|
|
291
291
|
assert.ok(html.includes("百货商店") && html.includes("就餐场所和餐馆"), "MCC 名称");
|
|
292
292
|
assert.ok(!html.includes('value="719"') && !html.includes('value="716"') && !html.includes('value="727"'), "V2 错误编码已清除");
|
|
293
293
|
assert.ok(html.includes("a_settlement_filter"), "类目搜索过滤");
|
|
294
|
-
assert.ok(html.includes("a_settlement_manual") && html.includes("__MANUAL__"), "手动输入接管保留");
|
|
294
|
+
assert.ok(html.includes("a_settlement_manual") && html.includes("__MANUAL__"), "手动输入接管保留");
|
|
295
|
+
// 2026-10-03 字段语义最终修正: 双字段 (结算规则只读展示 + 行业类目 MCC 下拉)
|
|
296
|
+
assert.ok(html.includes("a_settlement_rule"), "结算规则只读展示框");
|
|
297
|
+
assert.ok(html.includes("结算规则") && html.includes("行业类目"), "双字段标签");
|
|
298
|
+
assert.ok(!html.includes("a_qualification_type"), "旧资质描述字段已移除");
|
|
295
299
|
assert.ok(html.includes("maybeAutoKyc"), "M2: 进件受理后自动 KYC 提交");
|
|
296
300
|
assert.ok(!html.includes("btn-verify"), "手动实名按钮已删 (自动触发)");
|
|
297
301
|
} finally { srv.close(); }
|
|
@@ -341,18 +345,52 @@ test("错误提示: 缺 store_address → 中文 message + field 定位 (2026-10
|
|
|
341
345
|
} finally { srv.close(); }
|
|
342
346
|
});
|
|
343
347
|
|
|
344
|
-
test("
|
|
348
|
+
test("字段语义最终修正: settlement_id=结算规则按主体推导 + qualification_type=MCC 必填", async () => {
|
|
345
349
|
const { srv, base } = await startSeller();
|
|
346
350
|
try {
|
|
351
|
+
// 行业类目缺失 → 400 (两次微信实测: "无"不是合法行业编码)
|
|
347
352
|
const form = await fillForm(base);
|
|
348
353
|
delete form.qualification_type;
|
|
354
|
+
let r = await fetch(base + "/api/onboard/applyment", {
|
|
355
|
+
method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify(form),
|
|
356
|
+
});
|
|
357
|
+
let j = await r.json();
|
|
358
|
+
assert.strictEqual(r.status, 400);
|
|
359
|
+
assert.strictEqual(j.field, "qualification_type");
|
|
360
|
+
assert.ok(j.message.includes("行业类目"), j.message);
|
|
361
|
+
// 个体户 → settlement_id=719 (前端没传, 后端推导) + qualification_type=5331 透传
|
|
362
|
+
const before = spCapture.submits.length;
|
|
363
|
+
r = await fetch(base + "/api/onboard/applyment", {
|
|
364
|
+
method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify(form2ok(form) ),
|
|
365
|
+
});
|
|
366
|
+
function form2ok(f){ const c={...f, qualification_type:"5331"}; return c; }
|
|
367
|
+
j = await r.json();
|
|
368
|
+
assert.strictEqual(r.status, 200, JSON.stringify(j));
|
|
369
|
+
assert.strictEqual(spCapture.submits[before].settlement_id, "719", "个体户 → 结算规则 719 (后端推导)");
|
|
370
|
+
assert.strictEqual(spCapture.submits[before].qualification_type, "5331", "行业类目 MCC 透传");
|
|
371
|
+
} finally { srv.close(); }
|
|
372
|
+
});
|
|
373
|
+
|
|
374
|
+
test("字段语义: 企业主体 → settlement_id=716 + qualification_type=MCC (submit 组装断言)", async () => {
|
|
375
|
+
const { srv, base } = await startSeller();
|
|
376
|
+
try {
|
|
377
|
+
const form = await fillForm(base);
|
|
378
|
+
form.subject_type = "SUBJECT_TYPE_ENTERPRISE";
|
|
379
|
+
form.qualification_type = "5311";
|
|
380
|
+
form.legal_id_address = "广东省深圳市南山区xx路1号101室"; // 企业必填 (F4)
|
|
349
381
|
const before = spCapture.submits.length;
|
|
350
382
|
const r = await fetch(base + "/api/onboard/applyment", {
|
|
351
383
|
method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify(form),
|
|
352
384
|
});
|
|
353
385
|
const j = await r.json();
|
|
354
386
|
assert.strictEqual(r.status, 200, JSON.stringify(j));
|
|
355
|
-
|
|
387
|
+
const fwd = spCapture.submits[before];
|
|
388
|
+
assert.strictEqual(fwd.settlement_id, "716", "企业 → 结算规则 716");
|
|
389
|
+
assert.strictEqual(fwd.qualification_type, "5311", "行业类目 MCC");
|
|
390
|
+
// SP 侧组装: settlement_info 两字段正确分工
|
|
391
|
+
const wxBody = spApplymentLib.buildApplymentBody({ ...fwd, business_code: "TBTEST" }, (s) => s, { alreadyEncrypted: true });
|
|
392
|
+
assert.strictEqual(wxBody.settlement_info.settlement_id, "716");
|
|
393
|
+
assert.strictEqual(wxBody.settlement_info.qualification_type, "5311");
|
|
356
394
|
} finally { srv.close(); }
|
|
357
395
|
});
|
|
358
396
|
|