Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1000b489a0 | |||
| 72fef35807 | |||
| f570383717 | |||
| fe557c912d | |||
| 77e9917a18 | |||
| 44bfbe0bef |
@@ -8,8 +8,11 @@ export type StoreCreateForm = {
|
|||||||
city?: string;
|
city?: string;
|
||||||
district: string;
|
district: string;
|
||||||
districtCode?: string;
|
districtCode?: string;
|
||||||
|
/** @deprecated 使用 categoryIds */
|
||||||
categoryParentId?: string;
|
categoryParentId?: string;
|
||||||
categoryId: string;
|
/** @deprecated 使用 categoryIds */
|
||||||
|
categoryId?: string;
|
||||||
|
categoryIds: string[];
|
||||||
name: string;
|
name: string;
|
||||||
phone: string;
|
phone: string;
|
||||||
address: string;
|
address: string;
|
||||||
@@ -52,7 +55,7 @@ export function validateStoreCreateStep1(
|
|||||||
| 'partnerAccountId'
|
| 'partnerAccountId'
|
||||||
| 'cityId'
|
| 'cityId'
|
||||||
| 'regionCodes'
|
| 'regionCodes'
|
||||||
| 'categoryId'
|
| 'categoryIds'
|
||||||
| 'name'
|
| 'name'
|
||||||
| 'phone'
|
| 'phone'
|
||||||
| 'address'
|
| 'address'
|
||||||
@@ -69,7 +72,7 @@ export function validateStoreCreateStep1(
|
|||||||
if (!form.partnerAccountId) return '请选择开城合伙人';
|
if (!form.partnerAccountId) return '请选择开城合伙人';
|
||||||
if (!form.regionCodes || form.regionCodes.length < 3) return '请选择省 / 市 / 区县';
|
if (!form.regionCodes || form.regionCodes.length < 3) return '请选择省 / 市 / 区县';
|
||||||
if (!form.cityId) return '所选地区未匹配到开城城市,请先在「开城 → 城市」配置对应区划';
|
if (!form.cityId) return '所选地区未匹配到开城城市,请先在「开城 → 城市」配置对应区划';
|
||||||
if (!form.categoryId?.trim()) return '请选择门店分类(细类)';
|
if (!form.categoryIds?.length) return '请至少选择一个门店分类(细类)';
|
||||||
if (!form.name?.trim()) return '请填写门店名称';
|
if (!form.name?.trim()) return '请填写门店名称';
|
||||||
if (!form.phone?.trim()) return '请填写门店手机号';
|
if (!form.phone?.trim()) return '请填写门店手机号';
|
||||||
if (!PHONE_RE.test(form.phone.trim())) return '门店手机号须为11位手机号';
|
if (!PHONE_RE.test(form.phone.trim())) return '门店手机号须为11位手机号';
|
||||||
|
|||||||
@@ -224,6 +224,7 @@ type StoreRow = {
|
|||||||
settlementRate?: number;
|
settlementRate?: number;
|
||||||
sortOrder?: number;
|
sortOrder?: number;
|
||||||
category?: { id: string; name: string; parentId?: string | null } | null;
|
category?: { id: string; name: string; parentId?: string | null } | null;
|
||||||
|
categories?: { id: string; name: string; parentId?: string | null }[] | null;
|
||||||
};
|
};
|
||||||
|
|
||||||
type PartnerOption = { id: string; companyName?: string | null; name?: string | null; phone?: string | null };
|
type PartnerOption = { id: string; companyName?: string | null; name?: string | null; phone?: string | null };
|
||||||
@@ -350,29 +351,17 @@ export default function StoresPage() {
|
|||||||
const selectedPartnerId = Form.useWatch('partnerAccountId', createForm);
|
const selectedPartnerId = Form.useWatch('partnerAccountId', createForm);
|
||||||
const selectedRegionCodes = Form.useWatch('regionCodes', createForm);
|
const selectedRegionCodes = Form.useWatch('regionCodes', createForm);
|
||||||
const selectedCityId = Form.useWatch('cityId', createForm);
|
const selectedCityId = Form.useWatch('cityId', createForm);
|
||||||
const selectedCategoryParentId = Form.useWatch('categoryParentId', createForm);
|
const categoryLeafOptions = useMemo(() => {
|
||||||
const editCategoryParentId = Form.useWatch('categoryParentId', editForm);
|
const options: { value: string; label: string }[] = [];
|
||||||
|
for (const parent of categoryTree) {
|
||||||
const categoryParentOptions = useMemo(
|
if (parent.status === 'INACTIVE') continue;
|
||||||
() =>
|
for (const child of parent.children ?? []) {
|
||||||
categoryTree
|
if (child.status === 'INACTIVE') continue;
|
||||||
.filter((n) => n.status !== 'INACTIVE')
|
options.push({ value: child.id, label: `${parent.name} / ${child.name}` });
|
||||||
.map((n) => ({ value: n.id, label: n.name })),
|
}
|
||||||
[categoryTree],
|
}
|
||||||
);
|
return options;
|
||||||
const categoryChildOptions = useMemo(() => {
|
}, [categoryTree]);
|
||||||
const parent = categoryTree.find((n) => n.id === selectedCategoryParentId);
|
|
||||||
return (parent?.children ?? [])
|
|
||||||
.filter((n) => n.status !== 'INACTIVE')
|
|
||||||
.map((n) => ({ value: n.id, label: n.name }));
|
|
||||||
}, [categoryTree, selectedCategoryParentId]);
|
|
||||||
|
|
||||||
const editCategoryChildOptions = useMemo(() => {
|
|
||||||
const parent = categoryTree.find((n) => n.id === editCategoryParentId);
|
|
||||||
return (parent?.children ?? [])
|
|
||||||
.filter((n) => n.status !== 'INACTIVE')
|
|
||||||
.map((n) => ({ value: n.id, label: n.name }));
|
|
||||||
}, [categoryTree, editCategoryParentId]);
|
|
||||||
|
|
||||||
async function deleteStore(id: string) {
|
async function deleteStore(id: string) {
|
||||||
setDeleting(true);
|
setDeleting(true);
|
||||||
@@ -414,20 +403,14 @@ export default function StoresPage() {
|
|||||||
bankBranch?: string | null;
|
bankBranch?: string | null;
|
||||||
})
|
})
|
||||||
: null;
|
: null;
|
||||||
const categoryId = category?.id != null ? String(category.id) : undefined;
|
const categories = Array.isArray(d.categories)
|
||||||
let parentId = category?.parentId != null ? String(category.parentId) : undefined;
|
? (d.categories as { id?: string }[])
|
||||||
if (!parentId && categoryId) {
|
: [];
|
||||||
for (const parent of cats) {
|
const categoryIds = categories.length
|
||||||
if (parent.id === categoryId) {
|
? categories.map((c) => String(c.id)).filter(Boolean)
|
||||||
parentId = parent.id;
|
: category?.id != null
|
||||||
break;
|
? [String(category.id)]
|
||||||
}
|
: [];
|
||||||
if ((parent.children ?? []).some((c) => c.id === categoryId)) {
|
|
||||||
parentId = parent.id;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
const loginPhone =
|
const loginPhone =
|
||||||
(typeof d.loginPhone === 'string' && d.loginPhone) ||
|
(typeof d.loginPhone === 'string' && d.loginPhone) ||
|
||||||
account?.phone ||
|
account?.phone ||
|
||||||
@@ -466,8 +449,7 @@ export default function StoresPage() {
|
|||||||
city: d.cityName,
|
city: d.cityName,
|
||||||
district: d.district,
|
district: d.district,
|
||||||
address: d.address,
|
address: d.address,
|
||||||
categoryParentId: parentId,
|
categoryIds,
|
||||||
categoryId,
|
|
||||||
latitude: d.latitude != null ? Number(d.latitude) : undefined,
|
latitude: d.latitude != null ? Number(d.latitude) : undefined,
|
||||||
longitude: d.longitude != null ? Number(d.longitude) : undefined,
|
longitude: d.longitude != null ? Number(d.longitude) : undefined,
|
||||||
settlementRate: d.settlementRate != null ? Number(d.settlementRate) * 100 : 60,
|
settlementRate: d.settlementRate != null ? Number(d.settlementRate) * 100 : 60,
|
||||||
@@ -530,7 +512,7 @@ export default function StoresPage() {
|
|||||||
!/^null$/i.test(v.benefitUsageRule.trim())
|
!/^null$/i.test(v.benefitUsageRule.trim())
|
||||||
? v.benefitUsageRule.trim()
|
? v.benefitUsageRule.trim()
|
||||||
: null,
|
: null,
|
||||||
categoryId: v.categoryId,
|
categoryIds: v.categoryIds,
|
||||||
province: v.province,
|
province: v.province,
|
||||||
city: v.city,
|
city: v.city,
|
||||||
district: v.district,
|
district: v.district,
|
||||||
@@ -661,8 +643,7 @@ export default function StoresPage() {
|
|||||||
'partnerAccountId',
|
'partnerAccountId',
|
||||||
'regionCodes',
|
'regionCodes',
|
||||||
'cityId',
|
'cityId',
|
||||||
'categoryParentId',
|
'categoryIds',
|
||||||
'categoryId',
|
|
||||||
'name',
|
'name',
|
||||||
'phone',
|
'phone',
|
||||||
'address',
|
'address',
|
||||||
@@ -691,7 +672,7 @@ export default function StoresPage() {
|
|||||||
body: JSON.stringify({
|
body: JSON.stringify({
|
||||||
partnerAccountId: values.partnerAccountId,
|
partnerAccountId: values.partnerAccountId,
|
||||||
cityId: values.cityId,
|
cityId: values.cityId,
|
||||||
categoryId: values.categoryId,
|
categoryIds: values.categoryIds,
|
||||||
province: values.province,
|
province: values.province,
|
||||||
city: values.city,
|
city: values.city,
|
||||||
name: values.name.trim(),
|
name: values.name.trim(),
|
||||||
@@ -769,8 +750,14 @@ export default function StoresPage() {
|
|||||||
{
|
{
|
||||||
key: 'category',
|
key: 'category',
|
||||||
title: '分类',
|
title: '分类',
|
||||||
width: 100,
|
width: 140,
|
||||||
render: (_, row) => row.category?.name || '—',
|
render: (_, row) => {
|
||||||
|
const cats = Array.isArray(row.categories)
|
||||||
|
? row.categories.map((c: { name?: string }) => c.name).filter(Boolean)
|
||||||
|
: [];
|
||||||
|
if (cats.length) return cats.join('、');
|
||||||
|
return row.category?.name || '—';
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{ key: 'cityName', title: '城市', dataIndex: 'cityName', width: 80 },
|
{ key: 'cityName', title: '城市', dataIndex: 'cityName', width: 80 },
|
||||||
{ key: 'phone', title: '登录号', dataIndex: 'phone', width: 120 },
|
{ key: 'phone', title: '登录号', dataIndex: 'phone', width: 120 },
|
||||||
@@ -1156,29 +1143,17 @@ export default function StoresPage() {
|
|||||||
<Input placeholder="手机号或座机,如 0379-8888888" />
|
<Input placeholder="手机号或座机,如 0379-8888888" />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
<Form.Item
|
<Form.Item
|
||||||
name="categoryParentId"
|
name="categoryIds"
|
||||||
label="门店分类(大类)"
|
label="门店分类(细类,可多选)"
|
||||||
rules={[{ required: true, message: '请选择门店大类' }]}
|
rules={[{ required: true, message: '请至少选择一个门店细类' }]}
|
||||||
>
|
>
|
||||||
<Select
|
<Select
|
||||||
|
mode="multiple"
|
||||||
showSearch
|
showSearch
|
||||||
loading={optionsLoading}
|
loading={optionsLoading}
|
||||||
optionFilterProp="label"
|
optionFilterProp="label"
|
||||||
options={categoryParentOptions}
|
placeholder="选择细类,可多选"
|
||||||
onChange={() => editForm.setFieldValue('categoryId', undefined)}
|
options={categoryLeafOptions}
|
||||||
/>
|
|
||||||
</Form.Item>
|
|
||||||
<Form.Item
|
|
||||||
name="categoryId"
|
|
||||||
label="门店分类(细类)"
|
|
||||||
rules={[{ required: true, message: '请选择门店细类' }]}
|
|
||||||
>
|
|
||||||
<Select
|
|
||||||
showSearch
|
|
||||||
optionFilterProp="label"
|
|
||||||
placeholder={editCategoryParentId ? '选择细类' : '请先选大类'}
|
|
||||||
disabled={!editCategoryParentId}
|
|
||||||
options={editCategoryChildOptions}
|
|
||||||
/>
|
/>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
<Form.Item name="coverUrl" label="封面图 / 门头照">
|
<Form.Item name="coverUrl" label="封面图 / 门头照">
|
||||||
@@ -1457,23 +1432,9 @@ export default function StoresPage() {
|
|||||||
<Form.Item name="district" hidden><Input /></Form.Item>
|
<Form.Item name="district" hidden><Input /></Form.Item>
|
||||||
<Form.Item name="districtCode" hidden><Input /></Form.Item>
|
<Form.Item name="districtCode" hidden><Input /></Form.Item>
|
||||||
<Form.Item
|
<Form.Item
|
||||||
name="categoryParentId"
|
name="categoryIds"
|
||||||
label="门店分类(大类)"
|
label="门店分类(细类,可多选)"
|
||||||
rules={[{ required: true, message: '请选择门店大类' }]}
|
rules={[{ required: true, message: '请至少选择一个门店细类' }]}
|
||||||
>
|
|
||||||
<Select
|
|
||||||
showSearch
|
|
||||||
loading={optionsLoading}
|
|
||||||
optionFilterProp="label"
|
|
||||||
placeholder={optionsLoading ? '加载中…' : '选择大类'}
|
|
||||||
options={categoryParentOptions}
|
|
||||||
onChange={() => createForm.setFieldValue('categoryId', undefined)}
|
|
||||||
/>
|
|
||||||
</Form.Item>
|
|
||||||
<Form.Item
|
|
||||||
name="categoryId"
|
|
||||||
label="门店分类(细类)"
|
|
||||||
rules={[{ required: true, message: '请选择门店细类' }]}
|
|
||||||
extra={
|
extra={
|
||||||
<Typography.Link onClick={() => navigate('/store-categories')}>
|
<Typography.Link onClick={() => navigate('/store-categories')}>
|
||||||
去配置门店分类
|
去配置门店分类
|
||||||
@@ -1481,11 +1442,12 @@ export default function StoresPage() {
|
|||||||
}
|
}
|
||||||
>
|
>
|
||||||
<Select
|
<Select
|
||||||
|
mode="multiple"
|
||||||
showSearch
|
showSearch
|
||||||
|
loading={optionsLoading}
|
||||||
optionFilterProp="label"
|
optionFilterProp="label"
|
||||||
placeholder={selectedCategoryParentId ? '选择细类' : '请先选大类'}
|
placeholder={optionsLoading ? '加载中…' : '选择细类,可多选'}
|
||||||
disabled={!selectedCategoryParentId}
|
options={categoryLeafOptions}
|
||||||
options={categoryChildOptions}
|
|
||||||
/>
|
/>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
<Form.Item name="name" label="门店名称" rules={[{ required: true, message: '请填写门店名称' }]}>
|
<Form.Item name="name" label="门店名称" rules={[{ required: true, message: '请填写门店名称' }]}>
|
||||||
|
|||||||
@@ -25,7 +25,10 @@ export type StoreDraftForm = {
|
|||||||
/** 人均费用(选填) */
|
/** 人均费用(选填) */
|
||||||
avgPrice: string;
|
avgPrice: string;
|
||||||
categoryParentId: string;
|
categoryParentId: string;
|
||||||
|
/** @deprecated 使用 categoryIds */
|
||||||
categoryId: string;
|
categoryId: string;
|
||||||
|
/** 二级分类多选 */
|
||||||
|
categoryIds: string[];
|
||||||
intro: string;
|
intro: string;
|
||||||
/** 好客权益券使用规则 */
|
/** 好客权益券使用规则 */
|
||||||
benefitUsageRule: string;
|
benefitUsageRule: string;
|
||||||
@@ -68,6 +71,7 @@ export const defaultStoreForm = (): StoreDraftForm => ({
|
|||||||
avgPrice: '',
|
avgPrice: '',
|
||||||
categoryParentId: '',
|
categoryParentId: '',
|
||||||
categoryId: '',
|
categoryId: '',
|
||||||
|
categoryIds: [],
|
||||||
intro: '',
|
intro: '',
|
||||||
benefitUsageRule: '',
|
benefitUsageRule: '',
|
||||||
coverUrl: '',
|
coverUrl: '',
|
||||||
@@ -122,6 +126,20 @@ export function normalizeStoreDraftForm(raw: Partial<StoreDraftForm> | null | un
|
|||||||
openTime2: String(raw.openTime2 ?? base.openTime2),
|
openTime2: String(raw.openTime2 ?? base.openTime2),
|
||||||
closeTime2: String(raw.closeTime2 ?? base.closeTime2),
|
closeTime2: String(raw.closeTime2 ?? base.closeTime2),
|
||||||
avgPrice: String(raw.avgPrice ?? base.avgPrice),
|
avgPrice: String(raw.avgPrice ?? base.avgPrice),
|
||||||
|
categoryIds: (() => {
|
||||||
|
if (Array.isArray(raw.categoryIds) && raw.categoryIds.length) {
|
||||||
|
return raw.categoryIds.map(String).filter(Boolean);
|
||||||
|
}
|
||||||
|
const legacy = String(raw.categoryId ?? '').trim();
|
||||||
|
return legacy ? [legacy] : base.categoryIds;
|
||||||
|
})(),
|
||||||
|
categoryId: (() => {
|
||||||
|
const ids = Array.isArray(raw.categoryIds) && raw.categoryIds.length
|
||||||
|
? raw.categoryIds.map(String).filter(Boolean)
|
||||||
|
: [];
|
||||||
|
if (ids.length) return ids[0];
|
||||||
|
return String(raw.categoryId ?? base.categoryId);
|
||||||
|
})(),
|
||||||
envPhotoUrls: normalizeStringArray(raw.envPhotoUrls, MIN_ENV_PHOTO_COUNT),
|
envPhotoUrls: normalizeStringArray(raw.envPhotoUrls, MIN_ENV_PHOTO_COUNT),
|
||||||
// 兼容旧草稿:单个 contractUrl 迁移为数组
|
// 兼容旧草稿:单个 contractUrl 迁移为数组
|
||||||
contractUrls: (() => {
|
contractUrls: (() => {
|
||||||
@@ -201,7 +219,7 @@ export function validateStoreStep1(
|
|||||||
| 'openTime2'
|
| 'openTime2'
|
||||||
| 'closeTime2'
|
| 'closeTime2'
|
||||||
| 'avgPrice'
|
| 'avgPrice'
|
||||||
| 'categoryId'
|
| 'categoryIds'
|
||||||
| 'intro'
|
| 'intro'
|
||||||
| 'benefitUsageRule'
|
| 'benefitUsageRule'
|
||||||
>,
|
>,
|
||||||
@@ -233,7 +251,7 @@ export function validateStoreStep1(
|
|||||||
const n = Number(form.avgPrice);
|
const n = Number(form.avgPrice);
|
||||||
if (Number.isNaN(n) || n < 0) return '人均费用须为非负数字';
|
if (Number.isNaN(n) || n < 0) return '人均费用须为非负数字';
|
||||||
}
|
}
|
||||||
if (!form.categoryId.trim()) return '请选择店铺类型';
|
if (!form.categoryIds?.length) return '请至少选择一个店铺类型';
|
||||||
if (form.intro.trim()) {
|
if (form.intro.trim()) {
|
||||||
const len = form.intro.trim().length;
|
const len = form.intro.trim().length;
|
||||||
if (len < 2 || len > 500) return '门店简介须为 2~500 字';
|
if (len < 2 || len > 500) return '门店简介须为 2~500 字';
|
||||||
|
|||||||
@@ -206,9 +206,9 @@ export default function StoreCreatePage() {
|
|||||||
.then((list) => {
|
.then((list) => {
|
||||||
const tree = Array.isArray(list) ? list : [];
|
const tree = Array.isArray(list) ? list : [];
|
||||||
setCategoryTree(tree);
|
setCategoryTree(tree);
|
||||||
if (form.categoryId && !form.categoryParentId) {
|
if (form.categoryIds.length && !form.categoryParentId) {
|
||||||
const parent = tree.find((root) =>
|
const parent = tree.find((root) =>
|
||||||
(root.children ?? []).some((child) => child.id === form.categoryId),
|
(root.children ?? []).some((child) => form.categoryIds.includes(child.id)),
|
||||||
);
|
);
|
||||||
if (parent) patchForm({ categoryParentId: parent.id });
|
if (parent) patchForm({ categoryParentId: parent.id });
|
||||||
}
|
}
|
||||||
@@ -216,12 +216,6 @@ export default function StoreCreatePage() {
|
|||||||
.catch(() => setCategoryTree([]));
|
.catch(() => setCategoryTree([]));
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
const categoryChildren = useMemo(() => {
|
|
||||||
const parent = categoryTree.find((item) => item.id === form.categoryParentId);
|
|
||||||
return Array.isArray(parent?.children) ? parent!.children! : [];
|
|
||||||
}, [categoryTree, form.categoryParentId]);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
|
||||||
@@ -523,7 +517,8 @@ export default function StoreCreatePage() {
|
|||||||
|
|
||||||
...(form.avgPrice.trim() ? { avgPrice: Number(form.avgPrice) } : {}),
|
...(form.avgPrice.trim() ? { avgPrice: Number(form.avgPrice) } : {}),
|
||||||
|
|
||||||
categoryId: form.categoryId.trim(),
|
categoryIds: form.categoryIds,
|
||||||
|
categoryId: form.categoryIds[0] || form.categoryId.trim(),
|
||||||
|
|
||||||
intro: form.intro.trim() || undefined,
|
intro: form.intro.trim() || undefined,
|
||||||
benefitUsageRule: form.benefitUsageRule.trim() || undefined,
|
benefitUsageRule: form.benefitUsageRule.trim() || undefined,
|
||||||
@@ -690,56 +685,40 @@ export default function StoreCreatePage() {
|
|||||||
|
|
||||||
<div className="partner-field">
|
<div className="partner-field">
|
||||||
|
|
||||||
<label>店铺类型 <span className="text-primary">*</span></label>
|
<label>店铺类型 <span className="text-primary">*</span> <span className="label-md text-muted">(可多选)</span></label>
|
||||||
|
|
||||||
<div className="partner-input-row" style={{ gap: 8 }}>
|
|
||||||
|
|
||||||
<select
|
|
||||||
|
|
||||||
className="partner-field-input partner-field-input--block"
|
|
||||||
|
|
||||||
value={form.categoryParentId}
|
|
||||||
|
|
||||||
onChange={(e) => patchForm({ categoryParentId: e.target.value, categoryId: '' })}
|
|
||||||
|
|
||||||
aria-label="一级店铺类型"
|
|
||||||
|
|
||||||
>
|
|
||||||
|
|
||||||
<option value="">选择大类</option>
|
|
||||||
|
|
||||||
{categoryTree.map((item) => (
|
|
||||||
|
|
||||||
<option key={item.id} value={item.id}>{item.name}</option>
|
|
||||||
|
|
||||||
))}
|
|
||||||
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select
|
|
||||||
|
|
||||||
className="partner-field-input partner-field-input--block"
|
|
||||||
|
|
||||||
value={form.categoryId}
|
|
||||||
|
|
||||||
onChange={(e) => patchForm({ categoryId: e.target.value })}
|
|
||||||
|
|
||||||
disabled={!form.categoryParentId}
|
|
||||||
|
|
||||||
aria-label="二级店铺类型"
|
|
||||||
|
|
||||||
>
|
|
||||||
|
|
||||||
<option value="">{form.categoryParentId ? '选择细类' : '请先选大类'}</option>
|
|
||||||
|
|
||||||
{categoryChildren.map((item) => (
|
|
||||||
|
|
||||||
<option key={item.id} value={item.id}>{item.name}</option>
|
|
||||||
|
|
||||||
))}
|
|
||||||
|
|
||||||
</select>
|
|
||||||
|
|
||||||
|
<div className="partner-category-multi">
|
||||||
|
{categoryTree.map((parent) => (
|
||||||
|
<div key={parent.id} className="partner-category-group">
|
||||||
|
<div className="partner-category-group-title">{parent.name}</div>
|
||||||
|
<div className="partner-category-options">
|
||||||
|
{(parent.children ?? []).map((child) => {
|
||||||
|
const checked = form.categoryIds.includes(child.id);
|
||||||
|
return (
|
||||||
|
<label key={child.id} className="partner-category-option">
|
||||||
|
<input
|
||||||
|
type="checkbox"
|
||||||
|
checked={checked}
|
||||||
|
onChange={() => {
|
||||||
|
const next = checked
|
||||||
|
? form.categoryIds.filter((id) => id !== child.id)
|
||||||
|
: [...form.categoryIds, child.id];
|
||||||
|
patchForm({
|
||||||
|
categoryIds: next,
|
||||||
|
categoryId: next[0] ?? '',
|
||||||
|
categoryParentId: next.length
|
||||||
|
? parent.id
|
||||||
|
: form.categoryParentId,
|
||||||
|
});
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<span>{child.name}</span>
|
||||||
|
</label>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@dukang/mini-user",
|
"name": "@dukang/mini-user",
|
||||||
"version": "4.0.4",
|
"version": "4.0.10",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "杜康好客 · C 端用户微信小程序(Taro)",
|
"description": "杜康好客 · C 端用户微信小程序(Taro)",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ export function storeCategoryTags(
|
|||||||
tags?: unknown;
|
tags?: unknown;
|
||||||
categoryId?: string | null;
|
categoryId?: string | null;
|
||||||
category?: StoreCategoryLike | null;
|
category?: StoreCategoryLike | null;
|
||||||
|
categories?: StoreCategoryLike[] | null;
|
||||||
},
|
},
|
||||||
tree: StoreCategoryTreeNode[] = [],
|
tree: StoreCategoryTreeNode[] = [],
|
||||||
): string[] {
|
): string[] {
|
||||||
@@ -30,24 +31,125 @@ export function storeCategoryTags(
|
|||||||
: [];
|
: [];
|
||||||
if (fromJson.length) return fromJson;
|
if (fromJson.length) return fromJson;
|
||||||
|
|
||||||
const names: string[] = [];
|
const multi = Array.isArray(store.categories) ? store.categories : [];
|
||||||
const childName = String(store.category?.name || '').trim();
|
if (multi.length) {
|
||||||
const parentName = String(store.category?.parent?.name || '').trim();
|
return groupCategoryTags(multi, tree);
|
||||||
if (parentName) names.push(parentName);
|
}
|
||||||
if (childName && childName !== parentName) names.push(childName);
|
|
||||||
|
|
||||||
const storeCatId = String(store.categoryId || store.category?.id || '');
|
if (store.category || store.categoryId) {
|
||||||
const storeParentId = String(store.category?.parentId || '');
|
const grouped = groupCategoryTags(
|
||||||
for (const root of tree) {
|
store.category ? [store.category] : [],
|
||||||
if (root.id === storeParentId || root.id === storeCatId) {
|
tree,
|
||||||
if (root.name && !names.includes(root.name)) names.unshift(root.name);
|
store.categoryId,
|
||||||
}
|
);
|
||||||
for (const child of root.children ?? []) {
|
if (grouped.length) return grouped;
|
||||||
if (child.id === storeCatId) {
|
}
|
||||||
if (root.name && !names.includes(root.name)) names.unshift(root.name);
|
|
||||||
if (child.name && !names.includes(child.name)) names.push(child.name);
|
const storeCatId = String(store.categoryId || '');
|
||||||
|
if (storeCatId) {
|
||||||
|
for (const root of tree) {
|
||||||
|
for (const child of root.children ?? []) {
|
||||||
|
if (child.id === storeCatId) {
|
||||||
|
return [`${root.name}|${child.name}`];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return names;
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 按大类分组:餐饮|火锅·江浙菜、娱乐|KTV */
|
||||||
|
function groupCategoryTags(
|
||||||
|
categories: StoreCategoryLike[],
|
||||||
|
tree: StoreCategoryTreeNode[] = [],
|
||||||
|
fallbackCategoryId?: string | null,
|
||||||
|
): string[] {
|
||||||
|
if (!categories.length && fallbackCategoryId) {
|
||||||
|
return groupCategoryTags([{ id: String(fallbackCategoryId) }], tree);
|
||||||
|
}
|
||||||
|
|
||||||
|
const groups = new Map<string, { parentName: string; children: string[] }>();
|
||||||
|
const order: string[] = [];
|
||||||
|
|
||||||
|
for (const cat of categories) {
|
||||||
|
const resolved = resolveCategoryParts(cat, tree);
|
||||||
|
if (!resolved) continue;
|
||||||
|
const { parentKey, parentName, childName } = resolved;
|
||||||
|
if (!groups.has(parentKey)) {
|
||||||
|
groups.set(parentKey, { parentName, children: [] });
|
||||||
|
order.push(parentKey);
|
||||||
|
}
|
||||||
|
const group = groups.get(parentKey)!;
|
||||||
|
if (childName && childName !== parentName && !group.children.includes(childName)) {
|
||||||
|
group.children.push(childName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return order
|
||||||
|
.map((key) => {
|
||||||
|
const group = groups.get(key)!;
|
||||||
|
if (group.parentName && group.children.length) {
|
||||||
|
return `${group.parentName}|${group.children.join('·')}`;
|
||||||
|
}
|
||||||
|
if (group.children.length) return group.children.join('·');
|
||||||
|
return group.parentName;
|
||||||
|
})
|
||||||
|
.filter(Boolean);
|
||||||
|
}
|
||||||
|
|
||||||
|
function resolveCategoryParts(
|
||||||
|
cat: StoreCategoryLike,
|
||||||
|
tree: StoreCategoryTreeNode[] = [],
|
||||||
|
): { parentKey: string; parentName: string; childName: string } | null {
|
||||||
|
const childName = String(cat.name || '').trim();
|
||||||
|
let parentName = String(cat.parent?.name || '').trim();
|
||||||
|
const catId = String(cat.id || '');
|
||||||
|
const parentId = String(cat.parentId || '');
|
||||||
|
|
||||||
|
if (!parentName && (parentId || catId)) {
|
||||||
|
for (const root of tree) {
|
||||||
|
if (parentId && root.id === parentId) {
|
||||||
|
parentName = root.name;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
for (const child of root.children ?? []) {
|
||||||
|
if (catId && child.id === catId) {
|
||||||
|
parentName = root.name;
|
||||||
|
if (!childName) return { parentKey: root.id, parentName, childName: child.name };
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!childName && !parentName) return null;
|
||||||
|
|
||||||
|
const parentKey = parentId || parentName || catId;
|
||||||
|
if (!parentName && catId) {
|
||||||
|
for (const root of tree) {
|
||||||
|
for (const child of root.children ?? []) {
|
||||||
|
if (child.id === catId) {
|
||||||
|
return { parentKey: root.id, parentName: root.name, childName: child.name };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
parentKey,
|
||||||
|
parentName: parentName || childName,
|
||||||
|
childName: childName || parentName,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export function storeLeafCategoryIds(store: {
|
||||||
|
categoryId?: string | null;
|
||||||
|
category?: StoreCategoryLike | null;
|
||||||
|
categories?: StoreCategoryLike[] | null;
|
||||||
|
}): string[] {
|
||||||
|
if (Array.isArray(store.categories) && store.categories.length) {
|
||||||
|
return store.categories.map((c) => String(c.id || '')).filter(Boolean);
|
||||||
|
}
|
||||||
|
const id = String(store.categoryId || store.category?.id || '');
|
||||||
|
return id ? [id] : [];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ type StoresSession = {
|
|||||||
cache: StoresListCache | null;
|
cache: StoresListCache | null;
|
||||||
};
|
};
|
||||||
|
|
||||||
const STORAGE_KEY = 'dukang_stores_session_v2';
|
const STORAGE_KEY = 'dukang_stores_session_v3';
|
||||||
|
|
||||||
let memory: StoresSession | null = null;
|
let memory: StoresSession | null = null;
|
||||||
|
|
||||||
|
|||||||
@@ -79,6 +79,12 @@ type Store = {
|
|||||||
parentId?: string | null;
|
parentId?: string | null;
|
||||||
parent?: { name?: string } | null;
|
parent?: { name?: string } | null;
|
||||||
} | null;
|
} | null;
|
||||||
|
categories?: {
|
||||||
|
id?: string;
|
||||||
|
name?: string;
|
||||||
|
parentId?: string | null;
|
||||||
|
parent?: { name?: string } | null;
|
||||||
|
}[] | null;
|
||||||
};
|
};
|
||||||
|
|
||||||
type RecentRedeem = {
|
type RecentRedeem = {
|
||||||
@@ -406,12 +412,15 @@ export default function StoreDetailPage() {
|
|||||||
|
|
||||||
<View className="store-detail-title-row">
|
<View className="store-detail-title-row">
|
||||||
<Text className="store-detail-name">{store.name}</Text>
|
<Text className="store-detail-name">{store.name}</Text>
|
||||||
{storeCategoryTags(store, categoryTree).map((tag) => (
|
|
||||||
<Text key={tag} className="store-detail-tag">
|
|
||||||
{tag}
|
|
||||||
</Text>
|
|
||||||
))}
|
|
||||||
</View>
|
</View>
|
||||||
|
{(() => {
|
||||||
|
const categoryLabels = storeCategoryTags(store, categoryTree);
|
||||||
|
return categoryLabels.length ? (
|
||||||
|
<View className="store-detail-tags-row">
|
||||||
|
<Text className="store-detail-category-line">{categoryLabels.join('、')}</Text>
|
||||||
|
</View>
|
||||||
|
) : null;
|
||||||
|
})()}
|
||||||
<View className="store-detail-rating-row">
|
<View className="store-detail-rating-row">
|
||||||
<View className="store-detail-stars">
|
<View className="store-detail-stars">
|
||||||
{[1, 2, 3, 4, 5].map((n) => (
|
{[1, 2, 3, 4, 5].map((n) => (
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ import {
|
|||||||
toWeappShareTimeline,
|
toWeappShareTimeline,
|
||||||
} from '../../lib/wechat-share';
|
} from '../../lib/wechat-share';
|
||||||
import BenefitSloganBar from '../../components/BenefitSloganBar';
|
import BenefitSloganBar from '../../components/BenefitSloganBar';
|
||||||
import { storeCategoryTags, storeStarCount } from '../../lib/store-display';
|
import { storeCategoryTags, storeLeafCategoryIds, storeStarCount } from '../../lib/store-display';
|
||||||
import openBadgeImg from '../../assets/icons/store-open-badge.png';
|
import openBadgeImg from '../../assets/icons/store-open-badge.png';
|
||||||
|
|
||||||
type Store = {
|
type Store = {
|
||||||
@@ -66,6 +66,12 @@ type Store = {
|
|||||||
parentId?: string | null;
|
parentId?: string | null;
|
||||||
parent?: { name?: string } | null;
|
parent?: { name?: string } | null;
|
||||||
} | null;
|
} | null;
|
||||||
|
categories?: {
|
||||||
|
id?: string;
|
||||||
|
name?: string;
|
||||||
|
parentId?: string | null;
|
||||||
|
parent?: { name?: string } | null;
|
||||||
|
}[] | null;
|
||||||
tags?: unknown;
|
tags?: unknown;
|
||||||
rating?: number | string | null;
|
rating?: number | string | null;
|
||||||
latitude?: number | string | null;
|
latitude?: number | string | null;
|
||||||
@@ -288,14 +294,21 @@ export default function StoresPage() {
|
|||||||
|
|
||||||
function matchesCategory(store: Store): boolean {
|
function matchesCategory(store: Store): boolean {
|
||||||
if (!category.parentId) return true;
|
if (!category.parentId) return true;
|
||||||
const storeCatId = String(store.categoryId || store.category?.id || '');
|
const leafIds = storeLeafCategoryIds(store);
|
||||||
const storeParentId = String(store.category?.parentId || '');
|
const parentIds = new Set<string>();
|
||||||
if (category.childId) {
|
if (Array.isArray(store.categories)) {
|
||||||
return storeCatId === category.childId;
|
for (const cat of store.categories) {
|
||||||
|
if (cat.parentId) parentIds.add(String(cat.parentId));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (storeParentId && storeParentId === category.parentId) return true;
|
const legacyParent = String(store.category?.parentId || '');
|
||||||
|
if (legacyParent) parentIds.add(legacyParent);
|
||||||
|
if (category.childId) {
|
||||||
|
return leafIds.includes(category.childId);
|
||||||
|
}
|
||||||
|
if ([...parentIds].some((id) => id === category.parentId)) return true;
|
||||||
const siblings = childIdsByParent.get(category.parentId) ?? [];
|
const siblings = childIdsByParent.get(category.parentId) ?? [];
|
||||||
return siblings.includes(storeCatId);
|
return leafIds.some((id) => siblings.includes(id));
|
||||||
}
|
}
|
||||||
|
|
||||||
const filtered = useMemo(() => {
|
const filtered = useMemo(() => {
|
||||||
@@ -461,14 +474,10 @@ export default function StoresPage() {
|
|||||||
<Text className="store-card-name">{s.name}</Text>
|
<Text className="store-card-name">{s.name}</Text>
|
||||||
</View>
|
</View>
|
||||||
{(() => {
|
{(() => {
|
||||||
const tags = storeCategoryTags(s, categoryTree);
|
const categoryLabels = storeCategoryTags(s, categoryTree);
|
||||||
return tags.length ? (
|
return categoryLabels.length ? (
|
||||||
<View className="store-card-tags">
|
<View className="store-card-category-wrap">
|
||||||
{tags.map((tag) => (
|
<Text className="store-card-category-text">{categoryLabels.join('、')}</Text>
|
||||||
<Text key={tag} className="store-card-tag">
|
|
||||||
{tag}
|
|
||||||
</Text>
|
|
||||||
))}
|
|
||||||
</View>
|
</View>
|
||||||
) : null;
|
) : null;
|
||||||
})()}
|
})()}
|
||||||
|
|||||||
@@ -100,6 +100,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.store-detail-title-row {
|
.store-detail-title-row {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.store-detail-tags-row {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -107,6 +113,20 @@
|
|||||||
margin-bottom: 8px;
|
margin-bottom: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.store-detail-category-line {
|
||||||
|
display: inline-block;
|
||||||
|
max-width: 100%;
|
||||||
|
padding: 2px 8px;
|
||||||
|
border-radius: 6px;
|
||||||
|
background: rgba(166, 29, 36, 0.1);
|
||||||
|
box-sizing: border-box;
|
||||||
|
font-size: 11px;
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: 16px;
|
||||||
|
color: var(--color-heritage-red);
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
.store-detail-name {
|
.store-detail-name {
|
||||||
font-family: var(--font-headline);
|
font-family: var(--font-headline);
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
|
|||||||
@@ -215,13 +215,32 @@
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.store-card-category-wrap {
|
||||||
|
align-self: flex-start;
|
||||||
|
max-width: 100%;
|
||||||
|
padding: 0 6px;
|
||||||
|
border-radius: 4px;
|
||||||
|
background: rgba(166, 29, 36, 0.1);
|
||||||
|
box-sizing: border-box;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.store-card-category-text {
|
||||||
|
font-size: 10px;
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: 14px;
|
||||||
|
color: var(--color-heritage-red);
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
.store-card-tags {
|
.store-card-tags {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: nowrap;
|
flex-wrap: wrap;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 4px;
|
gap: 4px;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
overflow: hidden;
|
margin-top: 2px;
|
||||||
|
margin-bottom: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.store-card-tag {
|
.store-card-tag {
|
||||||
|
|||||||
@@ -0,0 +1,21 @@
|
|||||||
|
-- 门店多分类关联表(v4.0.9+)
|
||||||
|
-- 执行:mysql ... < migrate-store-category-link.sql
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS store_category_link (
|
||||||
|
id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||||
|
store_id BIGINT UNSIGNED NOT NULL,
|
||||||
|
category_id BIGINT UNSIGNED NOT NULL,
|
||||||
|
priority INT NOT NULL DEFAULT 0,
|
||||||
|
created_at DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
|
||||||
|
PRIMARY KEY (id),
|
||||||
|
UNIQUE KEY uk_store_category_link (store_id, category_id),
|
||||||
|
KEY idx_store_category_link_category (category_id),
|
||||||
|
CONSTRAINT fk_store_category_link_store FOREIGN KEY (store_id) REFERENCES store_store(id) ON DELETE CASCADE,
|
||||||
|
CONSTRAINT fk_store_category_link_category FOREIGN KEY (category_id) REFERENCES common_store_category(id) ON DELETE CASCADE
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||||
|
|
||||||
|
-- 从现有主分类回填
|
||||||
|
INSERT IGNORE INTO store_category_link (store_id, category_id, priority)
|
||||||
|
SELECT id, category_id, 0
|
||||||
|
FROM store_store
|
||||||
|
WHERE category_id IS NOT NULL;
|
||||||
@@ -1000,12 +1000,29 @@ model CommonStoreCategory {
|
|||||||
parent CommonStoreCategory? @relation("StoreCategoryTree", fields: [parentId], references: [id], onDelete: Restrict)
|
parent CommonStoreCategory? @relation("StoreCategoryTree", fields: [parentId], references: [id], onDelete: Restrict)
|
||||||
children CommonStoreCategory[] @relation("StoreCategoryTree")
|
children CommonStoreCategory[] @relation("StoreCategoryTree")
|
||||||
stores Store[]
|
stores Store[]
|
||||||
|
storeLinks StoreCategoryLink[]
|
||||||
|
|
||||||
@@index([parentId, sort])
|
@@index([parentId, sort])
|
||||||
@@index([status])
|
@@index([status])
|
||||||
@@map("common_store_category")
|
@@map("common_store_category")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// 门店 ↔ 二级分类多对多;store.category_id 保留主分类(排序第一)
|
||||||
|
model StoreCategoryLink {
|
||||||
|
id BigInt @id @default(autoincrement()) @db.UnsignedBigInt
|
||||||
|
storeId BigInt @map("store_id") @db.UnsignedBigInt
|
||||||
|
categoryId BigInt @map("category_id") @db.UnsignedBigInt
|
||||||
|
priority Int @default(0)
|
||||||
|
createdAt DateTime @default(now()) @map("created_at") @db.DateTime(3)
|
||||||
|
|
||||||
|
store Store @relation(fields: [storeId], references: [id], onDelete: Cascade)
|
||||||
|
category CommonStoreCategory @relation(fields: [categoryId], references: [id], onDelete: Cascade)
|
||||||
|
|
||||||
|
@@unique([storeId, categoryId])
|
||||||
|
@@index([categoryId])
|
||||||
|
@@map("store_category_link")
|
||||||
|
}
|
||||||
|
|
||||||
model CommonPromoCode {
|
model CommonPromoCode {
|
||||||
id BigInt @id @default(autoincrement()) @db.UnsignedBigInt
|
id BigInt @id @default(autoincrement()) @db.UnsignedBigInt
|
||||||
code String @unique @db.VarChar(32)
|
code String @unique @db.VarChar(32)
|
||||||
@@ -1542,6 +1559,7 @@ model Store {
|
|||||||
packages StorePackage[]
|
packages StorePackage[]
|
||||||
packageChangeRequests StorePackageChangeRequest[]
|
packageChangeRequests StorePackageChangeRequest[]
|
||||||
infoChangeRequests StoreInfoChangeRequest[]
|
infoChangeRequests StoreInfoChangeRequest[]
|
||||||
|
categoryLinks StoreCategoryLink[]
|
||||||
|
|
||||||
@@index([cityId, status])
|
@@index([cityId, status])
|
||||||
@@index([partnerAccountId])
|
@@index([partnerAccountId])
|
||||||
|
|||||||
@@ -14,6 +14,12 @@ import { contractMediaType, normalizeContractUrls } from '../../common/store-med
|
|||||||
import type { AdminStoreAccountsQueryDto, AdminStoreMediaQueryDto, AdminStoresQueryDto } from './dto/admin-query.dto';
|
import type { AdminStoreAccountsQueryDto, AdminStoreMediaQueryDto, AdminStoresQueryDto } from './dto/admin-query.dto';
|
||||||
import { PartnerCityService } from '../city-scope/partner-city.service';
|
import { PartnerCityService } from '../city-scope/partner-city.service';
|
||||||
import { StoreCategoryService } from '../store/store-category.service';
|
import { StoreCategoryService } from '../store/store-category.service';
|
||||||
|
import {
|
||||||
|
attachStoreCategories,
|
||||||
|
parseUniqueCategoryIds,
|
||||||
|
storeCategoryLinkInclude,
|
||||||
|
syncStoreCategoryLinks,
|
||||||
|
} from '../store/store-category-link.util';
|
||||||
import { AnalyticsService } from '../analytics/analytics.service';
|
import { AnalyticsService } from '../analytics/analytics.service';
|
||||||
import type {
|
import type {
|
||||||
CreateStoreAccountDto,
|
CreateStoreAccountDto,
|
||||||
@@ -123,6 +129,7 @@ export class AdminStoresService {
|
|||||||
cityRef: { select: { id: true, name: true, code: true } },
|
cityRef: { select: { id: true, name: true, code: true } },
|
||||||
partnerAccount: { select: { id: true, companyName: true, name: true, phone: true } },
|
partnerAccount: { select: { id: true, companyName: true, name: true, phone: true } },
|
||||||
category: { select: { id: true, name: true, parentId: true } },
|
category: { select: { id: true, name: true, parentId: true } },
|
||||||
|
...storeCategoryLinkInclude,
|
||||||
bindings: {
|
bindings: {
|
||||||
where: { storeAccount: { isPrimary: 1 } },
|
where: { storeAccount: { isPrimary: 1 } },
|
||||||
take: 1,
|
take: 1,
|
||||||
@@ -169,7 +176,7 @@ export class AdminStoresService {
|
|||||||
return serializeBigInt({
|
return serializeBigInt({
|
||||||
items: items.map((s) => {
|
items: items.map((s) => {
|
||||||
const { visibilityPhones, ...rest } = s;
|
const { visibilityPhones, ...rest } = s;
|
||||||
return mapStoreCompat({
|
return mapStoreCompat(attachStoreCategories({
|
||||||
...rest,
|
...rest,
|
||||||
visibilityWhitelistEnabled: s.visibilityWhitelistEnabled,
|
visibilityWhitelistEnabled: s.visibilityWhitelistEnabled,
|
||||||
visibilityPhones: visibilityPhones.map((p) => p.phone),
|
visibilityPhones: visibilityPhones.map((p) => p.phone),
|
||||||
@@ -180,7 +187,7 @@ export class AdminStoresService {
|
|||||||
partner: s.partnerAccount,
|
partner: s.partnerAccount,
|
||||||
account: s.bindings[0]?.storeAccount ?? null,
|
account: s.bindings[0]?.storeAccount ?? null,
|
||||||
bindings: undefined,
|
bindings: undefined,
|
||||||
});
|
}));
|
||||||
}),
|
}),
|
||||||
total,
|
total,
|
||||||
page,
|
page,
|
||||||
@@ -196,6 +203,7 @@ export class AdminStoresService {
|
|||||||
cityRef: true,
|
cityRef: true,
|
||||||
partnerAccount: true,
|
partnerAccount: true,
|
||||||
category: true,
|
category: true,
|
||||||
|
...storeCategoryLinkInclude,
|
||||||
bindings: {
|
bindings: {
|
||||||
where: { storeAccount: { isPrimary: 1 } },
|
where: { storeAccount: { isPrimary: 1 } },
|
||||||
take: 1,
|
take: 1,
|
||||||
@@ -219,7 +227,7 @@ export class AdminStoresService {
|
|||||||
}),
|
}),
|
||||||
]);
|
]);
|
||||||
const { visibilityPhones, ...rest } = store;
|
const { visibilityPhones, ...rest } = store;
|
||||||
return serializeBigInt(mapStoreCompat({
|
return serializeBigInt(mapStoreCompat(attachStoreCategories({
|
||||||
...rest,
|
...rest,
|
||||||
visibilityWhitelistEnabled: store.visibilityWhitelistEnabled,
|
visibilityWhitelistEnabled: store.visibilityWhitelistEnabled,
|
||||||
visibilityPhones: visibilityPhones.map((p) => p.phone),
|
visibilityPhones: visibilityPhones.map((p) => p.phone),
|
||||||
@@ -235,7 +243,7 @@ export class AdminStoresService {
|
|||||||
redeemCount: store._count.redeemRecords,
|
redeemCount: store._count.redeemRecords,
|
||||||
ratingCount: store._count.ratings,
|
ratingCount: store._count.ratings,
|
||||||
_count: undefined,
|
_count: undefined,
|
||||||
}));
|
})));
|
||||||
}
|
}
|
||||||
|
|
||||||
async updateStoreStatus(id: bigint, dto: UpdateStoreStatusDto, actorId: bigint) {
|
async updateStoreStatus(id: bigint, dto: UpdateStoreStatusDto, actorId: bigint) {
|
||||||
@@ -430,11 +438,22 @@ export class AdminStoresService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let categoryId: bigint | undefined;
|
let categoryId: bigint | undefined;
|
||||||
if (dto.categoryId !== undefined) {
|
let categoryIds: bigint[] | undefined;
|
||||||
|
if (dto.categoryIds !== undefined) {
|
||||||
|
categoryIds = parseUniqueCategoryIds(dto.categoryIds);
|
||||||
|
if (!categoryIds.length) {
|
||||||
|
throw new BadRequestException('请选择门店分类');
|
||||||
|
}
|
||||||
|
for (const id of categoryIds) {
|
||||||
|
await this.storeCategoryService.assertLeafCategoryId(id);
|
||||||
|
}
|
||||||
|
categoryId = categoryIds[0];
|
||||||
|
} else if (dto.categoryId !== undefined) {
|
||||||
if (!dto.categoryId?.trim()) {
|
if (!dto.categoryId?.trim()) {
|
||||||
throw new BadRequestException('请选择门店分类');
|
throw new BadRequestException('请选择门店分类');
|
||||||
}
|
}
|
||||||
categoryId = BigInt(dto.categoryId);
|
categoryId = BigInt(dto.categoryId);
|
||||||
|
categoryIds = [categoryId];
|
||||||
await this.storeCategoryService.assertLeafCategoryId(categoryId);
|
await this.storeCategoryService.assertLeafCategoryId(categoryId);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -661,6 +680,10 @@ export class AdminStoresService {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (categoryIds !== undefined) {
|
||||||
|
await syncStoreCategoryLinks(tx, id, categoryIds);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
return this.detailStore(id, actorId);
|
return this.detailStore(id, actorId);
|
||||||
@@ -693,11 +716,20 @@ export class AdminStoresService {
|
|||||||
if (!city) throw new BadRequestException('开城城市不存在');
|
if (!city) throw new BadRequestException('开城城市不存在');
|
||||||
await this.partnerCityService.assertPartnerAccountBoundToCity(partnerAccountId, city.id);
|
await this.partnerCityService.assertPartnerAccountBoundToCity(partnerAccountId, city.id);
|
||||||
|
|
||||||
if (!dto.categoryId?.trim()) {
|
if (!dto.categoryId?.trim() && (!dto.categoryIds || !dto.categoryIds.length)) {
|
||||||
throw new BadRequestException('请选择门店分类');
|
throw new BadRequestException('请选择门店分类');
|
||||||
}
|
}
|
||||||
const categoryId = BigInt(dto.categoryId);
|
const categoryIds = parseUniqueCategoryIds(dto.categoryIds);
|
||||||
await this.storeCategoryService.assertLeafCategoryId(categoryId);
|
if (!categoryIds.length && dto.categoryId?.trim()) {
|
||||||
|
categoryIds.push(BigInt(dto.categoryId));
|
||||||
|
}
|
||||||
|
if (!categoryIds.length) {
|
||||||
|
throw new BadRequestException('请选择门店分类');
|
||||||
|
}
|
||||||
|
for (const id of categoryIds) {
|
||||||
|
await this.storeCategoryService.assertLeafCategoryId(id);
|
||||||
|
}
|
||||||
|
const categoryId = categoryIds[0];
|
||||||
|
|
||||||
const latitude = dto.latitude != null ? Number(dto.latitude) : null;
|
const latitude = dto.latitude != null ? Number(dto.latitude) : null;
|
||||||
const longitude = dto.longitude != null ? Number(dto.longitude) : null;
|
const longitude = dto.longitude != null ? Number(dto.longitude) : null;
|
||||||
@@ -775,6 +807,8 @@ export class AdminStoresService {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
await syncStoreCategoryLinks(this.prisma, store.id, categoryIds);
|
||||||
|
|
||||||
if (dto.coverUrl) {
|
if (dto.coverUrl) {
|
||||||
const cover = await this.prisma.commonResource.create({
|
const cover = await this.prisma.commonResource.create({
|
||||||
data: {
|
data: {
|
||||||
|
|||||||
@@ -45,9 +45,15 @@ export class CreateStoreDto {
|
|||||||
@IsString()
|
@IsString()
|
||||||
contactPhone?: string;
|
contactPhone?: string;
|
||||||
|
|
||||||
|
@IsOptional()
|
||||||
@IsString()
|
@IsString()
|
||||||
@IsNotEmpty()
|
categoryId?: string;
|
||||||
categoryId: string;
|
|
||||||
|
/** 多选二级分类;至少选一项 */
|
||||||
|
@IsOptional()
|
||||||
|
@IsArray()
|
||||||
|
@IsString({ each: true })
|
||||||
|
categoryIds?: string[];
|
||||||
|
|
||||||
@IsOptional()
|
@IsOptional()
|
||||||
@IsString()
|
@IsString()
|
||||||
@@ -240,6 +246,12 @@ export class UpdateStoreDto {
|
|||||||
@IsString()
|
@IsString()
|
||||||
categoryId?: string;
|
categoryId?: string;
|
||||||
|
|
||||||
|
/** 多选二级分类;传此项时覆盖 categoryId */
|
||||||
|
@IsOptional()
|
||||||
|
@IsArray()
|
||||||
|
@IsString({ each: true })
|
||||||
|
categoryIds?: string[];
|
||||||
|
|
||||||
@IsOptional()
|
@IsOptional()
|
||||||
@IsNumber()
|
@IsNumber()
|
||||||
@Min(0)
|
@Min(0)
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
import { IsString, IsNotEmpty, IsOptional, IsInt, Min } from 'class-validator';
|
||||||
|
|
||||||
|
export class AssignCategoryDto {
|
||||||
|
@IsString()
|
||||||
|
@IsNotEmpty()
|
||||||
|
categoryId!: string;
|
||||||
|
|
||||||
|
@IsOptional()
|
||||||
|
@IsInt()
|
||||||
|
@Min(0)
|
||||||
|
priority?: number;
|
||||||
|
}
|
||||||
@@ -0,0 +1,130 @@
|
|||||||
|
import type { Prisma } from '@prisma/client';
|
||||||
|
|
||||||
|
export const storeCategoryLinkInclude = {
|
||||||
|
categoryLinks: {
|
||||||
|
include: {
|
||||||
|
category: { include: { parent: true } },
|
||||||
|
},
|
||||||
|
orderBy: [{ priority: 'asc' as const }, { id: 'asc' as const }],
|
||||||
|
},
|
||||||
|
} satisfies Prisma.StoreInclude;
|
||||||
|
|
||||||
|
export type StoreCategoryItem = {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
parentId: string | null;
|
||||||
|
parent: { id: string; name: string } | null;
|
||||||
|
priority: number;
|
||||||
|
};
|
||||||
|
|
||||||
|
type CategoryLinkRow = {
|
||||||
|
priority: number;
|
||||||
|
category: {
|
||||||
|
id: bigint;
|
||||||
|
name: string;
|
||||||
|
parentId: bigint | null;
|
||||||
|
parent?: { id: bigint; name: string } | null;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
export function mapStoreCategoryLinks(links: CategoryLinkRow[] | undefined): StoreCategoryItem[] {
|
||||||
|
return (links ?? []).map((link) => ({
|
||||||
|
id: String(link.category.id),
|
||||||
|
name: link.category.name,
|
||||||
|
parentId: link.category.parentId != null ? String(link.category.parentId) : null,
|
||||||
|
parent: link.category.parent
|
||||||
|
? { id: String(link.category.parent.id), name: link.category.parent.name }
|
||||||
|
: null,
|
||||||
|
priority: link.priority,
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
export function attachStoreCategories<
|
||||||
|
T extends {
|
||||||
|
categoryId?: bigint | null;
|
||||||
|
category?: {
|
||||||
|
id: bigint;
|
||||||
|
name: string;
|
||||||
|
parentId?: bigint | null;
|
||||||
|
parent?: { id: bigint; name: string } | null;
|
||||||
|
} | null;
|
||||||
|
categoryLinks?: CategoryLinkRow[];
|
||||||
|
},
|
||||||
|
>(store: T) {
|
||||||
|
const { categoryLinks, ...rest } = store;
|
||||||
|
let categories = mapStoreCategoryLinks(categoryLinks);
|
||||||
|
if (!categories.length && store.category) {
|
||||||
|
categories = [
|
||||||
|
{
|
||||||
|
id: String(store.category.id),
|
||||||
|
name: store.category.name,
|
||||||
|
parentId: store.category.parentId != null ? String(store.category.parentId) : null,
|
||||||
|
parent: store.category.parent
|
||||||
|
? { id: String(store.category.parent.id), name: store.category.parent.name }
|
||||||
|
: null,
|
||||||
|
priority: 0,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
const primary = categories[0] ?? null;
|
||||||
|
return {
|
||||||
|
...rest,
|
||||||
|
categories,
|
||||||
|
categoryId: primary?.id ?? (store.categoryId != null ? String(store.categoryId) : null),
|
||||||
|
category: primary
|
||||||
|
? {
|
||||||
|
id: primary.id,
|
||||||
|
name: primary.name,
|
||||||
|
parentId: primary.parentId,
|
||||||
|
parent: primary.parent,
|
||||||
|
}
|
||||||
|
: store.category
|
||||||
|
? {
|
||||||
|
id: String(store.category.id),
|
||||||
|
name: store.category.name,
|
||||||
|
parentId: store.category.parentId != null ? String(store.category.parentId) : null,
|
||||||
|
parent: store.category.parent
|
||||||
|
? { id: String(store.category.parent.id), name: store.category.parent.name }
|
||||||
|
: null,
|
||||||
|
}
|
||||||
|
: null,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function syncStoreCategoryLinks(
|
||||||
|
tx: Prisma.TransactionClient,
|
||||||
|
storeId: bigint,
|
||||||
|
categoryIds: bigint[],
|
||||||
|
) {
|
||||||
|
const uniqueIds = [...new Set(categoryIds.map((id) => id.toString()))].map(BigInt);
|
||||||
|
await tx.storeCategoryLink.deleteMany({ where: { storeId } });
|
||||||
|
if (uniqueIds.length === 0) {
|
||||||
|
await tx.store.update({ where: { id: storeId }, data: { categoryId: null } });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
await tx.storeCategoryLink.createMany({
|
||||||
|
data: uniqueIds.map((categoryId, index) => ({
|
||||||
|
storeId,
|
||||||
|
categoryId,
|
||||||
|
priority: index,
|
||||||
|
})),
|
||||||
|
});
|
||||||
|
await tx.store.update({
|
||||||
|
where: { id: storeId },
|
||||||
|
data: { categoryId: uniqueIds[0] },
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function parseUniqueCategoryIds(raw: unknown): bigint[] {
|
||||||
|
if (!Array.isArray(raw)) return [];
|
||||||
|
const seen = new Set<string>();
|
||||||
|
const ids: bigint[] = [];
|
||||||
|
for (const item of raw) {
|
||||||
|
const id = BigInt(String(item));
|
||||||
|
const key = id.toString();
|
||||||
|
if (seen.has(key)) continue;
|
||||||
|
seen.add(key);
|
||||||
|
ids.push(id);
|
||||||
|
}
|
||||||
|
return ids;
|
||||||
|
}
|
||||||
@@ -253,7 +253,11 @@ export class StoreCategoryService {
|
|||||||
if (childCount > 0) {
|
if (childCount > 0) {
|
||||||
throw new BadRequestException('请先删除或停用下级分类');
|
throw new BadRequestException('请先删除或停用下级分类');
|
||||||
}
|
}
|
||||||
const storeCount = await this.prisma.store.count({ where: { categoryId: id } });
|
const storeCount = await this.prisma.store.count({
|
||||||
|
where: {
|
||||||
|
OR: [{ categoryId: id }, { categoryLinks: { some: { categoryId: id } } }],
|
||||||
|
},
|
||||||
|
});
|
||||||
if (storeCount > 0) {
|
if (storeCount > 0) {
|
||||||
// 软停用,避免破坏已有门店关联
|
// 软停用,避免破坏已有门店关联
|
||||||
const row = await this.prisma.commonStoreCategory.update({
|
const row = await this.prisma.commonStoreCategory.update({
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { Body, Controller, Get, Param, Post, Put, Query, UseGuards } from '@nestjs/common';
|
import { Body, Controller, Delete, Get, Param, Post, Put, Query, UseGuards } from '@nestjs/common';
|
||||||
import { StoreService } from './store.service';
|
import { StoreService } from './store.service';
|
||||||
import { StoreCategoryService } from './store-category.service';
|
import { StoreCategoryService } from './store-category.service';
|
||||||
import { RedeemService } from '../redeem/redeem.service';
|
import { RedeemService } from '../redeem/redeem.service';
|
||||||
@@ -109,10 +109,52 @@ export class PartnerStoreController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Get(':id')
|
@Get(':id')
|
||||||
detail(@CurrentUser() user: AuthUser, @Param('id') id: string) {
|
async detail(@CurrentUser() user: AuthUser, @Param('id') id: string) {
|
||||||
return this.storeService.partnerGetStore(user.actorId, BigInt(id));
|
return this.storeService.partnerGetStore(user.actorId, BigInt(id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Get(':id/categories')
|
||||||
|
async getCategories(@CurrentUser() user: AuthUser, @Param('id') id: string) {
|
||||||
|
return this.storeService.partnerGetStoreCategories(user.actorId, BigInt(id));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Post(':id/categories')
|
||||||
|
async assignCategory(
|
||||||
|
@CurrentUser() user: AuthUser,
|
||||||
|
@Param('id') id: string,
|
||||||
|
@Body() body: { categoryId: string; priority?: number },
|
||||||
|
) {
|
||||||
|
return this.storeService.partnerAssignCategoryToStore(
|
||||||
|
user.actorId,
|
||||||
|
BigInt(id),
|
||||||
|
body.categoryId,
|
||||||
|
body.priority,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Delete(':id/categories/:categoryId')
|
||||||
|
async removeCategory(
|
||||||
|
@CurrentUser() user: AuthUser,
|
||||||
|
@Param('id') id: string,
|
||||||
|
@Param('categoryId') categoryId: string,
|
||||||
|
) {
|
||||||
|
return this.storeService.partnerRemoveCategoryFromStore(user.actorId, BigInt(id), categoryId);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Put(':id/categories')
|
||||||
|
async replaceCategories(
|
||||||
|
@CurrentUser() user: AuthUser,
|
||||||
|
@Param('id') id: string,
|
||||||
|
@Body() body: { categoryIds: string[]; priorities?: Record<string, number> },
|
||||||
|
) {
|
||||||
|
return this.storeService.partnerReplaceStoreCategories(
|
||||||
|
user.actorId,
|
||||||
|
BigInt(id),
|
||||||
|
body.categoryIds,
|
||||||
|
body.priorities,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
@Post()
|
@Post()
|
||||||
create(@CurrentUser() user: AuthUser, @Body() body: Record<string, unknown>) {
|
create(@CurrentUser() user: AuthUser, @Body() body: Record<string, unknown>) {
|
||||||
return this.storeService.createStore(user.actorId, body);
|
return this.storeService.createStore(user.actorId, body);
|
||||||
|
|||||||
@@ -18,6 +18,12 @@ import { AnalyticsService } from '../analytics/analytics.service';
|
|||||||
import { PartnerCityService } from '../city-scope/partner-city.service';
|
import { PartnerCityService } from '../city-scope/partner-city.service';
|
||||||
import { AuthService } from '../iam/auth.service';
|
import { AuthService } from '../iam/auth.service';
|
||||||
import { StoreCategoryService } from './store-category.service';
|
import { StoreCategoryService } from './store-category.service';
|
||||||
|
import {
|
||||||
|
attachStoreCategories,
|
||||||
|
parseUniqueCategoryIds,
|
||||||
|
storeCategoryLinkInclude,
|
||||||
|
syncStoreCategoryLinks,
|
||||||
|
} from './store-category-link.util';
|
||||||
import { TencentLbsProvider } from '../../integrations/map/tencent-lbs.provider';
|
import { TencentLbsProvider } from '../../integrations/map/tencent-lbs.provider';
|
||||||
import {
|
import {
|
||||||
TestWhitelistService,
|
TestWhitelistService,
|
||||||
@@ -185,6 +191,7 @@ export class StoreService {
|
|||||||
where: where as never,
|
where: where as never,
|
||||||
include: {
|
include: {
|
||||||
category: { include: { parent: true } },
|
category: { include: { parent: true } },
|
||||||
|
...storeCategoryLinkInclude,
|
||||||
coverResource: true,
|
coverResource: true,
|
||||||
},
|
},
|
||||||
orderBy: [{ sortOrder: 'asc' }, { createdAt: 'desc' }],
|
orderBy: [{ sortOrder: 'asc' }, { createdAt: 'desc' }],
|
||||||
@@ -226,11 +233,11 @@ export class StoreService {
|
|||||||
const coords = await this.ensureStoreCoordinates(store);
|
const coords = await this.ensureStoreCoordinates(store);
|
||||||
const { visibilityWhitelistEnabled: _wl, ...rest } = store;
|
const { visibilityWhitelistEnabled: _wl, ...rest } = store;
|
||||||
const mapped = mapStoreCompat(
|
const mapped = mapStoreCompat(
|
||||||
{
|
attachStoreCategories({
|
||||||
...rest,
|
...rest,
|
||||||
latitude: coords?.latitude ?? store.latitude,
|
latitude: coords?.latitude ?? store.latitude,
|
||||||
longitude: coords?.longitude ?? store.longitude,
|
longitude: coords?.longitude ?? store.longitude,
|
||||||
},
|
}),
|
||||||
{ publicDial: true },
|
{ publicDial: true },
|
||||||
);
|
);
|
||||||
const distanceMeters =
|
const distanceMeters =
|
||||||
@@ -263,6 +270,7 @@ export class StoreService {
|
|||||||
where: { id, status: 'OPEN' },
|
where: { id, status: 'OPEN' },
|
||||||
include: {
|
include: {
|
||||||
category: { include: { parent: true } },
|
category: { include: { parent: true } },
|
||||||
|
...storeCategoryLinkInclude,
|
||||||
coverResource: true,
|
coverResource: true,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
@@ -287,7 +295,7 @@ export class StoreService {
|
|||||||
const { visibilityWhitelistEnabled: _wl, ...rest } = store;
|
const { visibilityWhitelistEnabled: _wl, ...rest } = store;
|
||||||
return serializeBigInt(
|
return serializeBigInt(
|
||||||
mapStoreCompat(
|
mapStoreCompat(
|
||||||
{
|
attachStoreCategories({
|
||||||
...rest,
|
...rest,
|
||||||
latitude: coords?.latitude ?? store.latitude,
|
latitude: coords?.latitude ?? store.latitude,
|
||||||
longitude: coords?.longitude ?? store.longitude,
|
longitude: coords?.longitude ?? store.longitude,
|
||||||
@@ -310,7 +318,7 @@ export class StoreService {
|
|||||||
sortOrder: p.sortOrder,
|
sortOrder: p.sortOrder,
|
||||||
};
|
};
|
||||||
}),
|
}),
|
||||||
},
|
}),
|
||||||
{ publicDial: true },
|
{ publicDial: true },
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
@@ -332,17 +340,17 @@ export class StoreService {
|
|||||||
}
|
}
|
||||||
const stores = await this.prisma.store.findMany({
|
const stores = await this.prisma.store.findMany({
|
||||||
where,
|
where,
|
||||||
include: { category: true, coverResource: true },
|
include: { category: true, ...storeCategoryLinkInclude, coverResource: true },
|
||||||
orderBy: [{ sortOrder: 'asc' }, { createdAt: 'desc' }],
|
orderBy: [{ sortOrder: 'asc' }, { createdAt: 'desc' }],
|
||||||
});
|
});
|
||||||
return serializeBigInt(stores.map((s) => mapStoreCompat(s)));
|
return serializeBigInt(stores.map((s) => mapStoreCompat(attachStoreCategories(s))));
|
||||||
}
|
}
|
||||||
|
|
||||||
async partnerGetStore(partnerAccountId: bigint, storeId: bigint) {
|
async partnerGetStore(partnerAccountId: bigint, storeId: bigint) {
|
||||||
const { account, primaryId } = await this.resolvePartnerScope(partnerAccountId);
|
const { account, primaryId } = await this.resolvePartnerScope(partnerAccountId);
|
||||||
const store = await this.prisma.store.findFirst({
|
const store = await this.prisma.store.findFirst({
|
||||||
where: { id: storeId, partnerAccountId: primaryId },
|
where: { id: storeId, partnerAccountId: primaryId },
|
||||||
include: { category: true, coverResource: true },
|
include: { category: true, ...storeCategoryLinkInclude, coverResource: true },
|
||||||
});
|
});
|
||||||
if (!store) throw new NotFoundException('门店不存在');
|
if (!store) throw new NotFoundException('门店不存在');
|
||||||
if (this.isSubAccount(account)) {
|
if (this.isSubAccount(account)) {
|
||||||
@@ -350,7 +358,7 @@ export class StoreService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const media = await this.loadPartnerStoreMedia(storeId);
|
const media = await this.loadPartnerStoreMedia(storeId);
|
||||||
return serializeBigInt(mapStoreCompat({ ...store, media }));
|
return serializeBigInt(mapStoreCompat(attachStoreCategories({ ...store, media })));
|
||||||
}
|
}
|
||||||
|
|
||||||
async partnerListCities(partnerAccountId: bigint) {
|
async partnerListCities(partnerAccountId: bigint) {
|
||||||
@@ -444,11 +452,20 @@ export class StoreService {
|
|||||||
const bankAccountNo = body.bankAccountNo ? String(body.bankAccountNo) : null;
|
const bankAccountNo = body.bankAccountNo ? String(body.bankAccountNo) : null;
|
||||||
const bankBranch = body.bankBranch ? String(body.bankBranch) : null;
|
const bankBranch = body.bankBranch ? String(body.bankBranch) : null;
|
||||||
|
|
||||||
if (!body.categoryId) {
|
if (!body.categoryId && !Array.isArray(body.categoryIds)) {
|
||||||
throw new BadRequestException('请选择店铺类型');
|
throw new BadRequestException('请选择店铺类型');
|
||||||
}
|
}
|
||||||
const categoryId = parseBigIntParam(body.categoryId, '分类ID');
|
const categoryIds = parseUniqueCategoryIds(body.categoryIds);
|
||||||
await this.storeCategoryService.assertLeafCategoryId(categoryId);
|
if (!categoryIds.length && body.categoryId) {
|
||||||
|
categoryIds.push(parseBigIntParam(body.categoryId, '分类ID'));
|
||||||
|
}
|
||||||
|
if (!categoryIds.length) {
|
||||||
|
throw new BadRequestException('请选择店铺类型');
|
||||||
|
}
|
||||||
|
for (const id of categoryIds) {
|
||||||
|
await this.storeCategoryService.assertLeafCategoryId(id);
|
||||||
|
}
|
||||||
|
const categoryId = categoryIds[0];
|
||||||
|
|
||||||
const openTime = body.openTime ? String(body.openTime).trim() : '10:00';
|
const openTime = body.openTime ? String(body.openTime).trim() : '10:00';
|
||||||
const closeTime = body.closeTime ? String(body.closeTime).trim() : '22:00';
|
const closeTime = body.closeTime ? String(body.closeTime).trim() : '22:00';
|
||||||
@@ -507,6 +524,8 @@ export class StoreService {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
await syncStoreCategoryLinks(this.prisma, store.id, categoryIds);
|
||||||
|
|
||||||
if (latitude == null || longitude == null) {
|
if (latitude == null || longitude == null) {
|
||||||
await this.ensureStoreCoordinates(store);
|
await this.ensureStoreCoordinates(store);
|
||||||
}
|
}
|
||||||
@@ -1515,4 +1534,138 @@ export class StoreService {
|
|||||||
});
|
});
|
||||||
if (!event) throw new ForbiddenException('无权查看该门店');
|
if (!event) throw new ForbiddenException('无权查看该门店');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async getStoreCategories(storeId: bigint) {
|
||||||
|
const store = await this.prisma.store.findUnique({
|
||||||
|
where: { id: storeId },
|
||||||
|
include: {
|
||||||
|
category: { include: { parent: true } },
|
||||||
|
...storeCategoryLinkInclude,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
if (!store) throw new NotFoundException('门店不存在');
|
||||||
|
return serializeBigInt(attachStoreCategories(store).categories);
|
||||||
|
}
|
||||||
|
|
||||||
|
async partnerGetStoreCategories(partnerAccountId: bigint, storeId: bigint) {
|
||||||
|
await this.partnerGetStore(partnerAccountId, storeId);
|
||||||
|
return this.getStoreCategories(storeId);
|
||||||
|
}
|
||||||
|
|
||||||
|
async assignCategoryToStore(storeId: bigint, categoryIdRaw: string, priority?: number) {
|
||||||
|
const categoryId = parseBigIntParam(categoryIdRaw, '分类ID');
|
||||||
|
await this.storeCategoryService.assertLeafCategoryId(categoryId);
|
||||||
|
const store = await this.prisma.store.findUnique({ where: { id: storeId } });
|
||||||
|
if (!store) throw new NotFoundException('门店不存在');
|
||||||
|
|
||||||
|
const existing = await this.prisma.storeCategoryLink.findUnique({
|
||||||
|
where: { storeId_categoryId: { storeId, categoryId } },
|
||||||
|
});
|
||||||
|
if (existing) {
|
||||||
|
if (priority != null) {
|
||||||
|
await this.prisma.storeCategoryLink.update({
|
||||||
|
where: { id: existing.id },
|
||||||
|
data: { priority },
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return this.getStoreCategories(storeId);
|
||||||
|
}
|
||||||
|
|
||||||
|
const nextPriority =
|
||||||
|
priority ??
|
||||||
|
((await this.prisma.storeCategoryLink.count({ where: { storeId } })) || 0);
|
||||||
|
await this.prisma.$transaction(async (tx) => {
|
||||||
|
await tx.storeCategoryLink.create({
|
||||||
|
data: { storeId, categoryId, priority: nextPriority },
|
||||||
|
});
|
||||||
|
if (!store.categoryId) {
|
||||||
|
await tx.store.update({ where: { id: storeId }, data: { categoryId } });
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return this.getStoreCategories(storeId);
|
||||||
|
}
|
||||||
|
|
||||||
|
async partnerAssignCategoryToStore(
|
||||||
|
partnerAccountId: bigint,
|
||||||
|
storeId: bigint,
|
||||||
|
categoryId: string,
|
||||||
|
priority?: number,
|
||||||
|
) {
|
||||||
|
await this.partnerGetStore(partnerAccountId, storeId);
|
||||||
|
return this.assignCategoryToStore(storeId, categoryId, priority);
|
||||||
|
}
|
||||||
|
|
||||||
|
async removeCategoryFromStore(storeId: bigint, categoryIdRaw: string) {
|
||||||
|
const categoryId = parseBigIntParam(categoryIdRaw, '分类ID');
|
||||||
|
const store = await this.prisma.store.findUnique({ where: { id: storeId } });
|
||||||
|
if (!store) throw new NotFoundException('门店不存在');
|
||||||
|
|
||||||
|
const linkCount = await this.prisma.storeCategoryLink.count({ where: { storeId } });
|
||||||
|
const legacyOnly = linkCount === 0 && store.categoryId?.toString() === categoryId.toString();
|
||||||
|
if (linkCount <= 1 && !legacyOnly) {
|
||||||
|
throw new BadRequestException('门店至少保留一个分类');
|
||||||
|
}
|
||||||
|
|
||||||
|
await this.prisma.$transaction(async (tx) => {
|
||||||
|
await tx.storeCategoryLink.deleteMany({ where: { storeId, categoryId } });
|
||||||
|
const remaining = await tx.storeCategoryLink.findMany({
|
||||||
|
where: { storeId },
|
||||||
|
orderBy: [{ priority: 'asc' }, { id: 'asc' }],
|
||||||
|
});
|
||||||
|
const nextPrimary = remaining[0]?.categoryId ?? null;
|
||||||
|
await tx.store.update({
|
||||||
|
where: { id: storeId },
|
||||||
|
data: { categoryId: nextPrimary },
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return this.getStoreCategories(storeId);
|
||||||
|
}
|
||||||
|
|
||||||
|
async partnerRemoveCategoryFromStore(
|
||||||
|
partnerAccountId: bigint,
|
||||||
|
storeId: bigint,
|
||||||
|
categoryId: string,
|
||||||
|
) {
|
||||||
|
await this.partnerGetStore(partnerAccountId, storeId);
|
||||||
|
return this.removeCategoryFromStore(storeId, categoryId);
|
||||||
|
}
|
||||||
|
|
||||||
|
async replaceStoreCategories(
|
||||||
|
storeId: bigint,
|
||||||
|
categoryIdsRaw: string[],
|
||||||
|
priorities?: Record<string, number>,
|
||||||
|
) {
|
||||||
|
if (!categoryIdsRaw?.length) {
|
||||||
|
throw new BadRequestException('请至少选择一个门店分类');
|
||||||
|
}
|
||||||
|
const parsed = parseUniqueCategoryIds(categoryIdsRaw);
|
||||||
|
if (!parsed.length) {
|
||||||
|
throw new BadRequestException('请至少选择一个门店分类');
|
||||||
|
}
|
||||||
|
for (const id of parsed) {
|
||||||
|
await this.storeCategoryService.assertLeafCategoryId(id);
|
||||||
|
}
|
||||||
|
const sorted = [...parsed].sort((a, b) => {
|
||||||
|
const pa = priorities?.[a.toString()] ?? 0;
|
||||||
|
const pb = priorities?.[b.toString()] ?? 0;
|
||||||
|
if (pa !== pb) return pa - pb;
|
||||||
|
return Number(a - b);
|
||||||
|
});
|
||||||
|
const store = await this.prisma.store.findUnique({ where: { id: storeId } });
|
||||||
|
if (!store) throw new NotFoundException('门店不存在');
|
||||||
|
await this.prisma.$transaction(async (tx) => {
|
||||||
|
await syncStoreCategoryLinks(tx, storeId, sorted);
|
||||||
|
});
|
||||||
|
return this.getStoreCategories(storeId);
|
||||||
|
}
|
||||||
|
|
||||||
|
async partnerReplaceStoreCategories(
|
||||||
|
partnerAccountId: bigint,
|
||||||
|
storeId: bigint,
|
||||||
|
categoryIds: string[],
|
||||||
|
priorities?: Record<string, number>,
|
||||||
|
) {
|
||||||
|
await this.partnerGetStore(partnerAccountId, storeId);
|
||||||
|
return this.replaceStoreCategories(storeId, categoryIds, priorities);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user