新增进货单时,AI自动解析自然语言

This commit is contained in:
zhonghua.li
2026-05-14 22:30:22 +08:00
parent 69f6cf78ac
commit bb47af2639
2 changed files with 151 additions and 0 deletions

View File

@@ -38,3 +38,13 @@ export function needPrivilegeRecommenders(params) {
params
})
}
/** 大模型解析订货信息为进货申请(不落库),请求可能较慢 */
export function parseLbPurchaseApplyFromOrderInfo(data) {
return request({
url: '/lbPurchaseApply/parseFromOrderInfo',
method: 'post',
data,
timeout: 120000
})
}