-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorder_processing_dataset_beam.csv
More file actions
We can't make this file beautiful and searchable because it's too large.
7158 lines (5984 loc) · 546 KB
/
order_processing_dataset_beam.csv
File metadata and controls
7158 lines (5984 loc) · 546 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
File ID,Expected Output,File,Record ID,Use Case Link,Name (from Use Case Link),Memory,PDF Content,Parsed Text from Beam AI,Calculation,test,test 2
invoice_recwT45kbPkb2I1jp,"{
""total_gross"": 12.64,
""total_net"": 10.62,
""business_name"": ""SSP Deutschland, The Squire 24, 60549 Frankfurt am Main DTE"",
""items"": [
{
""name"": ""BK Menü Whopper"",
""price"": 11.39
},
{
""name"": ""BK Extra Cheese gr."",
""price"": 1.25
}
]
}",invoice_recwT45kbPkb2I1jp.pdf (https://v5.airtableusercontent.com/v3/u/40/40/1746784800000/By6Yl9nKo80eqLqANtgbhw/oKBji50oKrNsR-ECjvszbSMIAMjW2k778Y1Bo31Y1JBK4D6RMiLK4WarV5NDuRrPnPBx2XNvcg7YmiQSdTK0xpMDgcaPl4SVqYWhmN_f-GpLjUmzeYlqFTdDJ5hRLpDIIWYxX-OlcG0-R0puWEZ0pN96v98Gfx7tQPAhnJxxm3j3VMeYMqxhHf6hu-uMhLCB/8YL7XfmbbnPC23wCFdkzJfI7mGYas5-FX2PuhW8P49M),recwT45kbPkb2I1jp,invoice,invoice,"# Content of parsed pdf:
## PDF Parsing for image ""1"" out of ""2"":
'''
From the provided image, here is the extracted text, focusing especially on the specified variables:
Business Name: SSP Deutschland, The Squire 24, 60549 Frankfurt am Main DTE
Items Purchased:
- 1 BK Menü Whopper: €11.39
- BK Whopper: Included in the menu, no additional price listed
- BK Extra Cheese gr.: €1.25
- BK Country Potatoes z: Included in the menu, no additional price listed
- BK Cola Zero 1: €12.64
Total Gross: Not specified clearly but usually includes cost of items with any potential VAT and/or other taxes; approximative calculation required.
Total Net: €10.62
Some parts of the receipt that mention payment and organization details:
Payment Mode: GiroCard
Check Closed: Jan 31, 2021, at 21:22
Address: Burger King Leipzig Hbf, Willy Brandt Platz 5, 04109 Leipzig
Terminal and transaction details:
- Terminal ID: 64095842
- POS Info: 64095842
- AS-Zeit (likely transaction time): 21:22 on January 31
- Transaction Authorization trace number (likely): #056869
This extraction will need to be combined with the content from the other section of the invoice (image 2) to have a complete view of all the variables filled in properly, such as the complete total gross after factoring in any taxes or additional charges which might be present on the second part of the invoice. The total net generally refers to the total amount before tax is applied, which here is €10.62, with a subtotal of €12.64. However, these calculations might need reviewing depending on further details on invoice part 2 concerning payments or additional taxes or fees.
'''
## PDF Parsing for image ""2"" out of ""2"":
'''
From the provided image, which is JPG number 2 out of 2, the content primarily focuses on a promotional message from Burger King, offering a reward for providing feedback through their specific platform. Here is the extracted and translated text related to customer feedback promotion:
---
""Sag uns deine Meinung und genieße Gratis-Pommes oder einen Gratis-Kaffee.
Einfach auf [website address] gehen und deinen Besuch innerhalb von 48 Stunden bewerten. Geht ganz fix, versprochen!
Zur Belohnung erhältst du einen Code, diesen bitte hier eintragen:
Bei deinem nächsten Besuch zeigst du deinen Kassenbeleg vor und erhältst deine Gratis-Pommes (klein) oder deinen Gratis-Kaffee (klein).
Nur bei der Abgabe eines maximal 30 Tage alten Kassenbons in teilnehmenden Restaurants. Keine Barauszahlung möglich. Verbindung mit anderen Preisnachlässen, 'Burger King' App-Vorteilen oder Aktionen jeglicher Art ausgeschlossen. Im Zweifel hat die jeweilige Restaurantführung das letztendliche Entscheidung über Akzeptanz von Gutscheinen/Nachlässen. Der Rechtsweg ist ausgeschlossen.""
---
However, there is no mention of key variables such as ""Total Gross"" or ""Total Net"" amount; nor does it contain any additional items that could be purchased. The ""Business Name"" repeats as Burger King, consistent with the previous image content.
Combining this with the data from memory, the following invoice details can be compiled:
**Business Name:** SSP Deutschland, The Squire 24, 60549 Frankfurt am Main DTE
**Items Purchased:**
- 1 BK Menü Whopper: €11.39
- BK Whopper: Included in the menu, no additional price listed
- BK Extra Cheese gr.: €1.25
- BK Country Potatoes z: Included in the menu, no additional price listed
- BK Cola Zero 1: €12.64
**Total Net:** €10.62
**Total Gross:** It appears it needs to be calculated from given items, but no specific gross value is provided in either image. An approximate total could be estimated based on the listed prices including tax considerations.
Please note, the second image does not contain further details that might influence the financial aspects of the invoice, focusing instead on promotional information. Therefore, essential invoice components like ""Total Gross"" must be approximated from provided item costs.
'''",,"{""output_format"":""# *Respond exactly in the following perfectly formatted JSON structure with no missing fields*:\n{\n \""extracted_data\"": \""string // {\\n\\n \\\""\\\""total_gross\\\""\\\"": \\\""\\\""string // Total gross amount from the invoice, formatted to two decimal places.\\\""\\\"",\\n\\n \\\""\\\""total_net\\\""\\\"": \\\""\\\""integer // Total net amount from the invoice.\\\""\\\"",\\n\\n \\\""\\\""business_name\\\""\\\"": \\\""\\\""string // Name of the business on the invoice.\\\""\\\"",\\n\\n \\\""\\\""items\\\""\\\"": [\\n\\n {\\n\\n \\\""\\\""name\\\""\\\"": \\\""\\\""string // Name of the item listed on the invoice.\\\""\\\"",\\n\\n \\\""\\\""price\\\""\\\"": \\\""\\\""float // Price of the item, formatted to two decimal places.\\\""\\\""\\n\\n }\\n\\n ],\\n\\n \\\""\\\""reasoning\\\""\\\"": \\\""\\\""5 sentences explaining the extraction process and any challenges encountered.\\\""\\\""\\n\\n}\""\n}"",""invoice_pdf_document"":""SSP Deutschland\nThe Squaire 24\n60549 Frankfurt am Main\nDE 137185550\n499999999 SOT's\n1\n\nCHK 828\n31 Jan'24\n\n\n<table>\n<tr>\n<td colspan=\""2\"">Eat In</td>\n<td></td>\n</tr>\n<tr>\n<td colspan=\""2\"">1 BK Menü Whopper</td>\n<td>11,39</td>\n</tr>\n<tr>\n<td colspan=\""2\"">BK Whopper</td>\n<td></td>\n</tr>\n<tr>\n<td>BK Extra</td>\n<td>Cheese gr</td>\n<td>1,25</td>\n</tr>\n<tr>\n<td colspan=\""2\"">BK Country Potatoes zum</td>\n<td></td>\n</tr>\n<tr>\n<td>L Menü</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td colspan=\""2\"">BK Cola Zero L</td>\n<td></td>\n</tr>\n<tr>\n<td>2,02 19%</td>\n<td>MwSt.IH</td>\n<td>12,64</td>\n</tr>\n<tr>\n<td>Net Total :</td>\n<td></td>\n<td>€10,62</td>\n</tr>\n<tr>\n<td>Subtotal</td>\n<td></td>\n<td>€12,64</td>\n</tr>\n<tr>\n<td>Payment</td>\n<td>€12,64</td>\n<td></td>\n</tr>\n<tr>\n<td>Change Due</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>GiroCard</td>\n<td></td>\n<td>€12,64</td>\n</tr>\n</table>\n\n\n€0,00\n\nCheck Closed\n31 Jan'24 21:22\nLeipzig Hbf\nBurger King\n04934 12248910\nSt. Nr. 047 243 68921\nVielen Dank für Ihren Besuch\n\nKundenbeleg\nBurger King Leipzig Hbf\nWilly Brandt Platz 5\n04109 Leipzig\n\nDatum:\n31.01.20\n21:22:33 US\n\nUhrzeit:\n\nBeleg-Nr.\n\nTrace-Nr.\n068690\n\nBezahlung\nContactless\nDEBIT MASTERCARD\n\nNr.\n\n############0908 00.0\n\n\n<table>\n<tr>\n<td>VU-Nr.</td>\n<td>601190857</td>\n</tr>\n<tr>\n<td>Genehmigungs-Nr.</td>\n<td>518185</td>\n</tr>\n<tr>\n<td>Terminal-ID</td>\n<td>64095842</td>\n</tr>\n<tr>\n<td>Pos-Info</td>\n<td>00 075</td>\n</tr>\n<tr>\n<td>AS-Zeit 31.01.</td>\n<td>21:22 Uhr</td>\n</tr>\n</table>\n\n\nEMV-Daten\n\n0000008001/////3F0002///FCC5E6A7/80\n\nBetrag EUR\n\nGratis: Pommes oder Kaffee!\n\nBitte wenden\n\nBitte wenden\n\nGratis: Pommes oder Kaffee!\n\nAutorisierung erfolgt\n\nBitte wenden\n\nBitte Beleg aufbewahren\n\nden\n\n<!-- PageBreak -->\n\nEinfach auf www.bk-feedback-de.com gehen\nund deinen Besuch innerhalb von 48 Stunden\nbewerten. Geht ganz fix, versprochen!\n\nZur Belohnung erhältst du einen Code,\ndiesen bitte hier eintragen:\n\nBei deinem nächsten Besuch zeigst du deinen\nKassenzettel vor und erhältst deine Gratis-\nPommes (klein) oder deinen Gratis-Kaffee (klein).\n\nNur bel der Abgabe eines maximal 30 Tage alten Kassenbons\nin teilnehmenden Restaurants. Keine Barauszahlung oder\nVerbindung mit anderen Prelsnachlässen. Burger King® behält\nsich vor, die Aktion jederzelt aufgrund missbräuchlicher\nVerwendung oder unvorhersehbarer erheblicher Komplikationen\neinzustellen. Der Rechtsweg ist ausgeschlossen.\n\n\n<figure>\n\nSag uns\n\n</figure>\n\n\ndeine Meinung\n\nund genieße\nGratis-Pommes oder\neinen Gratis-Kaffee.\n\nEinfach auf www.bk-feedback-de.com gehen\nund deinen Besuch innerhalb von 48 Stunden\nbewerten. Geht ganz fix, versprochen!\n\nZur Belohnung erhältst du einen Code,\ndiesen bitte hier eintragen:\n\nBei deinem nächsten Besuch zeigst du deinen\nKassenzettel vor und erhältst deine Gratis-\nPommes (klein) oder deinen Gratis-Kaffee (klein).\n\nNur bel der Abgabe elnes maximal 30 Tage alten Kassenbons\nin teilnehmenden Restaurants. Keine Barauszahlung oder\nVerbindung mit anderen Preisnachlässen. Burger King® behält\nsich vor, dle Aktion Jederzeit aufgrund missbräuchlicher\nVerwendung oder unvorhersehbarer erheblicher Komplikationen\neinzustellen. Der Rechtsweg ist ausgeschlossen.\n\n\n<figure>\n\nSag uns\n\n</figure>""}",.directUrlUploadAttachment/c37d49e4e04ff61eb9cbc87773f69d33/47dfdd75/invoice_recwT45kbPkb2I1jp.pdf),invoice_recwT45kbPkb2I1jp.pdf),invoice_recwT45kbPkb2I1jp
invoice_recx4wg6mwAac34bH,"{
""total_gross"": 15.48,
""total_net"": 13.01,
""business_name"": ""BURGER KING®"",
""items"": [
{
""name"": ""Chili Cheese Nuggets 6 Stk."",
""price"": 2.99
},
{
""name"": ""Cheesy Rösti Lover Beef Double King Menü Klein"",
""price"": 12.49
}
]
}",invoice_recx4wg6mwAac34bH.pdf (https://v5.airtableusercontent.com/v3/u/40/40/1746784800000/KnohP-gx_Wv6x4RwPAhPoQ/y1qBji561_hwMGU2n4x8mDQUbuW8FAHejcL8uut6ZY3IrJr-lZW8aiTYBOrS0XjPpr5QdVnG8ZHZ77rIH5v5t7suxKpY71Zgc2hgQ0CT78qCz5V3Le14iVfdOo2IzZtJPWlEwFl3Mx1K8NCrGl0vqhRmsTbU9vzoa6i0YIL_f-3kY8kft1nSKon6a9GbyTen/wCFVx4U4Eu26hWmKykNtZ_5bT6GP-BTl-5NVMozgsRI),recx4wg6mwAac34bH,invoice,invoice,"# Content of parsed pdf:
## PDF Parsing for image ""1"" out of ""2"":
'''
Based on the image provided, here are the details extracted from the invoice (JPG 1):
- **Business Name**: BURGER KING®
- **Items Purchased**:
1. Chili Cheese Nuggets 6 Stk. - EUR 2.99
2. Chili Cheese Nuggets 6 Stk. - EUR 2.99
3. Cheesy Rösti Lover Beef Double - EUR 12.49
- **Total Gross**: EUR 15,48
- **Total Net**: EUR 13.01 (As computed from the image: 15.48/1.19 assuming a 19% tax rate given)
- **MwSt. (Tax)**: 19%
Additional details related to the transaction include:
- **Transaction ID**: 105510
- **Date**: 10.01.2024
- **Time**: 20:21:25 Uhr
- **Payment Method**: Contactless DEBIT MASTERCARD
Focusing on the requested <variables> data format:
```json
{
""total_gross"": ""EUR 15,48"",
""total_net"": ""EUR 13.01"",
""business_name"": ""BURGER KING®"",
""items"": [
{
""name"": ""Chili Cheese Nuggets 6 Stk."",
""price"": ""EUR 2.99""
},
{
""name"": ""Chili Cheese Nuggets 6 Stk."",
""price"": ""EUR 2.99""
},
{
""name"": ""Cheesy Rösti Lover Beef Double"",
""price"": ""EUR 12.49""
}
]
}
```
This extracted information from the image accurately represents the visible data and focuses on the critical elements as directed. The computations and the item specifics align with the data presented in the image.
'''
## PDF Parsing for image ""2"" out of ""2"":
'''
The content on the second image appears to be a promotional advertisement rather than part of the invoice detailing or additional transactional data. The text on the image promotes an offer where customers can receive free items like fries or coffee by providing feedback. Here is the translated content from the image:
---
### Title:
**""Sag uns deine Meinung und genieße Gratis-Pommes oder einen Gratis-Kaffee.""**
(Tell us your opinion and enjoy free fries or a free coffee.)
### Main Text:
**""Einfach auf www.bk-feedback-de.com gehen und deinen Besuch innerhalb von 48 Stunden bewerten. Geht ganz fix, versprochen!""**
(Simply go to www.bk-feedback-de.com and rate your visit within 48 hours. It's really quick, promised!)
### Details:
**""Zur Belohnung erhältst du einen Code, diesen bitte hier eintragen:""**
(As a reward, you will receive a code, please enter it here:)
**""Bei deinem nächsten Besuch zeigst du deinen Kassenbeleg vor und erhältst deine Gratis-Pommes (klein) oder deinen Gratis-Kaffee (klein).""**
(On your next visit, show your receipt and you will receive your free fries (small) or free coffee (small).)
### Limitations:
**""Nur bei der Abgabe eines maximal 30 Tage alten Kassenbons in teilnehmenden Restaurants. Keine Barauszahlung oder Verbindung mit anderen Preisnachlässen. 'Burger King' behält sich vor, die Aktion aus triftigem Grund kurzfristig zu beenden oder deren Verfahrensweise zur Gewährleistung erheblicher Komplikationen einzustellen. Der Rechtsweg ist ausgeschlossen.""**
(Only valid for the submission of a receipt no older than 30 days at participating restaurants. No cash payout or connection with other discounts. 'Burger King' reserves the right to end the promotion abruptly for a significant reason or to alter procedures to ensure major complications are prevented. Legal recourse is excluded.)
---
This text does not provide further details relevant to the invoice variables such as ""total_gross"", ""total_net"", or additional ""items"". The previously provided content from image 1 remains complete and unchanged for the invoice description. Please let me know if there's anything else you would need from the information provided!
'''",,"{""output_format"":""# *Respond exactly in the following perfectly formatted JSON structure with no missing fields*:\n{\n \""extracted_data\"": \""string // {\\n\\n \\\""\\\""total_gross\\\""\\\"": \\\""\\\""string // Total gross amount from the invoice, formatted to two decimal places.\\\""\\\"",\\n\\n \\\""\\\""total_net\\\""\\\"": \\\""\\\""integer // Total net amount from the invoice.\\\""\\\"",\\n\\n \\\""\\\""business_name\\\""\\\"": \\\""\\\""string // Name of the business on the invoice.\\\""\\\"",\\n\\n \\\""\\\""items\\\""\\\"": [\\n\\n {\\n\\n \\\""\\\""name\\\""\\\"": \\\""\\\""string // Name of the item listed on the invoice.\\\""\\\"",\\n\\n \\\""\\\""price\\\""\\\"": \\\""\\\""float // Price of the item, formatted to two decimal places.\\\""\\\""\\n\\n }\\n\\n ],\\n\\n \\\""\\\""reasoning\\\""\\\"": \\\""\\\""5 sentences explaining the extraction process and any challenges encountered.\\\""\\\""\\n\\n}\""\n}"",""invoice_pdf_document"":""BURGER KING®\nn. BK-31593\n\nRendsburgerstr. 2\n30659 Hannover Lahe\nBK Deutschland GmbH\nUST-ID: DE 201 662 398\n\nBestellnummer\n677\n\nKassen ID: K2\n\nDatum: 10:01:2024\n\nTillster Order ID:\n\n08:21:42 PM\n\n27562\n\nBestellart: im Haus\n\nRechnungsnummer:\n\n122677\n\n-Rechnung - Invoice-\n\n\n<table>\n<tr>\n<th></th>\n<th></th>\n<th colspan=\""2\""></th>\n</tr>\n<tr>\n<td>1</td>\n<td>Chili Cheese Nuggets 6 Stk. Chili Cheese Nuggets 6 Stk.</td>\n<td colspan=\""2\"">EUR 2,99</td>\n</tr>\n<tr>\n<td rowspan=\""2\"">1</td>\n<td>Cheesy Rösti Lover Beef Double King Menü Klein Cheesy Rösti Lover Beef Double Mittlere King Pommes + 1 Dip Extra Ketchup Dip</td>\n<td rowspan=\""2\"">EUR 12,49</td>\n<td>wenden</td>\n</tr>\n<tr>\n<td>0,4 | Coca-Cola Zero®</td>\n<td></td>\n</tr>\n<tr>\n<td></td>\n<td>Einwegbecher</td>\n<td colspan=\""2\"">Bitte</td>\n</tr>\n</table>\n\n\nGesamtsumme:\nEUR 15,48\n\nEnthaltende MwSt (%).\n19%\nNetto: 13,01\nMwSt .: 2,47\n\nTSE-Seriennummer\n\n\n<table>\n<tr>\n<td rowspan=\""2\"">Transaktionsnummer Signaturzahler TSE-Signatur</td>\n<td>105510</td>\n</tr>\n<tr>\n<td>237848 a6JN5Mc1ltaUJ7WAY/ vN5GN5Uh5paPq5SC09FH q2+URHRHGYoT6tmrwofO HcH1ML5nDQJpdwAkmNKS wiHd65BGyp4O+xYXAeYt can5h0xM+hTgkjXiQM4c VXBBjdRVG</td>\n</tr>\n<tr>\n<td>Start Transaktion</td>\n<td>2024-01-10T19:22:06.000Z</td>\n</tr>\n<tr>\n<td>Ende Transaktion</td>\n<td>2024-01-10T19:22:07.000Z</td>\n</tr>\n</table>\n\n\nKundenbeleg\nBurger King\nRendsburger Str. 2\n30659 Hannover\n\n\n<table>\n<tr>\n<td>Datum:</td>\n<td>10.01.2024</td>\n</tr>\n<tr>\n<td>Uhrzeit:</td>\n<td>20:21:25 Uhr</td>\n</tr>\n<tr>\n<td>Beleg-Nr.</td>\n<td>5080</td>\n</tr>\n<tr>\n<td>Trace-Nr.</td>\n<td>012199</td>\n</tr>\n</table>\n\n\nzahlung\nContactless\n\nDEBIT MASTERCARD\n\nNr.\n############0908 0000\nVU-Nr.\n601979741\n\n\n<table>\n<tr>\n<td>Genehmigungs-Nr.</td>\n<td>028722</td>\n</tr>\n<tr>\n<td>Terminal-ID</td>\n<td>52090455</td>\n</tr>\n<tr>\n<td>Pos-Info</td>\n<td>00 075 00</td>\n</tr>\n<tr>\n<td>AS-Zeit 10.01.</td>\n<td>20:21 Uhr</td>\n</tr>\n</table>\n\n\nEMV-Daten 0000008001/////3F0\n002///24FE255D/80\n\nBetrag EUR\n\n15,48\n\nAutorisierung erfolgt\n\nBitte Beleg aufbewahren\n\nBitte wen\n\nGratis: Pommes oder Kaffee!\n\nBitte wenden\n\nGratis: Pommes oder Kaffee!\n\nlen\n\n<!-- PageBreak -->\n\nund genieße\nGratis-Pommes oder\neinen Gratis-Kaffee.\n\nEinfach auf www.bk-feedback-de.com gehen\nund deinen Besuch innerhalb von 48 Stunden\nbewerten. Geht ganz fix, versprochen!\n\nZur Belohnung erhältst du einen Code,\ndiesen bitte hier eintragen:\n\nBei deinem nächsten Besuch zeigst du deinen\nKassenzettel vor und erhältst deine Gratis-\nPommes (klein) oder deinen Gratis-Kaffee (klein).\n\nNur bel der Abgabe eines maximal 30 Tage alten Kassenbons\nin teilnehmenden Restaurants. Keine Barauszahlung oder\nVerbindung mit anderen Preisnachlässen. Burger King® behält\nsich vor, die Aktion Jederzeit aufgrund missbräuchlicher\nVerwendung oder unvorhersehbarer erheblicher Komplikationen\neinzustellen. Der Rechtsweg ist ausgeschlossen.\n\n\n<figure>\n\nSag uns\n\n</figure>\n\n\ndeine Meinung\n\nund genieße\nGratis-Pommes oder\neinen Gratis-Kaffee.\n\nEinfach auf www.bk-feedback-de.com gehen\nund deinen Besuch innerhalb von 48 Stunden\nbewerten. Geht ganz fix, versprochen!\n\nZur Belohnung erhältst du einen Code,\ndiesen bitte hier eintragen:\n\nBei deinem nächsten Besuch zeigst du deinen\nKassenzettel vor und erhältst deine Gratis-\nPommes (klein) oder deinen Gratis-Kaffee (klein).\n\nNur bei der Abgabe eines maximal 30 Tage alten Kassenbons\nin teilnehmenden Restaurants. Keine Barauszahlung oder\nVerbindung mit anderen Preisnachlässen. Burger King® behält\nsich vor, die Aktion jederzeit aufgrund missbräuchlicher\nVerwendung oder unvorhersehbarer erheblicher Komplikationen\neinzustellen. Der Rechtsweg ist ausgeschlossen.""}",.directUrlUploadAttachment/c8e66f7991cc425c46e4f4a5c11b1bca/1006ab38/invoice_recx4wg6mwAac34bH.pdf),invoice_recx4wg6mwAac34bH.pdf),invoice_recx4wg6mwAac34bH
invoice_rec6jnwamPj8m1u5y,"{
""total_gross"": 131.70,
""total_net"": 110.67,
""business_name"": ""Brauhaus an der Thomaskirche"",
""items"": [
{
""name"": ""Steinpilzcremesuppe"",
""price"": 17.80
},
{
""name"": ""Tomatensuppe"",
""price"": 15.00
},
{
""name"": ""Apfelschorle 0,5l"",
""price"": 11.00
},
{
""name"": ""Pils Thomask. 0,5l"",
""price"": 10.40
},
{
""name"": ""Schwarz Thomask. 0,5l"",
""price"": 20.80
},
{
""name"": ""Pizza Salame Prosc."",
""price"": 12.90
},
{
""name"": ""Pizza Tonno Cipolla"",
""price"": 12.90
},
{
""name"": ""Spaghetti Carbonara"",
""price"": 14.90
},
{
""name"": ""Gnocchi al Gorgonzol"",
""price"": 16.00
}
]
}",invoice_rec6jnwamPj8m1u5y.pdf (https://v5.airtableusercontent.com/v3/u/40/40/1746784800000/UneOILIovTZ0sxKr51pv4A/hGaF_yjZF1OLwbq3_mFLh3W7DERKj9EDBj3j06O0CHanfpC3tGkHi7vhsHmWG4mXWoc8rSf26I6dnIVXU7tMmy-BmZvS-HO3fyV5cfoKWl7gH2oZs6TpXx7nFKsnDL-0AWMSHGEyoDmXUbry_sAgeYqRxkr0MpjKtLD1bHZPB2YjEJHEUGoQlFH_GKVEFBZt/pyf7APasBmwL92Mpk_N_w-BNHjEgnzWyc12dQRgV7S8),rec6jnwamPj8m1u5y,invoice,invoice,"# Content of parsed pdf:
## PDF Parsing for image ""1"" out of ""1"":
'''
Here is the extracted content of the invoice:
### Invoice Details
- **Business Name:** Brauhaus an der Thomaskirche
- **Address:** Lazzaretti u.a.GbR, Thomaskirchhof 3-5, 04109 Leipzig
- **Telephone:** 0341 / 21 26 110
- **Fax:** 0341 / 21 26 120
- **Website:** www.brauerei-thomaskirche.de
- **Invoice Number:** 218685
- **Date:** 17.04.24
- **Bedienung (Server):** Enti
- **Tisch (Table):** 27
### Items Ordered
1. 2 x Steinpilzcremesuppe
- **Price:** 8,90 EUR each, Total: 17,80 EUR
2. 2 x Tomatensuppe
- **Price:** 7,50 EUR each, Total: 15,00 EUR
3. 2 x Apfelschorle 0,5l
- **Price:** 5,50 EUR each, Total: 11,00 EUR
4. 2 x Pils Thomask. 0,5l
- **Price:** 5,20 EUR each, Total: 10,40 EUR
5. 4 x Schwarz Thomask. 0,5l
- **Price:** 5,20 EUR each, Total: 20,80 EUR
6. 1 x Pizza Salame Prosc.
- **Price:** 12,90 EUR
7. 1 x Pizza Tonno Cipolla
- **Price:** 12,90 EUR
8. 1 x Spaghetti Carbonara
- **Price:** 14,90 EUR
9. 1 x Gnocchi al Gorgonzol
- **Price:** 16,00 EUR
### Payment Information
- **Netto (Net Total):** 110,67 EUR
- **MwSt (VAT) 19%:** 21,03 EUR
- **Summe (Total Gross):** 131,70 EUR
- **Paid by:** Cash
### Additional Information
- **ECR Serial:** 45.15.1131.05.1.2
- **TSE Serial:** 0B78934344F6F0747DD6
- **TSE-Transaktionsnummer:** 708028
- **Signaturzähler:** 1464731
### Items Data for Variables
- **total_net:** ""110,67""
- **total_gross:** ""131,70""
- **business_name:** ""Brauhaus an der Thomaskirche""
- **items:**
- {""name"":""Steinpilzcremesuppe"", ""price"":8.90}
- {""name"":""Tomatensuppe"", ""price"":7.50}
- {""name"":""Apfelschorle"", ""price"":5.50}
- {""name"":""Pils Thomask."", ""price"":5.20}
- {""name"":""Schwarz Thomask."", ""price"":5.20}
- {""name"":""Pizza Salame Prosc."", ""price"":12.90}
- {""name"":""Pizza Tonno Cipolla"", ""price"":12.90}
- {""name"":""Spaghetti Carbonara"", ""price"":14.90}
- {""name"":""Gnocchi al Gorgonzol"", ""price"":16.00}
This extraction completes the parsing of the content of the invoice as requested.
'''"," Braütiaus an der ^.raasklrche
Lazzaretti u.a.öbR
thomaskircbhof :3-ا؛
04,09 Leipzig
-felefon: 0341 / 21 26 110
Fax^ 0341 / 21 26 120
St.Nr.:231/158/15709
WWW.brauerei-thomask1rche de
Rechnung 218665
Oaluro: 17.04.24
Red.: Enti
lisch: 27
ELIR EP EUR 6Ρ
2 X Steinpilzcremesuppe 8.90 17,80
2 X lomatensuppe 7.50 15.00
2 X Apfelschorle 0.51 5.50 11.00
2XPilslhomask. C؛.5I 5.20 10,40
4 X Schwa['z lhomask.0.51 5,20 20.80
1 X Pizza Salame Prose-, 12.90 12.90
гх Pizza Tonno Cipolla 12.90 12.90
1 X Spaghetti Carbonara 14.90 14.90
1 X 6nocchi al 6orsonzol 16.00 16.00
Netto Eur 110.6'7
+ 19.0« MwSt: 21.03
SUI Eur 131.70
Bezahlt: Bar 131.70
Vielen Dank
für Ihren Besudl!
WWW. euг0^kas؛seทsystاзm£إ. de
ECR Serial:45.15.1131.05.1.2
TSE Serial :0B7S394334EIF6CI747DD6
EFAFA308DFF4FFECCEAD
E0302F310,1CF2A38I31E؛A
ЗЕОА
TSE-Transaktionsnuramer: 708028
Signaturzahler: 14134731
Erstbuchung: 17.04.2024 17:50:46
V0;45.15.1131.05.1.2:Kassenbeleg-Vl؛Beleg.
131.70_0.00-0.00-0.00-0.00131.70:Bar;7080
28؛1464731;2024-04-17اً19:57:4&.0002اً2024-0
4-17119:57:49.000Z;ecdsa-plain-SHA384:unix
Time:fPB88AkHIhVj97s3uZW+Em6ktdFehU5NnzycE
3dKFkSH5wjpVefVsZefU316Eo3el3RZp6cyUJNdv/cb
ZwkqpB495yJ8r7NffCYÖ6xfTsvAOj١'FfzZdSn04XK3
BMCjT7b:BA5J6NNglON2BYI3oHB20dVKmrEa/vAbs6
/kBqbGL!5Lo40TUsPXkoIcVmjdgvlLuLIMIydBlpg4cUj
P2gXHIM9d3f1z1p6i+xHZ8XHOyv5Hnc|MfzYX6pf49kW
VIwga,t٧l16PWA==
Bewirtungsaufwand
(Par. 4 Abs. 5 Ziff. 2 EStG)
Bewirtete Personen:
Anlass der Bewirtung:
Höhe der Aufwendungen:
b- Bewirtg. im Restaurant
in anderen Fällen:
","{""output_format"":""# *Respond exactly in the following perfectly formatted JSON structure with no missing fields*:\n{\n \""extracted_data\"": \""string // {\\n\\n \\\""\\\""total_gross\\\""\\\"": \\\""\\\""string // Total gross amount from the invoice, formatted to two decimal places.\\\""\\\"",\\n\\n \\\""\\\""total_net\\\""\\\"": \\\""\\\""integer // Total net amount from the invoice.\\\""\\\"",\\n\\n \\\""\\\""business_name\\\""\\\"": \\\""\\\""string // Name of the business on the invoice.\\\""\\\"",\\n\\n \\\""\\\""items\\\""\\\"": [\\n\\n {\\n\\n \\\""\\\""name\\\""\\\"": \\\""\\\""string // Name of the item listed on the invoice.\\\""\\\"",\\n\\n \\\""\\\""price\\\""\\\"": \\\""\\\""float // Price of the item, formatted to two decimal places.\\\""\\\""\\n\\n }\\n\\n ],\\n\\n \\\""\\\""reasoning\\\""\\\"": \\\""\\\""5 sentences explaining the extraction process and any challenges encountered.\\\""\\\""\\n\\n}\""\n}"",""invoice_pdf_document"":""Brauhaus an der Thomaskirche\nLazzaretti u.a.GbR\nThomaskirchhof 3-5\n04109 Leipzig\nTelefon: 0341 / 21 26 110\nFax: 0341 / 21 26 120\nSt.Nr .: 231/158/15709\nwww.brauerei-thomaskirche.de\n\nRechnung 218665\n\nDatum: 17.04.24\n\nBed .: Enti\n\nTisch: 27\n\n\n<table>\n<tr>\n<th colspan=\""2\""></th>\n<th>EUR EP</th>\n<th>EUR GP</th>\n</tr>\n<tr>\n<td>2</td>\n<td>X Steinpi Izcremesuppe</td>\n<td>8,90</td>\n<td>17,80</td>\n</tr>\n<tr>\n<td>2</td>\n<td>X Tomatensuppe</td>\n<td>7,50</td>\n<td>15,00</td>\n</tr>\n<tr>\n<td>2</td>\n<td>X Apfelschorle 0,51</td>\n<td>5,50</td>\n<td>11,00</td>\n</tr>\n<tr>\n<td>2</td>\n<td>X Pils Thomask. 0,5l</td>\n<td>5,20</td>\n<td>10,40</td>\n</tr>\n<tr>\n<td>4</td>\n<td>X Schwarz Thomask.0,5l</td>\n<td>5,20</td>\n<td>20,80</td>\n</tr>\n<tr>\n<td>1</td>\n<td>X Pizza Salame Prosc.</td>\n<td>12,90</td>\n<td>12,90</td>\n</tr>\n<tr>\n<td>1</td>\n<td>X Pizza Tonno Cipolla</td>\n<td>12,90</td>\n<td>12,90</td>\n</tr>\n<tr>\n<td>1</td>\n<td>X Spaghetti Carbonara</td>\n<td>14,90</td>\n<td>14,90</td>\n</tr>\n<tr>\n<td>1</td>\n<td>X Gnocchi al Gorgonzol</td>\n<td>16,00</td>\n<td>16,00</td>\n</tr>\n</table>\n\n\n<table>\n<tr>\n<th colspan=\""2\"">Netto</th>\n<th>Eur 110,67</th>\n</tr>\n<tr>\n<th colspan=\""2\"">+ 19,0% Mwst :</th>\n<th>21,03</th>\n</tr>\n<tr>\n<th colspan=\""2\"">SUMME Eur</th>\n<th>131,70</th>\n</tr>\n<tr>\n<td>Bezahlt: Bar</td>\n<td></td>\n<td>131,70</td>\n</tr>\n</table>\n\n\nVielen Dank\nfür Ihren Besuch!\n\nwww.euro-kassensysteme.de\n\nECR Serial :45.15.1131.05.1.2\nTSE Serial:0B78394334EF60747DD6\nEFAFA308DFF4FFECCEAD\nE0302F3101CF2A3861BA\n3EOA\n\nSignaturzähler: 1464731\nErstbuchung: 17.04.2024 17:50:46\n\nVO:45.15.1131.05.1.2;Kassenbeleg-V1;Beleg\n131.70_0.00_0.00_0.00_0.00 131.70:Bar:7080\n28;1464731;2024-04-17T19:57:49.000Z;2024-0\n4-17T19:57:49.000Z;ecdsa-plain-SHA384;unix\nTime: fPB88AkHIhVj97s3uZW+Em6ktdFehU5NnzycE\n3dKFkSH5w jpVefVsZefU3i6Eo3eGRZpGcyUJNdv/cb\nZwkqpB495yJ8r7NffCYQ6xfTsvAOjvFfzZdSn04XK3\nBMC jT7b;BA5JGNNgION2GY13oHB20dVKmrEa/vAbsG\n/kBqbGL5Lo40TUsPXkoIcVm jdgvLuUMI ydB 1pg4cUj\nP2gXHIM9d3f1z1pGi+xHZ8XHOyv5HncMfzYX6pf49kW\nVIwga+UHGPWA ==\n\nBewirtungsaufwand-Angaben\n(Par. 4 Abs. 5 Ziff. 2 EStG)\n\nBewirtete Personen:\n\nAnlass der Bewirtung:\n\nHöhe der Aufwendungen:\n\nb. Bewirtg. im Restaurant\n\nin anderen Fällen:""}",.directUrlUploadAttachment/0cba0ef3dacf00f558dd6ca6cb517443/2b96f96c/invoice_rec6jnwamPj8m1u5y.pdf),invoice_rec6jnwamPj8m1u5y.pdf),invoice_rec6jnwamPj8m1u5y
invoice_recHWC7qGba0eRogA,"{
""total_gross"": 403.42,
""total_net"": 339.01,
""business_name"": ""Zweirad-Center Stadler, Straße des 18. Oktober 46, 04103 Leipzig"",
""items"": [
{
""name"": ""Bremsscheibe 6-Loch 160mm, SMRT66 Metal/Resin"",
""price"": 19.99
},
{
""name"": ""Bremsscheibe 6-Loch 180mm, SMRT66 Metal/Resin"",
""price"": 21.99
},
{
""name"": ""Adapter Satz für Disc-Br mit Schrauben"",
""price"": 8.99
},
{
""name"": ""Scheibenbremse MT501 2-Kolben, HR, I-Spec II, Resin"",
""price"": 69.99
},
{
""name"": ""Scheibenbremse MT501 2-Kolben, VR, I-Spec II, Resin"",
""price"": 64.99
},
{
""name"": ""Kette CN-HG71 6/7/8-fach, 138 Glieder"",
""price"": 21.99
},
{
""name"": ""Kassette HG51 8-fach, 11-32 Zähne"",
""price"": 21.99
},
{
""name"": ""Bremsscheiben erneuern vorn zzgl. Material"",
""price"": 28.50
},
{
""name"": ""Bremsscheiben erneuern hinten zzgl. Material"",
""price"": 28.50
},
{
""name"": ""Hydraulische Bremsanlage montieren vorn&hinten zzgl. Mat"",
""price"": 76.00
},{
""name"": ""Katte & Kassette wechseln zzgl. Material"",
""price"": 38.00
},{
""name"": ""Klein- und Reinigungsmaterial"",
""price"": 2.49
},{
""name"": ""Altteile dürfen entsorgt werden"",
""price"": 0.00
}
]
}",invoice_recHWC7qGba0eRogA.pdf (https://v5.airtableusercontent.com/v3/u/40/40/1746784800000/zPYz_HyapScGcZUcaB0zHA/lezHx1EAiwYtKCGyJtuIk_rIb34jG63w4VJgAi7ENxELfCDTPTXiCh9gTGNFvikm-J4KFYoBuLbsec5Iqx62OuAs0JgiVbQ3aPCdpgzpDbNaA2-685pICK_NHTHRMDuC1u56wgw_gx8guno7PkZ_51Q6fo2FGv0khpr1NAtKY0LsyhqqrqmCcGW_KXSeVfRZ/HZn1j6-LByRQK_i6zrYDy6utiDFssmWJZjxAmRlLtA8),recHWC7qGba0eRogA,invoice,invoice,"# Content of parsed pdf:
## PDF Parsing for image ""1"" out of ""2"":
'''
Based on the provided image of the invoice from Stadler, a Zweirad-Center in Germany, here is the extracted information that specifically fills out the provided variables and additional content details:
### Invoice Details:
- **Business Name**: Zweirad-Center Stadler, Straße des 18. Oktober 46, 04103 Leipzig
- **Invoice Number**: 43703
- **Date**: 22.02.2024
- **Customer Name**: Herr Jens Walter
- **Customer Address**: Lausenweg 45, 04207 Leipzig
- **Telephone**: 0341 / 7803957
- **Mobile**: +49 171 7803957
- **Email**: [email protected]
### Items Listed:
1. **Bremsscheibe 6-Loch 160mm, SMRT66 Metal/Resin**
- Item No: 307524
- Price: €19.99
- Total: €19.99
2. **Bremsscheibe 6-Loch 180mm, SMRT66 Metal/Resin**
- Item No: 307523
- Price: €21.99
- Total: €21.99
3. **Adapter Satz für Disc-Br mit Schrauben**
- Item No: 305643
- Price: €8.99
- Total: €8.99
4. **Scheibenbremse MT501 2-Kolben, HR, I-Spec II, Resin**
- Item No: 311381
- Price: €69.99
- Total: €69.99
5. **Scheibenbremse MT501 2-Kolben, VR, I-Spec II, Resin**
- Item No: 311823
- Price: €64.99
- Total: €64.99
6. **Kette CN-HG71 6/7/8-fach, 138 Glieder**
- Item No: 248956
- Price: €21.99
- Total: €21.99
7. **Kassette HG51 8-fach, 11-32 Zähne**
- Item No: 457471
- Price: €21.99
- Total: €21.99
### Total Gross:
- **Total Gross Amount**: €229.93
### Memory Update:
- **Parsed Data**: Content of parsed PDF with the above mentioned details for reference or further processing.
This is the parsed information from the first image. Further details, if needed, would be obtained from the second image of this invoice set.
'''
## PDF Parsing for image ""2"" out of ""2"":
'''
Based on the provided image, here is the completion of the extracted details from the second part of the invoice from Zweirad-Center Stadler:
### Additional Items Listed (Continuation from First Image):
8. **Arbeitsbeschreibung: Bremsscheibe erneuern vorn zzgl. Material**
- Article No: 217.00
- Price: €1.90
- Total: €28.50
9. **Arbeitsbeschreibung: Bremsscheibe erneuern hinten zzgl. Material**
- Article No: 218.00
- Price: €1.90
- Total: €28.50
10. **Hydraulische Bremsanlage montieren vorn/hinten zzgl. Mat**
- Article No: 230.00
- Price: €1.90
- Total: €76.00
11. **Kette & Kassette wechseln zzgl. Material**
- Article No: 10.00
- Price: €1.90
- Total: €38.00
12. **Klein- und Reinigungsmaterial**
- Article No: 903.00
- Price: Free
- Total: €2.49
### Total Net and Gross:
- **Total Net Amount**: €339.01
- **Total Gross Amount**: €403.42
### Complete Entry:
- **Business Name**: Zweirad-Center Stadler, Straße des 18. Oktober 46, 04103 Leipzig
- **Total Gross**: €403.42
- **Total Net**: €339.01
```json
{
""total_gross"": ""€403.42"",
""total_net"": ""€339.01"",
""business_name"": ""Zweirad-Center Stadler, Straße des 18. Oktober 46, 04103 Leipzig"",
""items"": [
{""name"": ""Arbeitsbeschreibung: Bremsscheibe erneuern vorn zzgl. Material"", ""price"": ""€1.90""},
{""name"": ""Arbeitsbeschreibung: Bremsscheibe erneuern hinten zzgl. Material"", ""price"": ""€1.90""},
{""name"": ""Hydraulische Bremsanlage montieren vorn/hinten zzgl. Mat"", ""price"": ""€1.90""},
{""name"": ""Kette & Kassette wechseln zzgl. Material"", ""price"": ""€1.90""},
{""name"": ""Klein- und Reinigungsmaterial"", ""price"": ""Free""}
]
}
```
This completes the parsed information from the entire invoice.
'''"," ٠ Berlin Charlottenburg .MOncbengladbacb ٠ Nürnberg
.Berlin Prenzlauer Berg .Leipzig/Halle «Fiirtb
m .Bremen .Leipzig Alte Messe .Regensburg
«Hannover «Chemnitz .Straubing
.Essen .Mülheim-Kärlich «Filderstadt
Deutsch!ands größtes Zwelrad-Center «Düsseldorf Eller .Frankfurt a.M. .Hammerau
٠ Düsseldorf Am Wehrhahn .Mannheim .München
wwwzweirad-stadler.de
Zweirad-Center Stadler, Straße des 18. Oktober 46. 04103 Leipzig
Herr
dens Walter
Lausnerweg 45
04207 Leipzig
KDNR
Rechnungsda؛um Verkaufsnr.: liefersctiein Nr.: Liefer-ZAbholdatum Kundennr.: telefon: 0341/
22.02.2024 44828 40923 Do, 22.02.2024 44124 Mob7803957171+49؛!:
Te!efax: 0341/
E-Mai!: js.wa؛[email protected]
stellp؛atz: 349
Rechnung Nummer 43703
Betreff: Pegasus Trekking
Menge Bezeichnung Artikelnr. Preis EUR Wert EUR
Materiat:
1 # BREMSSCHEIBE 6-toch 160ΜΜ, SMRT66 Metal/Resin 307524 19,99 19,99
Shimano BREMSSCHEIBE 160mm
6-loch (Artlief. ESMRT66S)
1 # BREMSSCHEIBE 6-toch 180ΜΜ, SMRT66 Metal/Resin 307523 21.99 21,99
Shimano BREMSSCHEIBE 180mm
6-loch (Artlief. ESMRT66M)
1 # ADAPT. SATZ F DISC-BR MIT SCHRAUBEN 305643 8,99 8,99
Adapter Satz für Discbrake
mit Schrauben, PM 180mm (Artlief. ESMMAF180PP2A)
1 Scheibenbremse ΜΤ501 2-K0lben,HR. 1-Spec II, Resin 311381 69,99 69,99
Scheibenbremse ΜΤ501
HR, 1-Spec II, Resin BOSS (Artlief. EMT5012JRRXRA170)
1 Scheibenbremse ΜΤ501 2-Kolben,٧R, 1-Spec II, Resin 311823 64,99 64,99
Scheibenbremse ΜΤ501
VR, 1-Spec II, Resin BOSS (Artlief. EMT5012JLFPRA100)
1 # Kette CN-HG71 6/7/8-fach, 138 Glieder 248956 21,99 21,99
Shimano Kette CN-HG71 6/7/8-F
138 Glieder (Artlief. ECNHG71C1381)
1 # KASSETTE HG51 8F.11-32Z 457471 21,99 21,99
stilmano Kassette HG51
8-fach, 11-32 zahne (Artlief. ECSHG518132)
Summe: 229,93
Zweirad-Centsr Stadler teipzig Alte Messe GmbH Telefon: +49 (0) 341 / 212068 - 0 Postbank
Straße des 18. Oktober 45 Verkauf: +49 (0) 341 / 212068 - 128 IBAN: DE72760100850162069856
04103 Leipzig Werkstatt: +49 (0) 341 / 212068 - 129 BIC: PBNKDEFFXXX
Telefax: +49 (0) 341 / 212068 - 137 USt-ID: DE321559864
Eingetragen im Registergericht: steuernr.: 231/123/04576
Leipzig HRB 35591 [email protected]
Geschäftsführer: Bärbel Stadler, wwftr.zweirad-stadler.de
Caroline Elleke
1 1 von 2
٠ Berlin Charlottenburg .MOnchengladbach .Nürnberg
.Berlin Prenzlauer Berg «Leipzlg/Halle ٠Fürtb
.Bremen «Leipzig Alte Messe .Regensburg
.Hannover .Chemnitz .Straubing
.Essen .Mülheim-Kärlich .Filderstadt
Deutsch!ands größtes Zwe!rad""Center .Düsseldorf Eller .Frankfurt a.M. .Hammerau
٠ Düsseldorf Am Wehrhahn .Mannheim .München
www.zwelrad-stadler.de
Zweirad-Center Stadler. Straße des 18. Oktober 46. 04103 Leipzig
Herr
Jens Walter
Lausneweg 45
04207 Leipzig
Rechnungsdatum Verkaufsnr.: Liefersche!n Nr.: Liefer-ZAbhotdatum: Kundennr.: Te!efon: 0341/
22..2.2024 44828 40923 Do, 22.02.2024 44124 Mob!!: .49 171 7803957
Telefax: 0341/
E-Mail: [email protected]
Rechnung Nummer 437.3
Menge Bezeichnung Artikelnr. Preis EUR Wert EUR
Arbeitsbeschreibunq:
15 Bremsscheibe erneuern vorn zzgl. Material 217.00 1,90 28,50
203mm
15 Bremsscheibe erneuern hinten zzgl. Material 218.00 1,90 28,50
40 Hydraulische Bremsanlage montieren vorn&hinten zzgl.Mat 230.00 1,90 76,00
20 Kette & Kassette wechseln zzgl. Material 10.00 1,90 38,00
Klein- und Reinigungsmaterial 903.00 2,49
Altteile dürfen entsorgt werden 904.00 0.00
Summe: 173,49
Summe 403,42
Noch zu zahlen 403,42
Enthaltene Mehrwertsteuer:
19,00 % MwSt (= EUR 64,41) auf EUR 339,01
Auftragsannahme erfolgte durch Kehrer-liebmann Michael.
Ihre Reparatur wurde ausgeführt von Chmieleski Sebastian.
Zweirad-Center Stadler teipzig Alte Messe GmbH Telefon: .49 (0) 341 / 212068 - 0 Postbank
Straße des 18. Oktober 46 Verkauf; .49 (0) 341 / 212068 - 128 IBAN: DE72760100850162069856
04103 leipzig Werkstatt: +49 (0) 341 / 212068 - 129 BIC: PBNKDEFFXXX
Telefax: +49 (0) 341 / 212068 - 137 USt-ID: DE321559S64
Eingetragen im Registergericht; steuernr.: 231/123/04576
leipzigHRB 35591 [email protected]
www.zweirad-stadler.de
I Geschäftsführer: Bärbel Stadler,
Caroline Elleke
2 von 2
","{""output_format"":""# *Respond exactly in the following perfectly formatted JSON structure with no missing fields*:\n{\n \""extracted_data\"": \""string // {\\n\\n \\\""\\\""total_gross\\\""\\\"": \\\""\\\""string // Total gross amount from the invoice, formatted to two decimal places.\\\""\\\"",\\n\\n \\\""\\\""total_net\\\""\\\"": \\\""\\\""integer // Total net amount from the invoice.\\\""\\\"",\\n\\n \\\""\\\""business_name\\\""\\\"": \\\""\\\""string // Name of the business on the invoice.\\\""\\\"",\\n\\n \\\""\\\""items\\\""\\\"": [\\n\\n {\\n\\n \\\""\\\""name\\\""\\\"": \\\""\\\""string // Name of the item listed on the invoice.\\\""\\\"",\\n\\n \\\""\\\""price\\\""\\\"": \\\""\\\""float // Price of the item, formatted to two decimal places.\\\""\\\""\\n\\n }\\n\\n ],\\n\\n \\\""\\\""reasoning\\\""\\\"": \\\""\\\""5 sentences explaining the extraction process and any challenges encountered.\\\""\\\""\\n\\n}\""\n}"",""invoice_pdf_document"":""<figure>\n\nSiadler\nDeutschlands größtes Zweirad-Center\n\n</figure>\n\n\nwww.zweirad-stadler.de\n\n\n<table>\n<tr>\n<th>· Berlin Charlottenburg</th>\n<th>· Mönchengladbach</th>\n<th>· Nürnberg</th>\n</tr>\n<tr>\n<td>· Berlin Prenzlauer Berg</td>\n<td>· Leipzig/Halle</td>\n<td>· Fürth</td>\n</tr>\n<tr>\n<td>· Bremen</td>\n<td>· Leipzig Alte Messe</td>\n<td>· Regensburg</td>\n</tr>\n<tr>\n<td>· Hannover</td>\n<td>· Chemnitz</td>\n<td>· Straubing</td>\n</tr>\n<tr>\n<td>· Essen</td>\n<td>· Mülheim-Kärlich</td>\n<td>· Filderstadt</td>\n</tr>\n<tr>\n<td>· Düsseldorf Eller</td>\n<td>· Frankfurt a. M.</td>\n<td>· Hammerau</td>\n</tr>\n<tr>\n<td>· Düsseldorf Am Wehrhahn</td>\n<td>· Mannheim</td>\n<td>· München</td>\n</tr>\n</table>\n\n\nZweirad-Center Stadler, Straße des 18. Oktober 46, 04103 Leipzig\n\nHerr\nJens Walter\nLausnerweg 45\n04207 Leipzig\n\nKDNR\n\n\n<table>\n<tr>\n<th>Rechnungsdatum</th>\n<th>Verkaufsnr .:</th>\n<th>Lieferschein Nr .:</th>\n<th>Liefer-/Abholdatum:</th>\n<th>Kundennr .:</th>\n</tr>\n<tr>\n<td>22.02.2024</td>\n<td>44828</td>\n<td>40923</td>\n<td>Do, 22.02.2024</td>\n<td>44124</td>\n</tr>\n</table>\n\n\n<table>\n<tr>\n<td>Telefon:</td>\n<td>0341/</td>\n</tr>\n<tr>\n<td>Mobil:</td>\n<td>+49 171 7803957</td>\n</tr>\n<tr>\n<td>Telefax:</td>\n<td>0341/</td>\n</tr>\n<tr>\n<td>E-Mail:</td>\n<td>[email protected]</td>\n</tr>\n<tr>\n<td></td>\n<td>Stellplatz: 349</td>\n</tr>\n</table>\n\n\n# Rechnung Nummer 43703\n\nBetreff:\nPegasus Trekking\n\n\n<table>\n<tr>\n<th>Menge</th>\n<th>Bezeichnung</th>\n<th>Artikelnr.</th>\n<th>Preis EUR</th>\n<th>Wert EUR</th>\n</tr>\n<tr>\n<td colspan=\""2\"">Material:</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td rowspan=\""2\"">1</td>\n<td># BREMSSCHEIBE 6-Loch 160MM, SMRT66 Metal/Resin</td>\n<td>307524</td>\n<td>19,99</td>\n<td>19,99</td>\n</tr>\n<tr>\n<td>Shimano BREMSSCHEIBE 160mm 6-loch (Artlief. ESMRT66S)</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>1</td>\n<td># BREMSSCHEIBE 6-Loch 180MM, SMRT66 Metal/Resin</td>\n<td>307523</td>\n<td>21,99</td>\n<td>21,99</td>\n</tr>\n<tr>\n<td></td>\n<td>Shimano BREMSSCHEIBE 180mm 6-loch (Artlief. ESMRT66M)</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td rowspan=\""2\"">1</td>\n<td># ADAPT. SATZ F DISC-BR MIT SCHRAUBEN</td>\n<td>305643</td>\n<td>8,99</td>\n<td>8,99</td>\n</tr>\n<tr>\n<td>Adapter Satz für Discbrake mit Schrauben, PM 180mm (Artlief. ESMMAF180PP2A)</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td rowspan=\""2\"">1</td>\n<td>Scheibenbremse MT501 2-Kolben,HR, I-Spec II, Resin</td>\n<td>311381</td>\n<td rowspan=\""2\"">69,99</td>\n<td rowspan=\""2\"">69,99</td>\n</tr>\n<tr>\n<td>Scheibenbremse MT501 HR, I-Spec II, Resin B05S (Artlief. EMT5012JRRXRA170)</td>\n<td></td>\n</tr>\n<tr>\n<td rowspan=\""2\"">1</td>\n<td>Scheibenbremse MT501 2-Kolben, VR, I-Spec II, Resin</td>\n<td>311823</td>\n<td rowspan=\""2\"">64,99</td>\n<td rowspan=\""2\"">64,99</td>\n</tr>\n<tr>\n<td>Scheibenbremse MT501 VR, I-Spec II, Resin B05S (Artlief. EMT5012JLFPRA100)</td>\n<td></td>\n</tr>\n<tr>\n<td rowspan=\""2\"">1</td>\n<td># Kette CN-HG71 6/7/8-fach, 138 Glieder</td>\n<td>248956</td>\n<td rowspan=\""2\"">21,99</td>\n<td rowspan=\""2\"">21,99</td>\n</tr>\n<tr>\n<td>Shimano Kette CN-HG71 6/7/8-F 138 Glieder (Artlief. ECNHG71C1381)</td>\n<td></td>\n</tr>\n<tr>\n<td>1</td>\n<td># KASSETTE HG51 8F.11-32Z Shimano Kassette HG51 8-fach, 11-32 Zähne (Artlief. ECSHG518132)</td>\n<td>457471</td>\n<td>21,99</td>\n<td>21,99</td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td>Summe:</td>\n<td>229,93</td>\n</tr>\n</table>\n\n\nZweirad-Center Stadler Leipzig Alte Messe GmbH\nStraße des 18. Oktober 46\n04103 Leipzig\nEingetragen im Registergericht:\nLeipzig HRB 35591\nGeschäftsführer: Bärbel Stadler,\nCaroline Elleke\n\nTelefon: +49 (0) 341 / 212068 - 0\nVerkauf: +49 (0) 341 / 212068 - 128\nWerkstatt: +49 (0) 341 / 212068 - 129\nTelefax: +49 (0) 341 / 212068 - 137\[email protected]\nwww.zweirad-stadler.de\n\nPostbank\nIBAN: DE72760100850162069856\nBIC: PBNKDEFFXXX\nUSt-ID: DE321559864\nSteuernr .: 231/123/04576\n\n<!-- PageNumber=\""1 von 2\"" -->\n\n08 neutral 05.21\n\n<!-- PageBreak -->\n\n\n<figure>\n\nStadler\nDeutschlands größtes Zweirad-Center\n\n</figure>\n\n\nwww.zweirad-stadler.de\n\n\n<table>\n<tr>\n<th>· Berlin Charlottenburg</th>\n<th>· Mönchengladbach</th>\n<th>· Nürnberg</th>\n</tr>\n<tr>\n<td>· Berlin Prenzlauer Berg</td>\n<td>· Leipzig/Halle</td>\n<td>· Fürth</td>\n</tr>\n<tr>\n<td>· Bremen</td>\n<td>· Leipzig Alte Messe</td>\n<td>· Regensburg</td>\n</tr>\n<tr>\n<td>· Hannover</td>\n<td>· Chemnitz</td>\n<td>· Straubing</td>\n</tr>\n<tr>\n<td>· Essen</td>\n<td>· Mülheim-Kärlich</td>\n<td>· Filderstadt</td>\n</tr>\n<tr>\n<td>· Düsseldorf Eller</td>\n<td>· Frankfurt a. M.</td>\n<td>· Hammerau</td>\n</tr>\n<tr>\n<td>· Düsseldorf Am Wehrhahn</td>\n<td>· Mannheim</td>\n<td>· München</td>\n</tr>\n</table>\n\n\nZweirad-Center Stadler, Straße des 18. Oktober 46, 04103 Leipzig\n\nHerr\nJens Walter\nLausnerweg 45\n04207 Leipzig\n\nKDNR\n\n\n<table>\n<tr>\n<th>Rechnungsdatum</th>\n<th>Verkaufsnr .:</th>\n<th>Lieferschein Nr .:</th>\n<th>Liefer-/Abholdatum:</th>\n<th>Kundennr .:</th>\n</tr>\n<tr>\n<td>22.02.2024</td>\n<td>44828</td>\n<td>40923</td>\n<td>Do, 22.02.2024</td>\n<td>44124</td>\n</tr>\n</table>\n\n\n<table>\n<tr>\n<td>Telefon:</td>\n<td>0341/</td>\n</tr>\n<tr>\n<td>Mobil:</td>\n<td>+49 171 7803957</td>\n</tr>\n<tr>\n<td>Telefax:</td>\n<td>0341/</td>\n</tr>\n<tr>\n<td>E-Mail:</td>\n<td>[email protected]</td>\n</tr>\n</table>\n\n\n## Rechnung Nummer 43703\n\n\n<table>\n<tr>\n<th>Menge</th>\n<th>Bezeichnung</th>\n<th>Artikelnr.</th>\n<th>Preis EUR</th>\n<th>Wert EUR</th>\n</tr>\n<tr>\n<td colspan=\""2\"">Arbeitsbeschreibung:</td>\n<td></td>\n<td colspan=\""2\""></td>\n</tr>\n<tr>\n<td>15</td>\n<td>Bremsscheibe erneuern vorn zzgl. Material 203mm</td>\n<td>217.00</td>\n<td>1,90</td>\n<td>28,50</td>\n</tr>\n<tr>\n<td>15</td>\n<td>Bremsscheibe erneuern hinten zzgl. Material</td>\n<td>218.00</td>\n<td>1,90</td>\n<td>28,50</td>\n</tr>\n<tr>\n<td>40</td>\n<td>Hydraulische Bremsanlage montieren vorn&hinten zzgl.Mat</td>\n<td>230.00</td>\n<td>1,90</td>\n<td>76,00</td>\n</tr>\n<tr>\n<td>20</td>\n<td>Kette & Kassette wechseln zzgl. Material</td>\n<td>10.00</td>\n<td>1,90</td>\n<td>38,00</td>\n</tr>\n<tr>\n<td></td>\n<td>Klein- und Reinigungsmaterial</td>\n<td>903.00</td>\n<td></td>\n<td>F. 2,49</td>\n</tr>\n<tr>\n<td></td>\n<td>Altteile dürfen entsorgt werden</td>\n<td>904.00</td>\n<td></td>\n<td>F. 0.00</td>\n</tr>\n<tr>\n<td></td>\n<td colspan=\""4\"">Summe: 173,49</td>\n</tr>\n</table>\n\n\n<table>\n<tr>\n<td>Summe</td>\n<td>403,42</td>\n</tr>\n<tr>\n<td>Noch zu zahlen</td>\n<td>403,42</td>\n</tr>\n</table>\n\n\nEnthaltene Mehrwertsteuer:\n19,00 % MwSt (= EUR 64,41) auf EUR 339,01\n\nAuftragsannahme erfolgte durch Kehrer-Liebmann Michael.\nIhre Reparatur wurde ausgeführt von Chmieleski Sebastian.\n\nZweirad-Center Stadler Leipzig Alte Messe GmbH\nStraße des 18. Oktober 46\n04103 Leipzig\nEingetragen im Registergericht:\nLeipzig HRB 35591\nGeschäftsführer: Bärbel Stadler,\n\n<!-- PageFooter=\""Telefon: +49 (0) 341 / 212068 - 0\"" -->\n\nVerkauf: +49 (0) 341 / 212068 - 128\nWerkstatt: +49 (0) 341 / 212068 - 129\nTelefax: +49 (0) 341 / 212068 - 137\[email protected]\nwww.zweirad-stadler.de\n\nPostbank\nIBAN: DE72760100850162069856\n\nBIC: PBNKDEFFXXX\n\nUSt-ID: DE321559864\n\nSteuernr .: 231/123/04576\n\nCaroline Elleke\n\n<!-- PageNumber=\""2 von 2\"" -->\n\n08 neutral 05.21""}",.directUrlUploadAttachment/b82be225e89285d5d99355910fe64534/6d5ccd55/invoice_recHWC7qGba0eRogA.pdf),invoice_recHWC7qGba0eRogA.pdf),invoice_recHWC7qGba0eRogA
invoice_rec9yGb4g2P2NHJda,"{
""total_gross"": 12.29,
""total_net"": 10.33,
""business_name"": ""Burger King"",
""items"": [
{
""name"": ""Big King XXL® King Menü"",
""price"": 12.29
}
]
}",invoice_rec9yGb4g2P2NHJda.pdf (https://v5.airtableusercontent.com/v3/u/40/40/1746784800000/HLPNthstsNmyvMrjiEfJAQ/a0Jct-7RpuVb2ZUIrWnnXAqEBJzeMBMAkHNCxQ1h5bniGe7UxfTUjgCcEedo5QAt9j8VqEGfga8aWjyRuEBoG_x79PtBKNAqoV_k5Vovm_ZmcB-uMKQKomz_f5JEygNRvbehUZ-kICxSdOBK5JA6Kq5U80X_R_UTxm-1JqJ1C7VtOe5i5YxcmKbJSnZi-Mtx/Y_jTbYyXh0gLxOlVkHjWBCYf421yRC2mBquq_vEDzlg),rec9yGb4g2P2NHJda,invoice,invoice,"# Content of parsed pdf:
## PDF Parsing for image ""1"" out of ""2"":
'''
Based on the content of the provided image, here are the extracted details formatted as JSON variables:
```json
{
""total_gross"": ""12,29"",
""total_net"": ""10,33"",
""business_name"": ""Burger King"",
""items"": [
{
""name"": ""Big King XXL® King Menü"",
""price"": ""12,29""
},
{
""name"": ""Big King XXL®"",
""price"": """"
},
{
""name"": ""große King Pommes + 1 Dip"",
""price"": """"
},
{
""name"": ""Extra Ketchup Dip"",
""price"": """"
},
{
""name"": ""0,5 l Coca-Cola Zero®"",
""price"": """"
}
]
}
```
Please note that:
- The individual prices for items aside from the ""Big King XXL® King Menü"" are not specified separately in the invoice.
- The ""Big King XXL® King Menü"" is listed with a price of EUR 12,29 which might include all items listed under it.
- The total gross (final chargeable amount including taxes) is EUR 12,29, while the net total before tax is EUR 10,33.
- The business name listed is ""Burger King"".
This information has been structured according to your provided JSON format and focuses on your requested extraction targets. Let me know if there is anything else you need from this image or if any additional details are required!
'''
## PDF Parsing for image ""2"" out of ""2"":
'''
The image provided doesn't contain invoice-specific details such as items' prices or additional entries. It appears to be a promotional material or a customer satisfaction survey form offered by Burger King. The text involves an opportunity for customers to give feedback on their visit to receive complimentary items (small fries or a small coffee) on their next purchase. No additional invoice details like prices or totals that relate to the JSON variables requested can be extracted from this image.
Based on the information available from this second image, there are no updates to the variables you've specified such as ""total_gross"", ""total_net"", ""business_name"", or individual ""items"" prices since those were not detailed in this part of the document.
Here is an updated JSON reflecting the completed merge of both document parts, considering no changes from the second image:
```json
{
""total_gross"": ""12,29"",
""total_net"": ""10,33"",
""business_name"": ""Burger King"",
""items"": [
{
""name"": ""Big King XXL® King Menü"",
""price"": ""12,29""
},
{
""name"": ""Big King XXL®"",
""price"": """"
},
{
""name"": ""große King Pommes + 1 Dip"",
""price"": """"
},
{
""name"": ""Extra Ketchup Dip"",
""price"": """"
},
{
""name"": ""0,5 l Coca-Cola Zero®"",
""price"": """"
}
]
}
```
Please let me know if you need any additional information or further extraction.
'''"," I:٠
BURGER K!NG@
ท. ΒΚ.12949 ج
٦ة
Ern5؛٠-August-P!a؛z 1 ة
301ร9 Hannover I
BK Deutschland GmbH ال
OST-ID: UST-ID.: DE 201 66.2 3ร8 ج
٥
Bestellnummer
148 ا:ا
Kassen ID: Κ7 Datum:0ة3ه3:5بة؛؛07:05:2024آل
Tillster Order ID:
1070497
Bestellart: im Haus Rechnungsnummer: ئ
4522148؟
٠
ة
Rechnung-Invoice-
1 Big KHgXXLi&King MenU EUR 12,29 .ج
Big King XXL·¿)
große King Pommes + 1 Dip
Extra Ketchup Dip ى
o.s I Coca-Cola Zero(.©
Einwegbecher
Keine Eiswürfel ا.ا
Gesamtsumme; EUR 12,29
Enthaltende MwSI (%).
13% Netto: 10,33 MwSl.: 1,36
TSE-Serlennummer s
Transaktionsnummer 887248
Signaturzahler 1813324
TSE-Slgnalur Wbu3CGtt2fTi؛T2RuAjt ال
д1Е1ЮЗкт٧Зо1٥Гэ2РАobeZalJlo^o+QY^Oqg4لأ ألج
YKhsxDKOeegE+KBBFXEw
/ЭТюГкОР1\/؛HKyd3olmpau6CsY3z ٠ا
Start Transaktion 2024-05-07Τ16:34;03.000Ζ
Ende Transaktion 2024-05-07Τ16:34:04.000Ζ
Ç
NjrBurgerKiiig ẽ
٥
Jetzt anmelden und Kronen sammeln!
Verpasste Kronen I
Nur in teilnehmenden Restaurants
* ٠ Kundenbeleg * *
Burger King 12949
Ernst-August-Platz 1 مم
30159 Hannover ال
Datum: 07.05.2024 าฮ
٠
Uhrzeit: 18:33:46 Uhr
Beleg-Nr. 2461
Trace-Nr. 219861
Zahlung
Contactless
DEBIT MASTERCARD .s
Nr. 0000
VU-Nr 601004439 ษ
Genehmigungs-Nr 447039
Terminal-ID 64018361
Pos-Info 00 075 00
AS-Zeit 07.05. 18:33 Uhr II
EMV-Daten 00000080017////3FO
002//Ế77141E8/80
Betrag EUR 12,29
Autorisierung erfolgt
Bitte Beleg autoewahren
E!nfach auf www.bk-feedback-de.com gehen
und de!nen Besuch !nnerha!b von 48 Sfunden
bewerten. Geht ganz fix, versprochen!
Zur Be!ohnung erhöhst du e!nen Code,
d!esen bitte h!er eintragen:
Bei de!nem nächsten Besuch ze!gst du deinen
Kassenzette! vor und erhä!tst de!ne Gratis-
Pommes (k!e!n) oder de!nen Gratis-Kaffee (k!e!n).
Nur be! der Abgebe eines maximal JO tage alien Kassenbons
In rellnehmebden Restauranfs. Keine Barauszahlung oder
Verbindung mh anderen Preisnachlässen. Burger Kln٩٠sich vor, die Aktion Jede^elt aufgrund dilssbrfluch^cherbehoif
Verwendung oder unvorhersehbarererhebllcher Komplikationen
elnZusfellen. Der Rechtsweg Ist ausgeschlossen.
Satfuns
>
Ế
dein. Meinung
und genieße
Gratis-Pommesoder
einen Grads-Kaffee.
E!nfach auf-.bk-feedback-de.com gehen
und de!nen Besuch lnnerha!b von 48 StUnden
bewerten. Geht ganz fix, versprochen!
Zur Be!ohnung erhältst du einen Code,
diesen bitte hier eintragen:
Bei deinem nächsten Besuch zeigst du deinen
Kassenzettel vor und erhältst deine Gratis-
Pommes (klein) oder deinen Gratis-Kaffee (klein).
Nur bei der Abgabe eines maximal JO tage alten Kassenbons
In teilnehmenden Restaurants. Keine Barauszahlung oder
Verbindung mit anderen Preisnachlasses Bu^er KIn؛. behaitsich vor, die Aktion Jederalt aufgrund mlssbrauchScher
Vemendung oder unvofhersehbarer erheblicher Komplikationen
elnZustellen. Der Rechtsweg lstausgeschloss¿n.
deine Meinung
und genieße
","{""output_format"":""# *Respond exactly in the following perfectly formatted JSON structure with no missing fields*:\n{\n \""extracted_data\"": \""string // {\\n\\n \\\""\\\""total_gross\\\""\\\"": \\\""\\\""string // Total gross amount from the invoice, formatted to two decimal places.\\\""\\\"",\\n\\n \\\""\\\""total_net\\\""\\\"": \\\""\\\""integer // Total net amount from the invoice.\\\""\\\"",\\n\\n \\\""\\\""business_name\\\""\\\"": \\\""\\\""string // Name of the business on the invoice.\\\""\\\"",\\n\\n \\\""\\\""items\\\""\\\"": [\\n\\n {\\n\\n \\\""\\\""name\\\""\\\"": \\\""\\\""string // Name of the item listed on the invoice.\\\""\\\"",\\n\\n \\\""\\\""price\\\""\\\"": \\\""\\\""float // Price of the item, formatted to two decimal places.\\\""\\\""\\n\\n }\\n\\n ],\\n\\n \\\""\\\""reasoning\\\""\\\"": \\\""\\\""5 sentences explaining the extraction process and any challenges encountered.\\\""\\\""\\n\\n}\""\n}"",""invoice_pdf_document"":""BURGER KING®\nn. BK-12949\nErnst-August-Platz 1\n30159 Hannover\nBK Deutschland GmbH\nUST-ID: UST-ID .: DE 201 662 398\n\nBestellnummer\n148\n\nKassen ID: K7\n\nTillster Order ID:\n1070497\n\nBestellart: im Haus\n\nDatum: 07:05:2024\n06:33:59 PM\n\nRechnungsnummer:\n\n4522148\n\n-Rechnung - Invoice-\n\n1\nBig King XXL® King Menü\nEUR 12,29\n\nBig King XXL®\n\ngroße King Pommes + 1 Dip\nExtra Ketchup Dip\n\n0,5 | Coca-Cola Zero®\nEinwegbecher\nKeine Eiswürfel\n\nGesamtsumme:\n\nEUR 12,29\n\nEnthaltende MwSt (%).\n19%\nNetto: 10,33\nMwSt .:\n1,96\n\nTSE-Seriennummer\n\n\n<table>\n<tr>\n<td>Transaktionsnummer Signaturzahler TSE-Signatur</td>\n<td>887248 1819924 Wbu3CGtfZfT6T2RuAjt ob8ZaiJioWWo+QYmWQqg g1IEtl03kmUSQL5s92PA YKhsxDK086gE+KB8FXEw 1V2HKyd9olmpau6CsY9z VGvk7mDPxmML0Oxm1IYb /9TiQIkOF</td>\n</tr>\n<tr>\n<td>Start Transaktion</td>\n<td>2024-05-07T16:34:03.000Z</td>\n</tr>\n<tr>\n<td>Ende Transaktion</td>\n<td>2024-05-07T16:34:04.000Z</td>\n</tr>\n</table>\n\n\n<figure>\n\nMyBurgerKing®\n\n</figure>\n\n\nJetzt anmelden und Kronen sammeln!\nVerpasste Kronen\n\nNur in teilnehmenden Restaurants.\n\n\\* Kundenbeleg\n\\* \\*\nBurger King 12949\nErnst-August-Platz 1\n30159 Hannover\n\n\n<table>\n<tr>\n<td>Datum:</td>\n<td>07.05.2024</td>\n</tr>\n<tr>\n<td>Uhrzeit:</td>\n<td>18:33:46 Uhr</td>\n</tr>\n<tr>\n<td>Beleg-Nr.</td>\n<td>2461</td>\n</tr>\n<tr>\n<td>Trace-Nr.</td>\n<td>219861</td>\n</tr>\n</table>\n\n\nzahlung\nContactless\nDEBIT MASTERCARD\nNr.\n############0908 0000\nVU-Nr.\n601004439\n\n\n<table>\n<tr>\n<td>Genehmigungs-Nr.</td>\n<td>447039</td>\n</tr>\n<tr>\n<td>Terminal-ID</td>\n<td>64018361</td>\n</tr>\n<tr>\n<td>Pos-Info</td>\n<td>00 075 00</td>\n</tr>\n<tr>\n<td>AS-Zeit 07.05.</td>\n<td>18:33 Uhr</td>\n</tr>\n</table>\n\n\nEMV-Daten 0000008001/////3F0\n002///F77141E8/80\n\nBetrag EUR\n\n12,29\n\nAutorisierung erfolgt\n\nBitte Beleg aufbewahren\n\nBitte wenden\n\nGratis: Pommes oder Kaffee!\n\nBitte wenden\n\nBitte wenden\n\nGratis: Pommes oder Kaffee!\n\nenden\n\n<!-- PageBreak -->\n\nEinfach auf www.bk-feedback-de.com gehen\nund deinen Besuch innerhalb von 48 Stunden\nbewerten. Geht ganz fix, versprochen!\n\nZur Belohnung erhältst du einen Code,\ndiesen bitte hier eintragen:\n\nBei deinem nächsten Besuch zeigst du deinen\nKassenzettel vor und erhältst deine Gratis-\nPommes (klein) oder deinen Gratis-Kaffee (klein).\n\nNur bei der Abgabe eines maximal 30 Tage alten Kassenbons\nin teilnehmenden Restaurants, Keine Barauszahlung oder\nVerbindung mit anderen Preisnachlässen. Burger King® behält\nsich vor, die Aktion Jederzelt aufgrund missbräuchlicher\nVerwendung oder unvorhersehbarer erheblicher Komplikationen\neinzustellen. Der Rechtsweg Ist ausgeschlossen.\n\n\n<figure>\n\nSag uns\n\n</figure>\n\n\ndeine Meinung\n\nund genieße\nGratis-Pommes oder\neinen Gratis-Kaffee.\n\nEinfach auf www.bk-feedback-de.com gehen\nund deinen Besuch Innerhalb von 48 Stunden\nbewerten. Geht ganz fix, versprochen!\n\nZur Belohnung erhältst du einen Code,\ndiesen bitte hier eintragen:\n\nBei deinem nächsten Besuch zeigst du deinen\nKassenzettel vor und erhältst deine Gratis-\nPommes (klein) oder deinen Gratis-Kaffee (klein).\n\nNur bel der Abgabe eines maximal 30 Tage alten Kassenbons\nIn teilnehmenden Restaurants. Kelne Barauszahlung oder\nVerbindung mit anderen Preisnachlässen. Burger King® behält\nsich vor, die Aktion Jederzeit aufgrund missbräuchlicher\nVerwendung oder unvorhersehbarer erheblicher Komplikationen\neinzustellen. Der Rechtsweg ist ausgeschlossen.\n\n\n<figure>\n\nSag uns\n\n</figure>\n\n\n<figure>\n\ndeine Meinung\n\n</figure>\n\n\nund genieße\nCratic-Dommecadan""}",.directUrlUploadAttachment/b2417f79878b329f5da683f8690fe118/4643953e/invoice_rec9yGb4g2P2NHJda.pdf),invoice_rec9yGb4g2P2NHJda.pdf),invoice_rec9yGb4g2P2NHJda
invoice_recYsN9Su9On0ER58,"{
""total_gross"": 15.79,
""total_net"": 13.28,
""business_name"": ""Burger King"",
""items"": [
{
""name"": ""King's Emo D M"",
""price"": 15.79
}
]
}",invoice_recYsN9Su9On0ER58.pdf (https://v5.airtableusercontent.com/v3/u/40/40/1746784800000/etNl1DzKTJuiaVnoTFgfhw/0oiT7EmQ8rRmoHxfMABbOTejjsPiWfxf5wKQumaXQV3NJh26BBNcVDD9wf2k95t1Llp7-rNwl9u0oz-pTtzG6NSyDtY8Ar018ZYrR4UFQHUoSg89FqS_a34t5oAeC12xrMlDjPnLDlF6ewibaaX7civc2zj5N6rnIlBCPi-5uZ3vCCOSSELfx9UDJwVLMVeK/uSMoegYkjdDs1DBJDfbzT7F0S7iBql_uiw8sbvQHV24),recYsN9Su9On0ER58,invoice,invoice,"# Content of parsed pdf:
## PDF Parsing for image ""1"" out of ""2"":
'''
Based on the image provided and focusing on the key variables requested, here is the parsed invoice content:
---
### Store Information
- **Store Number**: 25460
- **Location**: Am Flughafen, 60549 Frankfurt
### Transaction Details
- **Date and Time**: 13.06.2024 at 21:35:15
- **Cash Register Number**: 72
- **Receipt Number**: 949925
### Items Purchased
1. **OrderCode A0925**
- King's End M
- King's End Dbl
- Pommes Large
- Softdrink Large
- **Price**: 15.79 €
### Totals
- **Subtotal**: 15.79 €
- **Total Including Tax (19% on 15.79 €)**: 15.79 €
- **Net Tax**: 2.51 €
### Additional Information
- **Server/Cashier**: 950
- **Transaction Code**: E2023
- **Invoice Number**: 196153
- **Check Closed**: 6/13/2024 9:35 PM
- **QR Code**: (This contains encoded information that might relate to the transaction specifics)
### Deductions
- **Gross Total**: 15.79 €
- **Net Total**: (15.79 - 2.51) 13.28 €
### Business Name
- **Burger King**
---
<variables>
{
""total_gross"": ""15.79 €"",
""total_net"": ""13.28 €"",
""business_name"": ""Burger King"",
""items"": [
{
""name"": ""King's End M"",
""price"": ""Price not separately listed""
},
{
""name"": ""King's End Dbl"",
""price"": ""Price not separately listed""
},
{
""name"": ""Pommes Large"",
""price"": ""Price not separately listed""
},
{
""name"": ""Softdrink Large"",
""price"": ""Price not separately listed""
}
]
}
</variables>
Please confirm if any further details are required or corrections are necessary for the content extracted above.
'''
## PDF Parsing for image ""2"" out of ""2"":
'''
The content from the second image of the invoice does not contain directly relevant financial information such as additional items or changes to the previously mentioned totals. Instead, the image is a promotion offering a free small fries or a free small coffee for giving feedback on your visit through the website ""bk-feedback-de"" within 48 hours of your visit. It mentions that you will receive a code for the free item, which should be used within 30 days and shown at the counter during your next visit to redeem the free offer.
Here is a translation and summary of the key points from the promotion:
- **Promotion**: Share your feedback on the website ""bk-feedback-de"" within 48 hours of your visit and enjoy a free small fries or a small coffee.