将 task-finalization 拆为 dispatch/stock/return/redeem/confirm 等用例, claim 与 admin 经 executor registry 调用;admin 退号仅清理虚拟号不核销。
13 lines
525 B
TypeScript
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'
|