Files
order_site/apps/backend/src/services/fulfillment/kuaishou-cloud/task-finalization.ts
T
yml2213 792680bd19 重构 lewan 履约:拆分发货模块并统一 registry 入口
将 task-finalization 拆为 dispatch/stock/return/redeem/confirm 等用例,
claim 与 admin 经 executor registry 调用;admin 退号仅清理虚拟号不核销。
2026-07-10 22:23:26 +08:00

13 lines
525 B
TypeScript

/**
* 兼容入口:原 task-finalization 已拆为
* - dispatch-fulfillment(发货编排)
* - dispatch-stock(库存/采购/下发)
* - dispatch-failure(失败落库)
* - return-fulfillment(退号 + 核销收尾)
*
* 新代码请优先从 index.js 或对应子模块 import。
*/
export { dispatchKuaishouCloudFulfillmentTask } from './dispatch-fulfillment.js'
export { returnKuaishouCloudFulfillmentTask } from './return-fulfillment.js'
export { buildDispatchStockItems } from './dispatch-stock.js'