feat(product-family): link-level tags (origin_good_tags) with manual override + member detail enrichment

This commit is contained in:
yeuimu
2026-08-28 16:00:46 +08:00
parent 37b52c5ebb
commit 08201f18a4
11 changed files with 477 additions and 87 deletions
+2 -1
View File
@@ -372,8 +372,9 @@ describe('PublicService', () => {
const groups = await service.getTagGroups();
expect(groups.length).toBeGreaterThan(0);
const names = groups.map((g) => g.groupName);
// 链接级派生标签落地后,商品挂在 物流渠道/印刷工艺/印花数量 三组
expect(names).toContain('物流渠道');
expect(names).toContain('印刷位置');
expect(names).toContain('印花数量');
expect(names).toContain('印刷工艺');
// Sorted by sortOrder
const sortOrders = groups.map((g) => g.sortOrder);