This commit is contained in:
2025-11-06 17:53:19 +08:00
parent 264bd81307
commit ee831e5931
2 changed files with 40 additions and 10 deletions

View File

@@ -26,7 +26,16 @@ export function refreshTencentDocToken(data) {
})
}
// 根据单号填充物流链接
// 填充单个订单的物流链接(直接传单号和物流链接
export function fillSingleLogistics(thirdPartyOrderNo, logisticsLink) {
return request({
url: '/jarvis/tendoc/fillSingleLogistics',
method: 'post',
data: { thirdPartyOrderNo, logisticsLink }
})
}
// 批量同步物流链接(从数据库读取订单物流信息并填充到表格)
export function fillLogisticsByOrderNo(data) {
return request({
url: '/jarvis/tendoc/fillLogisticsByOrderNo',