Home > Forum > General > OCR podsumowania VAT

OCR podsumowania VAT
0

czy OCR zaimplementowany w webcon potrafi czytać z faktur tzw. podsumowanie VAT. Wartości w takim podsumowaniu zawsze są unikalne. Tzn w podsumowaniu jest tylko jedna wartość dla stawki VAT np. 23%.

Przykład pól do odczytu w załączniku. Dane miałby się ładować nie na listę pozycji tylko do atrybutów nagłówkowych. 

Jeśli chodzi o samo czytanie - nie ma z tym problemu, ta treść zostanie przeczytana. Znajdziesz ją potem zapytaniem
SELECT [ATF_ID] --ID elementu
,[ATF_WFDID] --id elementu gdzie występuje załącznik
,[ATF_ATTID] --id w tabeli [WFDataAttachmets]
,[ATF_FRData] --treść odczytana przez OCR
FROM [BPS_Content_Att_DEV].[dbo].[WFAttachmentFiles]

Jeżeli chodzi o mapowanie treści - tutaj sprawa jest bardziej skomplikowana. Jeżeli Twoja tabela będzie zawsze miała taką samą liczbę wierszy (czyli zawsze będą pola dla 23% , 8% itd )nawet jeżeli będą puste - powinien sobie poradzić. Z praktyki - wymagało to bardzo dużo uczenia a efekty były... co najwyzej średnie


As for the reading itself - there is no problem with it, this content will be read. You will find it later with the query
SELECT [ATF_ID] --ID of the item
,[ATF_WFDID] --id of the element where the attachment appears
,[ATF_ATTID] --id in the [WFDataAttachmets] table.
,[ATF_FRData] --content read by OCR
FROM [BPS_Content_Att_DEV].[dbo].[WFAttachmentFiles].

As for content mapping - here the matter is more complicated. If your table will always have the same number of rows (that is, there will always be fields for 23% , 8% etc )even if they are empty - it should cope. From practice - it required a lot of teaching and the results were.... at most average

Translated with DeepL.com (free version)