Azure-Samples / Azure-Samples/document-intelligence-code-samples

Support for Query Fields at Line Item Level (e.g., IGST Rate, IGST Amount in Invoice Items)

未关闭
#123 0 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看
主要语言
C#
星标
201
派生
115
PR 合并指标
30 天内没有已合并 PR

描述

Description


Currently, the query_fields parameter in the begin_analyze_document API allows us to specify high-level fields such as Address or InvoiceNumber.


For example:


poller = document_intelligence_client.begin_analyze_document(
"prebuilt-layout",
AnalyzeDocumentRequest(url_source=formUrl),
features=[DocumentAnalysisFeature.QUERY_FIELDS],
query_fields=[
"Address", "InvoiceNumber"],
)

This works well for document-level fields.


However, I would like to specify query fields for each line item (product) in an invoice. For instance, in the attached sample invoice, I need to extract IGST Rate and IGST Amount for each line item in the product table.


Problem


At the moment, query_fields seems to only work for top-level fields and does not allow targeting fields inside a repeating structure like invoice line items.


Request




  • Is there a way to define query fields at the line item (per product) level?




  • If not, can support for item-level query fields (e.g., tax percentages, amounts, discounts per line item) be added in a future release?




Example Use Case


For an invoice line item table:

![Image](https://github.com/user-attachments/assets/df93fdc4-bb9f-4bb2-98e5-4f87aa0f88c0)

I want to query and extract IGST Rate and IGST Amount along with other line item details.

贡献指南

打开贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。