forked from yoone/API
Compare commits
No commits in common. "c8236070b04143c1c148225831a4f0f2b8f1478c" and "f7335d9717656ead0603c908c6f39e39f7df6906" have entirely different histories.
c8236070b0
...
f7335d9717
|
|
@ -21,16 +21,13 @@ import {
|
||||||
CreateReviewDTO,
|
CreateReviewDTO,
|
||||||
CreateVariationDTO,
|
CreateVariationDTO,
|
||||||
UpdateReviewDTO,
|
UpdateReviewDTO,
|
||||||
OrderPaymentStatus,
|
|
||||||
} from '../dto/site-api.dto';
|
} from '../dto/site-api.dto';
|
||||||
import { UnifiedPaginationDTO, UnifiedSearchParamsDTO, ShopyyGetAllOrdersParams } from '../dto/api.dto';
|
import { UnifiedPaginationDTO, UnifiedSearchParamsDTO, ShopyyGetAllOrdersParams } from '../dto/api.dto';
|
||||||
import {
|
import {
|
||||||
ShopyyAllProductQuery,
|
ShopyyAllProductQuery,
|
||||||
ShopyyCustomer,
|
ShopyyCustomer,
|
||||||
ShopyyOrder,
|
ShopyyOrder,
|
||||||
ShopyyOrderCreateParams,
|
|
||||||
ShopyyOrderQuery,
|
ShopyyOrderQuery,
|
||||||
ShopyyOrderUpdateParams,
|
|
||||||
ShopyyProduct,
|
ShopyyProduct,
|
||||||
ShopyyProductQuery,
|
ShopyyProductQuery,
|
||||||
ShopyyVariant,
|
ShopyyVariant,
|
||||||
|
|
@ -234,8 +231,8 @@ export class ShopyyAdapter implements ISiteAdapter {
|
||||||
// console.log(item)
|
// console.log(item)
|
||||||
if(!item) throw new Error('订单数据不能为空')
|
if(!item) throw new Error('订单数据不能为空')
|
||||||
// 提取账单和送货地址 如果不存在则为空对象
|
// 提取账单和送货地址 如果不存在则为空对象
|
||||||
const billing = item.billing_address || {};
|
const billing = (item).bill_address || {};
|
||||||
const shipping = item.shipping_address || {};
|
const shipping = (item as any).shipping_address || {};
|
||||||
|
|
||||||
// 构建账单地址对象
|
// 构建账单地址对象
|
||||||
const billingObj: UnifiedAddressDTO = {
|
const billingObj: UnifiedAddressDTO = {
|
||||||
|
|
@ -275,7 +272,6 @@ export class ShopyyAdapter implements ISiteAdapter {
|
||||||
state: shipping.province || item.shipping_zone || '',
|
state: shipping.province || item.shipping_zone || '',
|
||||||
postcode: shipping.zip || item.shipping_postcode || '',
|
postcode: shipping.zip || item.shipping_postcode || '',
|
||||||
method_title: item.payment_method || '',
|
method_title: item.payment_method || '',
|
||||||
phone: shipping.phone || (item as any).telephone || '',
|
|
||||||
country:
|
country:
|
||||||
shipping.country_name ||
|
shipping.country_name ||
|
||||||
shipping.country_code ||
|
shipping.country_code ||
|
||||||
|
|
@ -314,14 +310,14 @@ export class ShopyyAdapter implements ISiteAdapter {
|
||||||
};
|
};
|
||||||
|
|
||||||
const lineItems: UnifiedOrderLineItemDTO[] = (item.products || []).map(
|
const lineItems: UnifiedOrderLineItemDTO[] = (item.products || []).map(
|
||||||
(product) => ({
|
(p: any) => ({
|
||||||
id: product.id,
|
id: p.id,
|
||||||
name:product.sku_value?.[0]?.value || product.product_title || product.name,
|
name: p.product_title || p.name,
|
||||||
product_id: product.product_id,
|
product_id: p.product_id,
|
||||||
quantity: product.quantity,
|
quantity: p.quantity,
|
||||||
total: String(product.price ?? ''),
|
total: String(p.price ?? ''),
|
||||||
sku: product.sku || product.sku_code || '',
|
sku: p.sku_code || '',
|
||||||
price: String(product.price ?? ''),
|
price: String(p.price ?? ''),
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
// 货币符号
|
// 货币符号
|
||||||
|
|
@ -344,7 +340,7 @@ export class ShopyyAdapter implements ISiteAdapter {
|
||||||
const status = this.shopyyOrderStatusMap[item.status ?? item.order_status] || OrderStatus.PENDING;
|
const status = this.shopyyOrderStatusMap[item.status ?? item.order_status] || OrderStatus.PENDING;
|
||||||
const finalcial_status = this.shopyyFinancialStatusMap[item.financial_status]
|
const finalcial_status = this.shopyyFinancialStatusMap[item.financial_status]
|
||||||
// 发货状态
|
// 发货状态
|
||||||
const fulfillment_status = this.fulfillmentStatusMap[item.fulfillment_status];
|
const fulfillment_status = this.shopyyFulfillmentStatusMap[item.fulfillment_status];
|
||||||
return {
|
return {
|
||||||
id: item.id || item.order_id,
|
id: item.id || item.order_id,
|
||||||
number: item.order_number || item.order_sn,
|
number: item.order_number || item.order_sn,
|
||||||
|
|
@ -407,11 +403,11 @@ export class ShopyyAdapter implements ISiteAdapter {
|
||||||
return data
|
return data
|
||||||
}
|
}
|
||||||
|
|
||||||
mapCreateOrderParams(data: Partial<UnifiedOrderDTO>): ShopyyOrderCreateParams {
|
mapCreateOrderParams(data: Partial<UnifiedOrderDTO>): any {
|
||||||
return data
|
return data
|
||||||
}
|
}
|
||||||
|
|
||||||
mapUpdateOrderParams(data: Partial<UnifiedOrderDTO>): ShopyyOrderUpdateParams {
|
mapUpdateOrderParams(data: Partial<UnifiedOrderDTO>): any {
|
||||||
// 构建 ShopYY 订单更新参数(仅包含传入的字段)
|
// 构建 ShopYY 订单更新参数(仅包含传入的字段)
|
||||||
const params: any = {};
|
const params: any = {};
|
||||||
|
|
||||||
|
|
@ -542,16 +538,8 @@ export class ShopyyAdapter implements ISiteAdapter {
|
||||||
}
|
}
|
||||||
|
|
||||||
async getOrder(where: {id: string | number}): Promise<UnifiedOrderDTO> {
|
async getOrder(where: {id: string | number}): Promise<UnifiedOrderDTO> {
|
||||||
const data = await this.getOrders({
|
const data = await this.shopyyService.getOrder(this.site.id, String(where.id));
|
||||||
where: {
|
return this.mapPlatformToUnifiedOrder(data);
|
||||||
id: where.id,
|
|
||||||
},
|
|
||||||
page: 1,
|
|
||||||
per_page: 1,
|
|
||||||
})
|
|
||||||
return data.items[0] || null
|
|
||||||
// const data = await this.shopyyService.getOrder(this.site.id, String(where.id));
|
|
||||||
// return this.mapPlatformToUnifiedOrder(data);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async getOrders(
|
async getOrders(
|
||||||
|
|
@ -574,14 +562,14 @@ export class ShopyyAdapter implements ISiteAdapter {
|
||||||
}
|
}
|
||||||
mapGetAllOrdersParams(params: UnifiedSearchParamsDTO) :ShopyyGetAllOrdersParams{
|
mapGetAllOrdersParams(params: UnifiedSearchParamsDTO) :ShopyyGetAllOrdersParams{
|
||||||
|
|
||||||
const pay_at_min = dayjs(params.after || '').unix().toString();
|
const pay_at_min = dayjs(params.after || '').valueOf().toString();
|
||||||
const pay_at_max = dayjs(params.before || '').unix().toString();
|
const pay_at_max = dayjs(params.before || '').valueOf().toString();
|
||||||
|
|
||||||
return {
|
return {
|
||||||
per_page: params.per_page || 100,
|
page: params.page || 1,
|
||||||
|
per_page: params.per_page || 20,
|
||||||
pay_at_min: pay_at_min,
|
pay_at_min: pay_at_min,
|
||||||
pay_at_max: pay_at_max,
|
pay_at_max: pay_at_max,
|
||||||
order_field: 'pay_at',
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
async getAllOrders(params?: UnifiedSearchParamsDTO): Promise<UnifiedOrderDTO[]> {
|
async getAllOrders(params?: UnifiedSearchParamsDTO): Promise<UnifiedOrderDTO[]> {
|
||||||
|
|
@ -724,7 +712,7 @@ export class ShopyyAdapter implements ISiteAdapter {
|
||||||
name: item.name || item.title,
|
name: item.name || item.title,
|
||||||
type: String(item.product_type ?? ''),
|
type: String(item.product_type ?? ''),
|
||||||
status: mapProductStatus(item.status),
|
status: mapProductStatus(item.status),
|
||||||
sku: item.variant?.sku || item.variant?.sku_code || '',
|
sku: item.variant?.sku || '',
|
||||||
regular_price: String(item.variant?.price ?? ''),
|
regular_price: String(item.variant?.price ?? ''),
|
||||||
sale_price: String(item.special_price ?? ''),
|
sale_price: String(item.special_price ?? ''),
|
||||||
price: String(item.price ?? ''),
|
price: String(item.price ?? ''),
|
||||||
|
|
@ -1126,11 +1114,10 @@ export class ShopyyAdapter implements ISiteAdapter {
|
||||||
// ========== 产品变体映射方法 ==========
|
// ========== 产品变体映射方法 ==========
|
||||||
mapPlatformToUnifiedVariation(variant: ShopyyVariant): UnifiedProductVariationDTO {
|
mapPlatformToUnifiedVariation(variant: ShopyyVariant): UnifiedProductVariationDTO {
|
||||||
// 映射变体
|
// 映射变体
|
||||||
console.log('ivarianttem', variant)
|
|
||||||
return {
|
return {
|
||||||
id: variant.id,
|
id: variant.id,
|
||||||
name: variant.title || '',
|
name: variant.sku || '',
|
||||||
sku: variant.sku || variant.sku_code || '',
|
sku: variant.sku || '',
|
||||||
regular_price: String(variant.price ?? ''),
|
regular_price: String(variant.price ?? ''),
|
||||||
sale_price: String(variant.special_price ?? ''),
|
sale_price: String(variant.special_price ?? ''),
|
||||||
price: String(variant.price ?? ''),
|
price: String(variant.price ?? ''),
|
||||||
|
|
@ -1328,8 +1315,8 @@ export class ShopyyAdapter implements ISiteAdapter {
|
||||||
[180]: OrderStatus.COMPLETED, // 180 已完成(确认收货) 转为 completed
|
[180]: OrderStatus.COMPLETED, // 180 已完成(确认收货) 转为 completed
|
||||||
[190]: OrderStatus.CANCEL // 190 取消 转为 cancelled
|
[190]: OrderStatus.CANCEL // 190 取消 转为 cancelled
|
||||||
}
|
}
|
||||||
// 物流状态 300 未发货;310 部分发货;320 已发货;330(确认收货)
|
|
||||||
fulfillmentStatusMap = {
|
shopyyFulfillmentStatusMap = {
|
||||||
// 未发货
|
// 未发货
|
||||||
'300': OrderFulfillmentStatus.PENDING,
|
'300': OrderFulfillmentStatus.PENDING,
|
||||||
// 部分发货
|
// 部分发货
|
||||||
|
|
@ -1340,23 +1327,4 @@ export class ShopyyAdapter implements ISiteAdapter {
|
||||||
'330': OrderFulfillmentStatus.CANCELLED,
|
'330': OrderFulfillmentStatus.CANCELLED,
|
||||||
// 确认发货
|
// 确认发货
|
||||||
}
|
}
|
||||||
// 支付状态 200 待支付;210 支付中;220 部分支付;230 已支付;240 支付失败;250 部分退款;260 已退款 ;290 已取消;
|
|
||||||
financialStatusMap = {
|
|
||||||
// 待支付
|
|
||||||
'200': OrderPaymentStatus.PENDING,
|
|
||||||
// 支付中
|
|
||||||
'210': OrderPaymentStatus.PAYING,
|
|
||||||
// 部分支付
|
|
||||||
'220': OrderPaymentStatus.PARTIALLY_PAID,
|
|
||||||
// 已支付
|
|
||||||
'230': OrderPaymentStatus.PAID,
|
|
||||||
// 支付失败
|
|
||||||
'240': OrderPaymentStatus.FAILED,
|
|
||||||
// 部分退款
|
|
||||||
'250': OrderPaymentStatus.PARTIALLY_REFUNDED,
|
|
||||||
// 已退款
|
|
||||||
'260': OrderPaymentStatus.REFUNDED,
|
|
||||||
// 已取消
|
|
||||||
'290': OrderPaymentStatus.CANCELLED,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
@ -15,12 +15,11 @@ export default {
|
||||||
typeorm: {
|
typeorm: {
|
||||||
dataSource: {
|
dataSource: {
|
||||||
default: {
|
default: {
|
||||||
host: '13.212.62.127',
|
host: 'localhost',
|
||||||
port: "3306",
|
port: "23306",
|
||||||
username: 'root',
|
username: 'root',
|
||||||
password: 'Yoone!@.2025',
|
password: '12345678',
|
||||||
database: 'inventory_v2',
|
database: 'inventory_v2',
|
||||||
synchronize: true
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -118,7 +118,8 @@ export class MainConfiguration {
|
||||||
});
|
});
|
||||||
|
|
||||||
try {
|
try {
|
||||||
this.logger.info(`正在检查数据库是否存在...`+ JSON.stringify(typeormConfig));
|
this.logger.info('正在检查数据库是否存在...');
|
||||||
|
|
||||||
// 初始化临时数据源
|
// 初始化临时数据源
|
||||||
await tempDataSource.initialize();
|
await tempDataSource.initialize();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ export class DictController {
|
||||||
// 从上传的文件列表中获取第一个文件
|
// 从上传的文件列表中获取第一个文件
|
||||||
const file = files[0];
|
const file = files[0];
|
||||||
// 调用服务层方法处理XLSX文件
|
// 调用服务层方法处理XLSX文件
|
||||||
const result = await this.dictService.importDictsFromTable(file.data);
|
const result = await this.dictService.importDictsFromXLSX(file.data);
|
||||||
// 返回导入结果
|
// 返回导入结果
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -117,7 +117,7 @@ export class ProductController {
|
||||||
const file = files?.[0];
|
const file = files?.[0];
|
||||||
if (!file) return errorResponse('未接收到上传文件');
|
if (!file) return errorResponse('未接收到上传文件');
|
||||||
|
|
||||||
const result = await this.productService.importProductsFromTable(file);
|
const result = await this.productService.importProductsCSV(file);
|
||||||
return successResponse(result);
|
return successResponse(result);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
return errorResponse(error?.message || error);
|
return errorResponse(error?.message || error);
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,10 @@ export class UnifiedSearchParamsDTO<Where=Record<string, any>> {
|
||||||
* Shopyy获取所有订单参数DTO
|
* Shopyy获取所有订单参数DTO
|
||||||
*/
|
*/
|
||||||
export class ShopyyGetAllOrdersParams {
|
export class ShopyyGetAllOrdersParams {
|
||||||
@ApiProperty({ description: '每页数量', example: 100, required: false })
|
@ApiProperty({ description: '页码', example: 1, required: false })
|
||||||
|
page?: number;
|
||||||
|
|
||||||
|
@ApiProperty({ description: '每页数量', example: 20, required: false })
|
||||||
per_page?: number;
|
per_page?: number;
|
||||||
|
|
||||||
@ApiProperty({ description: '支付时间范围开始', example: '2023-01-01T00:00:00Z', required: false })
|
@ApiProperty({ description: '支付时间范围开始', example: '2023-01-01T00:00:00Z', required: false })
|
||||||
|
|
@ -64,9 +67,6 @@ export class ShopyyGetAllOrdersParams {
|
||||||
|
|
||||||
@ApiProperty({ description: '支付时间范围结束', example: '2023-01-01T23:59:59Z', required: false })
|
@ApiProperty({ description: '支付时间范围结束', example: '2023-01-01T23:59:59Z', required: false })
|
||||||
pay_at_max?: string;
|
pay_at_max?: string;
|
||||||
|
|
||||||
@ApiProperty({ description: '排序字段', example: 'id', required: false })
|
|
||||||
order_field?: string;//排序字段(默认id) id=订单ID updated_at=最后更新时间 pay_at=支付时间
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -86,10 +86,7 @@ export class CreateProductDTO {
|
||||||
@Rule(RuleType.number())
|
@Rule(RuleType.number())
|
||||||
promotionPrice?: number;
|
promotionPrice?: number;
|
||||||
|
|
||||||
// 产品图片URL
|
|
||||||
@ApiProperty({ description: '产品图片URL', example: 'https://example.com/image.jpg', required: false })
|
|
||||||
@Rule(RuleType.string().optional())
|
|
||||||
image?: string;
|
|
||||||
|
|
||||||
// 商品类型(默认 single; bundle 需手动设置组成)
|
// 商品类型(默认 single; bundle 需手动设置组成)
|
||||||
@ApiProperty({ description: '商品类型', enum: ['single', 'bundle'], default: 'single', required: false })
|
@ApiProperty({ description: '商品类型', enum: ['single', 'bundle'], default: 'single', required: false })
|
||||||
|
|
@ -156,10 +153,7 @@ export class UpdateProductDTO {
|
||||||
@Rule(RuleType.number())
|
@Rule(RuleType.number())
|
||||||
promotionPrice?: number;
|
promotionPrice?: number;
|
||||||
|
|
||||||
// 产品图片URL
|
|
||||||
@ApiProperty({ description: '产品图片URL', example: 'https://example.com/image.jpg', required: false })
|
|
||||||
@Rule(RuleType.string().optional())
|
|
||||||
image?: string;
|
|
||||||
|
|
||||||
// 属性更新(可选, 支持增量替换指定字典的属性项)
|
// 属性更新(可选, 支持增量替换指定字典的属性项)
|
||||||
@ApiProperty({ description: '属性列表', type: 'array', required: false })
|
@ApiProperty({ description: '属性列表', type: 'array', required: false })
|
||||||
|
|
@ -234,10 +228,6 @@ export class BatchUpdateProductDTO {
|
||||||
@Rule(RuleType.number().optional())
|
@Rule(RuleType.number().optional())
|
||||||
promotionPrice?: number;
|
promotionPrice?: number;
|
||||||
|
|
||||||
@ApiProperty({ description: '产品图片URL', example: 'https://example.com/image.jpg', required: false })
|
|
||||||
@Rule(RuleType.string().optional())
|
|
||||||
image?: string;
|
|
||||||
|
|
||||||
@ApiProperty({ description: '属性列表', type: 'array', required: false })
|
@ApiProperty({ description: '属性列表', type: 'array', required: false })
|
||||||
@Rule(RuleType.array().optional())
|
@Rule(RuleType.array().optional())
|
||||||
attributes?: AttributeInputDTO[];
|
attributes?: AttributeInputDTO[];
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -18,24 +18,6 @@ export enum OrderFulfillmentStatus {
|
||||||
// 确认发货
|
// 确认发货
|
||||||
CONFIRMED,
|
CONFIRMED,
|
||||||
}
|
}
|
||||||
export enum OrderPaymentStatus {
|
|
||||||
// 待支付
|
|
||||||
PENDING,
|
|
||||||
// 支付中
|
|
||||||
PAYING,
|
|
||||||
// 部分支付
|
|
||||||
PARTIALLY_PAID,
|
|
||||||
// 已支付
|
|
||||||
PAID,
|
|
||||||
// 支付失败
|
|
||||||
FAILED,
|
|
||||||
// 部分退款
|
|
||||||
PARTIALLY_REFUNDED,
|
|
||||||
// 已退款
|
|
||||||
REFUNDED,
|
|
||||||
// 已取消
|
|
||||||
CANCELLED,
|
|
||||||
}
|
|
||||||
//
|
//
|
||||||
export class UnifiedProductWhere {
|
export class UnifiedProductWhere {
|
||||||
sku?: string;
|
sku?: string;
|
||||||
|
|
|
||||||
|
|
@ -62,11 +62,6 @@ export class OrderSale {
|
||||||
@Expose()
|
@Expose()
|
||||||
isPackage: boolean;
|
isPackage: boolean;
|
||||||
|
|
||||||
@ApiProperty({ description: '商品品类', type: 'string',nullable: true})
|
|
||||||
@Expose()
|
|
||||||
@Column({ nullable: true })
|
|
||||||
category?: string;
|
|
||||||
// TODO 这个其实还是直接保存 product 比较好
|
|
||||||
@ApiProperty({ description: '品牌', type: 'string',nullable: true})
|
@ApiProperty({ description: '品牌', type: 'string',nullable: true})
|
||||||
@Expose()
|
@Expose()
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
|
|
|
||||||
|
|
@ -55,9 +55,6 @@ export class Product {
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
description?: string;
|
description?: string;
|
||||||
|
|
||||||
@ApiProperty({ example: '图片URL', description: '产品图片URL' })
|
|
||||||
@Column({ nullable: true })
|
|
||||||
image?: string;
|
|
||||||
// 商品价格
|
// 商品价格
|
||||||
@ApiProperty({ description: '价格', example: 99.99 })
|
@ApiProperty({ description: '价格', example: 99.99 })
|
||||||
@Column({ type: 'decimal', precision: 10, scale: 2, default: 0 })
|
@Column({ type: 'decimal', precision: 10, scale: 2, default: 0 })
|
||||||
|
|
|
||||||
|
|
@ -1,86 +0,0 @@
|
||||||
import {
|
|
||||||
Column,
|
|
||||||
CreateDateColumn,
|
|
||||||
UpdateDateColumn,
|
|
||||||
Entity,
|
|
||||||
ManyToOne,
|
|
||||||
JoinColumn,
|
|
||||||
} from 'typeorm';
|
|
||||||
import { ApiProperty } from '@midwayjs/swagger';
|
|
||||||
import { Site } from './site.entity';
|
|
||||||
import { Product } from './product.entity';
|
|
||||||
|
|
||||||
@Entity('site_product')
|
|
||||||
export class SiteProduct {
|
|
||||||
@ApiProperty({
|
|
||||||
example: '12345',
|
|
||||||
description: '站点商品ID',
|
|
||||||
type: 'string',
|
|
||||||
required: true,
|
|
||||||
})
|
|
||||||
@Column({ primary: true })
|
|
||||||
id: string;
|
|
||||||
|
|
||||||
@ApiProperty({ description: '站点ID' })
|
|
||||||
@Column()
|
|
||||||
siteId: number;
|
|
||||||
|
|
||||||
@ApiProperty({ description: '商品ID' })
|
|
||||||
@Column({ nullable: true })
|
|
||||||
productId: number;
|
|
||||||
|
|
||||||
@ApiProperty({ description: 'sku'})
|
|
||||||
@Column()
|
|
||||||
sku: string;
|
|
||||||
|
|
||||||
@ApiProperty({ description: '类型' })
|
|
||||||
@Column({ length: 16, default: 'single' })
|
|
||||||
type: string;
|
|
||||||
|
|
||||||
@ApiProperty({
|
|
||||||
description: '产品名称',
|
|
||||||
type: 'string',
|
|
||||||
required: true,
|
|
||||||
})
|
|
||||||
@Column()
|
|
||||||
name: string;
|
|
||||||
|
|
||||||
@ApiProperty({ description: '产品图片' })
|
|
||||||
@Column({ default: '' })
|
|
||||||
image: string;
|
|
||||||
|
|
||||||
@ApiProperty({ description: '父商品ID', example: '12345' })
|
|
||||||
@Column({ nullable: true })
|
|
||||||
parentId: string;
|
|
||||||
|
|
||||||
// 站点关联
|
|
||||||
@ManyToOne(() => Site, site => site.id)
|
|
||||||
@JoinColumn({ name: 'siteId' })
|
|
||||||
site: Site;
|
|
||||||
|
|
||||||
// 商品关联
|
|
||||||
@ManyToOne(() => Product, product => product.id)
|
|
||||||
@JoinColumn({ name: 'productId' })
|
|
||||||
product: Product;
|
|
||||||
|
|
||||||
// 父商品关联
|
|
||||||
@ManyToOne(() => SiteProduct, siteProduct => siteProduct.id)
|
|
||||||
@JoinColumn({ name: 'parentId' })
|
|
||||||
parent: SiteProduct;
|
|
||||||
|
|
||||||
@ApiProperty({
|
|
||||||
example: '2022-12-12 11:11:11',
|
|
||||||
description: '创建时间',
|
|
||||||
required: true,
|
|
||||||
})
|
|
||||||
@CreateDateColumn()
|
|
||||||
createdAt: Date;
|
|
||||||
|
|
||||||
@ApiProperty({
|
|
||||||
example: '2022-12-12 11:11:11',
|
|
||||||
description: '更新时间',
|
|
||||||
required: true,
|
|
||||||
})
|
|
||||||
@UpdateDateColumn()
|
|
||||||
updatedAt: Date;
|
|
||||||
}
|
|
||||||
|
|
@ -50,7 +50,7 @@ export class DictService {
|
||||||
}
|
}
|
||||||
|
|
||||||
// 从XLSX文件导入字典
|
// 从XLSX文件导入字典
|
||||||
async importDictsFromTable(bufferOrPath: Buffer | string) {
|
async importDictsFromXLSX(bufferOrPath: Buffer | string) {
|
||||||
// 判断传入的是 Buffer 还是文件路径字符串
|
// 判断传入的是 Buffer 还是文件路径字符串
|
||||||
let buffer: Buffer;
|
let buffer: Buffer;
|
||||||
if (typeof bufferOrPath === 'string') {
|
if (typeof bufferOrPath === 'string') {
|
||||||
|
|
@ -216,10 +216,10 @@ export class DictService {
|
||||||
|
|
||||||
// 如果提供了 dictId,则只返回该字典下的项
|
// 如果提供了 dictId,则只返回该字典下的项
|
||||||
if (params.dictId) {
|
if (params.dictId) {
|
||||||
return this.dictItemModel.find({ where, relations: ['dict'] });
|
return this.dictItemModel.find({ where });
|
||||||
}
|
}
|
||||||
// 否则,返回所有字典项
|
// 否则,返回所有字典项
|
||||||
return this.dictItemModel.find({ relations: ['dict'] });
|
return this.dictItemModel.find();
|
||||||
}
|
}
|
||||||
|
|
||||||
// 创建新字典项
|
// 创建新字典项
|
||||||
|
|
|
||||||
|
|
@ -423,7 +423,7 @@ export class FreightwavesService {
|
||||||
// 设置必要的配置
|
// 设置必要的配置
|
||||||
this.setConfig({
|
this.setConfig({
|
||||||
appSecret: 'gELCHguGmdTLo!zfihfM91hae8G@9Sz23Mh6pHrt',
|
appSecret: 'gELCHguGmdTLo!zfihfM91hae8G@9Sz23Mh6pHrt',
|
||||||
apiBaseUrl: 'https://tms.freightwaves.ca',
|
apiBaseUrl: 'https://console-mock.apipost.cn/mock/0',
|
||||||
partner: '25072621035200000060'
|
partner: '25072621035200000060'
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
import { Inject, Provide } from '@midwayjs/core';
|
import { Inject, Provide } from '@midwayjs/core';
|
||||||
|
import { parse } from 'csv-parse';
|
||||||
import * as fs from 'fs';
|
import * as fs from 'fs';
|
||||||
import * as xlsx from 'xlsx';
|
|
||||||
import { In, Like, Not, Repository } from 'typeorm';
|
import { In, Like, Not, Repository } from 'typeorm';
|
||||||
import { Product } from '../entity/product.entity';
|
import { Product } from '../entity/product.entity';
|
||||||
import { PaginationParams } from '../interface';
|
import { PaginationParams } from '../interface';
|
||||||
|
|
@ -774,7 +774,7 @@ export class ProductService {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// 简单字段,直接批量更新以提高性能
|
// 简单字段,直接批量更新以提高性能
|
||||||
// UpdateProductDTO 里的简单字段: name, nameCn, description, shortDescription, price, promotionPrice, image, siteSkus
|
// UpdateProductDTO 里的简单字段: name, nameCn, description, price, promotionPrice, siteSkus
|
||||||
|
|
||||||
const simpleUpdate: any = {};
|
const simpleUpdate: any = {};
|
||||||
if (updateData.name !== undefined) simpleUpdate.name = updateData.name;
|
if (updateData.name !== undefined) simpleUpdate.name = updateData.name;
|
||||||
|
|
@ -783,7 +783,6 @@ export class ProductService {
|
||||||
if (updateData.shortDescription !== undefined) simpleUpdate.shortDescription = updateData.shortDescription;
|
if (updateData.shortDescription !== undefined) simpleUpdate.shortDescription = updateData.shortDescription;
|
||||||
if (updateData.price !== undefined) simpleUpdate.price = updateData.price;
|
if (updateData.price !== undefined) simpleUpdate.price = updateData.price;
|
||||||
if (updateData.promotionPrice !== undefined) simpleUpdate.promotionPrice = updateData.promotionPrice;
|
if (updateData.promotionPrice !== undefined) simpleUpdate.promotionPrice = updateData.promotionPrice;
|
||||||
if (updateData.image !== undefined) simpleUpdate.image = updateData.image;
|
|
||||||
if (updateData.siteSkus !== undefined) simpleUpdate.siteSkus = updateData.siteSkus;
|
if (updateData.siteSkus !== undefined) simpleUpdate.siteSkus = updateData.siteSkus;
|
||||||
|
|
||||||
if (Object.keys(simpleUpdate).length > 0) {
|
if (Object.keys(simpleUpdate).length > 0) {
|
||||||
|
|
@ -1664,20 +1663,15 @@ export class ProductService {
|
||||||
rows.push(rowData.join(','));
|
rows.push(rowData.join(','));
|
||||||
}
|
}
|
||||||
|
|
||||||
// 添加UTF-8 BOM以确保中文在Excel中正确显示
|
return rows.join('\n');
|
||||||
return '\ufeff' + rows.join('\n');
|
|
||||||
|
|
||||||
}
|
}
|
||||||
async getRecordsFromTable(file: any) {
|
|
||||||
// 解析文件(使用 xlsx 包自动识别文件类型并解析)
|
|
||||||
try {
|
|
||||||
let buffer: Buffer;
|
|
||||||
|
|
||||||
// 处理文件输入,获取 buffer
|
// 从 CSV 导入产品;存在则更新,不存在则创建
|
||||||
|
async importProductsCSV(file: any): Promise<BatchOperationResult> {
|
||||||
|
let buffer: Buffer;
|
||||||
if (Buffer.isBuffer(file)) {
|
if (Buffer.isBuffer(file)) {
|
||||||
buffer = file;
|
buffer = file;
|
||||||
}
|
} else if (file?.data) {
|
||||||
else if (file?.data) {
|
|
||||||
if (typeof file.data === 'string') {
|
if (typeof file.data === 'string') {
|
||||||
buffer = fs.readFileSync(file.data);
|
buffer = fs.readFileSync(file.data);
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -1687,31 +1681,35 @@ export class ProductService {
|
||||||
throw new Error('无效的文件输入');
|
throw new Error('无效的文件输入');
|
||||||
}
|
}
|
||||||
|
|
||||||
let records: any[] = []
|
// 解析 CSV(使用 csv-parse/sync 按表头解析)
|
||||||
// xlsx 包会自动根据文件内容识别文件类型(CSV 或 XLSX)
|
let records: any[] = [];
|
||||||
// 添加codepage: 65001以确保正确处理UTF-8编码的中文
|
try {
|
||||||
const workbook = xlsx.read(buffer, { type: 'buffer', codepage: 65001 });
|
records = await new Promise((resolve, reject) => {
|
||||||
// 获取第一个工作表
|
parse(buffer, {
|
||||||
const worksheet = workbook.Sheets[workbook.SheetNames[0]];
|
columns: true,
|
||||||
// 将工作表转换为 JSON 数组
|
skip_empty_lines: true,
|
||||||
records = xlsx.utils.sheet_to_json(worksheet);
|
trim: true,
|
||||||
|
bom: true,
|
||||||
|
}, (err, data) => {
|
||||||
|
if (err) {
|
||||||
|
reject(err);
|
||||||
|
} else {
|
||||||
|
resolve(data);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
})
|
||||||
console.log('Parsed records count:', records.length);
|
console.log('Parsed records count:', records.length);
|
||||||
if (records.length > 0) {
|
if (records.length > 0) {
|
||||||
console.log('First record keys:', Object.keys(records[0]));
|
console.log('First record keys:', Object.keys(records[0]));
|
||||||
}
|
}
|
||||||
return records;
|
|
||||||
} catch (e: any) {
|
} catch (e: any) {
|
||||||
throw new Error(`文件解析失败:${e?.message || e}`);
|
throw new Error(`CSV 解析失败:${e?.message || e}`)
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 从 CSV 导入产品;存在则更新,不存在则创建
|
|
||||||
async importProductsFromTable(file: any): Promise<BatchOperationResult> {
|
|
||||||
let created = 0;
|
let created = 0;
|
||||||
let updated = 0;
|
let updated = 0;
|
||||||
const errors: BatchErrorItem[] = [];
|
const errors: BatchErrorItem[] = [];
|
||||||
const records = await this.getRecordsFromTable(file);
|
|
||||||
// 逐条处理记录
|
// 逐条处理记录
|
||||||
for (const rec of records) {
|
for (const rec of records) {
|
||||||
try {
|
try {
|
||||||
|
|
|
||||||
|
|
@ -8,9 +8,9 @@ import * as FormData from 'form-data';
|
||||||
import { SiteService } from './site.service';
|
import { SiteService } from './site.service';
|
||||||
import { Site } from '../entity/site.entity';
|
import { Site } from '../entity/site.entity';
|
||||||
import { UnifiedReviewDTO } from '../dto/site-api.dto';
|
import { UnifiedReviewDTO } from '../dto/site-api.dto';
|
||||||
import { ShopyyGetOneOrderResult, ShopyyReview } from '../dto/shopyy.dto';
|
import { ShopyyReview } from '../dto/shopyy.dto';
|
||||||
import { BatchOperationDTO, BatchOperationResultDTO } from '../dto/batch.dto';
|
import { BatchOperationDTO, BatchOperationResultDTO } from '../dto/batch.dto';
|
||||||
import { UnifiedSearchParamsDTO,ShopyyGetAllOrdersParams } from '../dto/api.dto';
|
import { UnifiedSearchParamsDTO } from '../dto/api.dto';
|
||||||
/**
|
/**
|
||||||
* ShopYY平台服务实现
|
* ShopYY平台服务实现
|
||||||
*/
|
*/
|
||||||
|
|
@ -288,7 +288,7 @@ export class ShopyyService {
|
||||||
* @param pageSize 每页数量
|
* @param pageSize 每页数量
|
||||||
* @returns 分页订单列表
|
* @returns 分页订单列表
|
||||||
*/
|
*/
|
||||||
async getOrders(site: any | number, page: number = 1, pageSize: number = 3000, params: ShopyyGetAllOrdersParams = {}): Promise<any> {
|
async getOrders(site: any | number, page: number = 1, pageSize: number = 100, params: UnifiedSearchParamsDTO = {}): Promise<any> {
|
||||||
// 如果传入的是站点ID,则获取站点配置
|
// 如果传入的是站点ID,则获取站点配置
|
||||||
const siteConfig = typeof site === 'number' ? await this.siteService.get(site) : site;
|
const siteConfig = typeof site === 'number' ? await this.siteService.get(site) : site;
|
||||||
|
|
||||||
|
|
@ -308,8 +308,8 @@ export class ShopyyService {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
async getAllOrders(site: any | number, params: ShopyyGetAllOrdersParams = {}, maxPages: number = 10, concurrencyLimit: number = 100): Promise<any> {
|
async getAllOrders(site: any | number, params: Record<string, any> = {}, maxPages: number = 10, concurrencyLimit: number = 100): Promise<any> {
|
||||||
const firstPage = await this.getOrders(site, 1, 100, params);
|
const firstPage = await this.getOrders(site, 1, 100);
|
||||||
|
|
||||||
const { items: firstPageItems, totalPages} = firstPage;
|
const { items: firstPageItems, totalPages} = firstPage;
|
||||||
|
|
||||||
|
|
@ -365,7 +365,7 @@ export class ShopyyService {
|
||||||
* @param orderId 订单ID
|
* @param orderId 订单ID
|
||||||
* @returns 订单详情
|
* @returns 订单详情
|
||||||
*/
|
*/
|
||||||
async getOrder(siteId: string, orderId: string): Promise<ShopyyGetOneOrderResult> {
|
async getOrder(siteId: string, orderId: string): Promise<any> {
|
||||||
const site = await this.siteService.get(Number(siteId));
|
const site = await this.siteService.get(Number(siteId));
|
||||||
|
|
||||||
// ShopYY API: GET /orders/{id}
|
// ShopYY API: GET /orders/{id}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
// Test script for FreightwavesService createOrder method
|
// Test script for FreightwavesService createOrder method
|
||||||
|
|
||||||
const { FreightwavesService } = require('./dist/service/freightwaves.service');
|
const { FreightwavesService } = require('./dist/service/test-freightwaves.service');
|
||||||
|
|
||||||
async function testFreightwavesService() {
|
async function testFreightwavesService() {
|
||||||
try {
|
try {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue