refactor(订单模块): 将siteId字段类型从string改为number并添加nullable

- 统一所有实体类中siteId字段类型为number
- 为siteId字段添加nullable: true配置
- 更新相关服务、控制器和DTO中的类型定义
- 修复订单同步和产品同步中的类型转换问题
- 优化数据库查询条件避免类型不一致
This commit is contained in:
tikkhun 2025-12-01 09:28:00 +08:00
parent a5996363c8
commit 8b31da07a0
25 changed files with 149 additions and 154 deletions

8
package-lock.json generated
View File

@ -27,7 +27,7 @@
"class-transformer": "^0.5.1", "class-transformer": "^0.5.1",
"csv-parse": "^6.1.0", "csv-parse": "^6.1.0",
"dayjs": "^1.11.13", "dayjs": "^1.11.13",
"mysql2": "^3.11.5", "mysql2": "^3.15.3",
"nodemailer": "^7.0.5", "nodemailer": "^7.0.5",
"npm-check-updates": "^19.1.2", "npm-check-updates": "^19.1.2",
"swagger-ui-dist": "^5.18.2", "swagger-ui-dist": "^5.18.2",
@ -3388,9 +3388,9 @@
} }
}, },
"node_modules/mysql2": { "node_modules/mysql2": {
"version": "3.15.0", "version": "3.15.3",
"resolved": "https://registry.npmmirror.com/mysql2/-/mysql2-3.15.0.tgz", "resolved": "https://registry.npmjs.org/mysql2/-/mysql2-3.15.3.tgz",
"integrity": "sha512-tT6pomf5Z/I7Jzxu8sScgrYBMK9bUFWd7Kbo6Fs1L0M13OOIJ/ZobGKS3Z7tQ8Re4lj+LnLXIQVZZxa3fhYKzA==", "integrity": "sha512-FBrGau0IXmuqg4haEZRBfHNWB5mUARw6hNwPDXXGg0XzVJ50mr/9hb267lvpVMnhZ1FON3qNd4Xfcez1rbFwSg==",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"aws-ssl-profiles": "^1.1.1", "aws-ssl-profiles": "^1.1.1",

View File

@ -22,7 +22,7 @@
"class-transformer": "^0.5.1", "class-transformer": "^0.5.1",
"csv-parse": "^6.1.0", "csv-parse": "^6.1.0",
"dayjs": "^1.11.13", "dayjs": "^1.11.13",
"mysql2": "^3.11.5", "mysql2": "^3.15.3",
"nodemailer": "^7.0.5", "nodemailer": "^7.0.5",
"npm-check-updates": "^19.1.2", "npm-check-updates": "^19.1.2",
"swagger-ui-dist": "^5.18.2", "swagger-ui-dist": "^5.18.2",

View File

@ -15,7 +15,7 @@ import { OrderFee } from '../entity/order_fee.entity';
import { OrderRefund } from '../entity/order_refund.entity'; import { OrderRefund } from '../entity/order_refund.entity';
import { OrderRefundItem } from '../entity/order_refund_item.entity'; import { OrderRefundItem } from '../entity/order_refund_item.entity';
import { OrderSale } from '../entity/order_sale.entity'; import { OrderSale } from '../entity/order_sale.entity';
import { OrderSaleOriginal } from '../entity/order_item_original.entity'; import { OrderItemOriginal } from '../entity/order_item_original.entity';
import { OrderShipping } from '../entity/order_shipping.entity'; import { OrderShipping } from '../entity/order_shipping.entity';
import { Service } from '../entity/service.entity'; import { Service } from '../entity/service.entity';
import { ShippingAddress } from '../entity/shipping_address.entity'; import { ShippingAddress } from '../entity/shipping_address.entity';
@ -61,7 +61,7 @@ export default {
OrderRefund, OrderRefund,
OrderRefundItem, OrderRefundItem,
OrderSale, OrderSale,
OrderSaleOriginal, OrderItemOriginal,
OrderShipment, OrderShipment,
ShipmentItem, ShipmentItem,
Shipment, Shipment,

View File

@ -36,7 +36,7 @@ export class OrderController {
type: BooleanRes, type: BooleanRes,
}) })
@Post('/syncOrder/:siteId') @Post('/syncOrder/:siteId')
async syncOrder(@Param('siteId') siteId: string) { async syncOrder(@Param('siteId') siteId: number) {
try { try {
await this.orderService.syncOrders(siteId); await this.orderService.syncOrders(siteId);
return successResponse(true); return successResponse(true);
@ -51,7 +51,7 @@ export class OrderController {
}) })
@Post('/syncOrder/:siteId/order/:orderId') @Post('/syncOrder/:siteId/order/:orderId')
async syncOrderById( async syncOrderById(
@Param('siteId') siteId: string, @Param('siteId') siteId: number,
@Param('orderId') orderId: string @Param('orderId') orderId: string
) { ) {
try { try {

View File

@ -13,7 +13,7 @@ export class SubscriptionController {
// 同步订阅:根据站点 ID 拉取并更新本地订阅数据 // 同步订阅:根据站点 ID 拉取并更新本地订阅数据
@ApiOkResponse({ type: BooleanRes }) @ApiOkResponse({ type: BooleanRes })
@Post('/sync/:siteId') @Post('/sync/:siteId')
async sync(@Param('siteId') siteId: string) { async sync(@Param('siteId') siteId: number) {
try { try {
await this.subscriptionService.syncSubscriptions(siteId); await this.subscriptionService.syncSubscriptions(siteId);
return successResponse(true); return successResponse(true);

View File

@ -43,14 +43,15 @@ export class WebhookController {
@Post('/woocommerce') @Post('/woocommerce')
async handleWooWebhook( async handleWooWebhook(
@Body() body: any, @Body() body: any,
@Query('siteId') siteId: string, @Query('siteId') siteIdStr: string,
@Headers() header: any @Headers() header: any
) { ) {
const signature = header['x-wc-webhook-signature']; const signature = header['x-wc-webhook-signature'];
const topic = header['x-wc-webhook-topic']; const topic = header['x-wc-webhook-topic'];
const source = header['x-wc-webhook-source']; const source = header['x-wc-webhook-source'];
const siteId = Number(siteIdStr);
// 从数据库获取站点配置 // 从数据库获取站点配置
const site = await this.siteService.get(Number(siteId), true); const site = await this.siteService.get(siteId, true);
if (!site || !source.includes(site.apiUrl)) { if (!site || !source.includes(site.apiUrl)) {
console.log('domain not match'); console.log('domain not match');
@ -97,13 +98,13 @@ export class WebhookController {
? await this.wpApiService.getVariations(site, body.id) ? await this.wpApiService.getVariations(site, body.id)
: []; : [];
await this.wpProductService.syncProductAndVariations( await this.wpProductService.syncProductAndVariations(
String(site.id), site.id,
body, body,
variations variations
); );
break; break;
case 'product.deleted': case 'product.deleted':
await this.wpProductService.delWpProduct(String(site.id), body.id); await this.wpProductService.delWpProduct(site.id, body.id);
break; break;
case 'order.created': case 'order.created':
case 'order.updated': case 'order.updated':

View File

@ -40,7 +40,7 @@ export class WpProductController {
type: BooleanRes, type: BooleanRes,
}) })
@Post('/sync/:siteId') @Post('/sync/:siteId')
async syncProducts(@Param('siteId') siteId: string) { async syncProducts(@Param('siteId') siteId: number) {
try { try {
await this.wpProductService.syncSite(siteId); await this.wpProductService.syncSite(siteId);
return successResponse(true); return successResponse(true);
@ -107,7 +107,7 @@ export class WpProductController {
}) })
@Put('/siteId/:siteId/products/:productId') @Put('/siteId/:siteId/products/:productId')
async updateProduct( async updateProduct(
@Param('siteId') siteId: string, @Param('siteId') siteId: number,
@Param('productId') productId: string, @Param('productId') productId: string,
@Body() body: UpdateWpProductDTO @Body() body: UpdateWpProductDTO
) { ) {
@ -120,7 +120,8 @@ export class WpProductController {
if (isDuplicate) { if (isDuplicate) {
return errorResponse('SKU已存在'); return errorResponse('SKU已存在');
} }
const site = await this.siteService.get(Number(siteId), true);
const site = await this.siteService.get(siteId, true);
const result = await this.wpApiService.updateProduct( const result = await this.wpApiService.updateProduct(
site, site,
productId, productId,
@ -145,7 +146,7 @@ export class WpProductController {
*/ */
@Put('/siteId/:siteId/products/:productId/variations/:variationId') @Put('/siteId/:siteId/products/:productId/variations/:variationId')
async updateVariation( async updateVariation(
@Param('siteId') siteId: string, @Param('siteId') siteId: number,
@Param('productId') productId: string, @Param('productId') productId: string,
@Param('variationId') variationId: string, @Param('variationId') variationId: string,
@Body() body: UpdateVariationDTO @Body() body: UpdateVariationDTO
@ -160,7 +161,7 @@ export class WpProductController {
if (isDuplicate) { if (isDuplicate) {
return errorResponse('SKU已存在'); return errorResponse('SKU已存在');
} }
const site = await this.siteService.get(Number(siteId), true); const site = await this.siteService.get(siteId, true);
const result = await this.wpApiService.updateVariation( const result = await this.wpApiService.updateVariation(
site, site,
productId, productId,

View File

@ -61,8 +61,8 @@ export class QueryOrderDTO {
externalOrderId: string; externalOrderId: string;
@ApiProperty() @ApiProperty()
@Rule(RuleType.string()) @Rule(RuleType.number())
siteId: string; siteId: number;
@ApiProperty() @ApiProperty()
@Rule(RuleType.string().allow('')) @Rule(RuleType.string().allow(''))
@ -115,8 +115,8 @@ export class QueryOrderSalesDTO {
pageSize: number; pageSize: number;
@ApiProperty() @ApiProperty()
@Rule(RuleType.string()) @Rule(RuleType.number())
siteId: string; siteId: number;
@ApiProperty() @ApiProperty()
@Rule(RuleType.string()) @Rule(RuleType.string())
@ -156,8 +156,8 @@ export class QueryOrderItemDTO {
pageSize: number; pageSize: number;
@ApiProperty() @ApiProperty()
@Rule(RuleType.string().allow('')) @Rule(RuleType.number().allow(''))
siteId: string; siteId: number;
@ApiProperty() @ApiProperty()
@Rule(RuleType.string().allow('')) @Rule(RuleType.string().allow(''))

View File

@ -24,9 +24,9 @@ export class Order {
id: number; id: number;
@ApiProperty() @ApiProperty()
@Column() @Column({ nullable: true })
@Expose() @Expose()
siteId: string; // 来源站点唯一标识 siteId: number; // 来源站点唯一标识
@ApiProperty() @ApiProperty()
@Column() @Column()

View File

@ -22,9 +22,9 @@ export class OrderCoupon {
orderId: number; // 订单 ID orderId: number; // 订单 ID
@ApiProperty() @ApiProperty()
@Column( ) @Column({ nullable: true })
@Expose() @Expose()
siteId: string; // 来源站点唯一标识 siteId: number; // 站点ID
@ApiProperty() @ApiProperty()
@Column() @Column()

View File

@ -22,9 +22,9 @@ export class OrderFee {
orderId: number; // 订单 ID orderId: number; // 订单 ID
@ApiProperty() @ApiProperty()
@Column() @Column({ nullable: true })
@Expose() @Expose()
siteId: string; siteId: number; // 站点ID
@ApiProperty() @ApiProperty()
@Column() @Column()

View File

@ -22,9 +22,9 @@ export class OrderItem {
name: string; name: string;
@ApiProperty() @ApiProperty()
@Column() @Column({ nullable: true })
@Expose() @Expose()
siteId: string; // 来源站点唯一标识 siteId: number; // 来源站点唯一标识
@ApiProperty() @ApiProperty()
@Column() @Column()

View File

@ -11,9 +11,9 @@ import {
} from 'typeorm'; } from 'typeorm';
import { Order } from './order.entity'; import { Order } from './order.entity';
@Entity('order_sale_original') @Entity('order_item_original')
@Exclude() @Exclude()
export class OrderSaleOriginal { export class OrderItemOriginal {
@ApiProperty() @ApiProperty()
@PrimaryGeneratedColumn() @PrimaryGeneratedColumn()
@Expose() @Expose()
@ -27,9 +27,9 @@ export class OrderSaleOriginal {
orderId: number; // 订单 ID orderId: number; // 订单 ID
@ApiProperty() @ApiProperty()
@Column() @Column({ nullable: true })
@Expose() @Expose()
siteId: string; // 来源站点唯一标识 siteId: number; // 站点ID
@ApiProperty() @ApiProperty()
@Column({ nullable: true }) @Column({ nullable: true })

View File

@ -22,9 +22,9 @@ export class OrderRefund {
orderId: number; // 订单 ID orderId: number; // 订单 ID
@ApiProperty() @ApiProperty()
@Column() @Column({ nullable: true })
@Expose() @Expose()
siteId: string; // 来源站点唯一标识 siteId: number; // 站点ID
@ApiProperty() @ApiProperty()
@Column() @Column()

View File

@ -22,9 +22,9 @@ export class OrderRefundItem {
refundId: number; // 订单 refund ID refundId: number; // 订单 refund ID
@ApiProperty() @ApiProperty()
@Column() @Column({ nullable: true })
@Expose() @Expose()
siteId: string; // 来源站点唯一标识 siteId: number; // 站点ID
@ApiProperty() @ApiProperty()
@Column() @Column()

View File

@ -24,9 +24,9 @@ export class OrderSale {
orderId: number; // 订单 ID orderId: number; // 订单 ID
@ApiProperty() @ApiProperty()
@Column() @Column({ nullable: true })
@Expose() @Expose()
siteId: string; // 来源站点唯一标识 siteId: number; // 来源站点唯一标识
@ApiProperty() @ApiProperty()
@Column({ nullable: true }) @Column({ nullable: true })

View File

@ -22,9 +22,9 @@ export class OrderShipping {
orderId: number; // 订单 ID orderId: number; // 订单 ID
@ApiProperty() @ApiProperty()
@Column() @Column({ nullable: true })
@Expose() @Expose()
siteId: string; siteId: number; // 站点ID
@ApiProperty() @ApiProperty()
@Column() @Column()

View File

@ -20,9 +20,9 @@ export class Subscription {
// 站点唯一标识,用于区分不同来源站点 // 站点唯一标识,用于区分不同来源站点
@ApiProperty({ description: '来源站点唯一标识' }) @ApiProperty({ description: '来源站点唯一标识' })
@Column() @Column({ nullable: true })
@Expose() @Expose()
siteId: string; siteId: number;
// WooCommerce 订阅的原始 ID字符串化用于幂等更新 // WooCommerce 订阅的原始 ID字符串化用于幂等更新
@ApiProperty({ description: 'WooCommerce 订阅 ID' }) @ApiProperty({ description: 'WooCommerce 订阅 ID' })

View File

@ -21,13 +21,12 @@ export class Variation {
id: number; id: number;
@ApiProperty({ @ApiProperty({
example: '1', description: '站点 id',
description: 'wp网站ID', example: 1,
type: 'string', required: false
required: true,
}) })
@Column() @Column({ nullable: true })
siteId: string; // 来源站点唯一标识 siteId: number;
@ApiProperty({ @ApiProperty({
example: '1', example: '1',

View File

@ -1,3 +1,4 @@
import { Site } from './site.entity';
import { import {
PrimaryGeneratedColumn, PrimaryGeneratedColumn,
Column, Column,
@ -5,6 +6,8 @@ import {
UpdateDateColumn, UpdateDateColumn,
Unique, Unique,
Entity, Entity,
ManyToOne,
JoinColumn,
} from 'typeorm'; } from 'typeorm';
import { ApiProperty } from '@midwayjs/swagger'; import { ApiProperty } from '@midwayjs/swagger';
import { ProductStatus, ProductStockStatus, ProductType } from '../enums/base.enum'; import { ProductStatus, ProductStockStatus, ProductType } from '../enums/base.enum';
@ -22,13 +25,17 @@ export class WpProduct {
id: number; id: number;
@ApiProperty({ @ApiProperty({
example: '1', example: 1,
description: 'wp网站ID', description: 'wp网站ID',
type: 'string', type: 'number',
required: true, required: true,
}) })
@Column() @Column({ type: 'int', nullable: true })
siteId: string; siteId: number;
@ManyToOne(() => Site)
@JoinColumn({ name: 'siteId', referencedColumnName: 'id' })
site: Site;
@ApiProperty({ @ApiProperty({
example: '1', example: '1',

View File

@ -561,7 +561,7 @@ export class LogisticsService {
// 从数据库批量获取站点信息,构建映射以避免 N+1 查询 // 从数据库批量获取站点信息,构建映射以避免 N+1 查询
const siteIds = Array.from(new Set(orders.map(o => o.siteId).filter(Boolean))); const siteIds = Array.from(new Set(orders.map(o => o.siteId).filter(Boolean)));
const { items: sites } = await this.siteService.list({ current: 1, pageSize: 1000, ids: siteIds.join(',') }, false); const { items: sites } = await this.siteService.list({ current: 1, pageSize: 1000, ids: siteIds.join(',') }, false);
const siteMap = new Map(sites.map((s: any) => [String(s.id), s.name])); const siteMap = new Map(sites.map((s: any) => [s.id, s.name]));
return orders.map(order => ({ return orders.map(order => ({
...order, ...order,

View File

@ -6,7 +6,7 @@ import { In, Like, Repository } from 'typeorm';
import { InjectEntityModel, TypeORMDataSourceManager } from '@midwayjs/typeorm'; import { InjectEntityModel, TypeORMDataSourceManager } from '@midwayjs/typeorm';
import { plainToClass } from 'class-transformer'; import { plainToClass } from 'class-transformer';
import { OrderItem } from '../entity/order_item.entity'; import { OrderItem } from '../entity/order_item.entity';
import { OrderItemOriginal } from '../entity/order_items_original.entity';
import { OrderSale } from '../entity/order_sale.entity'; import { OrderSale } from '../entity/order_sale.entity';
import { WpProduct } from '../entity/wp_product.entity'; import { WpProduct } from '../entity/wp_product.entity';
import { Product } from '../entity/product.entity'; import { Product } from '../entity/product.entity';
@ -32,7 +32,7 @@ import { SiteService } from './site.service';
import { ShipmentItem } from '../entity/shipment_item.entity'; import { ShipmentItem } from '../entity/shipment_item.entity';
import { UpdateStockDTO } from '../dto/stock.dto'; import { UpdateStockDTO } from '../dto/stock.dto';
import { StockService } from './stock.service'; import { StockService } from './stock.service';
import { OrderSaleOriginal } from '../entity/order_item_original.entity'; import { OrderItemOriginal } from '../entity/order_item_original.entity';
@Provide() @Provide()
export class OrderService { export class OrderService {
@ -58,8 +58,6 @@ export class OrderService {
@InjectEntityModel(OrderSale) @InjectEntityModel(OrderSale)
orderSaleModel: Repository<OrderSale>; orderSaleModel: Repository<OrderSale>;
@InjectEntityModel(OrderSaleOriginal)
orderSaleOriginalModel: Repository<OrderSaleOriginal>;
@InjectEntityModel(WpProduct) @InjectEntityModel(WpProduct)
wpProductModel: Repository<WpProduct>; wpProductModel: Repository<WpProduct>;
@ -103,15 +101,17 @@ export class OrderService {
@Inject() @Inject()
siteService: SiteService; siteService: SiteService;
async syncOrders(siteId: string) { async syncOrders(siteId: number) {
const orders = await this.wpService.getOrders(siteId); // 调用 WooCommerce API 获取订单 // 调用 WooCommerce API 获取订单
const orders = await this.wpService.getOrders(siteId);
for (const order of orders) { for (const order of orders) {
await this.syncSingleOrder(siteId, order); await this.syncSingleOrder(siteId, order);
} }
} }
async syncOrderById(siteId: string, orderId: string) { async syncOrderById(siteId: number, orderId: string) {
const order = await this.wpService.getOrder(siteId, orderId); // 调用 WooCommerce API 获取订单
const order = await this.wpService.getOrder(String(siteId), orderId);
await this.syncSingleOrder(siteId, order, true); await this.syncSingleOrder(siteId, order, true);
} }
// 订单状态切换表 // 订单状态切换表
@ -120,7 +120,7 @@ export class OrderService {
[OrderStatus.RETURN_CANCELLED]: OrderStatus.REFUNDED // 已取消退款转为 refunded [OrderStatus.RETURN_CANCELLED]: OrderStatus.REFUNDED // 已取消退款转为 refunded
} }
// 由于 wordpress 订单状态和 我们的订单状态 不一致,需要做转换 // 由于 wordpress 订单状态和 我们的订单状态 不一致,需要做转换
async autoUpdateOrderStatus(siteId: string, order: any) { async autoUpdateOrderStatus(siteId: number, order: any) {
console.log('更新订单状态', order) console.log('更新订单状态', order)
// 其他状态保持不变 // 其他状态保持不变
const originStatus = order.status; const originStatus = order.status;
@ -138,7 +138,7 @@ export class OrderService {
} }
} }
// wordpress 发来, // wordpress 发来,
async syncSingleOrder(siteId: string, order: any, forceUpdate = false) { async syncSingleOrder(siteId: number, order: any, forceUpdate = false) {
let { let {
line_items, line_items,
shipping_lines, shipping_lines,
@ -226,7 +226,7 @@ export class OrderService {
} }
} }
async saveOrder(siteId: string, order: Order): Promise<Order> { async saveOrder(siteId: number, order: Order): Promise<Order> {
order.externalOrderId = String(order.id); order.externalOrderId = String(order.id);
order.siteId = siteId; order.siteId = siteId;
delete order.id; delete order.id;
@ -305,7 +305,7 @@ export class OrderService {
} }
async saveOrderItems(params: { async saveOrderItems(params: {
siteId: string; siteId: number;
orderId: number; orderId: number;
externalOrderId: string; externalOrderId: string;
orderItems: Record<string, any>[]; orderItems: Record<string, any>[];
@ -438,14 +438,14 @@ export class OrderService {
externalOrderId, externalOrderId,
refunds, refunds,
}: { }: {
siteId: string; siteId: number;
orderId: number; orderId: number;
externalOrderId: string; externalOrderId: string;
refunds: Record<string, any>[]; refunds: Record<string, any>[];
}) { }) {
for (const item of refunds) { for (const item of refunds) {
const refund = await this.wpService.getOrderRefund( const refund = await this.wpService.getOrderRefund(
siteId, String(siteId),
externalOrderId, externalOrderId,
item.id item.id
); );
@ -1302,28 +1302,7 @@ export class OrderService {
} }
} }
// update order_sale_origin if not exist
try {
const order_sale_origin_count = await this.orderSaleOriginalModel.countBy({ orderId: id });
if (order_sale_origin_count === 0) {
sales.forEach(async sale => {
const { id: saleId, ...saleData } = sale;
await this.orderSaleOriginalModel.save(saleData);
});
}
// update order_item_origin if not exist
const order_item_origin_count = await this.orderItemOriginalModel.countBy({ orderId: id });
if (order_item_origin_count === 0 && items.length != 0) {
items.forEach(async sale => {
const { id: saleId, ...saleData } = sale;
await this.orderItemOriginalModel.save(saleData);
});
}
} catch (error) {
console.log('create order sale origin error: ', error.message);
}
// 关联数据:订阅与相关订单(用于前端关联展示) // 关联数据:订阅与相关订单(用于前端关联展示)
let relatedList: any[] = []; let relatedList: any[] = [];
@ -1422,7 +1401,7 @@ export class OrderService {
return orders.map(order => ({ return orders.map(order => ({
externalOrderId: order.externalOrderId, externalOrderId: order.externalOrderId,
id: order.id, id: order.id,
name: siteMap.get(order.siteId) || '', name: siteMap.get(String(order.siteId)) || '',
})); }));
} }
@ -1478,16 +1457,23 @@ export class OrderService {
async createOrder(data: Record<string, any>) { async createOrder(data: Record<string, any>) {
const { sales, total, billing, customer_email, billing_phone } = data; // 从数据中解构出需要用的属性
const { siteId, sales, total, billing, customer_email, billing_phone } = data;
// 如果没有 siteId则抛出错误
if (!siteId) {
throw new Error('siteId is required');
}
// 获取默认数据源
const dataSource = this.dataSourceManager.getDataSource('default'); const dataSource = this.dataSourceManager.getDataSource('default');
const now = new Date(); const now = new Date();
// 在事务中处理订单创建
return dataSource.transaction(async manager => { return dataSource.transaction(async manager => {
const orderRepo = manager.getRepository(Order); const orderRepo = manager.getRepository(Order);
const orderSaleRepo = manager.getRepository(OrderSale); const orderSaleRepo = manager.getRepository(OrderSale);
const OrderSaleOriginalRepo = manager.getRepository(OrderSaleOriginal);
const productRepo = manager.getRepository(Product); const productRepo = manager.getRepository(Product);
// 保存订单信息
const order = await orderRepo.save({ const order = await orderRepo.save({
siteId: '-1', siteId,
externalOrderId: '-1', externalOrderId: '-1',
status: OrderStatus.PROCESSING, status: OrderStatus.PROCESSING,
orderStatus: ErpOrderStatus.PROCESSING, orderStatus: ErpOrderStatus.PROCESSING,
@ -1501,11 +1487,12 @@ export class OrderService {
billing, billing,
shipping: billing, shipping: billing,
}); });
// 遍历销售项目并保存
for (const sale of sales) { for (const sale of sales) {
const product = await productRepo.findOne({ where: { sku: sale.sku } }); const product = await productRepo.findOne({ where: { sku: sale.sku } });
const saleItem = { const saleItem = {
orderId: order.id, orderId: order.id,
siteId: '-1', siteId: order.siteId,
externalOrderItemId: '-1', externalOrderItemId: '-1',
productId: product.id, productId: product.id,
name: product.name, name: product.name,
@ -1513,7 +1500,6 @@ export class OrderService {
quantity: sale.quantity, quantity: sale.quantity,
}; };
await orderSaleRepo.save(saleItem); await orderSaleRepo.save(saleItem);
await OrderSaleOriginalRepo.save(saleItem);
} }
}); });
} }
@ -1606,7 +1592,7 @@ export class OrderService {
const orderRepo = manager.getRepository(Order); const orderRepo = manager.getRepository(Order);
const orderSaleRepo = manager.getRepository(OrderSale); const orderSaleRepo = manager.getRepository(OrderSale);
const orderItemRepo = manager.getRepository(OrderItem); const orderItemRepo = manager.getRepository(OrderItem);
const OrderItemOriginalRepo = manager.getRepository(OrderItemOriginal);
const productRepo = manager.getRepository(Product); const productRepo = manager.getRepository(Product);
const WpProductRepo = manager.getRepository(WpProduct); const WpProductRepo = manager.getRepository(WpProduct);
@ -1614,7 +1600,7 @@ export class OrderService {
const order = await orderRepo.findOneBy({ id: orderId }); const order = await orderRepo.findOneBy({ id: orderId });
let product: Product; let product: Product;
let wpProduct: WpProduct; let wpProduct: WpProduct;
let wpOrderItemOriginal: OrderItemOriginal;
await orderSaleRepo.delete({ orderId }); await orderSaleRepo.delete({ orderId });
await orderItemRepo.delete({ orderId }); await orderItemRepo.delete({ orderId });
for (const sale of data['sales']) { for (const sale of data['sales']) {
@ -1631,13 +1617,8 @@ export class OrderService {
for (const item of data['items']) { for (const item of data['items']) {
wpProduct = await WpProductRepo.findOneBy({ sku: item['sku'] }); wpProduct = await WpProductRepo.findOneBy({ sku: item['sku'] });
wpOrderItemOriginal = await OrderItemOriginalRepo.findOneBy({ sku: item['sku'] });
let externalVariationId = wpOrderItemOriginal?.externalVariationId;
let price = wpOrderItemOriginal?.price;
if (wpOrderItemOriginal == null) {
externalVariationId = '0';
price = 0;
}
await orderItemRepo.save({ await orderItemRepo.save({
orderId, orderId,
siteId: order.siteId, siteId: order.siteId,
@ -1645,8 +1626,7 @@ export class OrderService {
name: wpProduct.name, name: wpProduct.name,
externalOrderId: order.externalOrderId, externalOrderId: order.externalOrderId,
externalProductId: wpProduct.externalProductId, externalProductId: wpProduct.externalProductId,
externalVariationId: externalVariationId,
price: price,
sku: item['sku'], sku: item['sku'],
quantity: item['quantity'], quantity: item['quantity'],
}); });

View File

@ -19,7 +19,7 @@ export class SubscriptionService {
* *
* - WooCommerce / * - WooCommerce /
*/ */
async syncSubscriptions(siteId: string) { async syncSubscriptions(siteId: number) {
const subs = await this.wpService.getSubscriptions(siteId); const subs = await this.wpService.getSubscriptions(siteId);
for (const sub of subs) { for (const sub of subs) {
await this.syncSingleSubscription(siteId, sub); await this.syncSingleSubscription(siteId, sub);
@ -31,7 +31,7 @@ export class SubscriptionService {
* - externalSubscriptionId * - externalSubscriptionId
* - * -
*/ */
async syncSingleSubscription(siteId: string, sub: any) { async syncSingleSubscription(siteId: number, sub: any) {
const { line_items, ...raw } = sub; const { line_items, ...raw } = sub;
const entity: Partial<Subscription> = { const entity: Partial<Subscription> = {
...raw, ...raw,
@ -43,7 +43,7 @@ export class SubscriptionService {
}; };
delete (entity as any).id; delete (entity as any).id;
const existing = await this.subscriptionModel.findOne({ const existing = await this.subscriptionModel.findOne({
where: { externalSubscriptionId: String(sub.id), siteId }, where: { externalSubscriptionId: String(sub.id), siteId: siteId },
}); });
const saveEntity = plainToClass(Subscription, entity); const saveEntity = plainToClass(Subscription, entity);
if (existing) { if (existing) {

View File

@ -186,7 +186,7 @@ export class WPService {
const res = await api.get(`orders/${orderId}`); const res = await api.get(`orders/${orderId}`);
return res.data as Record<string, any>; return res.data as Record<string, any>;
} }
async getOrders(siteId: string): Promise<Record<string, any>[]> { async getOrders(siteId: number): Promise<Record<string, any>[]> {
const site = await this.siteService.get(siteId); const site = await this.siteService.get(siteId);
const api = this.createApi(site, 'wc/v3'); const api = this.createApi(site, 'wc/v3');
return await this.sdkGetAll<Record<string, any>>(api, 'orders'); return await this.sdkGetAll<Record<string, any>>(api, 'orders');
@ -197,7 +197,7 @@ export class WPService {
* wc/v1/subscriptionsSubscriptions 退 wc/v3/subscriptions * wc/v1/subscriptionsSubscriptions 退 wc/v3/subscriptions
* *
*/ */
async getSubscriptions(siteId: string): Promise<Record<string, any>[]> { async getSubscriptions(siteId: number): Promise<Record<string, any>[]> {
const site = await this.siteService.get(siteId); const site = await this.siteService.get(siteId);
// 优先使用 Subscriptions 命名空间 wcs/v1失败回退 wc/v3 // 优先使用 Subscriptions 命名空间 wcs/v1失败回退 wc/v3
const api = this.createApi(site, 'wc/v3'); const api = this.createApi(site, 'wc/v3');

View File

@ -40,21 +40,21 @@ export class WpProductService {
product.type === 'variable' product.type === 'variable'
? await this.wpApiService.getVariations(site, product.id) ? await this.wpApiService.getVariations(site, product.id)
: []; : [];
await this.syncProductAndVariations(String(site.id), product, variations); await this.syncProductAndVariations(site.id, product, variations);
} }
} }
} }
// 同步一个网站 // 同步一个网站
async syncSite(siteId: string) { async syncSite(siteId: number) {
// 通过数据库获取站点并转换为 WpSite用于后续 WooCommerce 同步 // 通过数据库获取站点并转换为 WpSite用于后续 WooCommerce 同步
const site = await this.siteService.get(Number(siteId), true); const site = await this.siteService.get(siteId, true);
const externalProductIds = this.wpProductModel.createQueryBuilder('wp_product') const externalProductIds = this.wpProductModel.createQueryBuilder('wp_product')
.select([ .select([
'wp_product.id ', 'wp_product.id ',
'wp_product.externalProductId ', 'wp_product.externalProductId ',
]) ])
.where('wp_product.siteId = :siteIds ', { .where('wp_product.siteId = :siteId', {
siteIds: siteId, siteId,
}) })
const rawResult = await externalProductIds.getRawMany(); const rawResult = await externalProductIds.getRawMany();
@ -70,7 +70,7 @@ export class WpProductService {
? await this.wpApiService.getVariations(site, product.id) ? await this.wpApiService.getVariations(site, product.id)
: []; : [];
await this.syncProductAndVariations(String(site.id), product, variations); await this.syncProductAndVariations(site.id, product, variations);
} }
const filteredIds = externalIds.filter(id => !excludeValues.includes(id)); const filteredIds = externalIds.filter(id => !excludeValues.includes(id));
@ -78,13 +78,13 @@ export class WpProductService {
await this.variationModel.createQueryBuilder('variation') await this.variationModel.createQueryBuilder('variation')
.update() .update()
.set({ on_delete: true }) .set({ on_delete: true })
.where(" variation.externalProductId in (:...filteredId) ", { filteredId: filteredIds }) .where('variation.siteId = :siteId AND variation.externalProductId IN (:...filteredId)', { siteId, filteredId: filteredIds })
.execute(); .execute();
this.wpProductModel.createQueryBuilder('wp_product') this.wpProductModel.createQueryBuilder('wp_product')
.update() .update()
.set({ on_delete: true }) .set({ on_delete: true })
.where(" wp_product.externalProductId in (:...filteredId) ", { filteredId: filteredIds }) .where('wp_product.siteId = :siteId AND wp_product.externalProductId IN (:...filteredId)', { siteId, filteredId: filteredIds })
.execute(); .execute();
} }
} }
@ -92,7 +92,7 @@ export class WpProductService {
// 控制产品上下架 // 控制产品上下架
async updateProductStatus(id: number, status: ProductStatus, stock_status: ProductStockStatus) { async updateProductStatus(id: number, status: ProductStatus, stock_status: ProductStockStatus) {
const wpProduct = await this.wpProductModel.findOneBy({ id }); const wpProduct = await this.wpProductModel.findOneBy({ id });
const site = await this.siteService.get(Number(wpProduct.siteId), true); const site = await this.siteService.get(wpProduct.siteId, true);
wpProduct.status = status; wpProduct.status = status;
wpProduct.stockStatus = stock_status; wpProduct.stockStatus = stock_status;
const res = await this.wpApiService.updateProductStatus(site, wpProduct.externalProductId, status, stock_status); const res = await this.wpApiService.updateProductStatus(site, wpProduct.externalProductId, status, stock_status);
@ -105,7 +105,7 @@ export class WpProductService {
} }
async findProduct( async findProduct(
siteId: string, siteId: number,
externalProductId: string externalProductId: string
): Promise<WpProduct | null> { ): Promise<WpProduct | null> {
return await this.wpProductModel.findOne({ return await this.wpProductModel.findOne({
@ -114,17 +114,17 @@ export class WpProductService {
} }
async findVariation( async findVariation(
siteId: string, siteId: number,
externalProductId: string, externalProductId: string,
externalVariationId: string externalVariationId: string
): Promise<Variation | null> { ): Promise<Variation | null> {
return await this.variationModel.findOne({ return await this.variationModel.findOne({
where: { siteId, externalProductId, externalVariationId }, where: { siteId, externalProductId, externalVariationId, on_delete: false },
}); });
} }
async updateWpProduct( async updateWpProduct(
siteId: string, siteId: number,
productId: string, productId: string,
product: UpdateWpProductDTO product: UpdateWpProductDTO
) { ) {
@ -140,7 +140,7 @@ export class WpProductService {
} }
async updateWpProductVaritation( async updateWpProductVaritation(
siteId: string, siteId: number,
productId: string, productId: string,
variationId: string, variationId: string,
variation: UpdateVariationDTO variation: UpdateVariationDTO
@ -163,7 +163,7 @@ export class WpProductService {
} }
async syncProductAndVariations( async syncProductAndVariations(
siteId: string, siteId: number,
product: WpProduct, product: WpProduct,
variations: Variation[] variations: Variation[]
) { ) {
@ -180,6 +180,8 @@ export class WpProductService {
product.sale_price && (existingProduct.sale_price = product.sale_price); product.sale_price && (existingProduct.sale_price = product.sale_price);
existingProduct.on_sale = product.on_sale; existingProduct.on_sale = product.on_sale;
existingProduct.metadata = product.metadata; existingProduct.metadata = product.metadata;
existingProduct.tags = product.tags;
existingProduct.categories = product.categories;
await this.wpProductModel.save(existingProduct); await this.wpProductModel.save(existingProduct);
} else { } else {
existingProduct = this.wpProductModel.create({ existingProduct = this.wpProductModel.create({
@ -195,6 +197,8 @@ export class WpProductService {
...(product.sale_price ? { sale_price: product.sale_price } : {}), ...(product.sale_price ? { sale_price: product.sale_price } : {}),
on_sale: product.on_sale, on_sale: product.on_sale,
metadata: product.metadata, metadata: product.metadata,
tags: product.tags,
categories: product.categories,
}); });
await this.wpProductModel.save(existingProduct); await this.wpProductModel.save(existingProduct);
} }
@ -202,7 +206,7 @@ export class WpProductService {
// 2. 处理变体同步 // 2. 处理变体同步
if (product.type === 'variable') { if (product.type === 'variable') {
const currentVariations = await this.variationModel.find({ const currentVariations = await this.variationModel.find({
where: { siteId, externalProductId: String(product.id) }, where: { siteId, externalProductId: String(product.id), on_delete: false },
}); });
const syncedVariationIds = new Set(variations.map(v => String(v.id))); const syncedVariationIds = new Set(variations.map(v => String(v.id)));
const variationsToDelete = currentVariations.filter( const variationsToDelete = currentVariations.filter(
@ -252,21 +256,23 @@ export class WpProductService {
} }
} else { } else {
// 清理之前的变体 // 清理之前的变体
await this.variationModel.delete({ await this.variationModel.update(
siteId, { siteId, externalProductId: String(product.id) },
externalProductId: String(product.id), { on_delete: true }
}); );
} }
} }
async syncVariation(siteId: string, productId: string, variation: Variation) { async syncVariation(siteId: number, productId: string, variation: Variation) {
let existingProduct = await this.findProduct(siteId, String(productId)); let existingProduct = await this.findProduct(siteId, String(productId));
if (!existingProduct) return; if (!existingProduct) return;
const existingVariation = await this.findVariation( const existingVariation = await this.variationModel.findOne({
where: {
siteId, siteId,
String(productId), externalProductId: String(productId),
String(variation.id) externalVariationId: String(variation.id),
); },
});
if (existingVariation) { if (existingVariation) {
existingVariation.name = variation.name; existingVariation.name = variation.name;
@ -314,6 +320,7 @@ export class WpProductService {
where.on_delete = false; where.on_delete = false;
const products = await this.wpProductModel.find({ const products = await this.wpProductModel.find({
relations: ['site'],
where, where,
skip: (current - 1) * pageSize, skip: (current - 1) * pageSize,
take: pageSize, take: pageSize,
@ -428,7 +435,7 @@ export class WpProductService {
*/ */
async isSkuDuplicate( async isSkuDuplicate(
sku: string, sku: string,
excludeSiteId?: string, excludeSiteId?: number,
excludeProductId?: string, excludeProductId?: string,
excludeVariationId?: string excludeVariationId?: string
): Promise<boolean> { ): Promise<boolean> {
@ -439,8 +446,8 @@ export class WpProductService {
varWhere.siteId = Not(excludeSiteId); varWhere.siteId = Not(excludeSiteId);
varWhere.externalProductId = Not(excludeProductId); varWhere.externalProductId = Not(excludeProductId);
varWhere.externalVariationId = Not(excludeVariationId); varWhere.externalVariationId = Not(excludeVariationId);
} else { } else if (excludeProductId) {
where.externalProductId = Not(excludeProductId); where.siteId = Not(excludeSiteId);
where.externalProductId = Not(excludeProductId); where.externalProductId = Not(excludeProductId);
} }
@ -486,7 +493,7 @@ export class WpProductService {
} }
} }
async delWpProduct(siteId: string, productId: string) { async delWpProduct(siteId: number, productId: string) {
const product = await this.wpProductModel.findOne({ const product = await this.wpProductModel.findOne({
where: { siteId, externalProductId: productId }, where: { siteId, externalProductId: productId },
}); });
@ -495,13 +502,13 @@ export class WpProductService {
await this.variationModel.createQueryBuilder('variation') await this.variationModel.createQueryBuilder('variation')
.update() .update()
.set({ on_delete: true }) .set({ on_delete: true })
.where(" variation.externalProductId = :externalProductId ", { externalProductId: productId }) .where('variation.siteId = :siteId AND variation.externalProductId = :externalProductId', { siteId, externalProductId: productId })
.execute(); .execute();
const sums = await this.wpProductModel.createQueryBuilder('wp_product') const sums = await this.wpProductModel.createQueryBuilder('wp_product')
.update() .update()
.set({ on_delete: true }) .set({ on_delete: true })
.where(" wp_product.externalProductId = :externalProductId ", { externalProductId: productId }) .where('wp_product.siteId = :siteId AND wp_product.externalProductId = :externalProductId', { siteId, externalProductId: productId })
.execute(); .execute();
console.log(sums); console.log(sums);