未确认收款

This commit is contained in:
zhonghua.li
2026-05-18 17:00:10 +08:00
parent cd9862f29c
commit 9bf390b347
3 changed files with 124 additions and 10 deletions

View File

@@ -73,7 +73,7 @@ export function calculateReportByDateAndTenant(reportDate, tenantId) {
return request({
url: '/lbDailyUserTrade/calculate-report/by-date-and-tenant',
method: 'post',
timeout: LONG_REQUEST_TIMEOUT,
timeout: 2 * 60 * 1000,
params: {
reportDate,
tenantId

View File

@@ -48,3 +48,12 @@ export function generateLbOrderRowDailySum(data) {
data
})
}
/** 按购买时间区间、租户 id 发送卖家确认通知到钉钉 */
export function sendSellerConfirmToDingTalk(data) {
return request({
url: '/lbOrderRow/send-seller-confirm-to-dingtalk',
method: 'post',
data
})
}