This commit is contained in:
van
2026-04-05 21:34:48 +08:00
parent 5fcf92d2da
commit 5cbcfa9533
3 changed files with 225 additions and 51 deletions

View File

@@ -248,6 +248,15 @@ export function batchMarkRebateReceived() {
})
}
/** 按订单 id 批量重算售价(从型号配置回填)与利润 */
export function recalcProfitBatch(ids) {
return request({
url: '/system/jdorder/tools/recalc-profit',
method: 'post',
data: { ids }
})
}
// 生成录单格式文本Excel可粘贴格式
export function generateExcelText(query) {
return request({