提取 API¶
Odoo provides a service to automate the processing of documents of type invoices, bank statements, expenses or resumes.
The service scans documents using an OCR engine and then uses AI-based algorithms to extract fields of interest such as the total, due date, or invoice lines for invoices, the initial and final balances, the date for bank statements, the total, date for expenses, or the name, email, phone number for resumes.
这项服务是付费服务。每个文档处理将消耗一个信用点。信用点可以在 iap.odoo.com 上购买。
您可以直接在会计、费用或招聘应用程序中使用此服务,也可以通过API使用。下一节详细介绍的提取API允许您将我们的服务直接集成到您自己的项目中。
概览¶
提取 API 使用 JSON-RPC2 协议;其终端路由位于 https://iap-extract.odoo.com
。
版本¶
提取 API 的版本在路由中指定。
- 最新版本为:
invoices: 123
bank statements: 100
费用:132
申请人:102
流程¶
三个服务的流程是相同的。
- 调用 /parse 来提交您的发票(每张发票一次调用)。成功后,您将在响应中收到一个
document_uuid
。 - 然后,您需要定期轮询 /get_result 以获取文档的解析状态。或者,您可以在调用时提供一个
webhook_url
到 /parse ,当结果准备好时,您将会收到通知(通过 POST 请求)。
所有这些都应该使用HTTP POST方法。完整的发票流程的Python实现可以在这里找到: 这里
,集成测试的令牌在 集成测试部分 中提供。
解析¶
请求OCR处理文档。该路由将返回一个 document_id
,您可以使用它来获取您的请求的结果。
路线¶
/api/extract/invoice/1/parse
/api/extract/bank_statement/1/parse
/api/extract/expense/1/parse
/api/extract/applicant/1/parse
请求¶
jsonrpc
(required)参见 JSON-RPC2
method
(required)参见 JSON-RPC2
id
(required)参见 JSON-RPC2
params
account_token
(required)从中扣除信用额度的帐户令牌。每个成功的调用都需要一个令牌。
version
(required)The version will determine the format of your requests and the format of the server response. You should use the latest version available.
documents
(required)文档必须以ASCII编码的字符串形式提供。列表应该只包含一个字符串。如果提供了多个字符串,只会处理与pdf对应的第一个字符串。如果没有找到pdf,则会处理第一个字符串。出于遗留原因,此字段仅为列表。支持的扩展名有 pdf 、 png 、 jpg 和 bmp 。
- ``dbuuid``(可选)
Odoo数据库的唯一标识符。
webhook_url
(可选)可以提供一个 Webhook URL。当结果准备好时,将发送一个空的 POST 请求到
webhook_url/document_uuid
。user_infos
(可选)Information concerning the person sending the document to the extract service. It can be the client or the supplier (depending on the
perspective
). This information is not required in order for the service to work but it greatly improves the quality of the result.user_company_vat
(optional)用户的增值税号码。
user_company_name
(optional)用户公司的名称。
user_company_country_code
(optional)用户的国家代码。格式:
ISO3166 alpha-2 <https://www.iban.com/country-codes>
_。user_lang
(optional)用户语言。格式: language_code + _ + locale (例如:fr_FR, en_US)。
user_email
(optional)用户电子邮件。
purchase_order_regex
(可选)采购订单识别的正则表达式。如果未提供,默认为Odoo采购订单格式。
perspective
(optional)可以是
client
或supplier
。此字段仅适用于发票。client
表示提供的用户信息与发票的客户相关。supplier
表示与供应商相关。如果未提供,则使用客户。
{
"jsonrpc": "2.0",
"method": "call",
"params": {
"account_token": string,
"version": int,
"documents": [string],
"dbuuid": string,
"webhook_url": string,
"user_infos": {
"user_company_vat": string,
"user_company_name": string,
"user_company_country_code": string,
"user_lang": string,
"user_email": string,
"purchase_order_regex": string,
"perspective": string,
},
},
"id": string,
}
注解
The user_infos
parameter is optional but it greatly improves the quality of the result,
especially for invoices. The more information you can provide, the better.
回应¶
jsonrpc
参见 JSON-RPC2
id
参见 JSON-RPC2
result
状态
请求状态的代码。成功时为0。其他值详见下表。
status_msg
一个字符串,提供有关请求状态的详细信息。
document_token
仅在请求成功时出现。
状态 |
状态消息 |
---|---|
|
成功 |
|
不支持的文件格式 |
|
发生了一个错误 |
|
您的信用额度不足 |
|
不支持的文件格式 |
|
服务器正在维护中,请稍后再试。 |
{
"jsonrpc": "2.0",
"id": string,
"result": {
"status": string,
"status_msg": string,
"document_token": string,
}
}
注解
API实际上并不使用JSON-RPC错误方案。相反,API在成功的JSON-RPC结果中捆绑了自己的错误方案。
获取结果¶
路线¶
/api/extract/invoice/1/get_result
/api/extract/bank_statement/1/get_result
/api/extract/expense/1/get_result
/api/extract/applicant/1/get_result
请求¶
jsonrpc
(required)参见 JSON-RPC2
method
(required)参见 JSON-RPC2
id
(required)参见 JSON-RPC2
params
version
(required)The version should match the version passed to the /parse request.
document_token
(required)您想获取当前解析状态的
document_id
列表。account_token
(required)The token of the account that was used to submit the document.
{
"jsonrpc": "2.0",
"method": "call",
"params": {
"version": int,
"document_token": int,
"account_token": string,
},
"id": string,
}
回应¶
当从解析中获取结果时,检测到的字段根据文档类型而变化很大。每个响应都是一个字典列表,每个文档对应一个字典。字典的键是字段的名称,值是字段的值。
jsonrpc
参见 JSON-RPC2
id
参见 JSON-RPC2
result
状态
请求状态的代码。成功时为0。其他值详见下表。
status_msg
一个字符串,提供有关请求状态的详细信息。
results
仅在请求成功时出现。
full_text_annotation
包含了文档的未经处理的OCR完整结果
状态 |
状态消息 |
---|---|
|
成功 |
|
不支持的文件格式 |
|
发生了一个错误 |
|
服务器正在维护中,请稍后再试。 |
|
找不到该文档 |
|
文件因太小而被拒绝 |
|
Unable to get page count of the PDF file |
|
Couldn’t convert the PDF to images |
|
The PDF file is protected by a password |
|
The document contains too many pages |
{
"jsonrpc": "2.0",
"id": string,
"result": {
"status": string,
"status_msg": string,
"results": [
{
"full_text_annotation": string,
"feature_1_name": feature_1_result,
"feature_2_name": feature_2_result,
...
},
...
]
}
}
常见字段¶
feature_result
¶
我们想要从文档中提取的每个感兴趣的字段,例如总数或到期日期,也被称为 特征 。与文档类型相关联的所有提取特征的详尽列表可以在下面的章节中找到。
对于每个特征,我们返回一个候选列表,并突出显示我们的模型预测最适合该特征的候选项。
- ``selected_value``(可选)
该功能的最佳候选人。
selected_values
(可选)这个功能的最佳候选人。
candidates
(optional)按照置信度从高到低排序的此功能的所有候选人列表。
"feature_name": {
"selected_value": candidate_12,
"candidates": [candidate_12, candidate_3, candidate_4, ...]
}
候选人¶
对于每个候选项,我们都会给出其在文档中的表示和位置。候选项按照适用性递减的顺序排序。
content
候选人的表示。
coords
[center_x, center_y, width, height, rotation_angle]
. The position and dimensions are relative to the size of the page and are therefore between 0 and 1. The angle is a clockwise rotation measured in degrees.page
原始文档中包含该候选项的页面编号(从0开始)。
"candidate": [
{
"content": string|float,
"coords": [float, float, float, float, float],
"page": int
},
...
]
发票¶
发票是复杂的,可能有很多不同的字段。下表列出了我们可以从发票中提取的所有字段的详尽列表。
特性名称 |
Specificities |
---|---|
|
它包含有关检测到的 SWIFT 代码(或 BIC)的信息。 键:
如果 verified_bic 为真,则名称和城市才存在。 |
|
|
|
|
|
根据user_infos中perspective的值,这将是供应商或客户的增值税号码。如果perspective是客户,它将是供应商的增值税号码。如果是供应商,它将是客户的增值税号码。 |
|
|
|
|
|
使用 |
|
|
|
|
|
格式: YYYY-MM-DD |
|
与 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
invoice_lines
feature¶
It is returned as a list of dictionaries where each dictionary represents an invoice line.
"invoice_lines": [
{
"description": string,
"quantity": float,
"subtotal": float,
"total": float,
"taxes": list[float],
"total": float,
"unit_price": float
},
...
]
银行对账单¶
The following table gives a list of all the fields that are extracted from bank statements.
特性名称 |
Specificities |
---|---|
|
|
|
|
|
|
bank_statement_lines
feature¶
It is returned as a list of dictionaries where each dictionary represents a bank statement line.
"bank_statement_lines": [
{
"amount": float,
"description": string,
"date": string,
},
...
]
费用¶
费用比发票更简单。下表列出了我们可以从费用报告中提取的所有字段的详尽列表。
特性名称 |
Specificities |
---|---|
|
|
|
|
|
|
|
|
|
|
申请人¶
这第三种类型的文档是用于处理简历的。下表列出了我们可以从简历中提取的所有字段的详尽列表。
特性名称 |
Specificities |
---|---|
|
|
|
|
|
|
|
|
集成测试¶
您可以通过在 /parse 请求中使用 integration_token 作为 account_token
来测试您的集成。
使用此令牌将您置于测试模式,并允许您模拟整个流程,而无需实际解析文档,并且每次成功的 文档 解析不会计费。
测试模式下的唯一技术差异是您发送的文档不会被系统解析,并且您从 /get_result 得到的响应是硬编码的。
完整的发票流程的Python实现可以在这里找到: 这里
。