diff --git a/.gitattributes b/.gitattributes index 19fa8c7d803d1b9c2c3187ae35c75a61600cc72e..b31975f2676933947b3b3db7cd116ba0a1f4710e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -38,3 +38,4 @@ docs/image/receipt_00001.png filter=lfs diff=lfs merge=lfs -text docs/image/receipt_00002.png filter=lfs diff=lfs merge=lfs -text docs/image/receipt_00003.png filter=lfs diff=lfs merge=lfs -text docs/image/w_invoice1.png filter=lfs diff=lfs merge=lfs -text +assets/inference_actual.png filter=lfs diff=lfs merge=lfs -text diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..13566b81b018ad684f3a35fee301741b2734c8f4 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.streamlit/config.toml b/.streamlit/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..95af54f6f57775fa496ae72f0780962db2205e6e --- /dev/null +++ b/.streamlit/config.toml @@ -0,0 +1,183 @@ +# Below are all the sections and options you can have in ~/.streamlit/config.toml. + +[global] + +# By default, Streamlit checks if the Python watchdog module is available and, if not, prints a warning asking for you to install it. The watchdog module is not required, but highly recommended. It improves Streamlit's ability to detect changes to files in your filesystem. +# If you'd like to turn off this warning, set this to True. +# Default: false +disableWatchdogWarning = true + +# If True, will show a warning when you run a Streamlit-enabled script via "python my_script.py". +# Default: true +# showWarningOnDirectExecution = true + +# DataFrame serialization. +# Acceptable values: - 'legacy': Serialize DataFrames using Streamlit's custom format. Slow but battle-tested. - 'arrow': Serialize DataFrames using Apache Arrow. Much faster and versatile. +# Default: "arrow" +# dataFrameSerialization = "arrow" + + +[logger] + +# Level of logging: 'error', 'warning', 'info', or 'debug'. +# Default: 'info' +# level = "info" + +# String format for logging messages. If logger.datetimeFormat is set, logger messages will default to `%(asctime)s.%(msecs)03d %(message)s`. See [Python's documentation](https://docs.python.org/2.6/library/logging.html#formatter-objects) for available attributes. +# Default: "%(asctime)s %(message)s" +# messageFormat = "%(asctime)s %(message)s" + + +[client] + +# Whether to enable st.cache. +# Default: true +# caching = true + +# If false, makes your Streamlit script not draw to a Streamlit app. +# Default: true +# displayEnabled = true + +# Controls whether uncaught app exceptions are displayed in the browser. By default, this is set to True and Streamlit displays app exceptions and associated tracebacks in the browser. +# If set to False, an exception will result in a generic message being shown in the browser, and exceptions and tracebacks will be printed to the console only. +# Default: true +# showErrorDetails = true + + +[runner] + +# Allows you to type a variable or string by itself in a single line of Python code to write it to the app. +# Default: true +# magicEnabled = true + +# Install a Python tracer to allow you to stop or pause your script at any point and introspect it. As a side-effect, this slows down your script's execution. +# Default: false +# installTracer = false + +# Sets the MPLBACKEND environment variable to Agg inside Streamlit to prevent Python crashing. +# Default: true +# fixMatplotlib = true + +# Run the Python Garbage Collector after each script execution. This can help avoid excess memory use in Streamlit apps, but could introduce delay in rerunning the app script for high-memory-use applications. +# Default: true +# postScriptGC = true + +# Handle script rerun requests immediately, rather than waiting for script execution to reach a yield point. Enabling this will make Streamlit much more responsive to user interaction, but it can lead to race conditions in apps that mutate session_state data outside of explicit session_state assignment statements. +# Default: false +fastReruns = true + + +[server] + +# List of folders that should not be watched for changes. This impacts both "Run on Save" and @st.cache. +# Relative paths will be taken as relative to the current working directory. +# Example: ['/home/user1/env', 'relative/path/to/folder'] +# Default: [] +# folderWatchBlacklist = [] + +# Change the type of file watcher used by Streamlit, or turn it off completely. +# Allowed values: * "auto" : Streamlit will attempt to use the watchdog module, and falls back to polling if watchdog is not available. * "watchdog" : Force Streamlit to use the watchdog module. * "poll" : Force Streamlit to always use polling. * "none" : Streamlit will not watch files. +# Default: "auto" +fileWatcherType = "auto" + +# Symmetric key used to produce signed cookies. If deploying on multiple replicas, this should be set to the same value across all replicas to ensure they all share the same secret. +# Default: randomly generated secret key. +# cookieSecret = "80f9eb91f1eb64e26f0e46148556bf493ccde5fe27712bbcbebf57948852b5fe" + +# If false, will attempt to open a browser window on start. +# Default: false unless (1) we are on a Linux box where DISPLAY is unset, or (2) we are running in the Streamlit Atom plugin. +# headless = false + +# Automatically rerun script when the file is modified on disk. +# Default: false +# runOnSave = false + +# The address where the server will listen for client and browser connections. Use this if you want to bind the server to a specific address. If set, the server will only be accessible from this address, and not from any aliases (like localhost). +# Default: (unset) +# address = + +# The port where the server will listen for browser connections. +# Default: 8501 + port = 7860 + +# The base path for the URL where Streamlit should be served from. +# Default: "" +# baseUrlPath = "" + +# Enables support for Cross-Origin Request Sharing (CORS) protection, for added security. +# Due to conflicts between CORS and XSRF, if `server.enableXsrfProtection` is on and `server.enableCORS` is off at the same time, we will prioritize `server.enableXsrfProtection`. +# Default: true +# enableCORS = true + +# Enables support for Cross-Site Request Forgery (XSRF) protection, for added security. +# Due to conflicts between CORS and XSRF, if `server.enableXsrfProtection` is on and `server.enableCORS` is off at the same time, we will prioritize `server.enableXsrfProtection`. +# Default: true +# enableXsrfProtection = true + +# Max size, in megabytes, for files uploaded with the file_uploader. +# Default: 200 + maxUploadSize = 10 + +# Max size, in megabytes, of messages that can be sent via the WebSocket connection. +# Default: 200 +# maxMessageSize = 200 + +# Enables support for websocket compression. +# Default: false +# enableWebsocketCompression = false + + +[browser] + +# Internet address where users should point their browsers in order to connect to the app. Can be IP address or DNS name and path. +# This is used to: - Set the correct URL for CORS and XSRF protection purposes. - Show the URL on the terminal - Open the browser +# Default: "localhost" +# serverAddress = "localhost" + +# Whether to send usage statistics to Streamlit. +# Default: true +gatherUsageStats = false + +# Port where users should point their browsers in order to connect to the app. +# This is used to: - Set the correct URL for CORS and XSRF protection purposes. - Show the URL on the terminal - Open the browser +# Default: whatever value is set in server.port. +# serverPort = 8501 + + +[mapbox] + +# Configure Streamlit to use a custom Mapbox token for elements like st.pydeck_chart and st.map. To get a token for yourself, create an account at https://mapbox.com. It's free (for moderate usage levels)! +# Default: "" +# token = "" + + +[deprecation] + +# Set to false to disable the deprecation warning for the file uploader encoding. +# Default: true +# showfileUploaderEncoding = true + +# Set to false to disable the deprecation warning for using the global pyplot instance. +# Default: true +# showPyplotGlobalUse = true + + +[theme] + +# The preset Streamlit theme that your custom theme inherits from. One of "light" or "dark". +# base = + +# Primary accent color for interactive elements. +# primaryColor = "#F633" + +# Background color for the main content area. +backgroundColor = "#FFFFFF" + +# Background color used for the sidebar and most interactive widgets. +secondaryBackgroundColor = "#F0F2F6" + +# Color used for almost all text. +textColor = "#262730" + +# Font family for all text in the app, except code blocks. One of "sans serif", "serif", or "monospace". +font = "sans serif" diff --git a/__pycache__/config.cpython-311.pyc b/__pycache__/config.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ac82e7d1a932bc7b0c7bc4458d8670848176739c Binary files /dev/null and b/__pycache__/config.cpython-311.pyc differ diff --git a/assets/ab.png b/assets/ab.png new file mode 100644 index 0000000000000000000000000000000000000000..110d97b91964f1c583f31e4b0b8f3c2ba6733da2 --- /dev/null +++ b/assets/ab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a125de550ed32d1985e2bc1ff76b3cbd60d696b62a07376d0c661ef027d7eea +size 1032599 diff --git a/assets/annotation.png b/assets/annotation.png new file mode 100644 index 0000000000000000000000000000000000000000..19f77e0bea50cf5da4063ae273e21c2d1f4fb339 Binary files /dev/null and b/assets/annotation.png differ diff --git a/assets/chatgpt_plugin.png b/assets/chatgpt_plugin.png new file mode 100644 index 0000000000000000000000000000000000000000..e554e2c906255878064f959ca6d8eed46da7f864 Binary files /dev/null and b/assets/chatgpt_plugin.png differ diff --git a/assets/chatgpt_plugin_ui.png b/assets/chatgpt_plugin_ui.png new file mode 100644 index 0000000000000000000000000000000000000000..fd510033d8f9e9ad1e57bd97f7b8373d26308395 Binary files /dev/null and b/assets/chatgpt_plugin_ui.png differ diff --git a/assets/crud.png b/assets/crud.png new file mode 100644 index 0000000000000000000000000000000000000000..f57b7491a97ec4c0903fe67a808e0e0c274f283d Binary files /dev/null and b/assets/crud.png differ diff --git a/assets/dashboard.png b/assets/dashboard.png new file mode 100644 index 0000000000000000000000000000000000000000..8ceab33237febad7053b78fb039990e42aff05ef Binary files /dev/null and b/assets/dashboard.png differ diff --git a/assets/donut_training_loss.png b/assets/donut_training_loss.png new file mode 100644 index 0000000000000000000000000000000000000000..e291648bc096aef41022ac4614a6c3e8a9f0582a Binary files /dev/null and b/assets/donut_training_loss.png differ diff --git a/assets/inference.png b/assets/inference.png new file mode 100644 index 0000000000000000000000000000000000000000..f009714ceaa760e480538ed6fa72b8e7a7a3dca8 Binary files /dev/null and b/assets/inference.png differ diff --git a/assets/inference_actual.png b/assets/inference_actual.png new file mode 100644 index 0000000000000000000000000000000000000000..7d015ae09f38dbc5c899b60e531214e184725d2d --- /dev/null +++ b/assets/inference_actual.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef93656b5e26cf9c1cd0cc4ef7735f4188de4833bfa446f995b698860ebd42f6 +size 1117168 diff --git a/assets/review.png b/assets/review.png new file mode 100644 index 0000000000000000000000000000000000000000..4ea94543a315d9fe6fee7d10da024326deff30fa Binary files /dev/null and b/assets/review.png differ diff --git a/assets/sparrow_logo_1.png b/assets/sparrow_logo_1.png new file mode 100644 index 0000000000000000000000000000000000000000..4ecb95710dc5fac72ed6c9a5b0d6073261be55a3 Binary files /dev/null and b/assets/sparrow_logo_1.png differ diff --git a/assets/sparrow_logo_2.png b/assets/sparrow_logo_2.png new file mode 100644 index 0000000000000000000000000000000000000000..5da40471ff910786db63ea75674b247989a35306 Binary files /dev/null and b/assets/sparrow_logo_2.png differ diff --git a/assets/sparrow_logo_3.png b/assets/sparrow_logo_3.png new file mode 100644 index 0000000000000000000000000000000000000000..75e8b68ae8448f843c847227075e06b362306a6b Binary files /dev/null and b/assets/sparrow_logo_3.png differ diff --git a/assets/sparrow_logo_4.png b/assets/sparrow_logo_4.png new file mode 100644 index 0000000000000000000000000000000000000000..e9c27bd524e0723edc5262f2d2905cf517dd099d Binary files /dev/null and b/assets/sparrow_logo_4.png differ diff --git a/config/config.toml b/config/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..95af54f6f57775fa496ae72f0780962db2205e6e --- /dev/null +++ b/config/config.toml @@ -0,0 +1,183 @@ +# Below are all the sections and options you can have in ~/.streamlit/config.toml. + +[global] + +# By default, Streamlit checks if the Python watchdog module is available and, if not, prints a warning asking for you to install it. The watchdog module is not required, but highly recommended. It improves Streamlit's ability to detect changes to files in your filesystem. +# If you'd like to turn off this warning, set this to True. +# Default: false +disableWatchdogWarning = true + +# If True, will show a warning when you run a Streamlit-enabled script via "python my_script.py". +# Default: true +# showWarningOnDirectExecution = true + +# DataFrame serialization. +# Acceptable values: - 'legacy': Serialize DataFrames using Streamlit's custom format. Slow but battle-tested. - 'arrow': Serialize DataFrames using Apache Arrow. Much faster and versatile. +# Default: "arrow" +# dataFrameSerialization = "arrow" + + +[logger] + +# Level of logging: 'error', 'warning', 'info', or 'debug'. +# Default: 'info' +# level = "info" + +# String format for logging messages. If logger.datetimeFormat is set, logger messages will default to `%(asctime)s.%(msecs)03d %(message)s`. See [Python's documentation](https://docs.python.org/2.6/library/logging.html#formatter-objects) for available attributes. +# Default: "%(asctime)s %(message)s" +# messageFormat = "%(asctime)s %(message)s" + + +[client] + +# Whether to enable st.cache. +# Default: true +# caching = true + +# If false, makes your Streamlit script not draw to a Streamlit app. +# Default: true +# displayEnabled = true + +# Controls whether uncaught app exceptions are displayed in the browser. By default, this is set to True and Streamlit displays app exceptions and associated tracebacks in the browser. +# If set to False, an exception will result in a generic message being shown in the browser, and exceptions and tracebacks will be printed to the console only. +# Default: true +# showErrorDetails = true + + +[runner] + +# Allows you to type a variable or string by itself in a single line of Python code to write it to the app. +# Default: true +# magicEnabled = true + +# Install a Python tracer to allow you to stop or pause your script at any point and introspect it. As a side-effect, this slows down your script's execution. +# Default: false +# installTracer = false + +# Sets the MPLBACKEND environment variable to Agg inside Streamlit to prevent Python crashing. +# Default: true +# fixMatplotlib = true + +# Run the Python Garbage Collector after each script execution. This can help avoid excess memory use in Streamlit apps, but could introduce delay in rerunning the app script for high-memory-use applications. +# Default: true +# postScriptGC = true + +# Handle script rerun requests immediately, rather than waiting for script execution to reach a yield point. Enabling this will make Streamlit much more responsive to user interaction, but it can lead to race conditions in apps that mutate session_state data outside of explicit session_state assignment statements. +# Default: false +fastReruns = true + + +[server] + +# List of folders that should not be watched for changes. This impacts both "Run on Save" and @st.cache. +# Relative paths will be taken as relative to the current working directory. +# Example: ['/home/user1/env', 'relative/path/to/folder'] +# Default: [] +# folderWatchBlacklist = [] + +# Change the type of file watcher used by Streamlit, or turn it off completely. +# Allowed values: * "auto" : Streamlit will attempt to use the watchdog module, and falls back to polling if watchdog is not available. * "watchdog" : Force Streamlit to use the watchdog module. * "poll" : Force Streamlit to always use polling. * "none" : Streamlit will not watch files. +# Default: "auto" +fileWatcherType = "auto" + +# Symmetric key used to produce signed cookies. If deploying on multiple replicas, this should be set to the same value across all replicas to ensure they all share the same secret. +# Default: randomly generated secret key. +# cookieSecret = "80f9eb91f1eb64e26f0e46148556bf493ccde5fe27712bbcbebf57948852b5fe" + +# If false, will attempt to open a browser window on start. +# Default: false unless (1) we are on a Linux box where DISPLAY is unset, or (2) we are running in the Streamlit Atom plugin. +# headless = false + +# Automatically rerun script when the file is modified on disk. +# Default: false +# runOnSave = false + +# The address where the server will listen for client and browser connections. Use this if you want to bind the server to a specific address. If set, the server will only be accessible from this address, and not from any aliases (like localhost). +# Default: (unset) +# address = + +# The port where the server will listen for browser connections. +# Default: 8501 + port = 7860 + +# The base path for the URL where Streamlit should be served from. +# Default: "" +# baseUrlPath = "" + +# Enables support for Cross-Origin Request Sharing (CORS) protection, for added security. +# Due to conflicts between CORS and XSRF, if `server.enableXsrfProtection` is on and `server.enableCORS` is off at the same time, we will prioritize `server.enableXsrfProtection`. +# Default: true +# enableCORS = true + +# Enables support for Cross-Site Request Forgery (XSRF) protection, for added security. +# Due to conflicts between CORS and XSRF, if `server.enableXsrfProtection` is on and `server.enableCORS` is off at the same time, we will prioritize `server.enableXsrfProtection`. +# Default: true +# enableXsrfProtection = true + +# Max size, in megabytes, for files uploaded with the file_uploader. +# Default: 200 + maxUploadSize = 10 + +# Max size, in megabytes, of messages that can be sent via the WebSocket connection. +# Default: 200 +# maxMessageSize = 200 + +# Enables support for websocket compression. +# Default: false +# enableWebsocketCompression = false + + +[browser] + +# Internet address where users should point their browsers in order to connect to the app. Can be IP address or DNS name and path. +# This is used to: - Set the correct URL for CORS and XSRF protection purposes. - Show the URL on the terminal - Open the browser +# Default: "localhost" +# serverAddress = "localhost" + +# Whether to send usage statistics to Streamlit. +# Default: true +gatherUsageStats = false + +# Port where users should point their browsers in order to connect to the app. +# This is used to: - Set the correct URL for CORS and XSRF protection purposes. - Show the URL on the terminal - Open the browser +# Default: whatever value is set in server.port. +# serverPort = 8501 + + +[mapbox] + +# Configure Streamlit to use a custom Mapbox token for elements like st.pydeck_chart and st.map. To get a token for yourself, create an account at https://mapbox.com. It's free (for moderate usage levels)! +# Default: "" +# token = "" + + +[deprecation] + +# Set to false to disable the deprecation warning for the file uploader encoding. +# Default: true +# showfileUploaderEncoding = true + +# Set to false to disable the deprecation warning for using the global pyplot instance. +# Default: true +# showPyplotGlobalUse = true + + +[theme] + +# The preset Streamlit theme that your custom theme inherits from. One of "light" or "dark". +# base = + +# Primary accent color for interactive elements. +# primaryColor = "#F633" + +# Background color for the main content area. +backgroundColor = "#FFFFFF" + +# Background color used for the sidebar and most interactive widgets. +secondaryBackgroundColor = "#F0F2F6" + +# Color used for almost all text. +textColor = "#262730" + +# Font family for all text in the app, except code blocks. One of "sans serif", "serif", or "monospace". +font = "sans serif" diff --git a/docs/groups.json b/docs/groups.json new file mode 100644 index 0000000000000000000000000000000000000000..71080ec53ea6de1c955033a5aab3577d2da9bb14 --- /dev/null +++ b/docs/groups.json @@ -0,0 +1,64 @@ +{ + "groups": [ + { + "id": 12, + "name": "header", + "description": "Header" + }, + { + "id": 1, + "name": "items_row1", + "description": "Items in row 1" + }, + { + "id": 2, + "name": "items_row2", + "description": "Items in row 2" + }, + { + "id": 3, + "name": "items_row3", + "description": "Items in row 3" + }, + { + "id": 4, + "name": "items_row4", + "description": "Items in row 4" + }, + { + "id": 5, + "name": "items_row5", + "description": "Items in row 5" + }, + { + "id": 6, + "name": "items_row6", + "description": "Items in row 6" + }, + { + "id": 7, + "name": "items_row7", + "description": "Items in row 7" + }, + { + "id": 8, + "name": "items_row8", + "description": "Items in row 8" + }, + { + "id": 9, + "name": "items_row9", + "description": "Items in row 9" + }, + { + "id": 10, + "name": "items_row10", + "description": "Items in row 10" + }, + { + "id": 11, + "name": "summary", + "description": "Summary" + } + ] +} \ No newline at end of file diff --git a/docs/images/invoice_0.jpg b/docs/images/invoice_0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..667243be05f3615100e91f4c16ebe1d6d72e9f39 Binary files /dev/null and b/docs/images/invoice_0.jpg differ diff --git a/docs/images/invoice_1.jpg b/docs/images/invoice_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c9f958f9a45c7b75d5c5ed8086927b8521e469be Binary files /dev/null and b/docs/images/invoice_1.jpg differ diff --git a/docs/images/invoice_10.jpg b/docs/images/invoice_10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91dc24727602481435ddaa8a17cf52febca27bad Binary files /dev/null and b/docs/images/invoice_10.jpg differ diff --git a/docs/images/invoice_100.jpg b/docs/images/invoice_100.jpg new file mode 100644 index 0000000000000000000000000000000000000000..826faf22b4cb98b60c99e044a94332b0b2b5edf9 Binary files /dev/null and b/docs/images/invoice_100.jpg differ diff --git a/docs/images/invoice_101.jpg b/docs/images/invoice_101.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e78f38e83f40f635bd0956ebf672ad5b3cdda893 Binary files /dev/null and b/docs/images/invoice_101.jpg differ diff --git a/docs/images/invoice_102.jpg b/docs/images/invoice_102.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1e649f0f843bc20f4d445471ac564ca3661a234 Binary files /dev/null and b/docs/images/invoice_102.jpg differ diff --git a/docs/images/invoice_103.jpg b/docs/images/invoice_103.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ffbad6106514ba87249b71b9e9880260729af0bb Binary files /dev/null and b/docs/images/invoice_103.jpg differ diff --git a/docs/images/invoice_104.jpg b/docs/images/invoice_104.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4b9bfb1ac4282759724fb03ce5a56f74c3e8d0d Binary files /dev/null and b/docs/images/invoice_104.jpg differ diff --git a/docs/images/invoice_105.jpg b/docs/images/invoice_105.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c264f9b3ba25d00671cfc6d272690d6736eea3f Binary files /dev/null and b/docs/images/invoice_105.jpg differ diff --git a/docs/images/invoice_106.jpg b/docs/images/invoice_106.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6bce46d4e028ddc3b3e531b12978a3cf6abd88fb Binary files /dev/null and b/docs/images/invoice_106.jpg differ diff --git a/docs/images/invoice_107.jpg b/docs/images/invoice_107.jpg new file mode 100644 index 0000000000000000000000000000000000000000..939031a2e51ae7353230f1792496484fa2346d85 Binary files /dev/null and b/docs/images/invoice_107.jpg differ diff --git a/docs/images/invoice_108.jpg b/docs/images/invoice_108.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61d8158c17d016b69d521b6440391a66d894fb17 Binary files /dev/null and b/docs/images/invoice_108.jpg differ diff --git a/docs/images/invoice_109.jpg b/docs/images/invoice_109.jpg new file mode 100644 index 0000000000000000000000000000000000000000..680f951e36f65fa3864fc9eabfc0e9972857a915 Binary files /dev/null and b/docs/images/invoice_109.jpg differ diff --git a/docs/images/invoice_11.jpg b/docs/images/invoice_11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0777a3e56c5685d6366fd30bd0077b18df45b882 Binary files /dev/null and b/docs/images/invoice_11.jpg differ diff --git a/docs/images/invoice_110.jpg b/docs/images/invoice_110.jpg new file mode 100644 index 0000000000000000000000000000000000000000..441d9bb600589be857e7b32a49956d466b8a68e7 Binary files /dev/null and b/docs/images/invoice_110.jpg differ diff --git a/docs/images/invoice_111.jpg b/docs/images/invoice_111.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2091cce7376e7ac428abc6ddc51f3e4b2ce2270b Binary files /dev/null and b/docs/images/invoice_111.jpg differ diff --git a/docs/images/invoice_112.jpg b/docs/images/invoice_112.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a1ec663025baba4ecd8e3455dbb369c754a42aa Binary files /dev/null and b/docs/images/invoice_112.jpg differ diff --git a/docs/images/invoice_113.jpg b/docs/images/invoice_113.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e955270d34a99a122793d68e4346de4341cfe72 Binary files /dev/null and b/docs/images/invoice_113.jpg differ diff --git a/docs/images/invoice_114.jpg b/docs/images/invoice_114.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fec68c532d06cc87aaf799295f91cc754d61719f Binary files /dev/null and b/docs/images/invoice_114.jpg differ diff --git a/docs/images/invoice_115.jpg b/docs/images/invoice_115.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94e3c03d69d133c083b869178ac1d92db88f6ac3 Binary files /dev/null and b/docs/images/invoice_115.jpg differ diff --git a/docs/images/invoice_116.jpg b/docs/images/invoice_116.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e92b6dd7670b0f576e8777530b4787963edb11b Binary files /dev/null and b/docs/images/invoice_116.jpg differ diff --git a/docs/images/invoice_117.jpg b/docs/images/invoice_117.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a2835b71a368cc1da06e9112b4927aacf3950b4 Binary files /dev/null and b/docs/images/invoice_117.jpg differ diff --git a/docs/images/invoice_118.jpg b/docs/images/invoice_118.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86c5e83222e6ed132069214c44084662afee27fe Binary files /dev/null and b/docs/images/invoice_118.jpg differ diff --git a/docs/images/invoice_119.jpg b/docs/images/invoice_119.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f12b996fc0ac53cf8c83875145a032966530c457 Binary files /dev/null and b/docs/images/invoice_119.jpg differ diff --git a/docs/images/invoice_12.jpg b/docs/images/invoice_12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa804a652f9b12ffd51dc70ce223f250e40d9b80 Binary files /dev/null and b/docs/images/invoice_12.jpg differ diff --git a/docs/images/invoice_120.jpg b/docs/images/invoice_120.jpg new file mode 100644 index 0000000000000000000000000000000000000000..339f7eedfad212ecf1df9b18bad6963c02fc6940 Binary files /dev/null and b/docs/images/invoice_120.jpg differ diff --git a/docs/images/invoice_121.jpg b/docs/images/invoice_121.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d33efafbe3ab393ada246f72c627bf1338bcc783 Binary files /dev/null and b/docs/images/invoice_121.jpg differ diff --git a/docs/images/invoice_122.jpg b/docs/images/invoice_122.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9345f31326fe00dd8314a7d3a0af60330a7fd063 Binary files /dev/null and b/docs/images/invoice_122.jpg differ diff --git a/docs/images/invoice_123.jpg b/docs/images/invoice_123.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6356c97260e3b8129cc59d9294640c77b6f020c6 Binary files /dev/null and b/docs/images/invoice_123.jpg differ diff --git a/docs/images/invoice_124.jpg b/docs/images/invoice_124.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3bf15d70f14a29fd187be457b1137b6c9a5d322 Binary files /dev/null and b/docs/images/invoice_124.jpg differ diff --git a/docs/images/invoice_125.jpg b/docs/images/invoice_125.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f28cdd02a8852383085bdbcd1193d8418348e8fe Binary files /dev/null and b/docs/images/invoice_125.jpg differ diff --git a/docs/images/invoice_126.jpg b/docs/images/invoice_126.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e0efda7639828c942b94b4a2e6e6964e87c30ba Binary files /dev/null and b/docs/images/invoice_126.jpg differ diff --git a/docs/images/invoice_127.jpg b/docs/images/invoice_127.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30ed8197b7d4062cd29c15037ff61d6cc88c3d2a Binary files /dev/null and b/docs/images/invoice_127.jpg differ diff --git a/docs/images/invoice_128.jpg b/docs/images/invoice_128.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8736f2df2f7d2078290fbc9e8759899748985d2 Binary files /dev/null and b/docs/images/invoice_128.jpg differ diff --git a/docs/images/invoice_129.jpg b/docs/images/invoice_129.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8dd980da64e1bbb6befcf6c0e61b11f1121f68ef Binary files /dev/null and b/docs/images/invoice_129.jpg differ diff --git a/docs/images/invoice_13.jpg b/docs/images/invoice_13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..596b1bf0171fa4bc1054a866b90cbbe9a5a2a799 Binary files /dev/null and b/docs/images/invoice_13.jpg differ diff --git a/docs/images/invoice_130.jpg b/docs/images/invoice_130.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64bc47f7238609f168946277f1b04feb350d88f0 Binary files /dev/null and b/docs/images/invoice_130.jpg differ diff --git a/docs/images/invoice_131.jpg b/docs/images/invoice_131.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49d39aafc3d89fdc6f78d2ccce48e662a767453b Binary files /dev/null and b/docs/images/invoice_131.jpg differ diff --git a/docs/images/invoice_132.jpg b/docs/images/invoice_132.jpg new file mode 100644 index 0000000000000000000000000000000000000000..499fe7771acda16001ffdbae2427174469ea41fd Binary files /dev/null and b/docs/images/invoice_132.jpg differ diff --git a/docs/images/invoice_133.jpg b/docs/images/invoice_133.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d82939ae2f80db7b549e76d6063902423abd16fa Binary files /dev/null and b/docs/images/invoice_133.jpg differ diff --git a/docs/images/invoice_134.jpg b/docs/images/invoice_134.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66fc9236ca75f5cc7f7b95b83117dc894ad63955 Binary files /dev/null and b/docs/images/invoice_134.jpg differ diff --git a/docs/images/invoice_135.jpg b/docs/images/invoice_135.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ddbaf17420c3565876eaf84dc22e060fd61a5ae Binary files /dev/null and b/docs/images/invoice_135.jpg differ diff --git a/docs/images/invoice_136.jpg b/docs/images/invoice_136.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9cdd4a2449656d0377954bd5326ea6b37908251f Binary files /dev/null and b/docs/images/invoice_136.jpg differ diff --git a/docs/images/invoice_137.jpg b/docs/images/invoice_137.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64a7ed63f446d0c6545bc9a226824f4709f30e29 Binary files /dev/null and b/docs/images/invoice_137.jpg differ diff --git a/docs/images/invoice_138.jpg b/docs/images/invoice_138.jpg new file mode 100644 index 0000000000000000000000000000000000000000..287b331c8055be395a926354174a09c7e87b3467 Binary files /dev/null and b/docs/images/invoice_138.jpg differ diff --git a/docs/images/invoice_139.jpg b/docs/images/invoice_139.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e060cd17f235601dc3f06a1f65847fcd53b2d05 Binary files /dev/null and b/docs/images/invoice_139.jpg differ diff --git a/docs/images/invoice_14.jpg b/docs/images/invoice_14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0d10f20100a420e7a6eddd8bf953bb1ff968985 Binary files /dev/null and b/docs/images/invoice_14.jpg differ diff --git a/docs/images/invoice_140.jpg b/docs/images/invoice_140.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18527f321f9625f121b654c884ab2650a9d2ef8d Binary files /dev/null and b/docs/images/invoice_140.jpg differ diff --git a/docs/images/invoice_141.jpg b/docs/images/invoice_141.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4072698d1fe48909bf912843228233d79304bfe5 Binary files /dev/null and b/docs/images/invoice_141.jpg differ diff --git a/docs/images/invoice_142.jpg b/docs/images/invoice_142.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e17c94e82e529cf11827562c4fb1331896f5c54 Binary files /dev/null and b/docs/images/invoice_142.jpg differ diff --git a/docs/images/invoice_143.jpg b/docs/images/invoice_143.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ac3f327e38fb6397b0f81492e73b48ba551fb61 Binary files /dev/null and b/docs/images/invoice_143.jpg differ diff --git a/docs/images/invoice_144.jpg b/docs/images/invoice_144.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1dde479909559d4d2bbba2c7a74c58df44ae50a Binary files /dev/null and b/docs/images/invoice_144.jpg differ diff --git a/docs/images/invoice_145.jpg b/docs/images/invoice_145.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1337ef050216074c7b08984fa8e499ca4294b11f Binary files /dev/null and b/docs/images/invoice_145.jpg differ diff --git a/docs/images/invoice_146.jpg b/docs/images/invoice_146.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b79653598f75ff247b437a222ec794249e18d52 Binary files /dev/null and b/docs/images/invoice_146.jpg differ diff --git a/docs/images/invoice_147.jpg b/docs/images/invoice_147.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2cdd54f10bcfa3eb570df7b400179e2f35e95f48 Binary files /dev/null and b/docs/images/invoice_147.jpg differ diff --git a/docs/images/invoice_148.jpg b/docs/images/invoice_148.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be2e3236873a7c3f0575fb200d531405e6ac0936 Binary files /dev/null and b/docs/images/invoice_148.jpg differ diff --git a/docs/images/invoice_149.jpg b/docs/images/invoice_149.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a55977a64bd463cb071e956ddb0ef73d56a75640 Binary files /dev/null and b/docs/images/invoice_149.jpg differ diff --git a/docs/images/invoice_15.jpg b/docs/images/invoice_15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b12eaf2034168fc25c4b23d67eeef78f1eb61758 Binary files /dev/null and b/docs/images/invoice_15.jpg differ diff --git a/docs/images/invoice_150.jpg b/docs/images/invoice_150.jpg new file mode 100644 index 0000000000000000000000000000000000000000..56ce00325757b6257461e0cdadf6d0ec426c2ef2 Binary files /dev/null and b/docs/images/invoice_150.jpg differ diff --git a/docs/images/invoice_151.jpg b/docs/images/invoice_151.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f46dfbbedfaa8be98fc50737d9e0d0547bb44770 Binary files /dev/null and b/docs/images/invoice_151.jpg differ diff --git a/docs/images/invoice_152.jpg b/docs/images/invoice_152.jpg new file mode 100644 index 0000000000000000000000000000000000000000..edcfe34618451ed25a861562c9e9403c4cfa3ddc Binary files /dev/null and b/docs/images/invoice_152.jpg differ diff --git a/docs/images/invoice_153.jpg b/docs/images/invoice_153.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1d963ce526094de74425c8eeabfd2b5dfb26311 Binary files /dev/null and b/docs/images/invoice_153.jpg differ diff --git a/docs/images/invoice_154.jpg b/docs/images/invoice_154.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e3257b8ff8c39984c893480d78443ea056b5e50 Binary files /dev/null and b/docs/images/invoice_154.jpg differ diff --git a/docs/images/invoice_155.jpg b/docs/images/invoice_155.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aefed54f99106a2dbb2140f81e484280a41effd5 Binary files /dev/null and b/docs/images/invoice_155.jpg differ diff --git a/docs/images/invoice_156.jpg b/docs/images/invoice_156.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40ef01b40ba2ddc0e6daa1b3bd944e6105cd19e4 Binary files /dev/null and b/docs/images/invoice_156.jpg differ diff --git a/docs/images/invoice_157.jpg b/docs/images/invoice_157.jpg new file mode 100644 index 0000000000000000000000000000000000000000..250f558ad2d3c58b1e846683c0917f6b5725f69d Binary files /dev/null and b/docs/images/invoice_157.jpg differ diff --git a/docs/images/invoice_158.jpg b/docs/images/invoice_158.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab10d6a28d0bd272680775b443a48365a2fc562f Binary files /dev/null and b/docs/images/invoice_158.jpg differ diff --git a/docs/images/invoice_159.jpg b/docs/images/invoice_159.jpg new file mode 100644 index 0000000000000000000000000000000000000000..072176a595321bc8347da2fa50a85dfe0c336c54 Binary files /dev/null and b/docs/images/invoice_159.jpg differ diff --git a/docs/images/invoice_16.jpg b/docs/images/invoice_16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78b12e239388a04b3e2056090ffa930c37da965f Binary files /dev/null and b/docs/images/invoice_16.jpg differ diff --git a/docs/images/invoice_160.jpg b/docs/images/invoice_160.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9a323356f6d4fd7f1edd5cf4db3212126fff85a Binary files /dev/null and b/docs/images/invoice_160.jpg differ diff --git a/docs/images/invoice_161.jpg b/docs/images/invoice_161.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d1baeb53e34c55a5ee619e3e23d081468ca5d9ba Binary files /dev/null and b/docs/images/invoice_161.jpg differ diff --git a/docs/images/invoice_162.jpg b/docs/images/invoice_162.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bda506aea71ff44cdfaf92f313ece8e70c0d672 Binary files /dev/null and b/docs/images/invoice_162.jpg differ diff --git a/docs/images/invoice_163.jpg b/docs/images/invoice_163.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04b6081ad89ce38a8f971b94d7fd7287223b06fa Binary files /dev/null and b/docs/images/invoice_163.jpg differ diff --git a/docs/images/invoice_164.jpg b/docs/images/invoice_164.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cdc966aa6af2369922e816d5de25b186dd262e88 Binary files /dev/null and b/docs/images/invoice_164.jpg differ diff --git a/docs/images/invoice_165.jpg b/docs/images/invoice_165.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d936e00b611611b929b9e2376ee0e8824f67a7e Binary files /dev/null and b/docs/images/invoice_165.jpg differ diff --git a/docs/images/invoice_166.jpg b/docs/images/invoice_166.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7dfe9b639e79b7bcca409ab454525e3e393f95e4 Binary files /dev/null and b/docs/images/invoice_166.jpg differ diff --git a/docs/images/invoice_167.jpg b/docs/images/invoice_167.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0735bd1500535c2107cba9ef9c5813224d5428e7 Binary files /dev/null and b/docs/images/invoice_167.jpg differ diff --git a/docs/images/invoice_168.jpg b/docs/images/invoice_168.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc40839c89bd64ce205e1595e58824957c57ff95 Binary files /dev/null and b/docs/images/invoice_168.jpg differ diff --git a/docs/images/invoice_169.jpg b/docs/images/invoice_169.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3aabef9d64d543ec42b78cca5c8aaceed1db7a45 Binary files /dev/null and b/docs/images/invoice_169.jpg differ diff --git a/docs/images/invoice_17.jpg b/docs/images/invoice_17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80c16b9ecb887ca57d56b43858de00be90785761 Binary files /dev/null and b/docs/images/invoice_17.jpg differ diff --git a/docs/images/invoice_170.jpg b/docs/images/invoice_170.jpg new file mode 100644 index 0000000000000000000000000000000000000000..480a45563b1bc5a785ae0b2b863d118ae77702f7 Binary files /dev/null and b/docs/images/invoice_170.jpg differ diff --git a/docs/images/invoice_171.jpg b/docs/images/invoice_171.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54780cb46f6a4b62031de627cfbd164e7a69eef1 Binary files /dev/null and b/docs/images/invoice_171.jpg differ diff --git a/docs/images/invoice_172.jpg b/docs/images/invoice_172.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0cf703843b98739d5b30286989f273c49c91e34 Binary files /dev/null and b/docs/images/invoice_172.jpg differ diff --git a/docs/images/invoice_173.jpg b/docs/images/invoice_173.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5b44b9dac9da103f3dbe098fae33eea5472817b Binary files /dev/null and b/docs/images/invoice_173.jpg differ diff --git a/docs/images/invoice_174.jpg b/docs/images/invoice_174.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2db4f67eb6319e027f295e77aead4df3654d3ccf Binary files /dev/null and b/docs/images/invoice_174.jpg differ diff --git a/docs/images/invoice_175.jpg b/docs/images/invoice_175.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fb4c6b81feeabc1365905a989786c1b18cc37b5f Binary files /dev/null and b/docs/images/invoice_175.jpg differ diff --git a/docs/images/invoice_176.jpg b/docs/images/invoice_176.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f9b949a6f0c26197fd45691b713a607ed0ae5275 Binary files /dev/null and b/docs/images/invoice_176.jpg differ diff --git a/docs/images/invoice_177.jpg b/docs/images/invoice_177.jpg new file mode 100644 index 0000000000000000000000000000000000000000..edc66f6a7551041e73bc94e1086d80e79726660b Binary files /dev/null and b/docs/images/invoice_177.jpg differ diff --git a/docs/images/invoice_178.jpg b/docs/images/invoice_178.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f8893e92efcf56a9abff97f2e4a8c95805d8c34 Binary files /dev/null and b/docs/images/invoice_178.jpg differ diff --git a/docs/images/invoice_179.jpg b/docs/images/invoice_179.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3c0964496cc2194875449c87c97daf603a7dbcd Binary files /dev/null and b/docs/images/invoice_179.jpg differ diff --git a/docs/images/invoice_18.jpg b/docs/images/invoice_18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b9f4e52d509ffa2ffa38839d6b0ea659dea4b16 Binary files /dev/null and b/docs/images/invoice_18.jpg differ diff --git a/docs/images/invoice_180.jpg b/docs/images/invoice_180.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54becbab2a492f16091818491742e8de1168f474 Binary files /dev/null and b/docs/images/invoice_180.jpg differ diff --git a/docs/images/invoice_181.jpg b/docs/images/invoice_181.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8988cdfb656d333649c8093e15bf746f3ac16d58 Binary files /dev/null and b/docs/images/invoice_181.jpg differ diff --git a/docs/images/invoice_182.jpg b/docs/images/invoice_182.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c843471b1c1b8200cba8c627209717c317bef18f Binary files /dev/null and b/docs/images/invoice_182.jpg differ diff --git a/docs/images/invoice_183.jpg b/docs/images/invoice_183.jpg new file mode 100644 index 0000000000000000000000000000000000000000..341944bf6e9215c44f469676b04789d6247c5425 Binary files /dev/null and b/docs/images/invoice_183.jpg differ diff --git a/docs/images/invoice_184.jpg b/docs/images/invoice_184.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7ea205969021622c08b5669d38672de1fa1f46b Binary files /dev/null and b/docs/images/invoice_184.jpg differ diff --git a/docs/images/invoice_185.jpg b/docs/images/invoice_185.jpg new file mode 100644 index 0000000000000000000000000000000000000000..19d5f7489246114418f5c819783affc9b2736d62 Binary files /dev/null and b/docs/images/invoice_185.jpg differ diff --git a/docs/images/invoice_186.jpg b/docs/images/invoice_186.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e04b57d18aed1fcfe529645abb73cbf467a9d83a Binary files /dev/null and b/docs/images/invoice_186.jpg differ diff --git a/docs/images/invoice_187.jpg b/docs/images/invoice_187.jpg new file mode 100644 index 0000000000000000000000000000000000000000..beeac131b97f77f69c7f00fb23aad9e00003db4b Binary files /dev/null and b/docs/images/invoice_187.jpg differ diff --git a/docs/images/invoice_188.jpg b/docs/images/invoice_188.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c99951d5efeedcec6f4f1e4b3366e23cae1dc96d Binary files /dev/null and b/docs/images/invoice_188.jpg differ diff --git a/docs/inference/invoice_0_168236533145547.jpg b/docs/inference/invoice_0_168236533145547.jpg new file mode 100644 index 0000000000000000000000000000000000000000..667243be05f3615100e91f4c16ebe1d6d72e9f39 Binary files /dev/null and b/docs/inference/invoice_0_168236533145547.jpg differ diff --git a/docs/inference/invoice_0_168236533145547.json b/docs/inference/invoice_0_168236533145547.json new file mode 100644 index 0000000000000000000000000000000000000000..d1a773306be539265d1d67899f0166115bb45db5 --- /dev/null +++ b/docs/inference/invoice_0_168236533145547.json @@ -0,0 +1 @@ +"{\"header\":{\"invoice_no\":\"40378170\",\"invoice_date\":\"10/15/2012\",\"seller\":\"Patel, Thompson and Montgomery 356 Kyle Vista New James, MA 46228\",\"client\":\"Jackson, Odonnell and Jackson 267 John Track Suite 841 Jenniferville, PA 98601\",\"seller_tax_id\":\"958-74-3511\",\"client_tax_id\":\"998-87-7723\",\"iban\":\"GB77WRBQ31965128414006\"},\"items\":{\"item_desc\":\"Leed's Wine Companion Bottle Corkscrew Opener Gift Box Set with Foil Cutter\",\"item_qty\":\"1,00\",\"item_net_price\":\"7,50\",\"item_net_worth\":\"7,50\",\"item_vat\":\"10%\",\"item_gross_worth\":\"8,25\"},\"summary\":{\"total_net_worth\":\"$7,50\",\"total_vat\":\"$0,75\",\"total_gross_worth\":\"$8,25\"}}" \ No newline at end of file diff --git a/docs/inference/invoice_583_1683790673065774.jpg b/docs/inference/invoice_583_1683790673065774.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92354057b168c55263bb8ecd25160a34d6d681c9 Binary files /dev/null and b/docs/inference/invoice_583_1683790673065774.jpg differ diff --git a/docs/inference/invoice_583_1683791077281225.jpg b/docs/inference/invoice_583_1683791077281225.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92354057b168c55263bb8ecd25160a34d6d681c9 Binary files /dev/null and b/docs/inference/invoice_583_1683791077281225.jpg differ diff --git a/docs/inference/invoice_583_1683791077281225.json b/docs/inference/invoice_583_1683791077281225.json new file mode 100644 index 0000000000000000000000000000000000000000..96c20e248909ee09686ca011390855b807663752 --- /dev/null +++ b/docs/inference/invoice_583_1683791077281225.json @@ -0,0 +1 @@ +"{\"header\":{\"invoice_no\":\"31447231\",\"invoice_date\":\"06/18/2017\",\"seller\":\"Sellers, Marsh and Cabrera 54819 Laura Hollow Suite 093 Port Jenniferstad, FL 48593\",\"client\":\"English-Sanchez 682 Kimberly Plain Apt. 213 Adamport, DE 94746\",\"seller_tax_id\":\"951-99-1282\",\"client_tax_id\":\"936-71-8297\",\"iban\":\"GB7WGQ0032111160753467\"},\"items\":[{\"item_desc\":\"HP All-in-One Computer 22\\\" Full-HD Display Intel 2.90GHz 4GB 1TB HD Win10 - TEAL\",\"item_qty\":\"2,00\",\"item_net_price\":\"449,99\",\"item_net_worth\":\"899,98\",\"item_vat\":\"10%\",\"item_gross_worth\":\"989,98\"},{\"item_desc\":\"Lenovo C20-00..all in one desktop computer :.with Wireless Mouse..\",\"item_qty\":\"1,00\",\"item_net_price\":\"277,64\",\"item_net_worth\":\"277,64\",\"item_vat\":\"10%\",\"item_gross_worth\":\"305,40\"},{\"item_desc\":\"Computer Desktop Gaming i5 Ram 16G\",\"item_qty\":\"1,00\",\"item_net_price\":\"315,00\",\"item_net_worth\":\"315,00\",\"item_vat\":\"10%\",\"item_gross_worth\":\"346,50\"},{\"item_desc\":\"FAST Dell Optiplex Windows 10 Desktop Computer Tower Tower (2)D 4GB DVD Wifi 17\\\" LCD\",\"item_qty\":\"1,00\",\"item_net_price\":\"124,95\",\"item_net_worth\":\"124,95\",\"item_vat\":\"10%\",\"item_gross_worth\":\"137,45\"},{\"item_desc\":\"Ryzen Gaming Computer\",\"item_qty\":\"5,00\",\"item_net_price\":\"752,00\",\"item_net_worth\":\"3760,00\",\"item_vat\":\"10%\",\"item_gross_worth\":\"4 136,00\"},{\"item_desc\":\"SAMA RGB Gaming PC Desktop Computer i5 3.7GHz Nvidia GTX 1060 16GB Windows 10\",\"item_qty\":\"2,00\",\"item_net_price\":\"400,00\",\"item_net_worth\":\"800,00\",\"item_vat\":\"10%\",\"item_gross_worth\":\"880,00\"},{\"item_desc\":\"Custom Build Dell Optiplex 5040 M71 7-6700 3. 40GHz Desktop Computer PC\",\"item_qty\":\"4,00\",\"item_net_price\":\"354,99\",\"item_net_worth\":\"1419,96\",\"item_vat\":\"10%\",\"item_gross_worth\":\"1561,96\"}],\"summary\":{\"total_net_worth\":\"$7597,53\",\"total_vat\":\"$ 759,75\",\"total_gross_worth\":\"$8357,28\"}}" \ No newline at end of file diff --git a/docs/inference/invoice_585_1683791422827855.jpg b/docs/inference/invoice_585_1683791422827855.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb7f9836a6bd3010dc3720d0a3f2312ac774e82e Binary files /dev/null and b/docs/inference/invoice_585_1683791422827855.jpg differ diff --git a/docs/inference/invoice_585_1683791422827855.json b/docs/inference/invoice_585_1683791422827855.json new file mode 100644 index 0000000000000000000000000000000000000000..7f4d9914ad37d8f0be570f3c796c603c5e51e95c --- /dev/null +++ b/docs/inference/invoice_585_1683791422827855.json @@ -0,0 +1 @@ +"{\"header\":{\"invoice_no\":\"11460594\",\"invoice_date\":\"04/09/2016\",\"seller\":\"Reyes-Ellis 73790 Gaines Lodge Suite 712 Teresaland, AL 48608\",\"client\":\"Walsh-Pearson 3253 Kelly Underpass East Melody, IN 80458\",\"seller_tax_id\":\"931-81-0018\",\"client_tax_id\":\"968-98-8987\",\"iban\":\"GB29MQOF52854945132388\"},\"items\":[{\"item_desc\":\"Wine Bottle Holder From Costa Rica Has A Parrot Painted On It\",\"item_qty\":\"1,00\",\"item_net_price\":\"5,00\",\"item_net_worth\":\"5,00\",\"item_vat\":\"10%\",\"item_gross_worth\":\"5,50\"},{\"item_desc\":\"Wine Glasses Wall Mount Wine Glass Rack Storage Shelf for The Cabinet\",\"item_qty\":\"1,00\",\"item_net_price\":\"21,56\",\"item_net_worth\":\"21,56\",\"item_vat\":\"10%\",\"item_gross_worth\":\"23,72\"},{\"item_desc\":\"Wine Rack Holder Iron Art Hanging Rack Glass Cup Stemware Shelf Mounted 2 Color\",\"item_qty\":\"4,00\",\"item_net_price\":\"18,75\",\"item_net_worth\":\"75,00\",\"item_vat\":\"10%\",\"item_gross_worth\":\"82,50\"},{\"item_desc\":\"Lolita Hand Painted Christmas Wine Glass - Signerbead Wonderland Bare\",\"item_qty\":\"2,00\",\"item_net_price\":\"189,99\",\"item_net_worth\":\"379,98\",\"item_vat\":\"10%\",\"item_gross_worth\":\"417,98\"},{\"item_desc\":\"2 Hand Blown Wine Water Goblet Glass Art Mexico Pulled Feather Iridescent w/off\",\"item_qty\":\"2,00\",\"item_net_price\":\"29,99\",\"item_net_worth\":\"59,98\",\"item_vat\":\"10%\",\"item_gross_worth\":\"65,98\"},{\"item_desc\":\"Leed's Wine Companion Bottle Corkscrew Opener Gift Box Set with Foil Cutter\",\"item_qty\":\"2,00\",\"item_net_price\":\"7,50\",\"item_net_worth\":\"15,00\",\"item_vat\":\"10%\",\"item_gross_worth\":\"16,50\"},{\"item_desc\":\"Set of 2 Stemless Christmas Wine Glasses NEW\",\"item_qty\":\"2,00\",\"item_net_price\":\"12,00\",\"item_net_worth\":\"24,00\",\"item_vat\":\"10%\",\"item_gross_worth\":\"26,40\"}],\"summary\":{\"total_net_worth\":\"$580,52\",\"total_vat\":\"$58,05\",\"total_gross_worth\":\"638,57\"}}" \ No newline at end of file diff --git a/docs/inference/invoice_587_1683791244407337.jpg b/docs/inference/invoice_587_1683791244407337.jpg new file mode 100644 index 0000000000000000000000000000000000000000..231ba5658117a31cb19e2eb4c5bd22701dbd3d1e Binary files /dev/null and b/docs/inference/invoice_587_1683791244407337.jpg differ diff --git a/docs/inference/invoice_587_1683791244407337.json b/docs/inference/invoice_587_1683791244407337.json new file mode 100644 index 0000000000000000000000000000000000000000..d0a9e69aff95c3644873e5ade7f8ee065663b4a8 --- /dev/null +++ b/docs/inference/invoice_587_1683791244407337.json @@ -0,0 +1 @@ +"{\"header\":{\"invoice_no\":\"99935945\",\"invoice_date\":\"03/19/2014\",\"seller\":\"Fox-Reeves 83481 Tracy Neck Lake Eddieburgh, LA 08023\",\"client\":\"Myers PLC 80956 Bob Mission Michelleside, DC 87406\",\"seller_tax_id\":\"983-82-7590\",\"client_tax_id\":\"907-98-7397\",\"iban\":\"GB08EMXZ19805313285067\"},\"items\":[{\"item_desc\":\"Sitting Deer Wine Bottle Holder Decoration New\",\"item_qty\":\"4,00\",\"item_net_price\":\"30,88\",\"item_net_worth\":\"123,52\",\"item_vat\":\"10%\",\"item_gross_worth\":\"135,87\"},{\"item_desc\":\"Press Wine 20L Fruit Cider Apple Crusher Juice Grape Stainless Maker Grapes New\",\"item_qty\":\"3,00\",\"item_net_price\":\"299,00\",\"item_net_worth\":\"997,00\",\"item_vat\":\"10%\",\"item_gross_worth\":\"986,70\"},{\"item_desc\":\"Brand new Cuisinart CWO-25 Electric Wine Opener, Stainless\",\"item_qty\":\"3,00\",\"item_net_price\":\"20,00\",\"item_net_worth\":\"60,00\",\"item_vat\":\"10%\",\"item_gross_worth\":\"66,00\"},{\"item_desc\":\"Outdoor Wine Glass Beer Holder To Armect With Aucknicments Red Wine Base yoky\",\"item_qty\":\"3,00\",\"item_net_price\":\"11,44\",\"item_net_worth\":\"34,32\",\"item_vat\":\"10%\",\"item_gross_worth\":\"37,75\"},{\"item_desc\":\"NEW Ouk Barrell Wooden Barrell for Storage Aging Wine Whiskey Spirts Wine Barrell\",\"item_qty\":\"4,00\",\"item_net_price\":\"27,90\",\"item_net_worth\":\"111,60\",\"item_vat\":\"10%\",\"item_gross_worth\":\"122,76\"}],\"summary\":{\"total_net_worth\":\"$1226,04\",\"total_vat\":\"$ 122,64\",\"total_gross_worth\":\"$1349,08\"}}" \ No newline at end of file diff --git a/docs/inference/invoice_885_16838224697988858.jpg b/docs/inference/invoice_885_16838224697988858.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88e9c4ef40c5150bf7e590652ab38778e9fc47ec Binary files /dev/null and b/docs/inference/invoice_885_16838224697988858.jpg differ diff --git a/docs/inference/invoice_885_16838224697988858.json b/docs/inference/invoice_885_16838224697988858.json new file mode 100644 index 0000000000000000000000000000000000000000..1e6c89bcfda59c899b97edcb77c5bfc94c78589d --- /dev/null +++ b/docs/inference/invoice_885_16838224697988858.json @@ -0,0 +1 @@ +"{\"header\":{\"invoice_no\":\"12947568\",\"invoice_date\":\"11/10/2018\",\"seller\":\"Santos-King 089 Anthony Turnpike Apt. 605 North Melissa, RI 42841\",\"client\":\"Stone, Kramer and Diaz 6249 Black Cliffs Apt. 929 East Gary, NY 47586\",\"seller_tax_id\":\"963-71-0206\",\"client_tax_id\":\"970-92-9578\",\"iban\":\"GB21HWR23389490452402\"},\"items\":[{\"item_desc\":\"The WORLD of ART Time Life Books- CompleteSet of 24 + American Modern Art\",\"item_qty\":\"5,00\",\"item_net_price\":\"50,00\",\"item_net_worth\":\"250,00\",\"item_vat\":\"10%\",\"item_gross_worth\":\"275,00\"},{\"item_desc\":\"All American History Vol 1 Student Reader\",\"item_qty\":\"1,00\",\"item_net_price\":\"9,99\",\"item_net_worth\":\"9,99\",\"item_vat\":\"10%\",\"item_gross_worth\":\"10,99\"},{\"item_desc\":\"Black House: A Novel by Stephen King, Peter Straub\",\"item_qty\":\"3,00\",\"item_net_price\":\"4,49\",\"item_net_worth\":\"13,47\",\"item_vat\":\"10%\",\"item_gross_worth\":\"14,82\"}],\"summary\":{\"total_net_worth\":\"$ 273,46\",\"total_vat\":\"$27,35\",\"total_gross_worth\":\"$ 300,81\"}}" \ No newline at end of file diff --git a/docs/inference/invoice_889_1683822570150294.jpg b/docs/inference/invoice_889_1683822570150294.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a2f8eb13b4c049a3fe965f376f9c68ecdefa1b8 Binary files /dev/null and b/docs/inference/invoice_889_1683822570150294.jpg differ diff --git a/docs/inference/invoice_889_1683822570150294.json b/docs/inference/invoice_889_1683822570150294.json new file mode 100644 index 0000000000000000000000000000000000000000..d78cbd25131d44ac1b906eaeee23d60c0ad05a11 --- /dev/null +++ b/docs/inference/invoice_889_1683822570150294.json @@ -0,0 +1 @@ +"{\"header\":{\"invoice_no\":\"10503434\",\"invoice_date\":\"10/14/2020\",\"seller\":\"Henry-Fleming 607 Caitlin Streets North Garyland, NJ 15865\",\"client\":\"Tucker-Castillo 3391 Sandra Ramp Suite 924 South Roberthaven, WY 46520\",\"seller_tax_id\":\"906-92-5447\",\"client_tax_id\":\"922-86-9460\",\"iban\":\"GB68WUQJ50293517775877\"},\"items\":{\"item_desc\":\"Nintendo Super Famicom Console in box with 2 controllers tested working Japan\",\"item_qty\":\"1,00\",\"item_net_price\":\"79,99\",\"item_net_worth\":\"79,99\",\"item_vat\":\"10%\",\"item_gross_worth\":\"87,99\"},\"summary\":{\"total_net_worth\":\"$ 79,99\",\"total_vat\":\"$8,00\",\"total_gross_worth\":\"$ 87,99\"}}" \ No newline at end of file diff --git a/docs/inference/invoice_889_1683982756560439.jpg b/docs/inference/invoice_889_1683982756560439.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a2f8eb13b4c049a3fe965f376f9c68ecdefa1b8 Binary files /dev/null and b/docs/inference/invoice_889_1683982756560439.jpg differ diff --git a/docs/inference/invoice_889_1683982756560439.json b/docs/inference/invoice_889_1683982756560439.json new file mode 100644 index 0000000000000000000000000000000000000000..d78cbd25131d44ac1b906eaeee23d60c0ad05a11 --- /dev/null +++ b/docs/inference/invoice_889_1683982756560439.json @@ -0,0 +1 @@ +"{\"header\":{\"invoice_no\":\"10503434\",\"invoice_date\":\"10/14/2020\",\"seller\":\"Henry-Fleming 607 Caitlin Streets North Garyland, NJ 15865\",\"client\":\"Tucker-Castillo 3391 Sandra Ramp Suite 924 South Roberthaven, WY 46520\",\"seller_tax_id\":\"906-92-5447\",\"client_tax_id\":\"922-86-9460\",\"iban\":\"GB68WUQJ50293517775877\"},\"items\":{\"item_desc\":\"Nintendo Super Famicom Console in box with 2 controllers tested working Japan\",\"item_qty\":\"1,00\",\"item_net_price\":\"79,99\",\"item_net_worth\":\"79,99\",\"item_vat\":\"10%\",\"item_gross_worth\":\"87,99\"},\"summary\":{\"total_net_worth\":\"$ 79,99\",\"total_vat\":\"$8,00\",\"total_gross_worth\":\"$ 87,99\"}}" \ No newline at end of file diff --git a/docs/inference/test-1_16898651919058816.jpg b/docs/inference/test-1_16898651919058816.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e216f447d6c88bf88f0dbf3fd712ab0e2f6b3a6c Binary files /dev/null and b/docs/inference/test-1_16898651919058816.jpg differ diff --git a/docs/inference/test-1_16898651919058816.json b/docs/inference/test-1_16898651919058816.json new file mode 100644 index 0000000000000000000000000000000000000000..cf1fb3cba797ecbc53dabbf4fcd4cb9bcaa9692c --- /dev/null +++ b/docs/inference/test-1_16898651919058816.json @@ -0,0 +1 @@ +"{\"error\":\"Invalid Sparrow key.\"}" \ No newline at end of file diff --git a/docs/json/invoice_0.json b/docs/json/invoice_0.json new file mode 100644 index 0000000000000000000000000000000000000000..6cbb6e6ecd6b604234ef840ae58a3d25d556022a --- /dev/null +++ b/docs/json/invoice_0.json @@ -0,0 +1,573 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 0, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 199, + "y1": 109, + "x2": 407, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 416, + "y1": 115, + "x2": 514, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 524, + "y1": 114, + "x2": 806, + "y2": 162 + }, + "value": "40378170", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 209, + "x2": 317, + "y2": 264 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 317, + "y1": 209, + "x2": 381, + "y2": 269 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 381, + "y1": 212, + "x2": 519, + "y2": 264 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1204, + "y1": 215, + "x2": 1469, + "y2": 264 + }, + "value": "10/15/2012", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 199, + "y1": 668, + "x2": 382, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 209, + "y1": 756, + "x2": 933, + "y2": 922 + }, + "value": "Patel, Thompson and Montgomery 356 Kyle Vista New James, MA 46228", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1025 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 359, + "y2": 1025 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1247, + "y1": 756, + "x2": 1890, + "y2": 918 + }, + "value": "Jackson, Odonnell and Jackson 267 John Track Suite 841 Jenniferville, PA 98601", + "label": "header:client" + }, + { + "rect": { + "x1": 366, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "958-74-3511", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 199, + "y1": 1140, + "x2": 376, + "y2": 1194 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 356, + "y1": 1267, + "x2": 583, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1426, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 968, + "x2": 1336, + "y2": 1025 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1397, + "y2": 1025 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1406, + "y1": 972, + "x2": 1680, + "y2": 1020 + }, + "value": "998-87-7723", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 339, + "y1": 1027, + "x2": 960, + "y2": 1075 + }, + "value": "GB77WRBQ31965128414006", + "label": "header:iban" + }, + { + "rect": { + "x1": 1015, + "y1": 1264, + "x2": 1095, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1267, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1398, + "x2": 1242, + "y2": 1439 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1344, + "y1": 1264, + "x2": 1427, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1427, + "y1": 1271, + "x2": 1529, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1267, + "x2": 1665, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1665, + "y1": 1271, + "x2": 1781, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1267, + "x2": 1928, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1927, + "y1": 1264, + "x2": 2003, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1267, + "x2": 2254, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1307, + "x2": 2254, + "y2": 1351 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 249, + "y1": 1398, + "x2": 294, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 356, + "y1": 1398, + "x2": 885, + "y2": 1528 + }, + "value": "Leed's Wine Companion Bottle Corkscrew Opener Gift Box Set with Foil Cutter", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1394, + "x2": 1094, + "y2": 1446 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1444, + "y1": 1394, + "x2": 1533, + "y2": 1446 + }, + "value": "7,50", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1698, + "y1": 1394, + "x2": 1786, + "y2": 1446 + }, + "value": "7,50", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1398, + "x2": 2002, + "y2": 1439 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2169, + "y1": 1394, + "x2": 2256, + "y2": 1446 + }, + "value": "8,25", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 199, + "y1": 1623, + "x2": 494, + "y2": 1671 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 958, + "y1": 1746, + "x2": 1047, + "y2": 1788 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1047, + "y1": 1743, + "x2": 1122, + "y2": 1798 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 1837, + "x2": 1080, + "y2": 1878 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1391, + "y1": 1746, + "x2": 1469, + "y2": 1788 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1468, + "y1": 1746, + "x2": 1588, + "y2": 1788 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1503, + "y1": 1832, + "x2": 1589, + "y2": 1885 + }, + "value": "7,50", + "label": "" + }, + { + "rect": { + "x1": 1456, + "y1": 1915, + "x2": 1593, + "y2": 1980 + }, + "value": "$7,50", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1780, + "y1": 1746, + "x2": 1868, + "y2": 1788 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1780, + "y1": 1832, + "x2": 1868, + "y2": 1885 + }, + "value": "0,75", + "label": "" + }, + { + "rect": { + "x1": 1736, + "y1": 1922, + "x2": 1868, + "y2": 1974 + }, + "value": "$0,75", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 1746, + "x2": 2140, + "y2": 1788 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2140, + "y1": 1746, + "x2": 2261, + "y2": 1788 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2175, + "y1": 1832, + "x2": 2262, + "y2": 1885 + }, + "value": "8,25", + "label": "" + }, + { + "rect": { + "x1": 2132, + "y1": 1922, + "x2": 2262, + "y2": 1974 + }, + "value": "$8,25", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 748, + "y1": 1925, + "x2": 856, + "y2": 1967 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_1.json b/docs/json/invoice_1.json new file mode 100644 index 0000000000000000000000000000000000000000..7c5cdf8980c881a444fea7675b9e5e56178c69bf --- /dev/null +++ b/docs/json/invoice_1.json @@ -0,0 +1,813 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 1, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 199, + "y1": 109, + "x2": 407, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 416, + "y1": 115, + "x2": 514, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 528, + "y1": 114, + "x2": 806, + "y2": 162 + }, + "value": "61356291", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 209, + "x2": 317, + "y2": 264 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 317, + "y1": 209, + "x2": 381, + "y2": 269 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 381, + "y1": 212, + "x2": 519, + "y2": 264 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1204, + "y1": 215, + "x2": 1469, + "y2": 264 + }, + "value": "09/06/2012", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 199, + "y1": 668, + "x2": 382, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1426, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 756, + "x2": 755, + "y2": 918 + }, + "value": "Chapman, Kim and Green 64731 James Branch Smithmouth, NC 26872", + "label": "header:seller" + }, + { + "rect": { + "x1": 1247, + "y1": 763, + "x2": 1735, + "y2": 918 + }, + "value": "Rodriguez-Stevens 2280 Angela Plain Hortonshire, MS 93248", + "label": "header:client" + }, + { + "rect": { + "x1": 1246, + "y1": 968, + "x2": 1336, + "y2": 1025 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1397, + "y2": 1025 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 366, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "949-84-9105", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 1406, + "y1": 972, + "x2": 1680, + "y2": 1020 + }, + "value": "939-98-8477", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1025 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 359, + "y2": 1025 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 341, + "y1": 1030, + "x2": 923, + "y2": 1069 + }, + "value": "GB50ACIE59715038217063", + "label": "header:iban" + }, + { + "rect": { + "x1": 199, + "y1": 1140, + "x2": 376, + "y2": 1194 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 356, + "y1": 1267, + "x2": 583, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 249, + "y1": 1398, + "x2": 294, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 356, + "y1": 1398, + "x2": 898, + "y2": 1479 + }, + "value": "Wine Glasses Goblets Pair Clear Glass", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 249, + "y1": 1528, + "x2": 294, + "y2": 1573 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 249, + "y1": 1700, + "x2": 294, + "y2": 1748 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 1005, + "y1": 1394, + "x2": 1094, + "y2": 1446 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1427, + "y1": 1401, + "x2": 1529, + "y2": 1443 + }, + "value": "12,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1401, + "x2": 1785, + "y2": 1439 + }, + "value": "60,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1398, + "x2": 2002, + "y2": 1439 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1398, + "x2": 2254, + "y2": 1439 + }, + "value": "66,00", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 356, + "y1": 1528, + "x2": 873, + "y2": 1660 + }, + "value": "With Hooks Stemware Storage Multiple Uses Iron Wine Rack Hanging Glass", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1531, + "x2": 1090, + "y2": 1573 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1427, + "y1": 1531, + "x2": 1528, + "y2": 1573 + }, + "value": "28,08", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1660, + "y1": 1531, + "x2": 1781, + "y2": 1573 + }, + "value": "112,32", + "label": "items_row2:total_net_worth" + }, + { + "rect": { + "x1": 1917, + "y1": 1524, + "x2": 2003, + "y2": 1576 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1531, + "x2": 2254, + "y2": 1573 + }, + "value": "123,55", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 356, + "y1": 1701, + "x2": 908, + "y2": 1823 + }, + "value": "Replacement Corkscrew Parts Spiral Worm Wine Opener Bottle Houdini", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 249, + "y1": 1870, + "x2": 294, + "y2": 1918 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 1010, + "y1": 1701, + "x2": 1094, + "y2": 1745 + }, + "value": "1,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1446, + "y1": 1701, + "x2": 1529, + "y2": 1745 + }, + "value": "7,50", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1700, + "y1": 1701, + "x2": 1785, + "y2": 1745 + }, + "value": "7,50", + "label": "items_row3:total_net_worth" + }, + { + "rect": { + "x1": 1917, + "y1": 1695, + "x2": 2003, + "y2": 1748 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2174, + "y1": 1701, + "x2": 2254, + "y2": 1745 + }, + "value": "8,25", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 356, + "y1": 1873, + "x2": 878, + "y2": 2000 + }, + "value": "HOME ESSENTIALS GRADIENT STEMLESS WINE GLASSES SET OF 420 FL OZ (591 ml) NEW", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1015, + "y1": 1264, + "x2": 1095, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1267, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1398, + "x2": 1242, + "y2": 1439 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1524, + "x2": 1246, + "y2": 1576 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1701, + "x2": 1242, + "y2": 1745 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1010, + "y1": 1873, + "x2": 1094, + "y2": 1917 + }, + "value": "1,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1873, + "x2": 1242, + "y2": 1917 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1347, + "y1": 1267, + "x2": 1426, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1427, + "y1": 1271, + "x2": 1529, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1267, + "x2": 1665, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1665, + "y1": 1271, + "x2": 1781, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1267, + "x2": 1928, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1927, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1267, + "x2": 2254, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1307, + "x2": 2254, + "y2": 1351 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1427, + "y1": 1873, + "x2": 1528, + "y2": 1917 + }, + "value": "12,99", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1873, + "x2": 1781, + "y2": 1917 + }, + "value": "12,99", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1873, + "x2": 2002, + "y2": 1917 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2154, + "y1": 1873, + "x2": 2254, + "y2": 1917 + }, + "value": "14,29", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 199, + "y1": 2095, + "x2": 494, + "y2": 2146 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 958, + "y1": 2222, + "x2": 1047, + "y2": 2266 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1043, + "y1": 2219, + "x2": 1122, + "y2": 2272 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2313, + "x2": 1080, + "y2": 2354 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1391, + "y1": 2222, + "x2": 1471, + "y2": 2266 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1468, + "y1": 2222, + "x2": 1588, + "y2": 2266 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1464, + "y1": 2314, + "x2": 1588, + "y2": 2354 + }, + "value": "192,81", + "label": "" + }, + { + "rect": { + "x1": 1414, + "y1": 2398, + "x2": 1584, + "y2": 2448 + }, + "value": "$ 192,81", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1780, + "y1": 2222, + "x2": 1868, + "y2": 2266 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2313, + "x2": 1867, + "y2": 2354 + }, + "value": "19,28", + "label": "" + }, + { + "rect": { + "x1": 1710, + "y1": 2391, + "x2": 1872, + "y2": 2453 + }, + "value": "$19,28", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2222, + "x2": 2140, + "y2": 2266 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2144, + "y1": 2222, + "x2": 2261, + "y2": 2266 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 2313, + "x2": 2261, + "y2": 2354 + }, + "value": "212,09", + "label": "" + }, + { + "rect": { + "x1": 2094, + "y1": 2401, + "x2": 2259, + "y2": 2443 + }, + "value": "$ 212,09", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 748, + "y1": 2401, + "x2": 856, + "y2": 2443 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_10.json b/docs/json/invoice_10.json new file mode 100644 index 0000000000000000000000000000000000000000..cbad96e31b4e396dd896af7fee5eadf359e06f42 --- /dev/null +++ b/docs/json/invoice_10.json @@ -0,0 +1,733 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 2, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 406, + "y2": 164 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 113, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 113, + "x2": 808, + "y2": 164 + }, + "value": "49565075", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 216, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 216, + "x2": 1473, + "y2": 263 + }, + "value": "10/28/2019", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 387, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 764, + "x2": 760, + "y2": 917 + }, + "value": "Kane-Morgan 968 Carr Mission Apt. 320 Bernardville, VA 28211", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 756, + "x2": 1842, + "y2": 917 + }, + "value": "Garcia Inc 445 Haas Viaduct Suite 454 Michaelhaven, LA 32852", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "964-95-3813", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 329, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "909-75-5482", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 343, + "y1": 1030, + "x2": 924, + "y2": 1082 + }, + "value": "GB73WCJ55232646970614", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 968, + "x2": 1334, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1396, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1012, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1239, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1396, + "x2": 862, + "y2": 1524 + }, + "value": "Anthropologie Gold Elegant Swan Decorative Metal Bottle Stopper Wine Saver", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1093, + "y2": 1447 + }, + "value": "3,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1400, + "x2": 1527, + "y2": 1440 + }, + "value": "19,98", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1677, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "59,94", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1396, + "x2": 2254, + "y2": 1440 + }, + "value": "65,93", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1568, + "x2": 870, + "y2": 1655 + }, + "value": "Lolita Happy Retirement Wine Glass 15 Ounce GLS11-5534H", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1568, + "x2": 1093, + "y2": 1619 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1568, + "x2": 1242, + "y2": 1611 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1447, + "y1": 1571, + "x2": 1527, + "y2": 1611 + }, + "value": "8,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1703, + "y1": 1571, + "x2": 1783, + "y2": 1611 + }, + "value": "8,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1568, + "x2": 2002, + "y2": 1619 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2174, + "y1": 1571, + "x2": 2254, + "y2": 1611 + }, + "value": "8,80", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1696, + "x2": 862, + "y2": 1827 + }, + "value": "Lolita Congratulations\" Hand Painted and Decorated Wine Glass NIB", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1699, + "x2": 1093, + "y2": 1747 + }, + "value": "1,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1699, + "x2": 1242, + "y2": 1747 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1268, + "x2": 1425, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1663, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1308, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1699, + "x2": 1527, + "y2": 1747 + }, + "value": "20,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1677, + "y1": 1699, + "x2": 1779, + "y2": 1747 + }, + "value": "20,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1696, + "x2": 2002, + "y2": 1750 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1699, + "x2": 2254, + "y2": 1747 + }, + "value": "22,00", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 296, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1699, + "x2": 296, + "y2": 1750 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 1926, + "x2": 493, + "y2": 1973 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2043, + "x2": 1052, + "y2": 2097 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2043, + "x2": 1122, + "y2": 2101 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2134, + "x2": 1085, + "y2": 2185 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2043, + "x2": 1473, + "y2": 2097 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2050, + "x2": 1586, + "y2": 2090 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1483, + "y1": 2141, + "x2": 1586, + "y2": 2182 + }, + "value": "87,94", + "label": "" + }, + { + "rect": { + "x1": 1436, + "y1": 2225, + "x2": 1586, + "y2": 2273 + }, + "value": "$ 87,94", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2043, + "x2": 1871, + "y2": 2097 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1779, + "y1": 2134, + "x2": 1867, + "y2": 2185 + }, + "value": "8,79", + "label": "" + }, + { + "rect": { + "x1": 1736, + "y1": 2222, + "x2": 1867, + "y2": 2280 + }, + "value": "$8,79", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2046, + "x2": 2138, + "y2": 2090 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2050, + "x2": 2262, + "y2": 2090 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2156, + "y1": 2141, + "x2": 2262, + "y2": 2182 + }, + "value": "96,73", + "label": "" + }, + { + "rect": { + "x1": 2108, + "y1": 2225, + "x2": 2262, + "y2": 2277 + }, + "value": "$96,73", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2225, + "x2": 859, + "y2": 2266 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_100.json b/docs/json/invoice_100.json new file mode 100644 index 0000000000000000000000000000000000000000..aae089a7328c3b6fe86a2ea7ecebd3ace12168ca --- /dev/null +++ b/docs/json/invoice_100.json @@ -0,0 +1,653 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 3, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "95611677", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 384, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 384, + "y1": 212, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1473, + "y2": 263 + }, + "value": "07/19/2016", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 756, + "x2": 753, + "y2": 921 + }, + "value": "Franco Group 796 Arnold Cove Apt. 091 Reginaport, AZ 06940", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1896, + "y2": 917 + }, + "value": "Johnson Group 0693 Robin Mountain Apt. 180 Lake Christina, MI 87634", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "973-97-5084", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "952-81-0165", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1027, + "x2": 943, + "y2": 1074 + }, + "value": "GB95MPFV88552069556163", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 227, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 577, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1392, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1392, + "x2": 884, + "y2": 1531 + }, + "value": "Round Indian Braided Jute Carpet I Hand Woven Brown Round Shape Living Room Rug", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 296, + "y2": 1615 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1093, + "y2": 1443 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1425, + "y1": 1400, + "x2": 1527, + "y2": 1440 + }, + "value": "49,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "249,95", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1392, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1400, + "x2": 2254, + "y2": 1440 + }, + "value": "274,95", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1568, + "x2": 873, + "y2": 1706 + }, + "value": "Cartoon Rabbit Printed Round Carpet Area Rug Children Play Tent Floor Mat Rug", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1392, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1008, + "y1": 1571, + "x2": 1093, + "y2": 1615 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1564, + "x2": 1246, + "y2": 1619 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1348, + "y1": 1268, + "x2": 1425, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1666, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1308, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 1571, + "x2": 1527, + "y2": 1615 + }, + "value": "177,08", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1571, + "x2": 1779, + "y2": 1615 + }, + "value": "708,32", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 1999, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1571, + "x2": 2254, + "y2": 1615 + }, + "value": "779,15", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 197, + "y1": 1794, + "x2": 493, + "y2": 1845 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 1915, + "x2": 1049, + "y2": 1966 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 1915, + "x2": 1122, + "y2": 1970 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2002, + "x2": 1085, + "y2": 2057 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 1915, + "x2": 1473, + "y2": 1966 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 1922, + "x2": 1586, + "y2": 1959 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1462, + "y1": 2010, + "x2": 1586, + "y2": 2054 + }, + "value": "958,27", + "label": "" + }, + { + "rect": { + "x1": 1410, + "y1": 2090, + "x2": 1589, + "y2": 2152 + }, + "value": "$958,27", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1915, + "x2": 1871, + "y2": 1966 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2010, + "x2": 1863, + "y2": 2054 + }, + "value": "95,83", + "label": "" + }, + { + "rect": { + "x1": 1710, + "y1": 2090, + "x2": 1871, + "y2": 2152 + }, + "value": "$95,83", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 1922, + "x2": 2141, + "y2": 1959 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1922, + "x2": 2262, + "y2": 1962 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2097, + "y1": 2002, + "x2": 2262, + "y2": 2057 + }, + "value": "1054,10", + "label": "" + }, + { + "rect": { + "x1": 2053, + "y1": 2094, + "x2": 2262, + "y2": 2145 + }, + "value": "$1054,10", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2101, + "x2": 855, + "y2": 2138 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_101.json b/docs/json/invoice_101.json new file mode 100644 index 0000000000000000000000000000000000000000..614cd64e4b047921d79eab0aa589cff5b64398a0 --- /dev/null +++ b/docs/json/invoice_101.json @@ -0,0 +1,813 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 4, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 172 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "26020078", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 384, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 384, + "y1": 212, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1473, + "y2": 263 + }, + "value": "11/19/2019", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 672, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 205, + "y1": 756, + "x2": 892, + "y2": 917 + }, + "value": "Johnson, Coleman and Mccarthy Unit 1928 Box 1473 DPO AA 74927", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1860, + "y2": 917 + }, + "value": "Ochoa, Crane and Johnston 537 Johnson Rapid Suite 176 Morrowmouth, AK 77182", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "944-91-8763", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "942-86-9388", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1027, + "x2": 935, + "y2": 1074 + }, + "value": "GB93YUAY48784201603098", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 227, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 577, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1392, + "x2": 870, + "y2": 1524 + }, + "value": "The Children's Place Brown Dress Boy Lace Up Shoes Size 12", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1093, + "y2": 1451 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1392, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1392, + "x2": 1531, + "y2": 1451 + }, + "value": "8,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1703, + "y1": 1392, + "x2": 1787, + "y2": 1451 + }, + "value": "8,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1392, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2167, + "y1": 1392, + "x2": 2254, + "y2": 1451 + }, + "value": "8,80", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1568, + "x2": 895, + "y2": 1706 + }, + "value": "All Mattel Disney Pixar Model Cars McQueen 1:55 Diecast Lot Choose Loose Kid Toy", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1564, + "x2": 1093, + "y2": 1619 + }, + "value": "5,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1564, + "x2": 1246, + "y2": 1619 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1571, + "x2": 1527, + "y2": 1615 + }, + "value": "12,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1571, + "x2": 1779, + "y2": 1615 + }, + "value": "64,95", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 1999, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1571, + "x2": 2254, + "y2": 1615 + }, + "value": "71,45", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1743, + "x2": 848, + "y2": 1871 + }, + "value": "KushyShoo Children Kid Rain Boot Shoes Rubber, Monkey, Size Youth 1", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1739, + "x2": 1093, + "y2": 1794 + }, + "value": "1,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1743, + "x2": 1527, + "y2": 1783 + }, + "value": "22,99", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1743, + "x2": 1779, + "y2": 1783 + }, + "value": "22,99", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1743, + "x2": 1999, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1743, + "x2": 2254, + "y2": 1783 + }, + "value": "25,29", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1915, + "x2": 906, + "y2": 2039 + }, + "value": "Western Chief Kids' Boys Classic Rain Boots w/ Pull Handles Navy Blue Size 12", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1915, + "x2": 1093, + "y2": 1962 + }, + "value": "1,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1915, + "x2": 1239, + "y2": 1959 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1666, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1268, + "x2": 2254, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1305, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1915, + "x2": 1531, + "y2": 1962 + }, + "value": "9,99", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1695, + "y1": 1915, + "x2": 1787, + "y2": 1962 + }, + "value": "9,99", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1915, + "x2": 1999, + "y2": 1959 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1915, + "x2": 2254, + "y2": 1959 + }, + "value": "10,99", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1392, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 296, + "y2": 1615 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1739, + "x2": 292, + "y2": 1794 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1915, + "x2": 292, + "y2": 1959 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 2138, + "x2": 493, + "y2": 2185 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2266, + "x2": 1049, + "y2": 2306 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2266, + "x2": 1122, + "y2": 2309 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2353, + "x2": 1082, + "y2": 2393 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2266, + "x2": 1473, + "y2": 2306 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2266, + "x2": 1586, + "y2": 2306 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1465, + "y1": 2353, + "x2": 1586, + "y2": 2393 + }, + "value": "105,93", + "label": "" + }, + { + "rect": { + "x1": 1414, + "y1": 2437, + "x2": 1586, + "y2": 2488 + }, + "value": "$ 105,93", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2266, + "x2": 1871, + "y2": 2306 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2353, + "x2": 1863, + "y2": 2393 + }, + "value": "10,59", + "label": "" + }, + { + "rect": { + "x1": 1710, + "y1": 2434, + "x2": 1871, + "y2": 2496 + }, + "value": "$10,59", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2266, + "x2": 2141, + "y2": 2306 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2145, + "y1": 2266, + "x2": 2262, + "y2": 2306 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2353, + "x2": 2262, + "y2": 2393 + }, + "value": "116,52", + "label": "" + }, + { + "rect": { + "x1": 2090, + "y1": 2441, + "x2": 2262, + "y2": 2485 + }, + "value": "$ 116,52", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2441, + "x2": 851, + "y2": 2485 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_102.json b/docs/json/invoice_102.json new file mode 100644 index 0000000000000000000000000000000000000000..ee927bb1967642a5f0ee30df4330ba02a8eed115 --- /dev/null +++ b/docs/json/invoice_102.json @@ -0,0 +1,653 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 5, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "42485588", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 384, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 384, + "y1": 212, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1469, + "y2": 263 + }, + "value": "03/15/2012", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 205, + "y1": 756, + "x2": 767, + "y2": 917 + }, + "value": "Zuniga and Sons 455 Jones Trace Suite 479 Port Sarah, NM 29233", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 764, + "x2": 1681, + "y2": 921 + }, + "value": "Knight-Brown 316 Garrett Valleys Lake John, LA 21710", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "923-88-8185", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "970-99-7937", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1027, + "x2": 932, + "y2": 1074 + }, + "value": "GB47NOK145420514797164", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 227, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 577, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1392, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1392, + "x2": 818, + "y2": 1527 + }, + "value": "3 Gal 12L Moonshine Still Stainless Steel Water Wine Alcohol Distiller Equipment", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 296, + "y2": 1615 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1093, + "y2": 1443 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1425, + "y1": 1400, + "x2": 1527, + "y2": 1440 + }, + "value": "99,92", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "99,92", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1392, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1400, + "x2": 2254, + "y2": 1440 + }, + "value": "109,91", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1568, + "x2": 683, + "y2": 1622 + }, + "value": "Custom wine glass", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 201, + "y1": 1710, + "x2": 493, + "y2": 1758 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1392, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1008, + "y1": 1571, + "x2": 1093, + "y2": 1615 + }, + "value": "5,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1568, + "x2": 1239, + "y2": 1611 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1348, + "y1": 1268, + "x2": 1425, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1666, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1308, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1571, + "x2": 1527, + "y2": 1615 + }, + "value": "19,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1571, + "x2": 1783, + "y2": 1615 + }, + "value": "95,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 1999, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1571, + "x2": 2254, + "y2": 1615 + }, + "value": "104,50", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 957, + "y1": 1834, + "x2": 1049, + "y2": 1878 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 1831, + "x2": 1122, + "y2": 1886 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 1926, + "x2": 1082, + "y2": 1966 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 1834, + "x2": 1473, + "y2": 1878 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 1834, + "x2": 1586, + "y2": 1878 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1465, + "y1": 1926, + "x2": 1586, + "y2": 1966 + }, + "value": "194,92", + "label": "" + }, + { + "rect": { + "x1": 1414, + "y1": 2010, + "x2": 1586, + "y2": 2057 + }, + "value": "$ 194,92", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1834, + "x2": 1871, + "y2": 1878 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 1926, + "x2": 1867, + "y2": 1966 + }, + "value": "19,49", + "label": "" + }, + { + "rect": { + "x1": 1714, + "y1": 2010, + "x2": 1863, + "y2": 2057 + }, + "value": "$ 19,49", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 1834, + "x2": 2141, + "y2": 1878 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1834, + "x2": 2262, + "y2": 1878 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1926, + "x2": 2262, + "y2": 1966 + }, + "value": "214,41", + "label": "" + }, + { + "rect": { + "x1": 2116, + "y1": 2017, + "x2": 2258, + "y2": 2057 + }, + "value": "214,41", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2010, + "x2": 851, + "y2": 2057 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_103.json b/docs/json/invoice_103.json new file mode 100644 index 0000000000000000000000000000000000000000..0a94c0a1c618ee37ba84d2248adea4f7df3a60c4 --- /dev/null +++ b/docs/json/invoice_103.json @@ -0,0 +1,1003 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 6, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 523, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "94689364", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 212, + "x2": 515, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1469, + "y2": 263 + }, + "value": "01/12/2015", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 756, + "x2": 840, + "y2": 917 + }, + "value": "Schwartz, Flynn and Jackson 59888 Dawn Valley Suite 242 New Marilyn, WA 49740", + "label": "header:seller" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1783, + "y2": 917 + }, + "value": "Wilson PLC 674 Leon Cape Suite 819 Burtonstad, NE 12662", + "label": "header:client" + }, + { + "rect": { + "x1": 1239, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1403, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 365, + "y1": 968, + "x2": 639, + "y2": 1020 + }, + "value": "943-70-0376", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 1407, + "y1": 968, + "x2": 1681, + "y2": 1020 + }, + "value": "963-73-0110", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 205, + "y1": 968, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 354, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 343, + "y1": 1030, + "x2": 935, + "y2": 1071 + }, + "value": "GB67GYBL21403855924419", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1136, + "x2": 373, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 307, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 577, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1396, + "x2": 859, + "y2": 1524 + }, + "value": "Yilong 5'x8' Handknotted Silk Area Rug Home Decor Kid Friendly Carpet L39B", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1096, + "y2": 1443 + }, + "value": "4,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1363, + "y1": 1389, + "x2": 1527, + "y2": 1451 + }, + "value": "8000,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1604, + "y1": 1396, + "x2": 1779, + "y2": 1440 + }, + "value": "32 000,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2075, + "y1": 1396, + "x2": 2251, + "y2": 1440 + }, + "value": "35 200,00", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1568, + "x2": 895, + "y2": 1696 + }, + "value": "Faux Fur Animal Print Hide Skin Rug Cowhide Area Rug Floor Mat Carpet 33.5\"X43\"", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1571, + "x2": 1093, + "y2": 1615 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1564, + "x2": 1246, + "y2": 1619 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1571, + "x2": 1527, + "y2": 1615 + }, + "value": "26,03", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1571, + "x2": 1779, + "y2": 1615 + }, + "value": "104,12", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 2002, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1571, + "x2": 2251, + "y2": 1615 + }, + "value": "114,53", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1739, + "x2": 862, + "y2": 1878 + }, + "value": "Garden Flower Carpet Quilted Bedroom Floor Princess Tapis Lace Rug Carpets", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1739, + "x2": 1096, + "y2": 1791 + }, + "value": "5,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1743, + "x2": 1527, + "y2": 1783 + }, + "value": "45,50", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1743, + "x2": 1779, + "y2": 1783 + }, + "value": "227,50", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1743, + "x2": 2002, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1743, + "x2": 2251, + "y2": 1783 + }, + "value": "250,25", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1918, + "x2": 884, + "y2": 2039 + }, + "value": "Double Dorje Carpet Tibetan Rug Handwoven by Artisans in Nepal", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1915, + "x2": 1096, + "y2": 1966 + }, + "value": "3,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1918, + "x2": 1239, + "y2": 1962 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 1918, + "x2": 1527, + "y2": 1962 + }, + "value": "297,00", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1918, + "x2": 1779, + "y2": 1962 + }, + "value": "891,00", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1918, + "x2": 2002, + "y2": 1962 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1918, + "x2": 2251, + "y2": 1962 + }, + "value": "980,10", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 2079, + "x2": 913, + "y2": 2218 + }, + "value": "Egg Bathroom Rug Carpet Area Rugs Rug Floor Mats Nordic Chic Room Decor", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 2079, + "x2": 1096, + "y2": 2134 + }, + "value": "2,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1429, + "y1": 2087, + "x2": 1527, + "y2": 2130 + }, + "value": "68,10", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 2087, + "x2": 1779, + "y2": 2130 + }, + "value": "136,20", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2087, + "x2": 2002, + "y2": 2127 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 2087, + "x2": 2251, + "y2": 2127 + }, + "value": "149,82", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 2255, + "x2": 870, + "y2": 2390 + }, + "value": "Striped Contemporary Gabbeh Kashkoli Oriental Area Rug Handmade Wool Carpet 6x8", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 2262, + "x2": 1093, + "y2": 2302 + }, + "value": "1,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1407, + "y1": 2262, + "x2": 1527, + "y2": 2302 + }, + "value": "417,24", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 2262, + "x2": 1783, + "y2": 2302 + }, + "value": "417,24", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 2255, + "x2": 2002, + "y2": 2306 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 2262, + "x2": 2251, + "y2": 2302 + }, + "value": "458,96", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 1155, + "y1": 2087, + "x2": 1246, + "y2": 2127 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 2262, + "x2": 1239, + "y2": 2302 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1348, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1666, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2251, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1308, + "x2": 2251, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 296, + "y2": 1615 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1739, + "x2": 296, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1915, + "x2": 296, + "y2": 1962 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2079, + "x2": 296, + "y2": 2130 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2255, + "x2": 296, + "y2": 2306 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 201, + "y1": 2481, + "x2": 493, + "y2": 2532 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 961, + "y1": 2609, + "x2": 1049, + "y2": 2649 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2605, + "x2": 1122, + "y2": 2657 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 2700, + "x2": 1078, + "y2": 2741 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2602, + "x2": 1473, + "y2": 2657 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2609, + "x2": 1586, + "y2": 2649 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1410, + "y1": 2697, + "x2": 1462, + "y2": 2741 + }, + "value": "33", + "label": "" + }, + { + "rect": { + "x1": 1454, + "y1": 2700, + "x2": 1586, + "y2": 2741 + }, + "value": "776,06", + "label": "" + }, + { + "rect": { + "x1": 1356, + "y1": 2777, + "x2": 1586, + "y2": 2839 + }, + "value": "$33776,06", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1655, + "y1": 2784, + "x2": 1867, + "y2": 2836 + }, + "value": "$3377,61", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 1779, + "y1": 2609, + "x2": 1871, + "y2": 2649 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1706, + "y1": 2697, + "x2": 1739, + "y2": 2744 + }, + "value": "3", + "label": "" + }, + { + "rect": { + "x1": 1728, + "y1": 2700, + "x2": 1863, + "y2": 2741 + }, + "value": "377,61", + "label": "" + }, + { + "rect": { + "x1": 2024, + "y1": 2609, + "x2": 2138, + "y2": 2649 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 2609, + "x2": 2262, + "y2": 2649 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2083, + "y1": 2697, + "x2": 2130, + "y2": 2741 + }, + "value": "37", + "label": "" + }, + { + "rect": { + "x1": 2127, + "y1": 2700, + "x2": 2258, + "y2": 2741 + }, + "value": "153,67", + "label": "" + }, + { + "rect": { + "x1": 2028, + "y1": 2781, + "x2": 2258, + "y2": 2836 + }, + "value": "$37 153,67", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2788, + "x2": 851, + "y2": 2828 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_104.json b/docs/json/invoice_104.json new file mode 100644 index 0000000000000000000000000000000000000000..39add837c67311a5c674d29e7aced5ab4e411cb1 --- /dev/null +++ b/docs/json/invoice_104.json @@ -0,0 +1,913 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 7, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 194, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 523, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "48402876", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 212, + "x2": 515, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1473, + "y2": 263 + }, + "value": "02/06/2020", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 194, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 760, + "x2": 775, + "y2": 921 + }, + "value": "Stone-Ruiz 938 Dillon Views Suite 267 Doyleport, SC 14345", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 968, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 354, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 764, + "x2": 1860, + "y2": 917 + }, + "value": "Chapman-Pineda 8840 Daniel Coves Suite 235 Pattersonton, HI 63052", + "label": "header:client" + }, + { + "rect": { + "x1": 369, + "y1": 976, + "x2": 636, + "y2": 1020 + }, + "value": "949-90-2869", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 329, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 968, + "x2": 1684, + "y2": 1020 + }, + "value": "930-79-2809", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 343, + "y1": 1030, + "x2": 943, + "y2": 1071 + }, + "value": "GB80ESDN56327720432862", + "label": "header:iban" + }, + { + "rect": { + "x1": 194, + "y1": 1136, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1264, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 672, + "x2": 1421, + "y2": 713 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1019, + "y1": 1264, + "x2": 1096, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1264, + "x2": 1235, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1396, + "x2": 892, + "y2": 1524 + }, + "value": "Dell Optiplex 990 MT Computer PC Quad Core i7 3.4GHz 16GB 2TB HD Windows 10 Pro", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1093, + "y2": 1447 + }, + "value": "2,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 1400, + "x2": 1527, + "y2": 1440 + }, + "value": "269,95", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "539,90", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1400, + "x2": 2254, + "y2": 1440 + }, + "value": "593,89", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1568, + "x2": 873, + "y2": 1696 + }, + "value": "Alarco Gaming PC Desktop Computer Intel i5v 8GV 1Tbv WIN 10v NVIDIA GTX 650 1GB", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1571, + "x2": 1093, + "y2": 1615 + }, + "value": "3,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1564, + "x2": 1246, + "y2": 1619 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 1571, + "x2": 1527, + "y2": 1615 + }, + "value": "500,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1630, + "y1": 1571, + "x2": 1779, + "y2": 1615 + }, + "value": "1500,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 2002, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2090, + "y1": 1557, + "x2": 2258, + "y2": 1622 + }, + "value": "1650,00", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1743, + "x2": 899, + "y2": 1864 + }, + "value": "Dell Precision Workstation Computer Intel Xeon Quad Core 16GB 1TB Windows 10 Pro", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1739, + "x2": 1093, + "y2": 1794 + }, + "value": "4,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 1743, + "x2": 1527, + "y2": 1783 + }, + "value": "139,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1743, + "x2": 1779, + "y2": 1783 + }, + "value": "556,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1743, + "x2": 2002, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1743, + "x2": 2254, + "y2": 1783 + }, + "value": "611,60", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1915, + "x2": 797, + "y2": 2039 + }, + "value": "Lenovo C20-00..all in one desktop computer with Wireless Mouse..", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1915, + "x2": 1096, + "y2": 1962 + }, + "value": "3,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1915, + "x2": 1239, + "y2": 1959 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 1918, + "x2": 1527, + "y2": 1959 + }, + "value": "277,64", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1918, + "x2": 1779, + "y2": 1959 + }, + "value": "832,92", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1915, + "x2": 2002, + "y2": 1959 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1915, + "x2": 2254, + "y2": 1959 + }, + "value": "916,21", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 2087, + "x2": 833, + "y2": 2214 + }, + "value": "HP 6200 Pro Core i7 3.4GHz Quad Core 16GB 500GB Computer", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 2087, + "x2": 1096, + "y2": 2134 + }, + "value": "3,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2087, + "x2": 1239, + "y2": 2127 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1348, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1264, + "x2": 1666, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1845, + "y1": 1264, + "x2": 1929, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1264, + "x2": 2254, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1305, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 2087, + "x2": 1527, + "y2": 2127 + }, + "value": "256,68", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 2087, + "x2": 1779, + "y2": 2127 + }, + "value": "770,04", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2087, + "x2": 2002, + "y2": 2127 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 2087, + "x2": 2254, + "y2": 2127 + }, + "value": "847,04", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 296, + "y2": 1615 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1739, + "x2": 292, + "y2": 1794 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1915, + "x2": 292, + "y2": 1959 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2087, + "x2": 292, + "y2": 2130 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 194, + "y1": 2317, + "x2": 493, + "y2": 2364 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2434, + "x2": 1049, + "y2": 2481 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2434, + "x2": 1122, + "y2": 2488 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 2525, + "x2": 1085, + "y2": 2565 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2434, + "x2": 1473, + "y2": 2481 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2437, + "x2": 1586, + "y2": 2478 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 2525, + "x2": 1462, + "y2": 2569 + }, + "value": "4", + "label": "" + }, + { + "rect": { + "x1": 1454, + "y1": 2532, + "x2": 1586, + "y2": 2565 + }, + "value": "198,86", + "label": "" + }, + { + "rect": { + "x1": 1378, + "y1": 2609, + "x2": 1586, + "y2": 2668 + }, + "value": "$4 198,86", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2434, + "x2": 1871, + "y2": 2478 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1743, + "y1": 2532, + "x2": 1867, + "y2": 2565 + }, + "value": "419,89", + "label": "" + }, + { + "rect": { + "x1": 1688, + "y1": 2613, + "x2": 1863, + "y2": 2660 + }, + "value": "$ 419,89", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2437, + "x2": 2138, + "y2": 2478 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 2437, + "x2": 2262, + "y2": 2478 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2101, + "y1": 2521, + "x2": 2138, + "y2": 2569 + }, + "value": "4", + "label": "" + }, + { + "rect": { + "x1": 2127, + "y1": 2525, + "x2": 2258, + "y2": 2565 + }, + "value": "618,75", + "label": "" + }, + { + "rect": { + "x1": 2050, + "y1": 2609, + "x2": 2262, + "y2": 2660 + }, + "value": "$4618,75", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2613, + "x2": 859, + "y2": 2657 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_105.json b/docs/json/invoice_105.json new file mode 100644 index 0000000000000000000000000000000000000000..40535d1468d7fee9fd5c88be6e8484cd17821e3c --- /dev/null +++ b/docs/json/invoice_105.json @@ -0,0 +1,653 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 8, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 195, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 419, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "11158119", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1474, + "y2": 265 + }, + "value": "03/23/2019", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 195, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 754, + "x2": 562, + "y2": 916 + }, + "value": "Moore Ltd USNV Thompson FPO AE 33047", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 294, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 294, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 765, + "x2": 1742, + "y2": 923 + }, + "value": "Graham-Shepherd 42634 Michelle Mission Harperport, TN 23702", + "label": "header:client" + }, + { + "rect": { + "x1": 371, + "y1": 978, + "x2": 636, + "y2": 1019 + }, + "value": "988-96-5242", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 1408, + "y1": 978, + "x2": 1676, + "y2": 1019 + }, + "value": "943-88-6756", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 338, + "y1": 1026, + "x2": 930, + "y2": 1074 + }, + "value": "GB83FTEF94522626404124", + "label": "header:iban" + }, + { + "rect": { + "x1": 195, + "y1": 1136, + "x2": 379, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 584, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1394, + "x2": 290, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1397, + "x2": 680, + "y2": 1452 + }, + "value": "confetti wine glass", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1486, + "x2": 290, + "y2": 1530 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1092, + "y2": 1449 + }, + "value": "4,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1430, + "y1": 1397, + "x2": 1529, + "y2": 1441 + }, + "value": "15,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1683, + "y1": 1397, + "x2": 1783, + "y2": 1441 + }, + "value": "60,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2000, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1397, + "x2": 2257, + "y2": 1441 + }, + "value": "66,00", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1489, + "x2": 904, + "y2": 1614 + }, + "value": "BRAND NEW Metrokane Rabbit Wine Gold Color Tool Kit 6 Piece Set w/Aerator", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1397, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1239, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 1486, + "x2": 1092, + "y2": 1537 + }, + "value": "2,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1489, + "x2": 1239, + "y2": 1526 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1269, + "x2": 1426, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1845, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2000, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2257, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1305, + "x2": 2257, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1493, + "x2": 1529, + "y2": 1526 + }, + "value": "29,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1683, + "y1": 1493, + "x2": 1779, + "y2": 1530 + }, + "value": "59,98", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1489, + "x2": 2000, + "y2": 1526 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1493, + "x2": 2257, + "y2": 1526 + }, + "value": "65,98", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 195, + "y1": 1710, + "x2": 493, + "y2": 1758 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 1835, + "x2": 1048, + "y2": 1879 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 1831, + "x2": 1121, + "y2": 1886 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 1927, + "x2": 1084, + "y2": 1964 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 1835, + "x2": 1474, + "y2": 1879 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 1835, + "x2": 1588, + "y2": 1879 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1467, + "y1": 1931, + "x2": 1588, + "y2": 1964 + }, + "value": "119,98", + "label": "" + }, + { + "rect": { + "x1": 1415, + "y1": 2011, + "x2": 1588, + "y2": 2056 + }, + "value": "$ 119,98", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1835, + "x2": 1871, + "y2": 1879 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 1927, + "x2": 1867, + "y2": 1964 + }, + "value": "12,00", + "label": "" + }, + { + "rect": { + "x1": 1713, + "y1": 2011, + "x2": 1864, + "y2": 2056 + }, + "value": "$ 12,00", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 1835, + "x2": 2143, + "y2": 1879 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 1835, + "x2": 2260, + "y2": 1879 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1927, + "x2": 2260, + "y2": 1964 + }, + "value": "131,98", + "label": "" + }, + { + "rect": { + "x1": 2113, + "y1": 2015, + "x2": 2257, + "y2": 2056 + }, + "value": "131,98", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2011, + "x2": 849, + "y2": 2056 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_106.json b/docs/json/invoice_106.json new file mode 100644 index 0000000000000000000000000000000000000000..f096291e55577683b1dc455336f10bb890272c93 --- /dev/null +++ b/docs/json/invoice_106.json @@ -0,0 +1,813 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 9, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 195, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 419, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "65321852", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1470, + "y2": 265 + }, + "value": "04/11/2021", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 195, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 754, + "x2": 820, + "y2": 916 + }, + "value": "Kaufman, Cooper and Young 33451 Johnson Lake New Ann, NE 54138", + "label": "header:seller" + }, + { + "rect": { + "x1": 1246, + "y1": 761, + "x2": 1852, + "y2": 916 + }, + "value": "Wells-Carlson 148 Carroll Village Suite 393 South Allisonstad, TX 72090", + "label": "header:client" + }, + { + "rect": { + "x1": 1239, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1397, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 368, + "y1": 971, + "x2": 636, + "y2": 1019 + }, + "value": "930-79-7845", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1683, + "y2": 1019 + }, + "value": "957-82-7504", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 294, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 294, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 195, + "y1": 1136, + "x2": 379, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 584, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 338, + "y1": 1026, + "x2": 952, + "y2": 1074 + }, + "value": "GB85XPMM58300597200061", + "label": "header:iban" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1394, + "x2": 889, + "y2": 1522 + }, + "value": "New KID CUDI \"WZRD\" Rap Hip Hop Soul Music Men's Black T-Shirt Size S to 3XL", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1092, + "y2": 1449 + }, + "value": "2,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1239, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1397, + "x2": 1529, + "y2": 1441 + }, + "value": "22,49", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1683, + "y1": 1397, + "x2": 1779, + "y2": 1441 + }, + "value": "44,98", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2000, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1397, + "x2": 2257, + "y2": 1441 + }, + "value": "49,48", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1566, + "x2": 834, + "y2": 1662 + }, + "value": "boys bogs waterproof boots youth size 3", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1563, + "x2": 1092, + "y2": 1618 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1563, + "x2": 1246, + "y2": 1618 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1444, + "y1": 1570, + "x2": 1529, + "y2": 1614 + }, + "value": "9,80", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1702, + "y1": 1570, + "x2": 1783, + "y2": 1614 + }, + "value": "9,80", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2000, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1570, + "x2": 2257, + "y2": 1614 + }, + "value": "10,78", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1695, + "x2": 845, + "y2": 1831 + }, + "value": "Joma Boys Youth Gol-102 Soccer Cleats Shoes Size 3.5 White Red Futbol NEW", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1703, + "x2": 1092, + "y2": 1743 + }, + "value": "2,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1703, + "x2": 1239, + "y2": 1743 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1703, + "x2": 1529, + "y2": 1743 + }, + "value": "19,99", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1683, + "y1": 1703, + "x2": 1779, + "y2": 1743 + }, + "value": "39,98", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1695, + "x2": 2000, + "y2": 1747 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1703, + "x2": 2257, + "y2": 1743 + }, + "value": "43,98", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1864, + "x2": 864, + "y2": 1960 + }, + "value": "Nike Oncore High Jr 6.0 (Kids) Size 4Y Black, Red, White", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1875, + "x2": 1092, + "y2": 1912 + }, + "value": "4,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1875, + "x2": 1239, + "y2": 1912 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1269, + "x2": 1426, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1845, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2000, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2257, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1305, + "x2": 2257, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1875, + "x2": 1529, + "y2": 1912 + }, + "value": "25,00", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1875, + "x2": 1779, + "y2": 1912 + }, + "value": "100,00", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1875, + "x2": 2000, + "y2": 1912 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1875, + "x2": 2257, + "y2": 1912 + }, + "value": "110,00", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 290, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1566, + "x2": 294, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1695, + "x2": 290, + "y2": 1747 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1872, + "x2": 290, + "y2": 1916 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 195, + "y1": 2056, + "x2": 493, + "y2": 2103 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 2181, + "x2": 1048, + "y2": 2225 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2177, + "x2": 1121, + "y2": 2232 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 992, + "y1": 2269, + "x2": 1084, + "y2": 2317 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2181, + "x2": 1474, + "y2": 2225 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2181, + "x2": 1588, + "y2": 2225 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1467, + "y1": 2269, + "x2": 1588, + "y2": 2317 + }, + "value": "194,76", + "label": "" + }, + { + "rect": { + "x1": 1415, + "y1": 2357, + "x2": 1588, + "y2": 2405 + }, + "value": "$ 194,76", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2181, + "x2": 1871, + "y2": 2225 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2269, + "x2": 1864, + "y2": 2317 + }, + "value": "19,48", + "label": "" + }, + { + "rect": { + "x1": 1713, + "y1": 2357, + "x2": 1864, + "y2": 2405 + }, + "value": "$ 19,48", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2181, + "x2": 2143, + "y2": 2225 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 2181, + "x2": 2260, + "y2": 2225 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2269, + "x2": 2260, + "y2": 2317 + }, + "value": "214,24", + "label": "" + }, + { + "rect": { + "x1": 2088, + "y1": 2357, + "x2": 2257, + "y2": 2405 + }, + "value": "$ 214,24", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2364, + "x2": 849, + "y2": 2401 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_107.json b/docs/json/invoice_107.json new file mode 100644 index 0000000000000000000000000000000000000000..32bda3e623305c813e058a0a7364bc1caca3b965 --- /dev/null +++ b/docs/json/invoice_107.json @@ -0,0 +1,993 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 10, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 195, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 419, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "86268868", + "label": "invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1470, + "y2": 265 + }, + "value": "03/30/2012", + "label": "invoice_date" + }, + { + "rect": { + "x1": 195, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 754, + "x2": 680, + "y2": 916 + }, + "value": "Harrison and Sons 8716 Tiffany Crescent Markfurt, NH 79626", + "label": "seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 294, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 294, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 754, + "x2": 1852, + "y2": 916 + }, + "value": "Adams, Holmes and Cruz 096 Bradley Forge Suite 047 Samanthabury, TN 88715", + "label": "client" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1683, + "y2": 1019 + }, + "value": "951-73-7519", + "label": "client_tax_id" + }, + { + "rect": { + "x1": 368, + "y1": 971, + "x2": 636, + "y2": 1019 + }, + "value": "974-70-5786", + "label": "seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 338, + "y1": 1026, + "x2": 941, + "y2": 1074 + }, + "value": "GB90KGZY90567874189494", + "label": "iban" + }, + { + "rect": { + "x1": 195, + "y1": 1136, + "x2": 379, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 584, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 290, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1397, + "x2": 893, + "y2": 1530 + }, + "value": "YILONG 4'x6' Traditional Handmade Carpet Sitting Room Hand Knotted Silk Rug 076B", + "label": "item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1566, + "x2": 294, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 1394, + "x2": 1092, + "y2": 1449 + }, + "value": "3,00", + "label": "item_qty" + }, + { + "rect": { + "x1": 1364, + "y1": 1390, + "x2": 1533, + "y2": 1452 + }, + "value": "3600,00", + "label": "item_net_price" + }, + { + "rect": { + "x1": 1603, + "y1": 1397, + "x2": 1779, + "y2": 1441 + }, + "value": "10 800,00", + "label": "item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2000, + "y2": 1441 + }, + "value": "10%", + "label": "item_vat" + }, + { + "rect": { + "x1": 2077, + "y1": 1397, + "x2": 2257, + "y2": 1441 + }, + "value": "11880,00", + "label": "item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1566, + "x2": 871, + "y2": 1695 + }, + "value": "Bohemian Rag Rug- Woven Chindi Dari Living Room Rug / Hand-Woven Carpet Rug-Mats", + "label": "item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1739, + "x2": 290, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 1563, + "x2": 1092, + "y2": 1618 + }, + "value": "5,00", + "label": "item_qty" + }, + { + "rect": { + "x1": 1430, + "y1": 1570, + "x2": 1529, + "y2": 1614 + }, + "value": "23,39", + "label": "item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1570, + "x2": 1779, + "y2": 1614 + }, + "value": "116,95", + "label": "item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2000, + "y2": 1611 + }, + "value": "10%", + "label": "item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1570, + "x2": 2257, + "y2": 1614 + }, + "value": "128,65", + "label": "item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1743, + "x2": 889, + "y2": 1879 + }, + "value": "Cotton Linen Kitchen Mat Bathroom Doormat Absorbent Rug Hand-woven Tassel Carpet", + "label": "item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1908, + "x2": 290, + "y2": 1956 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 1739, + "x2": 1095, + "y2": 1791 + }, + "value": "1,00", + "label": "item_qty" + }, + { + "rect": { + "x1": 1426, + "y1": 1743, + "x2": 1529, + "y2": 1783 + }, + "value": "20,52", + "label": "item_net_price" + }, + { + "rect": { + "x1": 1683, + "y1": 1743, + "x2": 1779, + "y2": 1783 + }, + "value": "20,52", + "label": "item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1743, + "x2": 2000, + "y2": 1783 + }, + "value": "10%", + "label": "item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1743, + "x2": 2257, + "y2": 1783 + }, + "value": "22,57", + "label": "item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1912, + "x2": 882, + "y2": 2044 + }, + "value": "YILONG 5.6'x8.3' All Over Pattern HandKnotted Silk Rugs Oriental Carpets 1807", + "label": "item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 2081, + "x2": 290, + "y2": 2129 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1908, + "x2": 1095, + "y2": 1960 + }, + "value": "2,00", + "label": "item_qty" + }, + { + "rect": { + "x1": 1367, + "y1": 1908, + "x2": 1529, + "y2": 1956 + }, + "value": "9 000,00", + "label": "item_net_price" + }, + { + "rect": { + "x1": 1603, + "y1": 1912, + "x2": 1779, + "y2": 1956 + }, + "value": "18000,00", + "label": "item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1912, + "x2": 2000, + "y2": 1956 + }, + "value": "10%", + "label": "item_vat" + }, + { + "rect": { + "x1": 2077, + "y1": 1912, + "x2": 2257, + "y2": 1956 + }, + "value": "19 800,00", + "label": "item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2089, + "x2": 893, + "y2": 2221 + }, + "value": "YILONG 4'x6' Handmade Carpet Hunting Scene Hand Knotted Silk Rugs 079B", + "label": "item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 2258, + "x2": 290, + "y2": 2306 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 2081, + "x2": 1095, + "y2": 2133 + }, + "value": "1,00", + "label": "item_qty" + }, + { + "rect": { + "x1": 1367, + "y1": 2081, + "x2": 1533, + "y2": 2133 + }, + "value": "3600,00", + "label": "item_net_price" + }, + { + "rect": { + "x1": 1617, + "y1": 2081, + "x2": 1783, + "y2": 2133 + }, + "value": "3600,00", + "label": "item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2089, + "x2": 2000, + "y2": 2125 + }, + "value": "10%", + "label": "item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 2089, + "x2": 2257, + "y2": 2129 + }, + "value": "3 960,00", + "label": "item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2258, + "x2": 912, + "y2": 2390 + }, + "value": "7x10 Diamond Geometric Rugs Contemporary Black Color Large Mat Dhurrie Carpet", + "label": "item_desc" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 971, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1397, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1239, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1563, + "x2": 1246, + "y2": 1618 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1912, + "x2": 1239, + "y2": 1956 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 2089, + "x2": 1239, + "y2": 2125 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 2261, + "x2": 1092, + "y2": 2302 + }, + "value": "3,00", + "label": "item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2261, + "x2": 1239, + "y2": 2302 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1342, + "y1": 1265, + "x2": 1430, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1845, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2000, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2257, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1305, + "x2": 2257, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 2261, + "x2": 1529, + "y2": 2302 + }, + "value": "350,00", + "label": "item_net_price" + }, + { + "rect": { + "x1": 1632, + "y1": 2261, + "x2": 1779, + "y2": 2302 + }, + "value": "1050,00", + "label": "item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 2258, + "x2": 2000, + "y2": 2306 + }, + "value": "10%", + "label": "item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 2258, + "x2": 2257, + "y2": 2306 + }, + "value": "1155,00", + "label": "item_gross_worth" + }, + { + "rect": { + "x1": 202, + "y1": 2482, + "x2": 493, + "y2": 2530 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 2611, + "x2": 1048, + "y2": 2655 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2607, + "x2": 1121, + "y2": 2662 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 2699, + "x2": 1084, + "y2": 2739 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2603, + "x2": 1474, + "y2": 2659 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2611, + "x2": 1588, + "y2": 2655 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 2699, + "x2": 1588, + "y2": 2739 + }, + "value": "33587,47", + "label": "" + }, + { + "rect": { + "x1": 1353, + "y1": 2776, + "x2": 1592, + "y2": 2839 + }, + "value": "$33587,47", + "label": "total_net_worth" + }, + { + "rect": { + "x1": 1654, + "y1": 2784, + "x2": 1867, + "y2": 2835 + }, + "value": "$3358,75", + "label": "total_vat" + }, + { + "rect": { + "x1": 1779, + "y1": 2611, + "x2": 1871, + "y2": 2655 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1705, + "y1": 2695, + "x2": 1742, + "y2": 2743 + }, + "value": "3", + "label": "" + }, + { + "rect": { + "x1": 1728, + "y1": 2699, + "x2": 1864, + "y2": 2739 + }, + "value": "358,75", + "label": "" + }, + { + "rect": { + "x1": 2025, + "y1": 2611, + "x2": 2143, + "y2": 2655 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 2611, + "x2": 2260, + "y2": 2655 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2084, + "y1": 2695, + "x2": 2135, + "y2": 2739 + }, + "value": "36", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 2699, + "x2": 2257, + "y2": 2739 + }, + "value": "946,22", + "label": "" + }, + { + "rect": { + "x1": 2033, + "y1": 2780, + "x2": 2260, + "y2": 2835 + }, + "value": "$ 36946,22", + "label": "total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2787, + "x2": 849, + "y2": 2828 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_108.json b/docs/json/invoice_108.json new file mode 100644 index 0000000000000000000000000000000000000000..fd79e739e0cc6b0edcdd045b7a0d5e3a9f604283 --- /dev/null +++ b/docs/json/invoice_108.json @@ -0,0 +1,893 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 11, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 194, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 420, + "y1": 117, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "39280409", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 208, + "x2": 322, + "y2": 267 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 322, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 212, + "x2": 519, + "y2": 267 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1473, + "y2": 267 + }, + "value": "07/06/2014", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 194, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 753, + "x2": 683, + "y2": 917 + }, + "value": "Davis PLC 72057 Castillo Via Deniseshire, KY 95233", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 292, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 292, + "y1": 968, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 760, + "x2": 1772, + "y2": 917 + }, + "value": "Bailey-Harris 106 Michael Street North William, DC 96680", + "label": "header:client" + }, + { + "rect": { + "x1": 373, + "y1": 979, + "x2": 636, + "y2": 1020 + }, + "value": "938-79-9168", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 979, + "x2": 1677, + "y2": 1020 + }, + "value": "965-83-8071", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1030, + "x2": 943, + "y2": 1085 + }, + "value": "GB39WJ0U70698169375316", + "label": "header:iban" + }, + { + "rect": { + "x1": 194, + "y1": 1136, + "x2": 380, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1396, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1096, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1396, + "x2": 888, + "y2": 1527 + }, + "value": "Chindi Rugs Carpet New Design Bohemian Garden Yoga Mat Indian Kilim Counterpane", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1093, + "y2": 1451 + }, + "value": "2,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1396, + "x2": 1527, + "y2": 1440 + }, + "value": "29,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1684, + "y1": 1396, + "x2": 1779, + "y2": 1440 + }, + "value": "59,98", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1396, + "x2": 2258, + "y2": 1440 + }, + "value": "65,98", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1568, + "x2": 892, + "y2": 1703 + }, + "value": "Xmas Christmas Rug Carpet Cartoon Bedroom Kids Play Mat Soft Flannel Area Rugs @", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1571, + "x2": 1093, + "y2": 1615 + }, + "value": "3,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1564, + "x2": 1246, + "y2": 1619 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1571, + "x2": 1527, + "y2": 1615 + }, + "value": "37,31", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1571, + "x2": 1779, + "y2": 1615 + }, + "value": "111,93", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 1999, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1571, + "x2": 2258, + "y2": 1615 + }, + "value": "123,12", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1739, + "x2": 870, + "y2": 1871 + }, + "value": "Bohemian Rag Rug- Woven Chindi Dari Living Room Rug / Hand-Woven Carpet Rug-Mats", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1739, + "x2": 1093, + "y2": 1791 + }, + "value": "2,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1743, + "x2": 1527, + "y2": 1783 + }, + "value": "23,39", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1684, + "y1": 1743, + "x2": 1779, + "y2": 1783 + }, + "value": "46,78", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1743, + "x2": 1999, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1743, + "x2": 2258, + "y2": 1783 + }, + "value": "51,46", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1907, + "x2": 903, + "y2": 2054 + }, + "value": "Rug Beni Ourain, Moroccan Handmade 100% Wool Area Rug Berber Beni Ouarain Carpet", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1907, + "x2": 1096, + "y2": 1959 + }, + "value": "3,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1911, + "x2": 1239, + "y2": 1955 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1399, + "y1": 1915, + "x2": 1527, + "y2": 1955 + }, + "value": "450,00", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1622, + "y1": 1907, + "x2": 1783, + "y2": 1959 + }, + "value": "1350,00", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1911, + "x2": 1999, + "y2": 1955 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2094, + "y1": 1907, + "x2": 2258, + "y2": 1955 + }, + "value": "1 485,00", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 2090, + "x2": 888, + "y2": 2222 + }, + "value": "40x120CM Christmas Door Mat Kitchen Floor Area Rug Bedroom Living Room Carpet", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 2079, + "x2": 1096, + "y2": 2134 + }, + "value": "2,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2090, + "x2": 1239, + "y2": 2127 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1268, + "x2": 1425, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1589, + "y1": 1268, + "x2": 1666, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1845, + "y1": 1268, + "x2": 1929, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2258, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1305, + "x2": 2258, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 2090, + "x2": 1527, + "y2": 2130 + }, + "value": "18,99", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1684, + "y1": 2090, + "x2": 1779, + "y2": 2130 + }, + "value": "37,98", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2090, + "x2": 1999, + "y2": 2127 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 2079, + "x2": 2258, + "y2": 2134 + }, + "value": "41,78", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 245, + "y1": 1396, + "x2": 289, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 245, + "y1": 1568, + "x2": 292, + "y2": 1615 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 245, + "y1": 1739, + "x2": 289, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 245, + "y1": 1907, + "x2": 289, + "y2": 1955 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 245, + "y1": 2079, + "x2": 289, + "y2": 2130 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 194, + "y1": 2317, + "x2": 493, + "y2": 2364 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2434, + "x2": 1049, + "y2": 2485 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2434, + "x2": 1122, + "y2": 2488 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 2521, + "x2": 1085, + "y2": 2565 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2434, + "x2": 1473, + "y2": 2485 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2437, + "x2": 1589, + "y2": 2478 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 2514, + "x2": 1593, + "y2": 2573 + }, + "value": "1606,67", + "label": "" + }, + { + "rect": { + "x1": 1378, + "y1": 2613, + "x2": 1589, + "y2": 2660 + }, + "value": "$1606,67", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2434, + "x2": 1871, + "y2": 2478 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1743, + "y1": 2529, + "x2": 1863, + "y2": 2565 + }, + "value": "160,67", + "label": "" + }, + { + "rect": { + "x1": 1695, + "y1": 2613, + "x2": 1863, + "y2": 2660 + }, + "value": "$ 160,67", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2434, + "x2": 2141, + "y2": 2485 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2437, + "x2": 2262, + "y2": 2478 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2097, + "y1": 2514, + "x2": 2262, + "y2": 2573 + }, + "value": "1767,34", + "label": "" + }, + { + "rect": { + "x1": 2046, + "y1": 2613, + "x2": 2262, + "y2": 2660 + }, + "value": "$1767,34", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2613, + "x2": 855, + "y2": 2660 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_109.json b/docs/json/invoice_109.json new file mode 100644 index 0000000000000000000000000000000000000000..ca3eda201d2ff53c719205aed88d2db7f80e08c3 --- /dev/null +++ b/docs/json/invoice_109.json @@ -0,0 +1,733 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 12, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 194, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "87278875", + "label": "invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 212, + "x2": 515, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1473, + "y2": 263 + }, + "value": "07/06/2019", + "label": "invoice_date" + }, + { + "rect": { + "x1": 194, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 760, + "x2": 713, + "y2": 921 + }, + "value": "Jackson-Martinez 719 Reyes Mill Apt. 833 Joshuabury, NM 79134", + "label": "seller" + }, + { + "rect": { + "x1": 205, + "y1": 968, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 354, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 753, + "x2": 1980, + "y2": 917 + }, + "value": "Foster, Travis and Harris 9816 Matthew Meadows Suite 574 New Scott, DC 38726", + "label": "client" + }, + { + "rect": { + "x1": 365, + "y1": 968, + "x2": 636, + "y2": 1020 + }, + "value": "954-98-4076", + "label": "seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 329, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 968, + "x2": 1684, + "y2": 1020 + }, + "value": "938-94-3648", + "label": "client_tax_id" + }, + { + "rect": { + "x1": 343, + "y1": 1038, + "x2": 928, + "y2": 1074 + }, + "value": "GB960NEJ/7402455114924", + "label": "iban" + }, + { + "rect": { + "x1": 194, + "y1": 1136, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1264, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1019, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1264, + "x2": 1235, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1392, + "x2": 913, + "y2": 1524 + }, + "value": "Skechers Hypno Splash Light Up Shoes Size 4 Medium Big Kid New", + "label": "item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1093, + "y2": 1447 + }, + "value": "1,00", + "label": "item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1400, + "x2": 1527, + "y2": 1440 + }, + "value": "24,99", + "label": "item_net_price" + }, + { + "rect": { + "x1": 1684, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "24,99", + "label": "item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1396, + "x2": 2254, + "y2": 1440 + }, + "value": "27,49", + "label": "item_gross_worth" + }, + { + "rect": { + "x1": 351, + "y1": 1564, + "x2": 870, + "y2": 1696 + }, + "value": "4 pcs Kids Size Cartoon Peppa Pink Pig Cotton Face Masks Mouth Cover Washable", + "label": "item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1571, + "x2": 1093, + "y2": 1615 + }, + "value": "2,00", + "label": "item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1564, + "x2": 1246, + "y2": 1619 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1571, + "x2": 1527, + "y2": 1615 + }, + "value": "11,88", + "label": "item_net_price" + }, + { + "rect": { + "x1": 1684, + "y1": 1571, + "x2": 1779, + "y2": 1615 + }, + "value": "23,76", + "label": "item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 2002, + "y2": 1611 + }, + "value": "10%", + "label": "item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1571, + "x2": 2254, + "y2": 1615 + }, + "value": "26,14", + "label": "item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1739, + "x2": 848, + "y2": 1864 + }, + "value": "Joma Boys Youth Gol-102 Soccer Cleats Shoes Size 1.5 White Red 1.5Y NEW", + "label": "item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1739, + "x2": 1096, + "y2": 1794 + }, + "value": "1,00", + "label": "item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1348, + "y1": 1264, + "x2": 1425, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1264, + "x2": 1666, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1845, + "y1": 1264, + "x2": 1929, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1264, + "x2": 2254, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1305, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1743, + "x2": 1527, + "y2": 1783 + }, + "value": "19,99", + "label": "item_net_price" + }, + { + "rect": { + "x1": 1684, + "y1": 1743, + "x2": 1779, + "y2": 1783 + }, + "value": "19,99", + "label": "item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1743, + "x2": 2002, + "y2": 1783 + }, + "value": "10%", + "label": "item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1743, + "x2": 2254, + "y2": 1783 + }, + "value": "21,99", + "label": "item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 296, + "y2": 1615 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1739, + "x2": 292, + "y2": 1794 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 194, + "y1": 1966, + "x2": 493, + "y2": 2013 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2094, + "x2": 1049, + "y2": 2134 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2087, + "x2": 1122, + "y2": 2141 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 2182, + "x2": 1082, + "y2": 2225 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2094, + "x2": 1473, + "y2": 2134 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2094, + "x2": 1586, + "y2": 2134 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1483, + "y1": 2182, + "x2": 1586, + "y2": 2225 + }, + "value": "68,74", + "label": "" + }, + { + "rect": { + "x1": 1436, + "y1": 2266, + "x2": 1586, + "y2": 2317 + }, + "value": "$ 68,74", + "label": "total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2094, + "x2": 1871, + "y2": 2134 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1783, + "y1": 2182, + "x2": 1867, + "y2": 2225 + }, + "value": "6,87", + "label": "" + }, + { + "rect": { + "x1": 1739, + "y1": 2266, + "x2": 1863, + "y2": 2317 + }, + "value": "$ 6,87", + "label": "total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2094, + "x2": 2138, + "y2": 2134 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 2094, + "x2": 2262, + "y2": 2134 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2159, + "y1": 2182, + "x2": 2262, + "y2": 2225 + }, + "value": "75,61", + "label": "" + }, + { + "rect": { + "x1": 2105, + "y1": 2262, + "x2": 2265, + "y2": 2324 + }, + "value": "$75,61", + "label": "total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2269, + "x2": 859, + "y2": 2317 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_11.json b/docs/json/invoice_11.json new file mode 100644 index 0000000000000000000000000000000000000000..3c7715bdbd76ed086dced0f3283e86bb4409c01c --- /dev/null +++ b/docs/json/invoice_11.json @@ -0,0 +1,733 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 13, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 406, + "y2": 164 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 113, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 808, + "y2": 164 + }, + "value": "53737787", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 216, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 216, + "x2": 1469, + "y2": 263 + }, + "value": "12/08/2011", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 387, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 764, + "x2": 862, + "y2": 917 + }, + "value": "Levy-Vargas 7333 Noble Hill Suite 584 West Valeriechester, AZ 99439", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 764, + "x2": 1747, + "y2": 925 + }, + "value": "Kelly-Herring 8621 Maria Fords North Miguel, KS 38601", + "label": "header:client" + }, + { + "rect": { + "x1": 369, + "y1": 979, + "x2": 636, + "y2": 1016 + }, + "value": "908-76-0702", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 329, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "910-72-9133", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1027, + "x2": 913, + "y2": 1074 + }, + "value": "GB71DP5417716092625", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 972, + "x2": 1334, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1396, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1012, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1239, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1396, + "x2": 895, + "y2": 1524 + }, + "value": "Breaking Free from Depression: Pathways to Wellness by Jesse H. Wright (English)", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1093, + "y2": 1447 + }, + "value": "2,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1400, + "x2": 1527, + "y2": 1443 + }, + "value": "32,94", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1673, + "y1": 1400, + "x2": 1776, + "y2": 1440 + }, + "value": "65,88", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1396, + "x2": 2254, + "y2": 1440 + }, + "value": "72,47", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 351, + "y1": 1568, + "x2": 873, + "y2": 1699 + }, + "value": "The Graphic Design Reference & Specification Book: Everything Graphic Designers", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1012, + "y1": 1568, + "x2": 1096, + "y2": 1619 + }, + "value": "5,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1151, + "y1": 1568, + "x2": 1246, + "y2": 1619 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1571, + "x2": 1527, + "y2": 1611 + }, + "value": "20,18", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1571, + "x2": 1779, + "y2": 1611 + }, + "value": "100,90", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 2002, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1571, + "x2": 2254, + "y2": 1611 + }, + "value": "110,99", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1739, + "x2": 833, + "y2": 1878 + }, + "value": "Escape from the Carnival of Horrors (Give Yourself Goosebumps) by R. L. Stine", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1739, + "x2": 1096, + "y2": 1794 + }, + "value": "4,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1743, + "x2": 1246, + "y2": 1787 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1268, + "x2": 1425, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1663, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1308, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1739, + "x2": 1531, + "y2": 1794 + }, + "value": "5,01", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1677, + "y1": 1743, + "x2": 1779, + "y2": 1787 + }, + "value": "20,04", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1743, + "x2": 2002, + "y2": 1787 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1743, + "x2": 2254, + "y2": 1787 + }, + "value": "22,04", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 296, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1739, + "x2": 296, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 1966, + "x2": 493, + "y2": 2017 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2094, + "x2": 1049, + "y2": 2134 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2087, + "x2": 1122, + "y2": 2141 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 2182, + "x2": 1082, + "y2": 2222 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2083, + "x2": 1473, + "y2": 2138 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1473, + "y1": 2094, + "x2": 1586, + "y2": 2134 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1465, + "y1": 2182, + "x2": 1586, + "y2": 2222 + }, + "value": "186,82", + "label": "" + }, + { + "rect": { + "x1": 1414, + "y1": 2266, + "x2": 1586, + "y2": 2317 + }, + "value": "$ 186,82", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2094, + "x2": 1867, + "y2": 2134 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2182, + "x2": 1867, + "y2": 2222 + }, + "value": "18,68", + "label": "" + }, + { + "rect": { + "x1": 1714, + "y1": 2266, + "x2": 1863, + "y2": 2317 + }, + "value": "$ 18,68", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2094, + "x2": 2138, + "y2": 2134 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2094, + "x2": 2262, + "y2": 2134 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 2182, + "x2": 2262, + "y2": 2222 + }, + "value": "205,50", + "label": "" + }, + { + "rect": { + "x1": 2083, + "y1": 2266, + "x2": 2262, + "y2": 2317 + }, + "value": "$ 205,50", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2269, + "x2": 859, + "y2": 2313 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_110.json b/docs/json/invoice_110.json new file mode 100644 index 0000000000000000000000000000000000000000..6bd9dd20474e4990d0183f4de961bdc11e3fa190 --- /dev/null +++ b/docs/json/invoice_110.json @@ -0,0 +1,983 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 14, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 195, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 419, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "16220332", + "label": "invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1470, + "y2": 265 + }, + "value": "05/15/2017", + "label": "invoice_date" + }, + { + "rect": { + "x1": 195, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 754, + "x2": 651, + "y2": 916 + }, + "value": "Lawson and Sons 78147 Jackson Fords Gilesland, MI 45057", + "label": "seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 294, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 294, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 754, + "x2": 1779, + "y2": 916 + }, + "value": "Mosley LLC 913 Lawrence Mountains New Andrew, KY 46723", + "label": "client" + }, + { + "rect": { + "x1": 368, + "y1": 971, + "x2": 636, + "y2": 1019 + }, + "value": "995-72-1473", + "label": "seller_tax_id" + }, + { + "rect": { + "x1": 1408, + "y1": 978, + "x2": 1676, + "y2": 1019 + }, + "value": "988-78-0364", + "label": "client_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 338, + "y1": 1030, + "x2": 941, + "y2": 1070 + }, + "value": "GB30RUVA78076817247388", + "label": "iban" + }, + { + "rect": { + "x1": 195, + "y1": 1136, + "x2": 379, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 584, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1397, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1397, + "x2": 904, + "y2": 1530 + }, + "value": "YILONG 9'x12' Handknotted Silk Valuable Rug Furniture Indoor Carpet Q01A", + "label": "item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1095, + "y2": 1449 + }, + "value": "4,00", + "label": "item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1239, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1364, + "y1": 1390, + "x2": 1533, + "y2": 1452 + }, + "value": "7800,00", + "label": "item_net_price" + }, + { + "rect": { + "x1": 1603, + "y1": 1397, + "x2": 1779, + "y2": 1441 + }, + "value": "31200,00", + "label": "item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2000, + "y2": 1441 + }, + "value": "10%", + "label": "item_vat" + }, + { + "rect": { + "x1": 2077, + "y1": 1397, + "x2": 2257, + "y2": 1441 + }, + "value": "34 320,00", + "label": "item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1566, + "x2": 882, + "y2": 1695 + }, + "value": "YILONG 5.6'x8.3' All Over Pattern HandKnotted Silk Rugs Oriental Carpets 1807", + "label": "item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1570, + "x2": 1092, + "y2": 1614 + }, + "value": "2,00", + "label": "item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1563, + "x2": 1246, + "y2": 1618 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1364, + "y1": 1555, + "x2": 1533, + "y2": 1622 + }, + "value": "9000,00", + "label": "item_net_price" + }, + { + "rect": { + "x1": 1603, + "y1": 1566, + "x2": 1779, + "y2": 1614 + }, + "value": "18 000,00", + "label": "item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2000, + "y2": 1611 + }, + "value": "10%", + "label": "item_vat" + }, + { + "rect": { + "x1": 2080, + "y1": 1566, + "x2": 2257, + "y2": 1614 + }, + "value": "19 800,00", + "label": "item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1739, + "x2": 842, + "y2": 1879 + }, + "value": "YILONG 5'x7.5' Handknotted Silk Carpet Whirlwind Home Decor Classic Rug 0807", + "label": "item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1739, + "x2": 1092, + "y2": 1791 + }, + "value": "2,00", + "label": "item_qty" + }, + { + "rect": { + "x1": 1367, + "y1": 1739, + "x2": 1529, + "y2": 1791 + }, + "value": "2800,00", + "label": "item_net_price" + }, + { + "rect": { + "x1": 1154, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1621, + "y1": 1739, + "x2": 1779, + "y2": 1791 + }, + "value": "5 600,00", + "label": "item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1743, + "x2": 2000, + "y2": 1783 + }, + "value": "10%", + "label": "item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 1739, + "x2": 2257, + "y2": 1791 + }, + "value": "6 160,00", + "label": "item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1912, + "x2": 871, + "y2": 2044 + }, + "value": "Bohemian Rag Rug- Woven Chindi Dari Living Room Rug I Hand-Woven Carpet Rug-Mats", + "label": "item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1908, + "x2": 1095, + "y2": 1960 + }, + "value": "1,00", + "label": "item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1912, + "x2": 1239, + "y2": 1956 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1912, + "x2": 1529, + "y2": 1956 + }, + "value": "23,39", + "label": "item_net_price" + }, + { + "rect": { + "x1": 1683, + "y1": 1912, + "x2": 1779, + "y2": 1956 + }, + "value": "23,39", + "label": "total_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1912, + "x2": 2000, + "y2": 1956 + }, + "value": "10%", + "label": "item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1912, + "x2": 2257, + "y2": 1956 + }, + "value": "25,73", + "label": "item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 2089, + "x2": 904, + "y2": 2221 + }, + "value": "Checkered Modern Kashkoli Oriental Area Rug Foyer Hand-knotted Wool Carpet 4'x6'", + "label": "item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 2081, + "x2": 1095, + "y2": 2133 + }, + "value": "5,00", + "label": "item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2089, + "x2": 1239, + "y2": 2125 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1400, + "y1": 2089, + "x2": 1529, + "y2": 2129 + }, + "value": "806,00", + "label": "item_net_price" + }, + { + "rect": { + "x1": 1617, + "y1": 2081, + "x2": 1783, + "y2": 2133 + }, + "value": "4030,00", + "label": "item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2089, + "x2": 2000, + "y2": 2125 + }, + "value": "10%", + "label": "item_vat" + }, + { + "rect": { + "x1": 2099, + "y1": 2089, + "x2": 2257, + "y2": 2125 + }, + "value": "4 433,00", + "label": "item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2258, + "x2": 904, + "y2": 2390 + }, + "value": "Yilong 2.5'x4' Hand Knotted Silk Garden Scene Rug Indoor Oriental Carpet 352B", + "label": "item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 2261, + "x2": 1092, + "y2": 2302 + }, + "value": "2,00", + "label": "item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2261, + "x2": 1239, + "y2": 2302 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1342, + "y1": 1265, + "x2": 1430, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1845, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2000, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1367, + "y1": 2258, + "x2": 1529, + "y2": 2306 + }, + "value": "2 000,00", + "label": "item_net_price" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2257, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1305, + "x2": 2257, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 290, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1566, + "x2": 294, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1739, + "x2": 290, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1908, + "x2": 290, + "y2": 1956 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 2081, + "x2": 290, + "y2": 2129 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 2258, + "x2": 290, + "y2": 2306 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 1621, + "y1": 2261, + "x2": 1779, + "y2": 2302 + }, + "value": "4000,00", + "label": "item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 2258, + "x2": 2000, + "y2": 2306 + }, + "value": "10%", + "label": "item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 2258, + "x2": 2257, + "y2": 2302 + }, + "value": "4 400,00", + "label": "item_gross_worth" + }, + { + "rect": { + "x1": 202, + "y1": 2482, + "x2": 493, + "y2": 2530 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 2611, + "x2": 1048, + "y2": 2655 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2607, + "x2": 1121, + "y2": 2662 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 2699, + "x2": 1084, + "y2": 2739 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2603, + "x2": 1474, + "y2": 2659 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2611, + "x2": 1588, + "y2": 2655 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 2699, + "x2": 1588, + "y2": 2739 + }, + "value": "62853,39", + "label": "" + }, + { + "rect": { + "x1": 1353, + "y1": 2776, + "x2": 1592, + "y2": 2839 + }, + "value": "$62853,39", + "label": "total_net_worth" + }, + { + "rect": { + "x1": 1654, + "y1": 2784, + "x2": 1867, + "y2": 2835 + }, + "value": "$6285,34", + "label": "total_vat" + }, + { + "rect": { + "x1": 1779, + "y1": 2611, + "x2": 1871, + "y2": 2655 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1705, + "y1": 2695, + "x2": 1742, + "y2": 2739 + }, + "value": "6", + "label": "" + }, + { + "rect": { + "x1": 1728, + "y1": 2699, + "x2": 1864, + "y2": 2739 + }, + "value": "285,34", + "label": "" + }, + { + "rect": { + "x1": 2025, + "y1": 2611, + "x2": 2143, + "y2": 2655 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 2611, + "x2": 2260, + "y2": 2655 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2084, + "y1": 2692, + "x2": 2260, + "y2": 2743 + }, + "value": "69138,73", + "label": "" + }, + { + "rect": { + "x1": 2033, + "y1": 2784, + "x2": 2260, + "y2": 2835 + }, + "value": "$ 69138,73", + "label": "total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2787, + "x2": 849, + "y2": 2828 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_111.json b/docs/json/invoice_111.json new file mode 100644 index 0000000000000000000000000000000000000000..31c3f20d11ad098c172b61977336bc1968785c85 --- /dev/null +++ b/docs/json/invoice_111.json @@ -0,0 +1,993 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 15, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 195, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "76999802", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 382, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 382, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 213, + "x2": 1474, + "y2": 265 + }, + "value": "07/14/2020", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 195, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 754, + "x2": 772, + "y2": 916 + }, + "value": "Nolan, Williams and Roach 6916 Terry Forest Kelseyland, WI 95749", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 754, + "x2": 1716, + "y2": 923 + }, + "value": "Dixon, Hall and Payne 104 Maxwell Coves Merrittport, MI 90167", + "label": "header:client" + }, + { + "rect": { + "x1": 371, + "y1": 978, + "x2": 640, + "y2": 1019 + }, + "value": "962-85-6776", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1683, + "y2": 1019 + }, + "value": "953-71-2727", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1026, + "x2": 941, + "y2": 1074 + }, + "value": "GB64FEHQ32175908346356", + "label": "header:iban" + }, + { + "rect": { + "x1": 195, + "y1": 1140, + "x2": 379, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1265, + "x2": 584, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1397, + "x2": 290, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1394, + "x2": 845, + "y2": 1522 + }, + "value": "26\"x26\" Marble Black Top Coffee Table Inlay Floral Pietradura Art Christmas Gift", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 250, + "y1": 1566, + "x2": 298, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 1394, + "x2": 1095, + "y2": 1449 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1367, + "y1": 1394, + "x2": 1529, + "y2": 1449 + }, + "value": "1489,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1625, + "y1": 1397, + "x2": 1779, + "y2": 1438 + }, + "value": "1489,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1438 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 1394, + "x2": 2257, + "y2": 1449 + }, + "value": "1637,90", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1563, + "x2": 878, + "y2": 1666 + }, + "value": "October Mist Deer Metal Side Table by Rosemary Millette", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 250, + "y1": 1703, + "x2": 290, + "y2": 1747 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 1570, + "x2": 1095, + "y2": 1614 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1430, + "y1": 1570, + "x2": 1529, + "y2": 1614 + }, + "value": "89,95", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1661, + "y1": 1570, + "x2": 1779, + "y2": 1614 + }, + "value": "359,80", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2003, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1570, + "x2": 2257, + "y2": 1614 + }, + "value": "395,78", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1703, + "x2": 875, + "y2": 1828 + }, + "value": "36\" Agate Center Dining Table Top Precious Stone Hallway Furniture Decors A026", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 250, + "y1": 1872, + "x2": 290, + "y2": 1916 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 1706, + "x2": 1095, + "y2": 1739 + }, + "value": "4,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1367, + "y1": 1691, + "x2": 1533, + "y2": 1750 + }, + "value": "1490,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1625, + "y1": 1706, + "x2": 1779, + "y2": 1739 + }, + "value": "5960,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1706, + "x2": 2003, + "y2": 1739 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 1695, + "x2": 2257, + "y2": 1747 + }, + "value": "6556,00", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1875, + "x2": 904, + "y2": 2000 + }, + "value": "7'x4' Black Marble Pietra dura Dining Table Top Furniture Inlay Patio Decor", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 250, + "y1": 2044, + "x2": 290, + "y2": 2089 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 1872, + "x2": 1095, + "y2": 1919 + }, + "value": "5,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1360, + "y1": 1861, + "x2": 1533, + "y2": 1927 + }, + "value": "9649,72", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1603, + "y1": 1875, + "x2": 1779, + "y2": 1912 + }, + "value": "48 248,60", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1875, + "x2": 2003, + "y2": 1912 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2077, + "y1": 1872, + "x2": 2257, + "y2": 1912 + }, + "value": "53 073,46", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2044, + "x2": 834, + "y2": 2173 + }, + "value": "34\"x34\" Marble Round Top Coffee Table Elephant Floral Inlaid Art Christmas Gifts", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 250, + "y1": 2217, + "x2": 290, + "y2": 2261 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 2044, + "x2": 1095, + "y2": 2096 + }, + "value": "3,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1367, + "y1": 2033, + "x2": 1533, + "y2": 2100 + }, + "value": "1900,00", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1625, + "y1": 2044, + "x2": 1779, + "y2": 2089 + }, + "value": "5 700,00", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2044, + "x2": 2003, + "y2": 2089 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 2044, + "x2": 2257, + "y2": 2096 + }, + "value": "6270,00", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2217, + "x2": 908, + "y2": 2342 + }, + "value": "Semi precious Stone Work Inlaid Dinning Table Top Marble Kitchen Table 42 Inches", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1239, + "y1": 967, + "x2": 1331, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1331, + "y1": 967, + "x2": 1397, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1018, + "y1": 1265, + "x2": 1095, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1265, + "x2": 1235, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1239, + "y2": 1438 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1566, + "x2": 1239, + "y2": 1611 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1706, + "x2": 1239, + "y2": 1739 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1875, + "x2": 1239, + "y2": 1912 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 2044, + "x2": 1246, + "y2": 2089 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 2217, + "x2": 1095, + "y2": 2261 + }, + "value": "5,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2217, + "x2": 1239, + "y2": 2261 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1430, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1265, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1265, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1265, + "x2": 2257, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1305, + "x2": 2257, + "y2": 1346 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1360, + "y1": 2214, + "x2": 1533, + "y2": 2272 + }, + "value": "2496,00", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1606, + "y1": 2217, + "x2": 1779, + "y2": 2261 + }, + "value": "12480,00", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2217, + "x2": 2003, + "y2": 2261 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2077, + "y1": 2217, + "x2": 2257, + "y2": 2261 + }, + "value": "13 728,00", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 195, + "y1": 2442, + "x2": 493, + "y2": 2493 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 2567, + "x2": 1048, + "y2": 2611 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2559, + "x2": 1121, + "y2": 2614 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 996, + "y1": 2651, + "x2": 1084, + "y2": 2703 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1386, + "y1": 2567, + "x2": 1474, + "y2": 2611 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2567, + "x2": 1588, + "y2": 2611 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 2655, + "x2": 1463, + "y2": 2695 + }, + "value": "74", + "label": "" + }, + { + "rect": { + "x1": 1456, + "y1": 2659, + "x2": 1588, + "y2": 2699 + }, + "value": "237,40", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 2736, + "x2": 1592, + "y2": 2798 + }, + "value": "$74237,40", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1654, + "y1": 2743, + "x2": 1867, + "y2": 2791 + }, + "value": "$7423,74", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 1779, + "y1": 2567, + "x2": 1871, + "y2": 2611 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1702, + "y1": 2651, + "x2": 1867, + "y2": 2703 + }, + "value": "7423,74", + "label": "" + }, + { + "rect": { + "x1": 2025, + "y1": 2567, + "x2": 2139, + "y2": 2611 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2567, + "x2": 2260, + "y2": 2611 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2084, + "y1": 2655, + "x2": 2135, + "y2": 2699 + }, + "value": "81", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 2659, + "x2": 2257, + "y2": 2699 + }, + "value": "661,14", + "label": "" + }, + { + "rect": { + "x1": 2025, + "y1": 2736, + "x2": 2268, + "y2": 2798 + }, + "value": "$81661,14", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2743, + "x2": 856, + "y2": 2784 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_112.json b/docs/json/invoice_112.json new file mode 100644 index 0000000000000000000000000000000000000000..ab82c94b56f6617fffbda10e9c7c3f605bc9acc2 --- /dev/null +++ b/docs/json/invoice_112.json @@ -0,0 +1,653 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 16, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 195, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 419, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "61619303", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1474, + "y2": 265 + }, + "value": "09/20/2013", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 195, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 754, + "x2": 798, + "y2": 916 + }, + "value": "Glenn, Roberts and Cochran 673 Ryan Loop Rodriguezhaven, NE 81351", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 294, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 294, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 754, + "x2": 1834, + "y2": 916 + }, + "value": "Burgess, Evans and Moreno 0243 Adkins Shoals Westchester, AK 72317", + "label": "header:client" + }, + { + "rect": { + "x1": 368, + "y1": 971, + "x2": 636, + "y2": 1019 + }, + "value": "930-98-2356", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1683, + "y2": 1019 + }, + "value": "971-86-1778", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 338, + "y1": 1030, + "x2": 937, + "y2": 1070 + }, + "value": "GB89PBXV06755096377275", + "label": "header:iban" + }, + { + "rect": { + "x1": 195, + "y1": 1136, + "x2": 379, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 584, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1397, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1394, + "x2": 893, + "y2": 1522 + }, + "value": "Silky Fake Fur Fluffy Carpets Non-slip Shaggy Area Rug Floor Mat Light Pink", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1394, + "x2": 1092, + "y2": 1449 + }, + "value": "3,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1239, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1397, + "x2": 1529, + "y2": 1441 + }, + "value": "14,12", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1683, + "y1": 1397, + "x2": 1783, + "y2": 1441 + }, + "value": "42,36", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2000, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1397, + "x2": 2257, + "y2": 1441 + }, + "value": "46,60", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1563, + "x2": 860, + "y2": 1706 + }, + "value": "Modern Tribal Geometric 4X6 Indo Gabbeh Wool & Bamboo Silk Oriental Rug Carpet", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1563, + "x2": 1092, + "y2": 1618 + }, + "value": "5,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1563, + "x2": 1246, + "y2": 1618 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1269, + "x2": 1426, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1845, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2000, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2257, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1305, + "x2": 2257, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 1570, + "x2": 1529, + "y2": 1614 + }, + "value": "183,77", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1654, + "y1": 1570, + "x2": 1779, + "y2": 1614 + }, + "value": "918,85", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2000, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 1563, + "x2": 2257, + "y2": 1618 + }, + "value": "1010,74", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 290, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1566, + "x2": 290, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 195, + "y1": 1794, + "x2": 493, + "y2": 1846 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 1912, + "x2": 1048, + "y2": 1964 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 1912, + "x2": 1121, + "y2": 1967 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 996, + "y1": 2004, + "x2": 1084, + "y2": 2056 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 1912, + "x2": 1474, + "y2": 1964 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 1919, + "x2": 1588, + "y2": 1956 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1463, + "y1": 2008, + "x2": 1588, + "y2": 2056 + }, + "value": "961,21", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 2089, + "x2": 1592, + "y2": 2155 + }, + "value": "$961,21", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1912, + "x2": 1871, + "y2": 1964 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2008, + "x2": 1864, + "y2": 2056 + }, + "value": "96,12", + "label": "" + }, + { + "rect": { + "x1": 1709, + "y1": 2089, + "x2": 1871, + "y2": 2155 + }, + "value": "$96,12", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 1919, + "x2": 2143, + "y2": 1956 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 1919, + "x2": 2260, + "y2": 1960 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2102, + "y1": 2008, + "x2": 2257, + "y2": 2056 + }, + "value": "1057,33", + "label": "" + }, + { + "rect": { + "x1": 2047, + "y1": 2096, + "x2": 2260, + "y2": 2147 + }, + "value": "$1057,33", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2103, + "x2": 856, + "y2": 2136 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_113.json b/docs/json/invoice_113.json new file mode 100644 index 0000000000000000000000000000000000000000..0f9cf6bf84e26f27b8644e2879fa1ea4ee8d4153 --- /dev/null +++ b/docs/json/invoice_113.json @@ -0,0 +1,573 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 17, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 195, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 419, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "56514066", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1474, + "y2": 265 + }, + "value": "05/14/2014", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 195, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 754, + "x2": 812, + "y2": 916 + }, + "value": "Snyder, Williams and Walter 77701 Francisco Shoals Scottmouth, DC 45561", + "label": "header:seller" + }, + { + "rect": { + "x1": 1246, + "y1": 754, + "x2": 1790, + "y2": 916 + }, + "value": "Keller Inc 562 Rebecca Stravenue Morganchester, MI 55326", + "label": "header:client" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1397, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 368, + "y1": 971, + "x2": 636, + "y2": 1019 + }, + "value": "905-75-8307", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1683, + "y2": 1019 + }, + "value": "955-86-3035", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 294, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 294, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 338, + "y1": 1030, + "x2": 948, + "y2": 1070 + }, + "value": "GB76WTTH68902414885248", + "label": "header:iban" + }, + { + "rect": { + "x1": 195, + "y1": 1136, + "x2": 379, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 584, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1095, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1397, + "x2": 904, + "y2": 1522 + }, + "value": "Lilly Pulitzer XS Spike the Punch Cassie Cotton Dress with Quarter Sleeves", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1394, + "x2": 1092, + "y2": 1449 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1239, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1269, + "x2": 1426, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1845, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2000, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2257, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1305, + "x2": 2257, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1397, + "x2": 1529, + "y2": 1441 + }, + "value": "44,89", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1683, + "y1": 1397, + "x2": 1779, + "y2": 1441 + }, + "value": "44,89", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2000, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1397, + "x2": 2257, + "y2": 1441 + }, + "value": "49,38", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 290, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 195, + "y1": 1622, + "x2": 493, + "y2": 1673 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 1747, + "x2": 1048, + "y2": 1791 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 1743, + "x2": 1121, + "y2": 1798 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 1835, + "x2": 1084, + "y2": 1879 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 1747, + "x2": 1470, + "y2": 1791 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 1747, + "x2": 1588, + "y2": 1791 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1485, + "y1": 1835, + "x2": 1588, + "y2": 1879 + }, + "value": "44,89", + "label": "" + }, + { + "rect": { + "x1": 1437, + "y1": 1927, + "x2": 1588, + "y2": 1967 + }, + "value": "$ 44,89", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1747, + "x2": 1871, + "y2": 1791 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1779, + "y1": 1831, + "x2": 1871, + "y2": 1886 + }, + "value": "4,49", + "label": "" + }, + { + "rect": { + "x1": 1739, + "y1": 1919, + "x2": 1867, + "y2": 1971 + }, + "value": "$4,49", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 1747, + "x2": 2143, + "y2": 1791 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 1747, + "x2": 2260, + "y2": 1791 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2154, + "y1": 1839, + "x2": 2260, + "y2": 1879 + }, + "value": "49,38", + "label": "" + }, + { + "rect": { + "x1": 2106, + "y1": 1927, + "x2": 2260, + "y2": 1967 + }, + "value": "$ 49,38", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 1927, + "x2": 856, + "y2": 1964 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_114.json b/docs/json/invoice_114.json new file mode 100644 index 0000000000000000000000000000000000000000..df47283107f4915d7e22fd086f57236f1cbbbcde --- /dev/null +++ b/docs/json/invoice_114.json @@ -0,0 +1,573 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 18, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 195, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 419, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "74322107", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1474, + "y2": 265 + }, + "value": "02/02/2016", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 195, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 761, + "x2": 812, + "y2": 916 + }, + "value": "Davis-Obrien 736 Derek Station Suite 883 New Laura, WA 77568", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 294, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 294, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 754, + "x2": 1856, + "y2": 916 + }, + "value": "Taylor Ltd 213 Thomas Vista East Zacharyshire, WI 95033", + "label": "header:client" + }, + { + "rect": { + "x1": 368, + "y1": 971, + "x2": 636, + "y2": 1019 + }, + "value": "930-75-0933", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1683, + "y2": 1019 + }, + "value": "915-98-4870", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 338, + "y1": 1030, + "x2": 945, + "y2": 1070 + }, + "value": "GB31YDUN56799610017131", + "label": "header:iban" + }, + { + "rect": { + "x1": 195, + "y1": 1136, + "x2": 379, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 584, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1397, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1095, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1394, + "x2": 882, + "y2": 1522 + }, + "value": "100cm Nordic Round Area Rug Abstract Geometric Patterns Non-Slip Floor Carpet", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1092, + "y2": 1449 + }, + "value": "2,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1239, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1269, + "x2": 1426, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1845, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2000, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2257, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1305, + "x2": 2257, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1397, + "x2": 1529, + "y2": 1441 + }, + "value": "30,98", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1683, + "y1": 1397, + "x2": 1783, + "y2": 1441 + }, + "value": "61,96", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2000, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1397, + "x2": 2257, + "y2": 1441 + }, + "value": "68,16", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 290, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 195, + "y1": 1622, + "x2": 493, + "y2": 1673 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 1747, + "x2": 1048, + "y2": 1791 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 1743, + "x2": 1121, + "y2": 1798 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 1835, + "x2": 1084, + "y2": 1879 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 1747, + "x2": 1470, + "y2": 1791 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 1747, + "x2": 1588, + "y2": 1791 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1485, + "y1": 1835, + "x2": 1588, + "y2": 1879 + }, + "value": "61,96", + "label": "" + }, + { + "rect": { + "x1": 1437, + "y1": 1919, + "x2": 1592, + "y2": 1971 + }, + "value": "$61,96", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1747, + "x2": 1871, + "y2": 1791 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1783, + "y1": 1835, + "x2": 1867, + "y2": 1879 + }, + "value": "6,20", + "label": "" + }, + { + "rect": { + "x1": 1739, + "y1": 1919, + "x2": 1871, + "y2": 1971 + }, + "value": "$6,20", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 1747, + "x2": 2143, + "y2": 1791 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 1747, + "x2": 2260, + "y2": 1791 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2154, + "y1": 1835, + "x2": 2260, + "y2": 1879 + }, + "value": "68,16", + "label": "" + }, + { + "rect": { + "x1": 2106, + "y1": 1919, + "x2": 2260, + "y2": 1967 + }, + "value": "$ 68,16", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 1927, + "x2": 856, + "y2": 1964 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_115.json b/docs/json/invoice_115.json new file mode 100644 index 0000000000000000000000000000000000000000..916f1bba888c35e477df0c25c6709f681be6cfa2 --- /dev/null +++ b/docs/json/invoice_115.json @@ -0,0 +1,573 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 19, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 194, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "33931957", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 212, + "x2": 515, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1469, + "y2": 263 + }, + "value": "12/17/2015", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 194, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 764, + "x2": 727, + "y2": 917 + }, + "value": "Rojas-Cook 0132. Joy Views Apt. 106 Burnstown, LA 74485", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 968, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 354, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 753, + "x2": 1860, + "y2": 921 + }, + "value": "Cohen LLC 637 Blake Keys New Ryanchester, NM 64213", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 968, + "x2": 636, + "y2": 1020 + }, + "value": "957-97-8143", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 329, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 968, + "x2": 1684, + "y2": 1020 + }, + "value": "903-94-1332", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1030, + "x2": 943, + "y2": 1071 + }, + "value": "GB17YMKF08477262646620", + "label": "header:iban" + }, + { + "rect": { + "x1": 194, + "y1": 1136, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1396, + "x2": 877, + "y2": 1527 + }, + "value": "NWT Women's MAX EDITION Classy Gray Knit Stretch Dress side bow tie 3/4 sleeve XL", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1093, + "y2": 1447 + }, + "value": "2,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1348, + "y1": 1268, + "x2": 1425, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1666, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1845, + "y1": 1268, + "x2": 1929, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2254, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1305, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1400, + "x2": 1527, + "y2": 1440 + }, + "value": "12,50", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1684, + "y1": 1396, + "x2": 1779, + "y2": 1440 + }, + "value": "25,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1396, + "x2": 2254, + "y2": 1440 + }, + "value": "27,50", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 194, + "y1": 1622, + "x2": 493, + "y2": 1674 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 1747, + "x2": 1049, + "y2": 1791 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 1743, + "x2": 1122, + "y2": 1798 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 1834, + "x2": 1082, + "y2": 1878 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 1747, + "x2": 1469, + "y2": 1791 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 1747, + "x2": 1586, + "y2": 1791 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1483, + "y1": 1834, + "x2": 1586, + "y2": 1878 + }, + "value": "25,00", + "label": "" + }, + { + "rect": { + "x1": 1436, + "y1": 1926, + "x2": 1586, + "y2": 1973 + }, + "value": "$ 25,00", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1747, + "x2": 1871, + "y2": 1791 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1783, + "y1": 1834, + "x2": 1867, + "y2": 1878 + }, + "value": "2,50", + "label": "" + }, + { + "rect": { + "x1": 1736, + "y1": 1918, + "x2": 1871, + "y2": 1973 + }, + "value": "$ 2,50", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 1747, + "x2": 2141, + "y2": 1791 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1747, + "x2": 2262, + "y2": 1791 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2156, + "y1": 1834, + "x2": 2262, + "y2": 1878 + }, + "value": "27,50", + "label": "" + }, + { + "rect": { + "x1": 2108, + "y1": 1918, + "x2": 2262, + "y2": 1973 + }, + "value": "$27,50", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 1926, + "x2": 859, + "y2": 1966 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_116.json b/docs/json/invoice_116.json new file mode 100644 index 0000000000000000000000000000000000000000..fac2eeac77984b4cdfa8b7e58641395c9d615d05 --- /dev/null +++ b/docs/json/invoice_116.json @@ -0,0 +1,1103 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 20, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 194, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "70372519", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 212, + "x2": 515, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1473, + "y2": 263 + }, + "value": "05/01/2013", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 194, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 753, + "x2": 892, + "y2": 917 + }, + "value": "Williamson, Murphy and Winters 6341 Pamela Views Smithtown, DC 63428", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 968, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 354, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 753, + "x2": 1856, + "y2": 921 + }, + "value": "Brown, Rodriguez and Lopez 8747 Charles Alley Sherrybury, CT 27957", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 968, + "x2": 636, + "y2": 1020 + }, + "value": "970-75-4240", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 329, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 968, + "x2": 1684, + "y2": 1020 + }, + "value": "933-82-8453", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1030, + "x2": 935, + "y2": 1071 + }, + "value": "GB19KZPB65453134501012", + "label": "header:iban" + }, + { + "rect": { + "x1": 194, + "y1": 1136, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1396, + "x2": 822, + "y2": 1524 + }, + "value": "Black Nintendo Wii Console Bundle RVL-101 with 2 Controllers & Cords", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1093, + "y2": 1447 + }, + "value": "3,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1400, + "x2": 1527, + "y2": 1440 + }, + "value": "89,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "269,97", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1400, + "x2": 2254, + "y2": 1440 + }, + "value": "296,97", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1568, + "x2": 848, + "y2": 1696 + }, + "value": "SONY Playstation2 Console SCPH-39000 \" Aqua Color \" / TESTED 11180", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1571, + "x2": 1093, + "y2": 1615 + }, + "value": "3,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1564, + "x2": 1246, + "y2": 1619 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1571, + "x2": 1527, + "y2": 1615 + }, + "value": "60,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1571, + "x2": 1779, + "y2": 1615 + }, + "value": "180,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 2002, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1571, + "x2": 2254, + "y2": 1615 + }, + "value": "198,00", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1739, + "x2": 848, + "y2": 1834 + }, + "value": "Sony PlayStation 5 Console - White Digital Version", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1739, + "x2": 1096, + "y2": 1791 + }, + "value": "5,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 1743, + "x2": 1527, + "y2": 1783 + }, + "value": "630,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1619, + "y1": 1732, + "x2": 1787, + "y2": 1794 + }, + "value": "3150,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1743, + "x2": 2002, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2094, + "y1": 1739, + "x2": 2254, + "y2": 1791 + }, + "value": "3 465,00", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1915, + "x2": 906, + "y2": 2039 + }, + "value": "Nintendo Wii Console Mario Kart Controller Wii Fit 2 Board Remotes Game BUNDLE", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1911, + "x2": 1096, + "y2": 1962 + }, + "value": "1,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1915, + "x2": 1239, + "y2": 1959 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 1918, + "x2": 1527, + "y2": 1959 + }, + "value": "199,97", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1918, + "x2": 1779, + "y2": 1959 + }, + "value": "199,97", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1915, + "x2": 2002, + "y2": 1959 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1918, + "x2": 2254, + "y2": 1959 + }, + "value": "219,97", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 2087, + "x2": 851, + "y2": 2178 + }, + "value": "Sega V Saturn Victor Console RG-JX1 Gray Tested Working", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 2079, + "x2": 1096, + "y2": 2134 + }, + "value": "2,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2087, + "x2": 1239, + "y2": 2127 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 2087, + "x2": 1527, + "y2": 2130 + }, + "value": "109,99", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 2087, + "x2": 1779, + "y2": 2127 + }, + "value": "219,98", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2087, + "x2": 2002, + "y2": 2127 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 2087, + "x2": 2254, + "y2": 2130 + }, + "value": "241,98", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 2255, + "x2": 892, + "y2": 2386 + }, + "value": "Super Nintendo SNES System Console SNS 001 with 2 Controllers Cleaned And Tested", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 2262, + "x2": 1093, + "y2": 2302 + }, + "value": "1,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2262, + "x2": 1239, + "y2": 2302 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 2262, + "x2": 1527, + "y2": 2302 + }, + "value": "149,99", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 2262, + "x2": 1779, + "y2": 2302 + }, + "value": "149,99", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 2255, + "x2": 2002, + "y2": 2306 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 2262, + "x2": 2254, + "y2": 2302 + }, + "value": "164,99", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 2434, + "x2": 892, + "y2": 2565 + }, + "value": "Retro Arcade Game Console All In One 128G Raspberry PI 4 Model B 4GB Plug Play", + "label": "items_row7:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 2423, + "x2": 1093, + "y2": 2481 + }, + "value": "2,00", + "label": "items_row7:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2434, + "x2": 1239, + "y2": 2470 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1348, + "y1": 1268, + "x2": 1425, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1666, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1845, + "y1": 1268, + "x2": 1929, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2254, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1305, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 2434, + "x2": 1527, + "y2": 2470 + }, + "value": "149,99", + "label": "items_row7:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 2434, + "x2": 1779, + "y2": 2470 + }, + "value": "299,98", + "label": "items_row7:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2434, + "x2": 2002, + "y2": 2470 + }, + "value": "10%", + "label": "items_row7:item_net_worth" + }, + { + "rect": { + "x1": 2130, + "y1": 2434, + "x2": 2254, + "y2": 2478 + }, + "value": "329,98", + "label": "items_row7:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 296, + "y2": 1615 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1739, + "x2": 292, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1911, + "x2": 292, + "y2": 1959 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2079, + "x2": 292, + "y2": 2130 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2255, + "x2": 292, + "y2": 2306 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2423, + "x2": 292, + "y2": 2478 + }, + "value": "7.", + "label": "" + }, + { + "rect": { + "x1": 570, + "y1": 1823, + "x2": 643, + "y2": 1864 + }, + "value": "PRE", + "label": "" + }, + { + "rect": { + "x1": 643, + "y1": 1831, + "x2": 771, + "y2": 1864 + }, + "value": "ORDER", + "label": "" + }, + { + "rect": { + "x1": 771, + "y1": 1823, + "x2": 848, + "y2": 1864 + }, + "value": "PS5", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 2167, + "x2": 457, + "y2": 2222 + }, + "value": "Japan", + "label": "" + }, + { + "rect": { + "x1": 194, + "y1": 2653, + "x2": 493, + "y2": 2708 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2781, + "x2": 1049, + "y2": 2825 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2777, + "x2": 1122, + "y2": 2828 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 2869, + "x2": 1082, + "y2": 2912 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2781, + "x2": 1473, + "y2": 2825 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2781, + "x2": 1586, + "y2": 2825 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 2869, + "x2": 1469, + "y2": 2916 + }, + "value": "4", + "label": "" + }, + { + "rect": { + "x1": 1454, + "y1": 2869, + "x2": 1586, + "y2": 2912 + }, + "value": "469,89", + "label": "" + }, + { + "rect": { + "x1": 1378, + "y1": 2956, + "x2": 1586, + "y2": 3004 + }, + "value": "$4469,89", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2781, + "x2": 1871, + "y2": 2825 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1736, + "y1": 2869, + "x2": 1863, + "y2": 2912 + }, + "value": "446,99", + "label": "" + }, + { + "rect": { + "x1": 1692, + "y1": 2956, + "x2": 1863, + "y2": 3004 + }, + "value": "$ 446,99", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2781, + "x2": 2141, + "y2": 2825 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2781, + "x2": 2262, + "y2": 2825 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2094, + "y1": 2861, + "x2": 2262, + "y2": 2923 + }, + "value": "4916,88", + "label": "" + }, + { + "rect": { + "x1": 2053, + "y1": 2956, + "x2": 2262, + "y2": 3004 + }, + "value": "$4916,88", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2960, + "x2": 859, + "y2": 3000 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_117.json b/docs/json/invoice_117.json new file mode 100644 index 0000000000000000000000000000000000000000..139b77f041797655d039ab8c67446dcabec1f19d --- /dev/null +++ b/docs/json/invoice_117.json @@ -0,0 +1,1003 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 21, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 195, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 419, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "94133236", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1474, + "y2": 265 + }, + "value": "12/12/2019", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 195, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 754, + "x2": 812, + "y2": 923 + }, + "value": "Parker Inc 6686 Duran Brooks Apt. 003 Lake Jane, MA 15473", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 294, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 294, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 754, + "x2": 1823, + "y2": 923 + }, + "value": "Jefferson Group 87490 Le Brooks South Hollyberg, NH 35858", + "label": "header:client" + }, + { + "rect": { + "x1": 368, + "y1": 971, + "x2": 636, + "y2": 1019 + }, + "value": "980-76-7923", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 195, + "y1": 1136, + "x2": 379, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 584, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1397, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1683, + "y2": 1019 + }, + "value": "937-75-3172", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 338, + "y1": 1026, + "x2": 959, + "y2": 1074 + }, + "value": "GB726HYW09265342345456", + "label": "header:iban" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1095, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1394, + "x2": 864, + "y2": 1522 + }, + "value": "6'x3' Black Marble Top Dining Room Table Sets Scagaliola Very Pietradure Decor", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1092, + "y2": 1449 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1239, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1367, + "y1": 1394, + "x2": 1529, + "y2": 1445 + }, + "value": "5 710,22", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1603, + "y1": 1397, + "x2": 1779, + "y2": 1441 + }, + "value": "28551,10", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2000, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2077, + "y1": 1397, + "x2": 2249, + "y2": 1441 + }, + "value": "31 406,21", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1563, + "x2": 882, + "y2": 1695 + }, + "value": "16\"x16\" Marble Top Customize Table Lapis Lazuli Marquetry Inlaid Halloween Gift", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1570, + "x2": 1092, + "y2": 1614 + }, + "value": "3,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1563, + "x2": 1246, + "y2": 1618 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 1570, + "x2": 1529, + "y2": 1614 + }, + "value": "800,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1617, + "y1": 1555, + "x2": 1786, + "y2": 1622 + }, + "value": "2400,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2000, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 1563, + "x2": 2257, + "y2": 1614 + }, + "value": "2 640,00", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1739, + "x2": 871, + "y2": 1864 + }, + "value": "12\" Marble Coffee Side Table Top Lapis Peacock Floral Inlay Bedroom Decors W019", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1739, + "x2": 1095, + "y2": 1791 + }, + "value": "5,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1400, + "y1": 1743, + "x2": 1529, + "y2": 1783 + }, + "value": "248,78", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1617, + "y1": 1732, + "x2": 1786, + "y2": 1794 + }, + "value": "1243,90", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1743, + "x2": 2000, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 1739, + "x2": 2257, + "y2": 1791 + }, + "value": "1 368,29", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1912, + "x2": 875, + "y2": 2041 + }, + "value": "12\" White Marble Coffee Table Top Marquetry Multi Inlay Beautiful Room Home Arts", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1908, + "x2": 1095, + "y2": 1960 + }, + "value": "5,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1912, + "x2": 1239, + "y2": 1956 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 1916, + "x2": 1529, + "y2": 1956 + }, + "value": "398,76", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1621, + "y1": 1908, + "x2": 1783, + "y2": 1960 + }, + "value": "1993,80", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1912, + "x2": 2000, + "y2": 1956 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 1908, + "x2": 2257, + "y2": 1956 + }, + "value": "2 193,18", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2081, + "x2": 897, + "y2": 2221 + }, + "value": "30\"x30\" Marble Black Top Table Semi Precious Bird Art Black Friday Gift D\u00e9cor", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 2081, + "x2": 1095, + "y2": 2133 + }, + "value": "2,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2089, + "x2": 1239, + "y2": 2125 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1367, + "y1": 2081, + "x2": 1533, + "y2": 2133 + }, + "value": "2399,00", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1617, + "y1": 2074, + "x2": 1786, + "y2": 2136 + }, + "value": "4798,00", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2089, + "x2": 2000, + "y2": 2125 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 2081, + "x2": 2257, + "y2": 2133 + }, + "value": "5 277,80", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2258, + "x2": 820, + "y2": 2350 + }, + "value": "Antique Vintage style hand carved table *Unique*", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 2261, + "x2": 1092, + "y2": 2302 + }, + "value": "5,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2261, + "x2": 1239, + "y2": 2302 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1342, + "y1": 1265, + "x2": 1430, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1845, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2000, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2257, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1305, + "x2": 2257, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 290, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1566, + "x2": 294, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1739, + "x2": 290, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1908, + "x2": 290, + "y2": 1956 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 2081, + "x2": 290, + "y2": 2129 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 2258, + "x2": 290, + "y2": 2306 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 2258, + "x2": 1529, + "y2": 2302 + }, + "value": "13 000,00", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1599, + "y1": 2258, + "x2": 1783, + "y2": 2306 + }, + "value": "65000,00", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 2258, + "x2": 2000, + "y2": 2306 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2077, + "y1": 2258, + "x2": 2257, + "y2": 2302 + }, + "value": "71 500,00", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 195, + "y1": 2442, + "x2": 493, + "y2": 2493 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 2567, + "x2": 1048, + "y2": 2611 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2563, + "x2": 1121, + "y2": 2614 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 996, + "y1": 2648, + "x2": 1084, + "y2": 2706 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2567, + "x2": 1474, + "y2": 2611 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2567, + "x2": 1588, + "y2": 2611 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1386, + "y1": 2648, + "x2": 1470, + "y2": 2706 + }, + "value": "103", + "label": "" + }, + { + "rect": { + "x1": 1452, + "y1": 2659, + "x2": 1588, + "y2": 2699 + }, + "value": "986,80", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 2739, + "x2": 1588, + "y2": 2791 + }, + "value": "$ 103 986,80", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1636, + "y1": 2739, + "x2": 1867, + "y2": 2791 + }, + "value": "$ 10398,68", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 1779, + "y1": 2567, + "x2": 1871, + "y2": 2611 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1691, + "y1": 2655, + "x2": 1739, + "y2": 2699 + }, + "value": "10", + "label": "" + }, + { + "rect": { + "x1": 1728, + "y1": 2659, + "x2": 1864, + "y2": 2699 + }, + "value": "398,68", + "label": "" + }, + { + "rect": { + "x1": 2025, + "y1": 2567, + "x2": 2143, + "y2": 2611 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 2567, + "x2": 2260, + "y2": 2611 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2058, + "y1": 2648, + "x2": 2139, + "y2": 2706 + }, + "value": "114", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2659, + "x2": 2260, + "y2": 2699 + }, + "value": "385,48", + "label": "" + }, + { + "rect": { + "x1": 2003, + "y1": 2743, + "x2": 2257, + "y2": 2791 + }, + "value": "$ 114 385,48", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2743, + "x2": 856, + "y2": 2784 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_118.json b/docs/json/invoice_118.json new file mode 100644 index 0000000000000000000000000000000000000000..c3acf5fc72a3692cbbfca9560cad1b21d9f4122f --- /dev/null +++ b/docs/json/invoice_118.json @@ -0,0 +1,893 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 22, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 194, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "51686132", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 212, + "x2": 515, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1469, + "y2": 263 + }, + "value": "06/27/2015", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 194, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 205, + "y1": 753, + "x2": 643, + "y2": 917 + }, + "value": "Stephens PLC PSC 4501, Box 4964 APO AA 03160", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 968, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 354, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 753, + "x2": 1747, + "y2": 917 + }, + "value": "White, Blevins and Ellis Unit 7297 Box 4160 DPO AP 42542", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 968, + "x2": 636, + "y2": 1020 + }, + "value": "953-96-5860", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 329, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 968, + "x2": 1684, + "y2": 1020 + }, + "value": "990-87-4012", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1027, + "x2": 954, + "y2": 1074 + }, + "value": "GB67D5XM44548665165041", + "label": "header:iban" + }, + { + "rect": { + "x1": 194, + "y1": 1136, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1396, + "x2": 859, + "y2": 1524 + }, + "value": "Nintendo Switch Lite Console Gray with Animal Crossing New Horizons Game", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1093, + "y2": 1447 + }, + "value": "3,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 1400, + "x2": 1527, + "y2": 1440 + }, + "value": "310,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "930,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2094, + "y1": 1392, + "x2": 2254, + "y2": 1447 + }, + "value": "1023,00", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1564, + "x2": 778, + "y2": 1652 + }, + "value": "Nintendo Wii U Console Deluxe/Handheld Bundle", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1564, + "x2": 1093, + "y2": 1619 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1568, + "x2": 1239, + "y2": 1611 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1571, + "x2": 1527, + "y2": 1615 + }, + "value": "79,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1684, + "y1": 1571, + "x2": 1779, + "y2": 1615 + }, + "value": "79,99", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 2002, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1571, + "x2": 2254, + "y2": 1615 + }, + "value": "87,99", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1696, + "x2": 848, + "y2": 1827 + }, + "value": "Nintendo Wii U WUP-101(02) 32GB Console Black US Model", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1703, + "x2": 1093, + "y2": 1743 + }, + "value": "3,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1703, + "x2": 1239, + "y2": 1743 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1703, + "x2": 1527, + "y2": 1743 + }, + "value": "40,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1703, + "x2": 1779, + "y2": 1743 + }, + "value": "120,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1696, + "x2": 2002, + "y2": 1747 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1703, + "x2": 2254, + "y2": 1743 + }, + "value": "132,00", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1871, + "x2": 837, + "y2": 2010 + }, + "value": "Nintendo Wii Console With Cables And Accessories And New Super Mario Bros Disc!", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1875, + "x2": 1093, + "y2": 1915 + }, + "value": "4,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1875, + "x2": 1239, + "y2": 1915 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1875, + "x2": 1527, + "y2": 1915 + }, + "value": "29,99", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1875, + "x2": 1779, + "y2": 1915 + }, + "value": "119,96", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1875, + "x2": 2002, + "y2": 1915 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1875, + "x2": 2254, + "y2": 1915 + }, + "value": "131,96", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 2046, + "x2": 866, + "y2": 2178 + }, + "value": "Nintendo Switch Lite Yellow CONSOLE ONLY No Accessories or Charger [B1-2]", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 2043, + "x2": 1093, + "y2": 2094 + }, + "value": "1,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2046, + "x2": 1246, + "y2": 2087 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1666, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1845, + "y1": 1268, + "x2": 1929, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2254, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1305, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 2046, + "x2": 1527, + "y2": 2087 + }, + "value": "135,00", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 2046, + "x2": 1779, + "y2": 2087 + }, + "value": "135,00", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2046, + "x2": 2002, + "y2": 2087 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 2046, + "x2": 2254, + "y2": 2087 + }, + "value": "148,50", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 296, + "y2": 1615 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1696, + "x2": 292, + "y2": 1747 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1871, + "x2": 292, + "y2": 1918 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2043, + "x2": 292, + "y2": 2087 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 194, + "y1": 2266, + "x2": 493, + "y2": 2317 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2393, + "x2": 1049, + "y2": 2437 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2390, + "x2": 1122, + "y2": 2448 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 2481, + "x2": 1082, + "y2": 2525 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2393, + "x2": 1473, + "y2": 2437 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2397, + "x2": 1586, + "y2": 2437 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 2470, + "x2": 1593, + "y2": 2540 + }, + "value": "1384,95", + "label": "" + }, + { + "rect": { + "x1": 1378, + "y1": 2569, + "x2": 1586, + "y2": 2620 + }, + "value": "$1384,95", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2393, + "x2": 1871, + "y2": 2437 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1743, + "y1": 2488, + "x2": 1867, + "y2": 2525 + }, + "value": "138,50", + "label": "" + }, + { + "rect": { + "x1": 1692, + "y1": 2573, + "x2": 1863, + "y2": 2620 + }, + "value": "$ 138,50", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2393, + "x2": 2141, + "y2": 2437 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2393, + "x2": 2262, + "y2": 2437 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2101, + "y1": 2481, + "x2": 2262, + "y2": 2532 + }, + "value": "1523,45", + "label": "" + }, + { + "rect": { + "x1": 2050, + "y1": 2569, + "x2": 2262, + "y2": 2620 + }, + "value": "$1523,45", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2573, + "x2": 859, + "y2": 2613 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_119.json b/docs/json/invoice_119.json new file mode 100644 index 0000000000000000000000000000000000000000..7524d3571d6fea68370fee05caf164d704e0d20d --- /dev/null +++ b/docs/json/invoice_119.json @@ -0,0 +1,1093 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 23, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 114, + "x2": 515, + "y2": 165 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 533, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "38829380", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 198, + "y1": 210, + "x2": 316, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 316, + "y1": 210, + "x2": 382, + "y2": 265 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 382, + "y1": 210, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 213, + "x2": 1470, + "y2": 265 + }, + "value": "12/25/2017", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 386, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 757, + "x2": 864, + "y2": 916 + }, + "value": "Cook LLC 05622 Williams Ridge Apt. 320 Smithside, NY 16757", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 757, + "x2": 1761, + "y2": 916 + }, + "value": "Meza, Griffin and Powell Unit 3668 Box 9888 DPO AA 15880", + "label": "header:client" + }, + { + "rect": { + "x1": 368, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "921-97-6915", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 228, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 971, + "x2": 1331, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1331, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "979-96-0266", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 342, + "y1": 1026, + "x2": 967, + "y2": 1074 + }, + "value": "GB77WZUW03936127773887", + "label": "header:iban" + }, + { + "rect": { + "x1": 1018, + "y1": 1265, + "x2": 1095, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1394, + "x2": 897, + "y2": 1522 + }, + "value": "48 Inches Marble Dinning Table Top Hand Crafted Conference Table with Royal Look", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1390, + "x2": 1095, + "y2": 1445 + }, + "value": "3,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1394, + "x2": 1239, + "y2": 1438 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1371, + "y1": 1394, + "x2": 1529, + "y2": 1438 + }, + "value": "2952,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1617, + "y1": 1386, + "x2": 1786, + "y2": 1452 + }, + "value": "8856,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1394, + "x2": 2000, + "y2": 1438 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2091, + "y1": 1390, + "x2": 2253, + "y2": 1441 + }, + "value": "9 741,60", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1566, + "x2": 867, + "y2": 1699 + }, + "value": "14 Inches Black Marble Coffee Cum Chess Board Table Top with Unique Design", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1570, + "x2": 1095, + "y2": 1614 + }, + "value": "3,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1563, + "x2": 1246, + "y2": 1622 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1404, + "y1": 1570, + "x2": 1529, + "y2": 1614 + }, + "value": "225,25", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1661, + "y1": 1570, + "x2": 1779, + "y2": 1614 + }, + "value": "675,75", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2000, + "y2": 1614 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1570, + "x2": 2253, + "y2": 1614 + }, + "value": "743,33", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1739, + "x2": 878, + "y2": 1868 + }, + "value": "12\" White Marble Coffee Table Top Malachite Precious Inlay Decor Furniture W534", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1739, + "x2": 1095, + "y2": 1791 + }, + "value": "2,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1739, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1404, + "y1": 1739, + "x2": 1529, + "y2": 1783 + }, + "value": "295,73", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1661, + "y1": 1739, + "x2": 1779, + "y2": 1783 + }, + "value": "591,46", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1739, + "x2": 2000, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1739, + "x2": 2253, + "y2": 1783 + }, + "value": "650,61", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 349, + "y1": 1916, + "x2": 867, + "y2": 2041 + }, + "value": "12\" Marble Coffee Side Table Top Lapis Peacock Floral Inlay Bedroom Decors W019", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1912, + "x2": 1095, + "y2": 1964 + }, + "value": "4,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1916, + "x2": 1239, + "y2": 1960 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1404, + "y1": 1919, + "x2": 1529, + "y2": 1960 + }, + "value": "248,78", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1919, + "x2": 1779, + "y2": 1960 + }, + "value": "995,12", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1916, + "x2": 2000, + "y2": 1960 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2091, + "y1": 1901, + "x2": 2260, + "y2": 1967 + }, + "value": "1094,63", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2085, + "x2": 882, + "y2": 2217 + }, + "value": "12\"x12\" Wild Agate Stone Side Coffee Table Top Handicrafted Kitchen Decors A042", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 2085, + "x2": 1095, + "y2": 2133 + }, + "value": "4,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2085, + "x2": 1239, + "y2": 2125 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1404, + "y1": 2085, + "x2": 1529, + "y2": 2125 + }, + "value": "259,77", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1628, + "y1": 2089, + "x2": 1779, + "y2": 2125 + }, + "value": "1039,08", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2085, + "x2": 2000, + "y2": 2125 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2091, + "y1": 2085, + "x2": 2253, + "y2": 2133 + }, + "value": "1142,99", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2258, + "x2": 897, + "y2": 2386 + }, + "value": "36 Inches Marble Dinning Table Top Inlay Meeting Table with Semi Precious Stone", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 2265, + "x2": 1095, + "y2": 2302 + }, + "value": "1,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2265, + "x2": 1239, + "y2": 2302 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1367, + "y1": 2250, + "x2": 1529, + "y2": 2306 + }, + "value": "1874,25", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1628, + "y1": 2265, + "x2": 1779, + "y2": 2302 + }, + "value": "1874,25", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 2250, + "x2": 2000, + "y2": 2306 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2091, + "y1": 2258, + "x2": 2253, + "y2": 2306 + }, + "value": "2 061,68", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2427, + "x2": 849, + "y2": 2552 + }, + "value": "26\"x26\" Marble Black Top Coffee Table Inlay Floral Pietradura Art Christmas Gift", + "label": "items_row7:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 2427, + "x2": 1095, + "y2": 2482 + }, + "value": "2,00", + "label": "items_row7:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2434, + "x2": 1239, + "y2": 2475 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1426, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1269, + "x2": 1665, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1272, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2000, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1269, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1346 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1367, + "y1": 2427, + "x2": 1529, + "y2": 2478 + }, + "value": "1 489,00", + "label": "items_row7:item_net_price" + }, + { + "rect": { + "x1": 1617, + "y1": 2423, + "x2": 1786, + "y2": 2486 + }, + "value": "2978,00", + "label": "items_row7:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2434, + "x2": 2000, + "y2": 2475 + }, + "value": "10%", + "label": "items_row7:item_vat" + }, + { + "rect": { + "x1": 2091, + "y1": 2427, + "x2": 2253, + "y2": 2482 + }, + "value": "3 275,80", + "label": "items_row7:item_gross_worth" + }, + { + "rect": { + "x1": 250, + "y1": 1394, + "x2": 290, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1566, + "x2": 298, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1739, + "x2": 290, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1912, + "x2": 290, + "y2": 1960 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 2085, + "x2": 290, + "y2": 2133 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 2258, + "x2": 290, + "y2": 2306 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 2427, + "x2": 290, + "y2": 2478 + }, + "value": "7.", + "label": "" + }, + { + "rect": { + "x1": 198, + "y1": 2651, + "x2": 493, + "y2": 2703 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 2784, + "x2": 1051, + "y2": 2828 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1048, + "y1": 2776, + "x2": 1121, + "y2": 2831 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 2868, + "x2": 1081, + "y2": 2909 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1386, + "y1": 2784, + "x2": 1474, + "y2": 2828 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2784, + "x2": 1584, + "y2": 2828 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1411, + "y1": 2868, + "x2": 1463, + "y2": 2909 + }, + "value": "17", + "label": "" + }, + { + "rect": { + "x1": 1463, + "y1": 2868, + "x2": 1584, + "y2": 2909 + }, + "value": "009,66", + "label": "" + }, + { + "rect": { + "x1": 1356, + "y1": 2956, + "x2": 1588, + "y2": 3004 + }, + "value": "$ 17009,66", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1654, + "y1": 2949, + "x2": 1871, + "y2": 3012 + }, + "value": "$1700,97", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 1779, + "y1": 2784, + "x2": 1871, + "y2": 2828 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1705, + "y1": 2868, + "x2": 1742, + "y2": 2916 + }, + "value": "1", + "label": "" + }, + { + "rect": { + "x1": 1728, + "y1": 2868, + "x2": 1864, + "y2": 2909 + }, + "value": "700,97", + "label": "" + }, + { + "rect": { + "x1": 2025, + "y1": 2784, + "x2": 2139, + "y2": 2828 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2784, + "x2": 2260, + "y2": 2828 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2080, + "y1": 2868, + "x2": 2135, + "y2": 2909 + }, + "value": "18", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 2868, + "x2": 2260, + "y2": 2909 + }, + "value": "710,63", + "label": "" + }, + { + "rect": { + "x1": 2029, + "y1": 2956, + "x2": 2069, + "y2": 3004 + }, + "value": "$", + "label": "" + }, + { + "rect": { + "x1": 2051, + "y1": 2956, + "x2": 2260, + "y2": 3004 + }, + "value": "18710,63", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2960, + "x2": 856, + "y2": 3001 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_12.json b/docs/json/invoice_12.json new file mode 100644 index 0000000000000000000000000000000000000000..47c13c69cee5eb8f7162fa41d1310aadc846b5cf --- /dev/null +++ b/docs/json/invoice_12.json @@ -0,0 +1,653 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 24, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 406, + "y2": 164 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 113, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 113, + "x2": 808, + "y2": 164 + }, + "value": "49923258", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 216, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 216, + "x2": 1469, + "y2": 263 + }, + "value": "10/26/2011", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 756, + "x2": 829, + "y2": 917 + }, + "value": "Watson LLC 15758 Hartman Summit Port Pamelamouth, SC 83489", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 760, + "x2": 1739, + "y2": 917 + }, + "value": "Roth-Smith 802 Pamela Mission Matthewview, IL 73213", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "903-74-7444", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 329, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "935-77-3388", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 343, + "y1": 1030, + "x2": 957, + "y2": 1067 + }, + "value": "GB25DWRK25073532649300", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1400, + "x2": 892, + "y2": 1524 + }, + "value": "Original Nintendo Gaming Console with Robot, 9 games & extras", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 296, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1093, + "y2": 1447 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1403, + "y1": 1400, + "x2": 1527, + "y2": 1440 + }, + "value": "475,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1396, + "x2": 1779, + "y2": 1436 + }, + "value": "475,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1400, + "x2": 2254, + "y2": 1440 + }, + "value": "522,50", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1568, + "x2": 848, + "y2": 1699 + }, + "value": "Nintendo Switch Gaming Console W/ Neon Blue & Red Controllers,Carry Case,Cable", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 968, + "x2": 1334, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1396, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1012, + "y1": 1264, + "x2": 1096, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1239, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1008, + "y1": 1571, + "x2": 1093, + "y2": 1611 + }, + "value": "2,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1151, + "y1": 1568, + "x2": 1246, + "y2": 1619 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1663, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1308, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 1571, + "x2": 1527, + "y2": 1611 + }, + "value": "300,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1571, + "x2": 1779, + "y2": 1611 + }, + "value": "600,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 2002, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1571, + "x2": 2254, + "y2": 1611 + }, + "value": "660,00", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 197, + "y1": 1794, + "x2": 493, + "y2": 1845 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 1915, + "x2": 1052, + "y2": 1966 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 1915, + "x2": 1122, + "y2": 1970 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2002, + "x2": 1085, + "y2": 2057 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 1915, + "x2": 1473, + "y2": 1966 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 1922, + "x2": 1586, + "y2": 1959 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1999, + "x2": 1593, + "y2": 2065 + }, + "value": "1075,00", + "label": "" + }, + { + "rect": { + "x1": 1378, + "y1": 2094, + "x2": 1586, + "y2": 2145 + }, + "value": "$1075,00", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1915, + "x2": 1871, + "y2": 1966 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1743, + "y1": 2010, + "x2": 1867, + "y2": 2054 + }, + "value": "107,50", + "label": "" + }, + { + "rect": { + "x1": 1684, + "y1": 2087, + "x2": 1867, + "y2": 2152 + }, + "value": "$107,50", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 1922, + "x2": 2138, + "y2": 1959 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1922, + "x2": 2262, + "y2": 1962 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2101, + "y1": 2010, + "x2": 2262, + "y2": 2054 + }, + "value": "1182,50", + "label": "" + }, + { + "rect": { + "x1": 2050, + "y1": 2094, + "x2": 2262, + "y2": 2145 + }, + "value": "$1182,50", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2101, + "x2": 859, + "y2": 2138 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_120.json b/docs/json/invoice_120.json new file mode 100644 index 0000000000000000000000000000000000000000..7a621969b084d180122ddb3bd646b608d6fa6f4d --- /dev/null +++ b/docs/json/invoice_120.json @@ -0,0 +1,983 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 25, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "78566408", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 198, + "y1": 210, + "x2": 316, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 316, + "y1": 210, + "x2": 382, + "y2": 265 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 382, + "y1": 210, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 213, + "x2": 1470, + "y2": 265 + }, + "value": "03/18/2016", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 673, + "x2": 386, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 757, + "x2": 912, + "y2": 916 + }, + "value": "Clark PLC 3577 John Glen Suite 454 North Michaelborough, NE 70613", + "label": "header:seller" + }, + { + "rect": { + "x1": 1246, + "y1": 757, + "x2": 1823, + "y2": 923 + }, + "value": "Adams and Sons 957 Flowers Drive Apt. 985 East Jared, NJ 51167", + "label": "header:client" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 364, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "918-88-8070", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "906-74-9305", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 342, + "y1": 1026, + "x2": 948, + "y2": 1074 + }, + "value": "GB76QCXU43762789246312", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 228, + "y1": 1265, + "x2": 309, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1095, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1394, + "x2": 864, + "y2": 1489 + }, + "value": "Oomphies Boys Ankle Boots Shoes Gray Green Kids Size 2", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1095, + "y2": 1449 + }, + "value": "2,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1394, + "x2": 1239, + "y2": 1438 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1394, + "x2": 1525, + "y2": 1438 + }, + "value": "11,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1397, + "x2": 1779, + "y2": 1438 + }, + "value": "23,98", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1394, + "x2": 2000, + "y2": 1438 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1394, + "x2": 2253, + "y2": 1438 + }, + "value": "26,38", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1566, + "x2": 889, + "y2": 1695 + }, + "value": "Boys water/beach/pool black orange and blue hook and loop size 13-1 shoes", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1011, + "y1": 1566, + "x2": 1095, + "y2": 1618 + }, + "value": "2,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1566, + "x2": 1246, + "y2": 1618 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1448, + "y1": 1574, + "x2": 1525, + "y2": 1614 + }, + "value": "1,18", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1702, + "y1": 1574, + "x2": 1783, + "y2": 1614 + }, + "value": "2,36", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2000, + "y2": 1614 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2172, + "y1": 1574, + "x2": 2253, + "y2": 1614 + }, + "value": "2,60", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1739, + "x2": 897, + "y2": 1868 + }, + "value": "Lotto Soccer Turf Shoes 6 Black Vincente Turf Jr Indoor Outdoor Futbol Cleats", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1739, + "x2": 1095, + "y2": 1794 + }, + "value": "3,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1743, + "x2": 1525, + "y2": 1783 + }, + "value": "19,99", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1743, + "x2": 1779, + "y2": 1783 + }, + "value": "59,97", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1743, + "x2": 2000, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1743, + "x2": 2253, + "y2": 1783 + }, + "value": "65,97", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1916, + "x2": 889, + "y2": 2044 + }, + "value": "Blueteeth LED Galaxy Projector Starry Night Lamp Star Projection Night Light USB", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1912, + "x2": 1095, + "y2": 1964 + }, + "value": "1,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1916, + "x2": 1239, + "y2": 1960 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1916, + "x2": 1525, + "y2": 1960 + }, + "value": "28,49", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1916, + "x2": 1783, + "y2": 1960 + }, + "value": "28,49", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1916, + "x2": 2000, + "y2": 1960 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1916, + "x2": 2253, + "y2": 1960 + }, + "value": "31,34", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2085, + "x2": 820, + "y2": 2217 + }, + "value": "Joma Boys Youth Gol-102 Soccer Cleats Shoes Size 4 White Red Futbol NEW", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 2081, + "x2": 1095, + "y2": 2133 + }, + "value": "3,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2085, + "x2": 1246, + "y2": 2125 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 2089, + "x2": 1525, + "y2": 2133 + }, + "value": "19,99", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 2085, + "x2": 1779, + "y2": 2125 + }, + "value": "59,97", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2085, + "x2": 2000, + "y2": 2125 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 2089, + "x2": 2253, + "y2": 2133 + }, + "value": "65,97", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2258, + "x2": 871, + "y2": 2390 + }, + "value": "Adult Kids Pokemon Pikachu Kigurumi Pajama Cosplay Christmas Costume Sleepwear", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1011, + "y1": 2265, + "x2": 1095, + "y2": 2302 + }, + "value": "2,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2265, + "x2": 1239, + "y2": 2302 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1269, + "x2": 1426, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1272, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2000, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2253, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1305, + "x2": 2253, + "y2": 1346 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 2265, + "x2": 1525, + "y2": 2302 + }, + "value": "16,56", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 2265, + "x2": 1779, + "y2": 2302 + }, + "value": "33,12", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 2258, + "x2": 2000, + "y2": 2306 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 2265, + "x2": 2253, + "y2": 2302 + }, + "value": "36,43", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 250, + "y1": 1394, + "x2": 294, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1566, + "x2": 298, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1739, + "x2": 294, + "y2": 1794 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1912, + "x2": 294, + "y2": 1960 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 2081, + "x2": 294, + "y2": 2133 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 2258, + "x2": 294, + "y2": 2306 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1478, + "x2": 437, + "y2": 1522 + }, + "value": "EUC", + "label": "" + }, + { + "rect": { + "x1": 202, + "y1": 2482, + "x2": 493, + "y2": 2530 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 2611, + "x2": 1051, + "y2": 2651 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1048, + "y1": 2603, + "x2": 1121, + "y2": 2659 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 2699, + "x2": 1081, + "y2": 2739 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1386, + "y1": 2600, + "x2": 1470, + "y2": 2655 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2611, + "x2": 1584, + "y2": 2651 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1463, + "y1": 2699, + "x2": 1584, + "y2": 2739 + }, + "value": "207,89", + "label": "" + }, + { + "rect": { + "x1": 1411, + "y1": 2776, + "x2": 1588, + "y2": 2835 + }, + "value": "$207,89", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2611, + "x2": 1871, + "y2": 2651 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2699, + "x2": 1864, + "y2": 2739 + }, + "value": "20,79", + "label": "" + }, + { + "rect": { + "x1": 1713, + "y1": 2776, + "x2": 1871, + "y2": 2835 + }, + "value": "$20,79", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2611, + "x2": 2139, + "y2": 2651 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2611, + "x2": 2264, + "y2": 2651 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2699, + "x2": 2264, + "y2": 2739 + }, + "value": "228,68", + "label": "" + }, + { + "rect": { + "x1": 2117, + "y1": 2787, + "x2": 2257, + "y2": 2831 + }, + "value": "228,68", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2787, + "x2": 853, + "y2": 2831 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_121.json b/docs/json/invoice_121.json new file mode 100644 index 0000000000000000000000000000000000000000..8a8599a72c83b2bf78f21779fe73bf8b5e95a542 --- /dev/null +++ b/docs/json/invoice_121.json @@ -0,0 +1,893 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 26, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 114, + "x2": 515, + "y2": 165 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "95707254", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 198, + "y1": 210, + "x2": 316, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 316, + "y1": 210, + "x2": 382, + "y2": 265 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 382, + "y1": 210, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 213, + "x2": 1474, + "y2": 265 + }, + "value": "07/20/2020", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 386, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 206, + "y1": 754, + "x2": 790, + "y2": 919 + }, + "value": "Cobb, Allen and Diaz 8378 Long Station Apt. 840 New Angelabury, CA 19896", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 757, + "x2": 1724, + "y2": 916 + }, + "value": "Carr, Odom and Jones 233 Justin Summit West Susan, KY 07746", + "label": "header:client" + }, + { + "rect": { + "x1": 368, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "929-85-5933", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "923-94-2802", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 930, + "y2": 1081 + }, + "value": "GB07AGJU73318785668495", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 228, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 669, + "x2": 1422, + "y2": 713 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1331, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1331, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1018, + "y1": 1265, + "x2": 1095, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1390, + "x2": 893, + "y2": 1522 + }, + "value": "New KID CUDI \"WZRD\" Rap Hip Hop Soul Music Men's Black T-Shirt Size S to 3XL", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1390, + "x2": 1095, + "y2": 1445 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1394, + "x2": 1239, + "y2": 1438 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1394, + "x2": 1529, + "y2": 1438 + }, + "value": "22,49", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1661, + "y1": 1401, + "x2": 1779, + "y2": 1438 + }, + "value": "112,45", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1394, + "x2": 2000, + "y2": 1438 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1401, + "x2": 2253, + "y2": 1438 + }, + "value": "123,69", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1566, + "x2": 904, + "y2": 1695 + }, + "value": "Sperry Top-Sider Boys Toddlers Lace Tie Boat Shoes Brown 13M New", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1563, + "x2": 1095, + "y2": 1622 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1563, + "x2": 1246, + "y2": 1622 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1570, + "x2": 1529, + "y2": 1614 + }, + "value": "37,69", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1570, + "x2": 1783, + "y2": 1614 + }, + "value": "37,69", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2000, + "y2": 1614 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1570, + "x2": 2253, + "y2": 1614 + }, + "value": "41,46", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1739, + "x2": 809, + "y2": 1831 + }, + "value": "TODDLER SHAQ HIGH TOP SHOES SIZE 4", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1739, + "x2": 1095, + "y2": 1791 + }, + "value": "3,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1739, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1444, + "y1": 1739, + "x2": 1529, + "y2": 1791 + }, + "value": "9,99", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1739, + "x2": 1779, + "y2": 1783 + }, + "value": "29,97", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1739, + "x2": 2000, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1739, + "x2": 2253, + "y2": 1783 + }, + "value": "32,97", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1875, + "x2": 901, + "y2": 2000 + }, + "value": "PLAE SAM 2.0 Shoes Sandals Breathable Summer Strap Navy Blue Size 12 Kid", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1875, + "x2": 1095, + "y2": 1916 + }, + "value": "1,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1875, + "x2": 1239, + "y2": 1916 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1875, + "x2": 1529, + "y2": 1916 + }, + "value": "15,00", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1875, + "x2": 1779, + "y2": 1916 + }, + "value": "15,00", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1875, + "x2": 2000, + "y2": 1916 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1875, + "x2": 2253, + "y2": 1916 + }, + "value": "16,50", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2041, + "x2": 897, + "y2": 2173 + }, + "value": "Lotto Soccer Turf Shoes 6 Black Vincente Turf Jr Indoor Outdoor Futbol Cleats", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 2041, + "x2": 1095, + "y2": 2092 + }, + "value": "4,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2044, + "x2": 1246, + "y2": 2085 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1353, + "y1": 1269, + "x2": 1426, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1269, + "x2": 1665, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1272, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2000, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1269, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1346 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 2044, + "x2": 1529, + "y2": 2085 + }, + "value": "19,99", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 2044, + "x2": 1779, + "y2": 2089 + }, + "value": "79,96", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2044, + "x2": 2000, + "y2": 2085 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 2044, + "x2": 2253, + "y2": 2085 + }, + "value": "87,96", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 250, + "y1": 1394, + "x2": 290, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1566, + "x2": 298, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1739, + "x2": 290, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1872, + "x2": 290, + "y2": 1919 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 2041, + "x2": 290, + "y2": 2089 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 198, + "y1": 2269, + "x2": 493, + "y2": 2317 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 2394, + "x2": 1051, + "y2": 2438 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1048, + "y1": 2390, + "x2": 1121, + "y2": 2449 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 2482, + "x2": 1081, + "y2": 2526 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1386, + "y1": 2394, + "x2": 1474, + "y2": 2438 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2398, + "x2": 1584, + "y2": 2438 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1463, + "y1": 2482, + "x2": 1584, + "y2": 2526 + }, + "value": "275,07", + "label": "" + }, + { + "rect": { + "x1": 1411, + "y1": 2574, + "x2": 1584, + "y2": 2622 + }, + "value": "$ 275,07", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2394, + "x2": 1871, + "y2": 2438 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2482, + "x2": 1867, + "y2": 2526 + }, + "value": "27,51", + "label": "" + }, + { + "rect": { + "x1": 1713, + "y1": 2567, + "x2": 1871, + "y2": 2629 + }, + "value": "$27,51", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2394, + "x2": 2139, + "y2": 2438 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2394, + "x2": 2260, + "y2": 2438 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 2489, + "x2": 2260, + "y2": 2526 + }, + "value": "302,58", + "label": "" + }, + { + "rect": { + "x1": 2084, + "y1": 2570, + "x2": 2260, + "y2": 2622 + }, + "value": "$ 302,58", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2574, + "x2": 856, + "y2": 2611 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_122.json b/docs/json/invoice_122.json new file mode 100644 index 0000000000000000000000000000000000000000..53003ce3ef358acd689b8017acdda0229703ba09 --- /dev/null +++ b/docs/json/invoice_122.json @@ -0,0 +1,893 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 27, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 199, + "y1": 108, + "x2": 409, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 116, + "x2": 514, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 528, + "y1": 113, + "x2": 808, + "y2": 162 + }, + "value": "72346654", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 317, + "y1": 208, + "x2": 381, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 212, + "x2": 518, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1203, + "y1": 215, + "x2": 1468, + "y2": 263 + }, + "value": "10/25/2015", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 199, + "y1": 667, + "x2": 386, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 759, + "x2": 822, + "y2": 919 + }, + "value": "Malone-Lopez 851 Hall Extensions Apt. 554 Port Yolandaland, WY 20517", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 973, + "x2": 296, + "y2": 1024 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 970, + "x2": 359, + "y2": 1024 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1245, + "y1": 756, + "x2": 1854, + "y2": 919 + }, + "value": "Perez Group 480 Destiny Ridge Suite 247 Port Laura, IL 30520", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 973, + "x2": 640, + "y2": 1021 + }, + "value": "955-96-9323", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1031, + "x2": 330, + "y2": 1073 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1405, + "y1": 973, + "x2": 1680, + "y2": 1021 + }, + "value": "927-90-3514", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 341, + "y1": 1031, + "x2": 934, + "y2": 1070 + }, + "value": "GB98THYE24829931003032", + "label": "header:iban" + }, + { + "rect": { + "x1": 199, + "y1": 1141, + "x2": 376, + "y2": 1192 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 233, + "y1": 1264, + "x2": 312, + "y2": 1315 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 355, + "y1": 1267, + "x2": 581, + "y2": 1315 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1237, + "y1": 664, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1245, + "y1": 970, + "x2": 1336, + "y2": 1024 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 970, + "x2": 1399, + "y2": 1024 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1264, + "x2": 1094, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1267, + "x2": 1236, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 355, + "y1": 1398, + "x2": 879, + "y2": 1525 + }, + "value": "NWT Women's MAX EDITION Classy Gray Knit Stretch Dress side bow tie 3/4 sleeve XL", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1006, + "y1": 1394, + "x2": 1094, + "y2": 1446 + }, + "value": "3,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1398, + "x2": 1244, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1401, + "x2": 1530, + "y2": 1440 + }, + "value": "12,50", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1678, + "y1": 1398, + "x2": 1783, + "y2": 1440 + }, + "value": "37,50", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1917, + "y1": 1398, + "x2": 2001, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2151, + "y1": 1398, + "x2": 2253, + "y2": 1440 + }, + "value": "41,25", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 355, + "y1": 1569, + "x2": 908, + "y2": 1697 + }, + "value": "Rebecca Minkoff Black Polyester Fringe and Lambskin Dress Sz 12", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1006, + "y1": 1566, + "x2": 1094, + "y2": 1617 + }, + "value": "2,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1153, + "y1": 1566, + "x2": 1245, + "y2": 1617 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1446, + "y1": 1572, + "x2": 1530, + "y2": 1614 + }, + "value": "9,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1572, + "x2": 1782, + "y2": 1614 + }, + "value": "19,98", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1917, + "y1": 1569, + "x2": 2001, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2151, + "y1": 1572, + "x2": 2253, + "y2": 1614 + }, + "value": "21,98", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 359, + "y1": 1743, + "x2": 656, + "y2": 1786 + }, + "value": "balmain dress 36", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1740, + "x2": 1094, + "y2": 1792 + }, + "value": "4,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1743, + "x2": 1244, + "y2": 1786 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1366, + "y1": 1734, + "x2": 1531, + "y2": 1795 + }, + "value": "1550,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1618, + "y1": 1734, + "x2": 1786, + "y2": 1795 + }, + "value": "6200,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1917, + "y1": 1743, + "x2": 2001, + "y2": 1786 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2090, + "y1": 1734, + "x2": 2260, + "y2": 1795 + }, + "value": "6820,00", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 355, + "y1": 1832, + "x2": 580, + "y2": 1874 + }, + "value": "sandro dress", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1006, + "y1": 1829, + "x2": 1094, + "y2": 1881 + }, + "value": "5,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1832, + "x2": 1244, + "y2": 1874 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1832, + "x2": 1530, + "y2": 1874 + }, + "value": "80,00", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1657, + "y1": 1832, + "x2": 1782, + "y2": 1874 + }, + "value": "400,00", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1917, + "y1": 1832, + "x2": 2001, + "y2": 1874 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2129, + "y1": 1832, + "x2": 2253, + "y2": 1874 + }, + "value": "440,00", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1915, + "x2": 908, + "y2": 2049 + }, + "value": "Kate Spade NY Sleeveless Ponte Fit & Flare Solid Black Dress Size 6", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1010, + "y1": 1921, + "x2": 1090, + "y2": 1963 + }, + "value": "2,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1921, + "x2": 1244, + "y2": 1963 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1347, + "y1": 1267, + "x2": 1425, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1270, + "x2": 1530, + "y2": 1314 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1267, + "x2": 1665, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1664, + "y1": 1270, + "x2": 1782, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1267, + "x2": 1929, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1925, + "y1": 1264, + "x2": 2001, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1267, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1307, + "x2": 2253, + "y2": 1349 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1921, + "x2": 1530, + "y2": 1963 + }, + "value": "49,99", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1921, + "x2": 1782, + "y2": 1963 + }, + "value": "99,98", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1916, + "y1": 1915, + "x2": 2005, + "y2": 1966 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1921, + "x2": 2253, + "y2": 1963 + }, + "value": "109,98", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 249, + "y1": 1398, + "x2": 294, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 249, + "y1": 1569, + "x2": 296, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 249, + "y1": 1740, + "x2": 294, + "y2": 1789 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 249, + "y1": 1829, + "x2": 294, + "y2": 1878 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 199, + "y1": 2144, + "x2": 494, + "y2": 2193 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 249, + "y1": 1918, + "x2": 294, + "y2": 1963 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 2270, + "x2": 1047, + "y2": 2312 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1043, + "y1": 2267, + "x2": 1123, + "y2": 2320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2353, + "x2": 1084, + "y2": 2404 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1387, + "y1": 2264, + "x2": 1475, + "y2": 2316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2270, + "x2": 1588, + "y2": 2312 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 2353, + "x2": 1589, + "y2": 2404 + }, + "value": "6757,46", + "label": "" + }, + { + "rect": { + "x1": 1378, + "y1": 2446, + "x2": 1589, + "y2": 2493 + }, + "value": "$6757,46", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1780, + "y1": 2270, + "x2": 1869, + "y2": 2312 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1741, + "y1": 2361, + "x2": 1864, + "y2": 2403 + }, + "value": "675,75", + "label": "" + }, + { + "rect": { + "x1": 1691, + "y1": 2446, + "x2": 1864, + "y2": 2493 + }, + "value": "$ 675,75", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2026, + "y1": 2270, + "x2": 2140, + "y2": 2312 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2142, + "y1": 2270, + "x2": 2261, + "y2": 2312 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2098, + "y1": 2349, + "x2": 2266, + "y2": 2412 + }, + "value": "7433,21", + "label": "" + }, + { + "rect": { + "x1": 2051, + "y1": 2446, + "x2": 2261, + "y2": 2493 + }, + "value": "$7433,21", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 748, + "y1": 2450, + "x2": 853, + "y2": 2492 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_123.json b/docs/json/invoice_123.json new file mode 100644 index 0000000000000000000000000000000000000000..f3cfa8b2991f8a1ebb0a7a4eb5d4fa67fe19784d --- /dev/null +++ b/docs/json/invoice_123.json @@ -0,0 +1,573 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 28, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 113, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 533, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "60178633", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 384, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 384, + "y1": 208, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1473, + "y2": 263 + }, + "value": "12/25/2013", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 387, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 756, + "x2": 892, + "y2": 917 + }, + "value": "Mendoza Group 40007 Brown Creek South Meredithburgh, ND 48117", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1761, + "y2": 917 + }, + "value": "Elliott, Kelly and Warren 70134 Bridges Plains Priceton, CO 07903", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "900-78-2621", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "939-81-7319", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1030, + "x2": 917, + "y2": 1082 + }, + "value": "GB36JYKL45599075785785", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 577, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1392, + "x2": 862, + "y2": 1524 + }, + "value": "Confetti Stemless Wine Drink Glass Multi Green & Blue TAG FREE SHIPPING", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1093, + "y2": 1443 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1392, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1352, + "y1": 1268, + "x2": 1425, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1666, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2251, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1308, + "x2": 2251, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1392, + "x2": 1527, + "y2": 1440 + }, + "value": "23,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "119,95", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1392, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1400, + "x2": 2251, + "y2": 1440 + }, + "value": "131,94", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1392, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 1622, + "x2": 493, + "y2": 1674 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 1747, + "x2": 1049, + "y2": 1791 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1049, + "y1": 1739, + "x2": 1122, + "y2": 1798 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 1834, + "x2": 1082, + "y2": 1878 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 1747, + "x2": 1469, + "y2": 1791 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 1747, + "x2": 1586, + "y2": 1791 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1462, + "y1": 1834, + "x2": 1586, + "y2": 1878 + }, + "value": "119,95", + "label": "" + }, + { + "rect": { + "x1": 1414, + "y1": 1922, + "x2": 1586, + "y2": 1973 + }, + "value": "$ 119,95", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1747, + "x2": 1871, + "y2": 1791 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 1834, + "x2": 1867, + "y2": 1878 + }, + "value": "11,99", + "label": "" + }, + { + "rect": { + "x1": 1714, + "y1": 1922, + "x2": 1863, + "y2": 1973 + }, + "value": "$ 11,99", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 1747, + "x2": 2141, + "y2": 1791 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1747, + "x2": 2262, + "y2": 1791 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1838, + "x2": 2262, + "y2": 1878 + }, + "value": "131,94", + "label": "" + }, + { + "rect": { + "x1": 2090, + "y1": 1929, + "x2": 2262, + "y2": 1966 + }, + "value": "$ 131,94", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 1926, + "x2": 855, + "y2": 1966 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_124.json b/docs/json/invoice_124.json new file mode 100644 index 0000000000000000000000000000000000000000..b3bc19efddf1ab6e0cb6b423c319e6c1b5fbb8b5 --- /dev/null +++ b/docs/json/invoice_124.json @@ -0,0 +1,573 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 29, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 533, + "y1": 113, + "x2": 804, + "y2": 161 + }, + "value": "76671573", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 384, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 384, + "y1": 212, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1469, + "y2": 263 + }, + "value": "04/08/2012", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 756, + "x2": 709, + "y2": 917 + }, + "value": "Benson LLC 4646 Joshua Ranch South Karen, ME 87798", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1747, + "y2": 917 + }, + "value": "Smith, Landry and Ruiz USS Bailey FPO AP 87951", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "940-77-9230", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "912-85-0464", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1030, + "x2": 946, + "y2": 1071 + }, + "value": "GB03VHUR92534869762657", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 227, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 577, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 351, + "y1": 1392, + "x2": 884, + "y2": 1491 + }, + "value": "A Short Guide to Writing About Art, 9th Edition (T", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1093, + "y2": 1443 + }, + "value": "2,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1392, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1666, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1308, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1392, + "x2": 1531, + "y2": 1443 + }, + "value": "4,89", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1703, + "y1": 1392, + "x2": 1787, + "y2": 1443 + }, + "value": "9,78", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1392, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1392, + "x2": 2254, + "y2": 1440 + }, + "value": "10,76", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1392, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 1579, + "x2": 497, + "y2": 1630 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 1706, + "x2": 1049, + "y2": 1747 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 1706, + "x2": 1122, + "y2": 1750 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 1794, + "x2": 1082, + "y2": 1838 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 1706, + "x2": 1469, + "y2": 1747 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 1706, + "x2": 1586, + "y2": 1747 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1502, + "y1": 1791, + "x2": 1589, + "y2": 1845 + }, + "value": "9,78", + "label": "" + }, + { + "rect": { + "x1": 1458, + "y1": 1878, + "x2": 1589, + "y2": 1933 + }, + "value": "$ 9,78", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1706, + "x2": 1867, + "y2": 1747 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1779, + "y1": 1791, + "x2": 1871, + "y2": 1845 + }, + "value": "0,98", + "label": "" + }, + { + "rect": { + "x1": 1739, + "y1": 1886, + "x2": 1867, + "y2": 1929 + }, + "value": "$ 0,98", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 1706, + "x2": 2141, + "y2": 1747 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1706, + "x2": 2262, + "y2": 1747 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2159, + "y1": 1798, + "x2": 2262, + "y2": 1838 + }, + "value": "10,76", + "label": "" + }, + { + "rect": { + "x1": 2108, + "y1": 1878, + "x2": 2262, + "y2": 1933 + }, + "value": "$10,76", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 1886, + "x2": 855, + "y2": 1926 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_125.json b/docs/json/invoice_125.json new file mode 100644 index 0000000000000000000000000000000000000000..3f0f166650fefdbfc6a6ac4560053dc3ad9d7c57 --- /dev/null +++ b/docs/json/invoice_125.json @@ -0,0 +1,653 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 30, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "46775557", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 384, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 384, + "y1": 212, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1473, + "y2": 263 + }, + "value": "04/05/2019", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 756, + "x2": 775, + "y2": 917 + }, + "value": "Roberts, Smith and Rogers 8415 Suarez Rapids Hicksfort, FL 60166", + "label": "header:seller" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1681, + "y2": 917 + }, + "value": "Rose Ltd PSC 3715, Box 5395 APO AE 90242", + "label": "header:client" + }, + { + "rect": { + "x1": 1246, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 369, + "y1": 979, + "x2": 639, + "y2": 1020 + }, + "value": "908-71-4639", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "972-82-7727", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 340, + "y1": 1027, + "x2": 924, + "y2": 1074 + }, + "value": "GB30LTFL22480789312543", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 227, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 577, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1392, + "x2": 862, + "y2": 1524 + }, + "value": "Boden Wren Ponte Midi Dress w/Color Block Hem NWT Size 10P Black Pink 10 Petite", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1093, + "y2": 1443 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1392, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1392, + "x2": 1527, + "y2": 1440 + }, + "value": "58,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "58,99", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1392, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1392, + "x2": 2254, + "y2": 1440 + }, + "value": "64,89", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1568, + "x2": 851, + "y2": 1696 + }, + "value": "Women Black Dress Mori Girl Puff Sleeve Korean Casual Loose Peter Pan Collar", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1571, + "x2": 1093, + "y2": 1615 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1564, + "x2": 1246, + "y2": 1619 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1348, + "y1": 1268, + "x2": 1425, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1666, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1308, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1571, + "x2": 1527, + "y2": 1615 + }, + "value": "13,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1571, + "x2": 1779, + "y2": 1615 + }, + "value": "13,99", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 1999, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1571, + "x2": 2254, + "y2": 1615 + }, + "value": "15,39", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1392, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 296, + "y2": 1615 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 1794, + "x2": 493, + "y2": 1845 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 1915, + "x2": 1049, + "y2": 1966 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 1915, + "x2": 1122, + "y2": 1970 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2002, + "x2": 1085, + "y2": 2057 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 1915, + "x2": 1473, + "y2": 1966 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 1922, + "x2": 1586, + "y2": 1959 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1483, + "y1": 2010, + "x2": 1586, + "y2": 2054 + }, + "value": "72,98", + "label": "" + }, + { + "rect": { + "x1": 1432, + "y1": 2090, + "x2": 1593, + "y2": 2152 + }, + "value": "$72,98", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1915, + "x2": 1871, + "y2": 1966 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1783, + "y1": 2010, + "x2": 1867, + "y2": 2054 + }, + "value": "7,30", + "label": "" + }, + { + "rect": { + "x1": 1736, + "y1": 2090, + "x2": 1871, + "y2": 2152 + }, + "value": "$7,30", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 1922, + "x2": 2141, + "y2": 1959 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1922, + "x2": 2262, + "y2": 1962 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2159, + "y1": 2010, + "x2": 2262, + "y2": 2054 + }, + "value": "80,28", + "label": "" + }, + { + "rect": { + "x1": 2108, + "y1": 2097, + "x2": 2262, + "y2": 2149 + }, + "value": "$80,28", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2101, + "x2": 855, + "y2": 2138 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_126.json b/docs/json/invoice_126.json new file mode 100644 index 0000000000000000000000000000000000000000..1e8d947baff914528f9964b166e47875e921dc20 --- /dev/null +++ b/docs/json/invoice_126.json @@ -0,0 +1,573 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 31, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 113, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 523, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "97159829", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 384, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 384, + "y1": 208, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1469, + "y2": 263 + }, + "value": "09/18/2015", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 387, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 764, + "x2": 731, + "y2": 921 + }, + "value": "Bradley-Andrade 9879 Elizabeth Common Lake Jonathan, RI 12335", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1673, + "y2": 917 + }, + "value": "Castro PLC Unit 9678 Box 9664 DPO AP 69387", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "985-73-8194", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "994-72-1270", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1030, + "x2": 954, + "y2": 1071 + }, + "value": "GB81LZWO32519172531418", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 577, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 972, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1392, + "x2": 884, + "y2": 1524 + }, + "value": "12\" Marble Lapis Inlay Chess Table Top With 2\" Pieces & 15\" Wooden Stand W537", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1093, + "y2": 1443 + }, + "value": "2,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1392, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1666, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2251, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1308, + "x2": 2251, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 1400, + "x2": 1527, + "y2": 1440 + }, + "value": "444,60", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "889,20", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1392, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1400, + "x2": 2251, + "y2": 1440 + }, + "value": "978,12", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1392, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 1622, + "x2": 493, + "y2": 1674 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 1747, + "x2": 1049, + "y2": 1791 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1049, + "y1": 1739, + "x2": 1122, + "y2": 1798 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 1834, + "x2": 1082, + "y2": 1878 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 1747, + "x2": 1469, + "y2": 1791 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 1747, + "x2": 1586, + "y2": 1791 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1462, + "y1": 1838, + "x2": 1586, + "y2": 1878 + }, + "value": "889,20", + "label": "" + }, + { + "rect": { + "x1": 1410, + "y1": 1922, + "x2": 1586, + "y2": 1973 + }, + "value": "$ 889,20", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1747, + "x2": 1871, + "y2": 1791 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 1834, + "x2": 1863, + "y2": 1878 + }, + "value": "88,92", + "label": "" + }, + { + "rect": { + "x1": 1714, + "y1": 1922, + "x2": 1863, + "y2": 1973 + }, + "value": "$ 88,92", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 1747, + "x2": 2141, + "y2": 1791 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1747, + "x2": 2262, + "y2": 1791 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1838, + "x2": 2262, + "y2": 1878 + }, + "value": "978,12", + "label": "" + }, + { + "rect": { + "x1": 2090, + "y1": 1929, + "x2": 2258, + "y2": 1966 + }, + "value": "$ 978,12", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 1926, + "x2": 855, + "y2": 1966 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_127.json b/docs/json/invoice_127.json new file mode 100644 index 0000000000000000000000000000000000000000..9b9f974b9ba0775c2d1f64d8e2216a79e129cc87 --- /dev/null +++ b/docs/json/invoice_127.json @@ -0,0 +1,1073 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 32, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 113, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 533, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "12456262", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 384, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 384, + "y1": 208, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1473, + "y2": 263 + }, + "value": "02/22/2012", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 387, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 756, + "x2": 676, + "y2": 921 + }, + "value": "Williams and Sons 655 Stephanie Inlet East James, DC 00603", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 760, + "x2": 1663, + "y2": 925 + }, + "value": "Medina-Kennedy 217 Veronica Glen Floydton, AZ 76011", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "999-73-7345", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "924-94-5998", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1027, + "x2": 954, + "y2": 1074 + }, + "value": "GB44WCRF64229286775104", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 577, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1096, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1392, + "x2": 866, + "y2": 1524 + }, + "value": "3 Pieces Fluffy Faux Fur Seat Pads 30cm/12inch Round Pad Floor Carpets", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1096, + "y2": 1443 + }, + "value": "4,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1392, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1400, + "x2": 1527, + "y2": 1440 + }, + "value": "14,66", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "58,64", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1392, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1392, + "x2": 2251, + "y2": 1440 + }, + "value": "64,50", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1568, + "x2": 822, + "y2": 1706 + }, + "value": "Yilong 8x10ft Hand knotted Wool Carpets Home Decor Modern Villa Area Rug P39", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1571, + "x2": 1093, + "y2": 1615 + }, + "value": "3,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1564, + "x2": 1246, + "y2": 1619 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1363, + "y1": 1557, + "x2": 1527, + "y2": 1622 + }, + "value": "5040,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1604, + "y1": 1568, + "x2": 1779, + "y2": 1615 + }, + "value": "15 120,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 1999, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2079, + "y1": 1568, + "x2": 2251, + "y2": 1615 + }, + "value": "16 632,00", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1739, + "x2": 873, + "y2": 1871 + }, + "value": "Black+White Rectangle Shape Area Rug Carpet Floor Pad Doormat Mats Non-slip Z4F9", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1739, + "x2": 1096, + "y2": 1791 + }, + "value": "5,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1739, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1739, + "x2": 1527, + "y2": 1783 + }, + "value": "21,10", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1739, + "x2": 1779, + "y2": 1783 + }, + "value": "105,50", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1739, + "x2": 1999, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1739, + "x2": 2251, + "y2": 1783 + }, + "value": "116,05", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1918, + "x2": 873, + "y2": 2039 + }, + "value": "Indian Green Red Color 2.6'x4' Carpet Hand Knotted Living Room Traditional Chobi", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1915, + "x2": 1096, + "y2": 1962 + }, + "value": "5,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1918, + "x2": 1239, + "y2": 1959 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 1918, + "x2": 1527, + "y2": 1959 + }, + "value": "215,00", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1622, + "y1": 1915, + "x2": 1779, + "y2": 1962 + }, + "value": "1075,00", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1918, + "x2": 1999, + "y2": 1959 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2094, + "y1": 1915, + "x2": 2251, + "y2": 1959 + }, + "value": "1 182,50", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 2087, + "x2": 877, + "y2": 2222 + }, + "value": "YILONG 6'x9' Handmade Silk Rug Beige Living Room Luxury Home Decor Carpet 0992", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1008, + "y1": 2083, + "x2": 1096, + "y2": 2134 + }, + "value": "1,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2087, + "x2": 1239, + "y2": 2127 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1352, + "y1": 2087, + "x2": 1527, + "y2": 2127 + }, + "value": "12960,00", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1604, + "y1": 2083, + "x2": 1779, + "y2": 2134 + }, + "value": "12960,00", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2087, + "x2": 1999, + "y2": 2127 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2075, + "y1": 2087, + "x2": 2251, + "y2": 2127 + }, + "value": "14 256,00", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 2251, + "x2": 826, + "y2": 2390 + }, + "value": "YILONG 4'x6' Golden Hand Knotted Silk Rugs Antistatic Family Room Carpet 085B", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 2266, + "x2": 1093, + "y2": 2302 + }, + "value": "5,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2266, + "x2": 1239, + "y2": 2302 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1367, + "y1": 2251, + "x2": 1527, + "y2": 2306 + }, + "value": "4800,00", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1604, + "y1": 2266, + "x2": 1779, + "y2": 2302 + }, + "value": "24000,00", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 2251, + "x2": 1999, + "y2": 2306 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2075, + "y1": 2258, + "x2": 2251, + "y2": 2302 + }, + "value": "26 400,00", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 2434, + "x2": 873, + "y2": 2565 + }, + "value": "3D Stones Florals Corridor Carpet Doorway Mat Soft Antislip Living Room Area Rug", + "label": "items_row7:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 2426, + "x2": 1093, + "y2": 2481 + }, + "value": "1,00", + "label": "items_row7:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2434, + "x2": 1239, + "y2": 2474 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1352, + "y1": 1268, + "x2": 1425, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1666, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2251, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1308, + "x2": 2251, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1392, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 296, + "y2": 1615 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1739, + "x2": 292, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1915, + "x2": 292, + "y2": 1959 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2083, + "x2": 292, + "y2": 2130 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2258, + "x2": 292, + "y2": 2306 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2426, + "x2": 292, + "y2": 2478 + }, + "value": "7.", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 2434, + "x2": 1527, + "y2": 2474 + }, + "value": "15,19", + "label": "items_row7:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 2434, + "x2": 1779, + "y2": 2474 + }, + "value": "15,19", + "label": "items_row7:item_net_price" + }, + { + "rect": { + "x1": 1918, + "y1": 2434, + "x2": 1999, + "y2": 2474 + }, + "value": "10%", + "label": "items_row7:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 2426, + "x2": 2251, + "y2": 2481 + }, + "value": "16,71", + "label": "items_row7:item_gross_worth" + }, + { + "rect": { + "x1": 197, + "y1": 2649, + "x2": 493, + "y2": 2704 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2781, + "x2": 1049, + "y2": 2828 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1049, + "y1": 2777, + "x2": 1122, + "y2": 2828 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 2869, + "x2": 1082, + "y2": 2909 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2781, + "x2": 1473, + "y2": 2828 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2781, + "x2": 1586, + "y2": 2828 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 2869, + "x2": 1465, + "y2": 2909 + }, + "value": "53", + "label": "" + }, + { + "rect": { + "x1": 1454, + "y1": 2869, + "x2": 1586, + "y2": 2909 + }, + "value": "334,33", + "label": "" + }, + { + "rect": { + "x1": 1352, + "y1": 2949, + "x2": 1593, + "y2": 3011 + }, + "value": "$53334,33", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1655, + "y1": 2956, + "x2": 1867, + "y2": 3004 + }, + "value": "$5333,43", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 1779, + "y1": 2781, + "x2": 1871, + "y2": 2828 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1703, + "y1": 2861, + "x2": 1871, + "y2": 2923 + }, + "value": "5333,43", + "label": "" + }, + { + "rect": { + "x1": 2024, + "y1": 2781, + "x2": 2141, + "y2": 2828 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2781, + "x2": 2262, + "y2": 2828 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2083, + "y1": 2869, + "x2": 2134, + "y2": 2909 + }, + "value": "58", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 2869, + "x2": 2262, + "y2": 2909 + }, + "value": "667,76", + "label": "" + }, + { + "rect": { + "x1": 2024, + "y1": 2949, + "x2": 2262, + "y2": 3011 + }, + "value": "$58667,76", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2960, + "x2": 855, + "y2": 3000 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_128.json b/docs/json/invoice_128.json new file mode 100644 index 0000000000000000000000000000000000000000..b4b975ce2949af6eea46cdc7267ffc427abeb43a --- /dev/null +++ b/docs/json/invoice_128.json @@ -0,0 +1,653 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 33, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 113, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 523, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "40703934", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 384, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 384, + "y1": 208, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1473, + "y2": 263 + }, + "value": "03/10/2016", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 387, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 756, + "x2": 691, + "y2": 914 + }, + "value": "Morales LLC 0655 Miles Radial Darlenetown, IL 99206", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 760, + "x2": 1801, + "y2": 917 + }, + "value": "Moore-Miller 617 Davis Land Apt. 270 Hammondberg, AR 43526", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "980-91-2489", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "995-90-7291", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1027, + "x2": 932, + "y2": 1074 + }, + "value": "GB76QY1O56599829861096", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 577, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 972, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1096, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1400, + "x2": 903, + "y2": 1531 + }, + "value": "Victorian European Country Traditional Floral Floor Mat Area Rug Carpet Beige U", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1093, + "y2": 1443 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1392, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 1400, + "x2": 1527, + "y2": 1440 + }, + "value": "178,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "178,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1918, + "y1": 1392, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1400, + "x2": 2251, + "y2": 1440 + }, + "value": "195,80", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1568, + "x2": 903, + "y2": 1706 + }, + "value": "Round Rug Carpet For Living Room Decor Faux Fur Rugs Kids Room Long Plush Rugs", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1571, + "x2": 1093, + "y2": 1615 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1564, + "x2": 1246, + "y2": 1619 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1352, + "y1": 1268, + "x2": 1425, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1666, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2251, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1308, + "x2": 2251, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1564, + "x2": 1527, + "y2": 1619 + }, + "value": "9,87", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1681, + "y1": 1571, + "x2": 1779, + "y2": 1615 + }, + "value": "39,48", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 1999, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1571, + "x2": 2251, + "y2": 1615 + }, + "value": "43,43", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1392, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 292, + "y2": 1615 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 1794, + "x2": 493, + "y2": 1842 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 1918, + "x2": 1049, + "y2": 1966 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1049, + "y1": 1918, + "x2": 1122, + "y2": 1970 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 1999, + "x2": 1085, + "y2": 2054 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 1918, + "x2": 1473, + "y2": 1966 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 1922, + "x2": 1586, + "y2": 1959 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1462, + "y1": 2010, + "x2": 1586, + "y2": 2054 + }, + "value": "217,48", + "label": "" + }, + { + "rect": { + "x1": 1410, + "y1": 2090, + "x2": 1593, + "y2": 2152 + }, + "value": "$217,48", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1918, + "x2": 1871, + "y2": 1966 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2010, + "x2": 1863, + "y2": 2054 + }, + "value": "21,75", + "label": "" + }, + { + "rect": { + "x1": 1710, + "y1": 2090, + "x2": 1871, + "y2": 2152 + }, + "value": "$21,75", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 1922, + "x2": 2141, + "y2": 1959 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1922, + "x2": 2262, + "y2": 1962 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 2010, + "x2": 2258, + "y2": 2054 + }, + "value": "239,23", + "label": "" + }, + { + "rect": { + "x1": 2086, + "y1": 2097, + "x2": 2258, + "y2": 2145 + }, + "value": "$ 239,23", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2101, + "x2": 855, + "y2": 2138 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_129.json b/docs/json/invoice_129.json new file mode 100644 index 0000000000000000000000000000000000000000..0da858c625c4be0b9f4dc9dfc8fb9a9d88818d54 --- /dev/null +++ b/docs/json/invoice_129.json @@ -0,0 +1,733 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 34, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 113, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 523, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "20850516", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 384, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 384, + "y1": 208, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1469, + "y2": 263 + }, + "value": "07/10/2017", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 387, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 764, + "x2": 523, + "y2": 917 + }, + "value": "Carney-Rogers USNS Peterson FPO AP 71052", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1893, + "y2": 917 + }, + "value": "Duncan, Mendoza and Mitchell 21954 Eduardo Passage South Brianchester, MI 84023", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 979, + "x2": 639, + "y2": 1020 + }, + "value": "902-92-0164", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "908-70-1405", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1027, + "x2": 946, + "y2": 1074 + }, + "value": "GB48NZE0291529152051083956", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 577, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1392, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1392, + "x2": 808, + "y2": 1484 + }, + "value": "Jordan B'Loyal Boys Grade School Sneakers US 3Y", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1524, + "x2": 292, + "y2": 1571 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1096, + "y2": 1443 + }, + "value": "4,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1443, + "y1": 1392, + "x2": 1527, + "y2": 1443 + }, + "value": "9,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "36,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1392, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1392, + "x2": 2251, + "y2": 1440 + }, + "value": "39,60", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1527, + "x2": 906, + "y2": 1659 + }, + "value": "Western Chief Kids' Boys Classic Rain Boots w/ Pull Handles Navy Blue Size 12", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1699, + "x2": 292, + "y2": 1747 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 1008, + "y1": 1531, + "x2": 1093, + "y2": 1571 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1447, + "y1": 1531, + "x2": 1527, + "y2": 1571 + }, + "value": "9,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1703, + "y1": 1531, + "x2": 1779, + "y2": 1571 + }, + "value": "9,99", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1524, + "x2": 1999, + "y2": 1575 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1531, + "x2": 2251, + "y2": 1571 + }, + "value": "10,99", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1696, + "x2": 895, + "y2": 1834 + }, + "value": "Hot Toys COSB748 Mandalorian & The Child COSBABY Mini Figure Model Collection", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1392, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1524, + "x2": 1246, + "y2": 1575 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1008, + "y1": 1706, + "x2": 1093, + "y2": 1739 + }, + "value": "4,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1706, + "x2": 1239, + "y2": 1739 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1666, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2251, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1308, + "x2": 2251, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1706, + "x2": 1527, + "y2": 1739 + }, + "value": "32,89", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1706, + "x2": 1779, + "y2": 1739 + }, + "value": "131,56", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1696, + "x2": 1999, + "y2": 1747 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1706, + "x2": 2251, + "y2": 1739 + }, + "value": "144,72", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 197, + "y1": 1926, + "x2": 493, + "y2": 1973 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2046, + "x2": 1049, + "y2": 2097 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1049, + "y1": 2046, + "x2": 1122, + "y2": 2101 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2134, + "x2": 1085, + "y2": 2185 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2046, + "x2": 1473, + "y2": 2097 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2054, + "x2": 1586, + "y2": 2090 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1465, + "y1": 2141, + "x2": 1586, + "y2": 2182 + }, + "value": "177,55", + "label": "" + }, + { + "rect": { + "x1": 1414, + "y1": 2225, + "x2": 1586, + "y2": 2277 + }, + "value": "$ 177,55", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2046, + "x2": 1871, + "y2": 2097 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2141, + "x2": 1867, + "y2": 2182 + }, + "value": "17,76", + "label": "" + }, + { + "rect": { + "x1": 1714, + "y1": 2225, + "x2": 1867, + "y2": 2280 + }, + "value": "$17,76", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2054, + "x2": 2141, + "y2": 2090 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2054, + "x2": 2262, + "y2": 2090 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 2141, + "x2": 2258, + "y2": 2182 + }, + "value": "195,31", + "label": "" + }, + { + "rect": { + "x1": 2086, + "y1": 2225, + "x2": 2258, + "y2": 2277 + }, + "value": "$ 195,31", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2225, + "x2": 855, + "y2": 2269 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_13.json b/docs/json/invoice_13.json new file mode 100644 index 0000000000000000000000000000000000000000..61a078fdcb24cb6bee60c9fc97a35e0b86a4bd54 --- /dev/null +++ b/docs/json/invoice_13.json @@ -0,0 +1,733 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 35, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 406, + "y2": 164 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 113, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 808, + "y2": 164 + }, + "value": "34911755", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 216, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 216, + "x2": 1473, + "y2": 263 + }, + "value": "01/30/2019", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 205, + "y1": 756, + "x2": 789, + "y2": 917 + }, + "value": "Graham, Floyd and Johnson PSC 4671, Box 8111 APO AA 17287", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 756, + "x2": 1867, + "y2": 917 + }, + "value": "Martin, Russo and Gaines 439 Savannah Ports Apt. 792 East Adrianton, OR 66623", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "915-82-2212", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 329, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "910-78-0055", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1027, + "x2": 943, + "y2": 1074 + }, + "value": "GB96HTSB65053102617380", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 968, + "x2": 1334, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1396, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1012, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1239, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1396, + "x2": 888, + "y2": 1524 + }, + "value": "Metal Storage Shelf Wine Glass Rack Wine Glasses for The Cabinet", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1093, + "y2": 1447 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1396, + "x2": 1527, + "y2": 1440 + }, + "value": "22,42", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1652, + "y1": 1400, + "x2": 1776, + "y2": 1440 + }, + "value": "112,10", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1396, + "x2": 2254, + "y2": 1440 + }, + "value": "123,31", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1568, + "x2": 862, + "y2": 1699 + }, + "value": "Wine Things Unlimited Tipsy Wine Elf Pewter Wine Bottle Stopper/Cork", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1568, + "x2": 1093, + "y2": 1619 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1151, + "y1": 1568, + "x2": 1246, + "y2": 1619 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1447, + "y1": 1571, + "x2": 1527, + "y2": 1611 + }, + "value": "8,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1703, + "y1": 1571, + "x2": 1783, + "y2": 1611 + }, + "value": "8,99", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 2002, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2174, + "y1": 1575, + "x2": 2254, + "y2": 1615 + }, + "value": "9,89", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1739, + "x2": 833, + "y2": 1827 + }, + "value": "Set of 2 Stemless Christmas Wine Glasses NEW", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1739, + "x2": 1096, + "y2": 1794 + }, + "value": "5,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1743, + "x2": 1246, + "y2": 1787 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1268, + "x2": 1425, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1663, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1308, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1743, + "x2": 1527, + "y2": 1787 + }, + "value": "12,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1677, + "y1": 1743, + "x2": 1783, + "y2": 1787 + }, + "value": "60,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1743, + "x2": 2002, + "y2": 1787 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1743, + "x2": 2254, + "y2": 1787 + }, + "value": "66,00", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 296, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1739, + "x2": 296, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 1926, + "x2": 493, + "y2": 1973 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2043, + "x2": 1052, + "y2": 2097 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2043, + "x2": 1122, + "y2": 2101 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2134, + "x2": 1085, + "y2": 2185 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2043, + "x2": 1473, + "y2": 2097 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2050, + "x2": 1586, + "y2": 2090 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1465, + "y1": 2141, + "x2": 1586, + "y2": 2182 + }, + "value": "181,09", + "label": "" + }, + { + "rect": { + "x1": 1414, + "y1": 2225, + "x2": 1586, + "y2": 2273 + }, + "value": "$ 181,09", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2043, + "x2": 1871, + "y2": 2097 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2141, + "x2": 1863, + "y2": 2182 + }, + "value": "18,11", + "label": "" + }, + { + "rect": { + "x1": 1714, + "y1": 2222, + "x2": 1867, + "y2": 2280 + }, + "value": "$18,11", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2050, + "x2": 2138, + "y2": 2090 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2050, + "x2": 2262, + "y2": 2090 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 2141, + "x2": 2262, + "y2": 2182 + }, + "value": "199,20", + "label": "" + }, + { + "rect": { + "x1": 2086, + "y1": 2225, + "x2": 2262, + "y2": 2273 + }, + "value": "$ 199,20", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2225, + "x2": 859, + "y2": 2266 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_130.json b/docs/json/invoice_130.json new file mode 100644 index 0000000000000000000000000000000000000000..4b91b7e2ec767ccdb0b4fa1fff79c297e623f38b --- /dev/null +++ b/docs/json/invoice_130.json @@ -0,0 +1,973 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 36, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 113, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 533, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "13194726", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 384, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 384, + "y1": 208, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1469, + "y2": 263 + }, + "value": "05/29/2021", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 387, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 756, + "x2": 643, + "y2": 917 + }, + "value": "Hopkins and Sons 62283 Flores Tunnel North Luis, IA 69983", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1553, + "y2": 917 + }, + "value": "Sims PLC USS Kramer FPO AA 81651", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "952-73-7223", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "995-88-9495", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1030, + "x2": 932, + "y2": 1071 + }, + "value": "GB31LZX520242755934691", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 577, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1392, + "x2": 844, + "y2": 1531 + }, + "value": "Beach Lunch Lounge Striped Shirt Dress Large Navy Blue White Long Sleeve Causal", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1093, + "y2": 1443 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1392, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1392, + "x2": 1527, + "y2": 1440 + }, + "value": "16,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "16,99", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1392, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1392, + "x2": 2251, + "y2": 1440 + }, + "value": "18,69", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1564, + "x2": 851, + "y2": 1666 + }, + "value": "Jams World Hawaiian 0 Dress Rayon SZ.L", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1564, + "x2": 1093, + "y2": 1619 + }, + "value": "5,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1568, + "x2": 1239, + "y2": 1611 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1571, + "x2": 1527, + "y2": 1615 + }, + "value": "65,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1571, + "x2": 1779, + "y2": 1615 + }, + "value": "325,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1564, + "x2": 1999, + "y2": 1619 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1571, + "x2": 2251, + "y2": 1615 + }, + "value": "357,50", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1696, + "x2": 910, + "y2": 1783 + }, + "value": "LuLaRoe Nicole Dress Size Large 26", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1706, + "x2": 1093, + "y2": 1739 + }, + "value": "2,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1706, + "x2": 1239, + "y2": 1739 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1447, + "y1": 1699, + "x2": 1527, + "y2": 1750 + }, + "value": "1,99", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1703, + "y1": 1699, + "x2": 1787, + "y2": 1750 + }, + "value": "3,98", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1696, + "x2": 1999, + "y2": 1747 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2170, + "y1": 1706, + "x2": 2251, + "y2": 1739 + }, + "value": "4,38", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1831, + "x2": 903, + "y2": 1959 + }, + "value": "Johnny Was Medium Linen Wrap Dress Dessert Rose Embroiderd Bohemian", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1831, + "x2": 1093, + "y2": 1882 + }, + "value": "2,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1831, + "x2": 1239, + "y2": 1875 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1831, + "x2": 1527, + "y2": 1875 + }, + "value": "89,99", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1831, + "x2": 1779, + "y2": 1875 + }, + "value": "179,98", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1831, + "x2": 1999, + "y2": 1875 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1831, + "x2": 2251, + "y2": 1875 + }, + "value": "197,98", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1999, + "x2": 829, + "y2": 2130 + }, + "value": "Eileen Fisher Women's Long Sleeve Fleece Lined Front Pockets Dress XS Gray", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1999, + "x2": 1096, + "y2": 2054 + }, + "value": "2,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1999, + "x2": 1246, + "y2": 2046 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1999, + "x2": 1527, + "y2": 2046 + }, + "value": "15,99", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1999, + "x2": 1779, + "y2": 2046 + }, + "value": "31,98", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1999, + "x2": 1999, + "y2": 2046 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1999, + "x2": 2251, + "y2": 2046 + }, + "value": "35,18", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 2171, + "x2": 903, + "y2": 2306 + }, + "value": "Hanna Anderson Women's L Large Coral Short Sleeve Casual Fall Tee Shirt Dress", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 2171, + "x2": 1096, + "y2": 2225 + }, + "value": "1,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2178, + "x2": 1239, + "y2": 2222 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1352, + "y1": 1268, + "x2": 1425, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1666, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2251, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1308, + "x2": 2251, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 2178, + "x2": 1527, + "y2": 2222 + }, + "value": "24,00", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 2178, + "x2": 1779, + "y2": 2222 + }, + "value": "24,00", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 2171, + "x2": 1999, + "y2": 2225 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 2178, + "x2": 2251, + "y2": 2222 + }, + "value": "26,40", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1392, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 292, + "y2": 1615 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1699, + "x2": 292, + "y2": 1747 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1831, + "x2": 292, + "y2": 1878 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1999, + "x2": 292, + "y2": 2050 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2171, + "x2": 292, + "y2": 2222 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 2401, + "x2": 493, + "y2": 2448 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2525, + "x2": 1049, + "y2": 2565 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1049, + "y1": 2521, + "x2": 1122, + "y2": 2576 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 2613, + "x2": 1082, + "y2": 2657 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2525, + "x2": 1473, + "y2": 2565 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2525, + "x2": 1586, + "y2": 2565 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1462, + "y1": 2616, + "x2": 1586, + "y2": 2657 + }, + "value": "581,93", + "label": "" + }, + { + "rect": { + "x1": 1410, + "y1": 2697, + "x2": 1589, + "y2": 2759 + }, + "value": "$581,93", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2525, + "x2": 1871, + "y2": 2565 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2616, + "x2": 1867, + "y2": 2657 + }, + "value": "58,19", + "label": "" + }, + { + "rect": { + "x1": 1710, + "y1": 2697, + "x2": 1871, + "y2": 2759 + }, + "value": "$58,19", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2525, + "x2": 2141, + "y2": 2565 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2525, + "x2": 2262, + "y2": 2565 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 2616, + "x2": 2258, + "y2": 2657 + }, + "value": "640,12", + "label": "" + }, + { + "rect": { + "x1": 2086, + "y1": 2700, + "x2": 2258, + "y2": 2752 + }, + "value": "$ 640,12", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2700, + "x2": 851, + "y2": 2744 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_131.json b/docs/json/invoice_131.json new file mode 100644 index 0000000000000000000000000000000000000000..9a1ca2dd8b069780988d9f9461f7d4ff5a4ebdb1 --- /dev/null +++ b/docs/json/invoice_131.json @@ -0,0 +1,973 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 37, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 113, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 533, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "33137636", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 384, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 384, + "y1": 208, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1469, + "y2": 263 + }, + "value": "07/20/2015", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 387, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 205, + "y1": 756, + "x2": 643, + "y2": 917 + }, + "value": "Mckenzie PLC PSC 9675, Box 3115 APO AP 66862", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1681, + "y2": 917 + }, + "value": "Schultz PLC PSC 8737, Box 8683 APO AE 12600", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "989-72-9794", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "993-86-5833", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1027, + "x2": 954, + "y2": 1074 + }, + "value": "GB05ZUCN48071007458396", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 577, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1392, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1392, + "x2": 767, + "y2": 1487 + }, + "value": "The Fountainhead: 50th Anniversary Edition", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1527, + "x2": 292, + "y2": 1571 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1096, + "y2": 1443 + }, + "value": "4,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1443, + "y1": 1392, + "x2": 1527, + "y2": 1443 + }, + "value": "4,49", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1392, + "x2": 1779, + "y2": 1440 + }, + "value": "17,96", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1392, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1392, + "x2": 2251, + "y2": 1440 + }, + "value": "19,76", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1524, + "x2": 877, + "y2": 1659 + }, + "value": "A Million Little Bricks The Unofficial Illustrated History of the LE", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1699, + "x2": 292, + "y2": 1747 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 1008, + "y1": 1531, + "x2": 1093, + "y2": 1571 + }, + "value": "3,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1447, + "y1": 1531, + "x2": 1527, + "y2": 1571 + }, + "value": "4,49", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1531, + "x2": 1779, + "y2": 1571 + }, + "value": "13,47", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1524, + "x2": 1999, + "y2": 1575 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1531, + "x2": 2251, + "y2": 1571 + }, + "value": "14,82", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1699, + "x2": 884, + "y2": 1827 + }, + "value": "In the Footsteps of the Russian Snowman (Paperback or Softback)", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1871, + "x2": 292, + "y2": 1918 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 1008, + "y1": 1706, + "x2": 1093, + "y2": 1739 + }, + "value": "4,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1425, + "y1": 1706, + "x2": 1527, + "y2": 1739 + }, + "value": "25,87", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1706, + "x2": 1779, + "y2": 1739 + }, + "value": "103,48", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1696, + "x2": 1999, + "y2": 1747 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1706, + "x2": 2251, + "y2": 1739 + }, + "value": "113,83", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1867, + "x2": 742, + "y2": 1922 + }, + "value": "The Epic of Gilgamesh", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1959, + "x2": 292, + "y2": 2010 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 1008, + "y1": 1875, + "x2": 1093, + "y2": 1918 + }, + "value": "5,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1443, + "y1": 1871, + "x2": 1527, + "y2": 1922 + }, + "value": "4,49", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1875, + "x2": 1779, + "y2": 1918 + }, + "value": "22,45", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1875, + "x2": 1999, + "y2": 1918 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1875, + "x2": 2251, + "y2": 1918 + }, + "value": "24,70", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1962, + "x2": 720, + "y2": 2010 + }, + "value": "Evolutionary Analysis", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 2046, + "x2": 292, + "y2": 2097 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 1008, + "y1": 1959, + "x2": 1093, + "y2": 2010 + }, + "value": "5,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1443, + "y1": 1959, + "x2": 1527, + "y2": 2010 + }, + "value": "6,43", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1962, + "x2": 1779, + "y2": 2006 + }, + "value": "32,15", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1962, + "x2": 1999, + "y2": 2006 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1962, + "x2": 2251, + "y2": 2006 + }, + "value": "35,36", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 2046, + "x2": 829, + "y2": 2138 + }, + "value": "300,000 PLR Articles, 2,000 E-books + More", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1392, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1524, + "x2": 1246, + "y2": 1575 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1706, + "x2": 1239, + "y2": 1739 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1875, + "x2": 1239, + "y2": 1918 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1962, + "x2": 1239, + "y2": 2006 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1008, + "y1": 2054, + "x2": 1093, + "y2": 2094 + }, + "value": "3,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2054, + "x2": 1239, + "y2": 2094 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1666, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2251, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1308, + "x2": 2251, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 2046, + "x2": 1527, + "y2": 2101 + }, + "value": "1,99", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1695, + "y1": 2046, + "x2": 1779, + "y2": 2101 + }, + "value": "5,97", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2054, + "x2": 1999, + "y2": 2094 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2174, + "y1": 2054, + "x2": 2251, + "y2": 2094 + }, + "value": "6,57", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 197, + "y1": 2233, + "x2": 493, + "y2": 2280 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2364, + "x2": 1049, + "y2": 2401 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1049, + "y1": 2357, + "x2": 1122, + "y2": 2408 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 994, + "y1": 2441, + "x2": 1085, + "y2": 2496 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2364, + "x2": 1473, + "y2": 2401 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2364, + "x2": 1586, + "y2": 2401 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1465, + "y1": 2448, + "x2": 1586, + "y2": 2492 + }, + "value": "195,48", + "label": "" + }, + { + "rect": { + "x1": 1410, + "y1": 2529, + "x2": 1589, + "y2": 2591 + }, + "value": "$195,48", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2364, + "x2": 1871, + "y2": 2401 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2448, + "x2": 1863, + "y2": 2492 + }, + "value": "19,55", + "label": "" + }, + { + "rect": { + "x1": 1710, + "y1": 2529, + "x2": 1871, + "y2": 2594 + }, + "value": "$19,55", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2364, + "x2": 2141, + "y2": 2401 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2364, + "x2": 2262, + "y2": 2401 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 2448, + "x2": 2258, + "y2": 2492 + }, + "value": "215,03", + "label": "" + }, + { + "rect": { + "x1": 2086, + "y1": 2536, + "x2": 2258, + "y2": 2583 + }, + "value": "$ 215,03", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2540, + "x2": 851, + "y2": 2580 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_132.json b/docs/json/invoice_132.json new file mode 100644 index 0000000000000000000000000000000000000000..6cecfc742f09b53c43c5ac52dac517c60a5ecc21 --- /dev/null +++ b/docs/json/invoice_132.json @@ -0,0 +1,893 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 38, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 165 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "93411242", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 198, + "y1": 210, + "x2": 316, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 316, + "y1": 210, + "x2": 382, + "y2": 265 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 382, + "y1": 210, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 213, + "x2": 1470, + "y2": 265 + }, + "value": "01/07/2017", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 390, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 761, + "x2": 812, + "y2": 916 + }, + "value": "Harrison-Harris 9076 Maria Prairie Suite 382 Nicholsville, NC 06077", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 761, + "x2": 2040, + "y2": 916 + }, + "value": "Smith-Hill 65866 Armstrong Meadows Suite 009 East Heather, OK 70218", + "label": "header:client" + }, + { + "rect": { + "x1": 364, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "965-74-4646", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "974-85-7776", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 930, + "y2": 1070 + }, + "value": "GB42RRTT66211676813047", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 228, + "y1": 1265, + "x2": 309, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1095, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1394, + "x2": 904, + "y2": 1522 + }, + "value": "Fast HP Desktop Computer Intel Processor 4GB 160GB 17\" LCD DVD Wifi Windows 10", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1390, + "x2": 1095, + "y2": 1445 + }, + "value": "4,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1394, + "x2": 1239, + "y2": 1438 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1401, + "x2": 1525, + "y2": 1438 + }, + "value": "99,95", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1401, + "x2": 1779, + "y2": 1438 + }, + "value": "399,80", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1394, + "x2": 2000, + "y2": 1438 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1401, + "x2": 2253, + "y2": 1438 + }, + "value": "439,78", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1566, + "x2": 875, + "y2": 1699 + }, + "value": "Fast Dell Optiplex Windows 10 Desktop Computer Tower PC Core i3 3.1GHz 4GB 320GB", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1011, + "y1": 1566, + "x2": 1095, + "y2": 1618 + }, + "value": "5,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1566, + "x2": 1246, + "y2": 1618 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1574, + "x2": 1525, + "y2": 1614 + }, + "value": "89,95", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1574, + "x2": 1779, + "y2": 1614 + }, + "value": "449,75", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2000, + "y2": 1614 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1574, + "x2": 2253, + "y2": 1614 + }, + "value": "494,73", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1739, + "x2": 853, + "y2": 1879 + }, + "value": "Dell Optiplex 390 i5 3.10Ghz Quad Core Computer w/4Gb RAM DVDRW noHD Free Ship", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1739, + "x2": 1095, + "y2": 1791 + }, + "value": "4,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1743, + "x2": 1525, + "y2": 1783 + }, + "value": "84,99", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1661, + "y1": 1743, + "x2": 1779, + "y2": 1783 + }, + "value": "339,96", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1916, + "x2": 2000, + "y2": 1960 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1743, + "x2": 2253, + "y2": 1783 + }, + "value": "373,96", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1912, + "x2": 867, + "y2": 2041 + }, + "value": "Dell Desktop Computer Tower Optiplex Core i5 8GB 1TB HD DVD Wifi Windows 10 Pro", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1912, + "x2": 1095, + "y2": 1964 + }, + "value": "3,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1916, + "x2": 1239, + "y2": 1960 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 1919, + "x2": 1525, + "y2": 1960 + }, + "value": "169,95", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1919, + "x2": 1779, + "y2": 1960 + }, + "value": "509,85", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1743, + "x2": 2000, + "y2": 1783 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1916, + "x2": 2253, + "y2": 1960 + }, + "value": "560,83", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2089, + "x2": 812, + "y2": 2254 + }, + "value": "Custom Gaming Computer Ryzen 7 2700 32GBDDR4 Nvidia RTX 2060 RGBSSD 500GB HDD", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 2081, + "x2": 1095, + "y2": 2133 + }, + "value": "5,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2085, + "x2": 1239, + "y2": 2125 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1349, + "y1": 1269, + "x2": 1426, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1272, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1269, + "x2": 1665, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1272, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2000, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1269, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1346 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1371, + "y1": 2081, + "x2": 1525, + "y2": 2133 + }, + "value": "1092,27", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1617, + "y1": 2081, + "x2": 1783, + "y2": 2133 + }, + "value": "5461,35", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2085, + "x2": 2000, + "y2": 2125 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2091, + "y1": 2081, + "x2": 2253, + "y2": 2133 + }, + "value": "6007,49", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 250, + "y1": 1394, + "x2": 294, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1566, + "x2": 298, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1739, + "x2": 294, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1912, + "x2": 294, + "y2": 1960 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 2081, + "x2": 294, + "y2": 2133 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 198, + "y1": 2353, + "x2": 493, + "y2": 2401 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 2478, + "x2": 1051, + "y2": 2519 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1048, + "y1": 2475, + "x2": 1121, + "y2": 2530 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 2563, + "x2": 1084, + "y2": 2611 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1386, + "y1": 2475, + "x2": 1470, + "y2": 2526 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2482, + "x2": 1584, + "y2": 2519 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 2552, + "x2": 1588, + "y2": 2614 + }, + "value": "7160,71", + "label": "" + }, + { + "rect": { + "x1": 1378, + "y1": 2648, + "x2": 1584, + "y2": 2703 + }, + "value": "$7160,71", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2478, + "x2": 1871, + "y2": 2519 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1742, + "y1": 2570, + "x2": 1864, + "y2": 2611 + }, + "value": "716,07", + "label": "" + }, + { + "rect": { + "x1": 1691, + "y1": 2651, + "x2": 1864, + "y2": 2703 + }, + "value": "$ 716,07", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2482, + "x2": 2139, + "y2": 2519 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2482, + "x2": 2264, + "y2": 2519 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2099, + "y1": 2563, + "x2": 2264, + "y2": 2611 + }, + "value": "7876,78", + "label": "" + }, + { + "rect": { + "x1": 2051, + "y1": 2648, + "x2": 2264, + "y2": 2703 + }, + "value": "$7876,78", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2651, + "x2": 856, + "y2": 2695 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_133.json b/docs/json/invoice_133.json new file mode 100644 index 0000000000000000000000000000000000000000..fca9b9c93da098ffbfa8a7b863814db2bcca0649 --- /dev/null +++ b/docs/json/invoice_133.json @@ -0,0 +1,973 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 39, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 114, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "25342867", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 198, + "y1": 210, + "x2": 316, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 316, + "y1": 210, + "x2": 382, + "y2": 265 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 382, + "y1": 210, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 213, + "x2": 1470, + "y2": 265 + }, + "value": "01/10/2015", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 382, + "y2": 713 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 757, + "x2": 838, + "y2": 923 + }, + "value": "Scott LLC 9711 Baker Estates Suite 344 New Cheryl, MN 85424", + "label": "header:seller" + }, + { + "rect": { + "x1": 1246, + "y1": 757, + "x2": 1937, + "y2": 916 + }, + "value": "Brown, Miller and Wise 3723 Scott Glen Lake Christophershire, AR 12597", + "label": "header:client" + }, + { + "rect": { + "x1": 1246, + "y1": 971, + "x2": 1331, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1331, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 368, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "930-98-9727", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "943-78-4216", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 934, + "y2": 1070 + }, + "value": "GB48GPKP09511878652700", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 228, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1018, + "y1": 1265, + "x2": 1095, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1394, + "x2": 849, + "y2": 1522 + }, + "value": "VTG 1970s MCM Brown Steel Tube Wall or Desk Mounted 12-Wine Rack Bottle Holder", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1394, + "x2": 1095, + "y2": 1449 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1394, + "x2": 1239, + "y2": 1438 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1397, + "x2": 1529, + "y2": 1438 + }, + "value": "34,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1397, + "x2": 1783, + "y2": 1438 + }, + "value": "34,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1394, + "x2": 2000, + "y2": 1438 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1394, + "x2": 2253, + "y2": 1438 + }, + "value": "37,40", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1566, + "x2": 838, + "y2": 1706 + }, + "value": "Stemless wine glass Etched coordinates of Myakka River State Park, Very Good", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1570, + "x2": 1095, + "y2": 1614 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1563, + "x2": 1246, + "y2": 1622 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1448, + "y1": 1570, + "x2": 1529, + "y2": 1614 + }, + "value": "2,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1570, + "x2": 1779, + "y2": 1614 + }, + "value": "11,96", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2000, + "y2": 1614 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1570, + "x2": 2253, + "y2": 1614 + }, + "value": "13,16", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1739, + "x2": 882, + "y2": 1831 + }, + "value": "Hazlitt 1852 Vineyard home of the red cat wine glass", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1739, + "x2": 1095, + "y2": 1794 + }, + "value": "4,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1739, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1444, + "y1": 1739, + "x2": 1529, + "y2": 1794 + }, + "value": "3,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1739, + "x2": 1779, + "y2": 1783 + }, + "value": "12,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1739, + "x2": 2000, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1739, + "x2": 2253, + "y2": 1783 + }, + "value": "13,20", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1872, + "x2": 908, + "y2": 2000 + }, + "value": "Vintage Metal Art Sculpture Carving Chef Wine Bottle Holder and Display Tin Chef", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1875, + "x2": 1095, + "y2": 1916 + }, + "value": "3,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1875, + "x2": 1239, + "y2": 1916 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1875, + "x2": 1529, + "y2": 1916 + }, + "value": "25,98", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1875, + "x2": 1783, + "y2": 1916 + }, + "value": "77,94", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1875, + "x2": 2000, + "y2": 1916 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1875, + "x2": 2253, + "y2": 1916 + }, + "value": "85,73", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2044, + "x2": 889, + "y2": 2173 + }, + "value": "Brand new Cuisinart CWO-25 Electric Wine Opener, Stainless Steel", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 2044, + "x2": 1095, + "y2": 2092 + }, + "value": "1,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2044, + "x2": 1246, + "y2": 2085 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 2044, + "x2": 1529, + "y2": 2085 + }, + "value": "20,00", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 2044, + "x2": 1783, + "y2": 2085 + }, + "value": "20,00", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2044, + "x2": 2000, + "y2": 2085 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 2044, + "x2": 2253, + "y2": 2085 + }, + "value": "22,00", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2214, + "x2": 893, + "y2": 2306 + }, + "value": "Elegant Wine Glasses w/Hand Splatter Painted Accents (3pcs)", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 2217, + "x2": 1095, + "y2": 2265 + }, + "value": "3,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2217, + "x2": 1239, + "y2": 2265 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1269, + "x2": 1426, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2000, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2253, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1305, + "x2": 2253, + "y2": 1346 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 2217, + "x2": 1529, + "y2": 2265 + }, + "value": "20,00", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 2217, + "x2": 1779, + "y2": 2265 + }, + "value": "60,00", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2217, + "x2": 2000, + "y2": 2265 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 2217, + "x2": 2253, + "y2": 2265 + }, + "value": "66,00", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 250, + "y1": 1394, + "x2": 290, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1566, + "x2": 298, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1739, + "x2": 290, + "y2": 1794 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1872, + "x2": 290, + "y2": 1919 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 2044, + "x2": 290, + "y2": 2089 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 2214, + "x2": 290, + "y2": 2265 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 198, + "y1": 2398, + "x2": 493, + "y2": 2449 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 2526, + "x2": 1051, + "y2": 2567 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1048, + "y1": 2519, + "x2": 1121, + "y2": 2574 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 2611, + "x2": 1081, + "y2": 2655 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1386, + "y1": 2526, + "x2": 1474, + "y2": 2567 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2526, + "x2": 1584, + "y2": 2567 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1463, + "y1": 2611, + "x2": 1584, + "y2": 2655 + }, + "value": "215,90", + "label": "" + }, + { + "rect": { + "x1": 1411, + "y1": 2695, + "x2": 1592, + "y2": 2758 + }, + "value": "$215,90", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2526, + "x2": 1871, + "y2": 2567 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2611, + "x2": 1867, + "y2": 2655 + }, + "value": "21,59", + "label": "" + }, + { + "rect": { + "x1": 1713, + "y1": 2695, + "x2": 1871, + "y2": 2758 + }, + "value": "$21,59", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2526, + "x2": 2139, + "y2": 2567 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2526, + "x2": 2260, + "y2": 2567 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2614, + "x2": 2260, + "y2": 2655 + }, + "value": "237,49", + "label": "" + }, + { + "rect": { + "x1": 2084, + "y1": 2699, + "x2": 2257, + "y2": 2751 + }, + "value": "$ 237,49", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2699, + "x2": 853, + "y2": 2743 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_134.json b/docs/json/invoice_134.json new file mode 100644 index 0000000000000000000000000000000000000000..52524d7f602ba92fe5a3516cd2d890360a832c04 --- /dev/null +++ b/docs/json/invoice_134.json @@ -0,0 +1,653 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 40, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 114, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "26248685", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 198, + "y1": 210, + "x2": 316, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 316, + "y1": 210, + "x2": 382, + "y2": 265 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 382, + "y1": 210, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 213, + "x2": 1474, + "y2": 265 + }, + "value": "05/26/2018", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 386, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 757, + "x2": 856, + "y2": 919 + }, + "value": "Baker Inc 8498 Baldwin Bypass Apt. 995 Zacharymouth, NE 79246", + "label": "header:seller" + }, + { + "rect": { + "x1": 1246, + "y1": 757, + "x2": 1919, + "y2": 919 + }, + "value": "Mitchell, Hill and Strickland 301 Jennifer Crossing Suite 311 Crystalland, ND 67903", + "label": "header:client" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1331, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1331, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 368, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "978-83-5677", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "966-72-6194", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 342, + "y1": 1026, + "x2": 945, + "y2": 1074 + }, + "value": "GB97DXYE25395395425116910", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 228, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1018, + "y1": 1265, + "x2": 1095, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1394, + "x2": 893, + "y2": 1482 + }, + "value": "FashionNova \"Forecasting You\" MAXI DRESS TAUPE SZ M", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1095, + "y2": 1449 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1394, + "x2": 1239, + "y2": 1438 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1397, + "x2": 1529, + "y2": 1438 + }, + "value": "25,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1661, + "y1": 1397, + "x2": 1779, + "y2": 1438 + }, + "value": "125,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1394, + "x2": 2000, + "y2": 1438 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1397, + "x2": 2253, + "y2": 1438 + }, + "value": "137,50", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1530, + "x2": 889, + "y2": 1658 + }, + "value": "Leopard Print Large Dress With Pockets & Floral Sleeves HoneyMe Size L NWT", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1530, + "x2": 1095, + "y2": 1570 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1522, + "x2": 1246, + "y2": 1574 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1269, + "x2": 1426, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2000, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2253, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1305, + "x2": 2253, + "y2": 1346 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1530, + "x2": 1529, + "y2": 1570 + }, + "value": "39,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1661, + "y1": 1530, + "x2": 1779, + "y2": 1570 + }, + "value": "156,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1522, + "x2": 2000, + "y2": 1574 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1530, + "x2": 2253, + "y2": 1570 + }, + "value": "171,60", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 250, + "y1": 1394, + "x2": 290, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1522, + "x2": 290, + "y2": 1570 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 198, + "y1": 1750, + "x2": 493, + "y2": 1802 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 1879, + "x2": 1051, + "y2": 1919 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1048, + "y1": 1875, + "x2": 1121, + "y2": 1931 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1964, + "x2": 1081, + "y2": 2011 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1386, + "y1": 1875, + "x2": 1474, + "y2": 1927 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 1879, + "x2": 1584, + "y2": 1919 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1463, + "y1": 1971, + "x2": 1584, + "y2": 2011 + }, + "value": "281,00", + "label": "" + }, + { + "rect": { + "x1": 1415, + "y1": 2052, + "x2": 1584, + "y2": 2103 + }, + "value": "$ 281,00", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1879, + "x2": 1871, + "y2": 1919 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 1971, + "x2": 1867, + "y2": 2011 + }, + "value": "28,10", + "label": "" + }, + { + "rect": { + "x1": 1713, + "y1": 2044, + "x2": 1871, + "y2": 2114 + }, + "value": "$28,10", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 1879, + "x2": 2139, + "y2": 1919 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1879, + "x2": 2260, + "y2": 1919 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1971, + "x2": 2260, + "y2": 2011 + }, + "value": "309,10", + "label": "" + }, + { + "rect": { + "x1": 2084, + "y1": 2052, + "x2": 2257, + "y2": 2103 + }, + "value": "$ 309,10", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2052, + "x2": 856, + "y2": 2096 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_135.json b/docs/json/invoice_135.json new file mode 100644 index 0000000000000000000000000000000000000000..f3388667b9f3b63f800220fa5b994fc43de1f229 --- /dev/null +++ b/docs/json/invoice_135.json @@ -0,0 +1,813 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 41, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 114, + "x2": 515, + "y2": 165 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "24344887", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 198, + "y1": 210, + "x2": 316, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 316, + "y1": 210, + "x2": 382, + "y2": 265 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 382, + "y1": 210, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 213, + "x2": 1474, + "y2": 265 + }, + "value": "02/20/2020", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 386, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 757, + "x2": 746, + "y2": 919 + }, + "value": "Cook Group 2562 Christie Freeway New Kimberly, WV 35092", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 761, + "x2": 1724, + "y2": 916 + }, + "value": "Mercado-Nelson 53379 Kenneth Prairie Andreside, AL 50687", + "label": "header:client" + }, + { + "rect": { + "x1": 368, + "y1": 978, + "x2": 640, + "y2": 1019 + }, + "value": "909-87-7832", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "951-75-2882", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1026, + "x2": 919, + "y2": 1074 + }, + "value": "GB54XIPK87973282182425", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 228, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1394, + "x2": 290, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1394, + "x2": 823, + "y2": 1522 + }, + "value": "Endurance : Shackleton's Incredible Voyage by Alfred Lansing", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 250, + "y1": 1566, + "x2": 298, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1390, + "x2": 1095, + "y2": 1445 + }, + "value": "4,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1444, + "y1": 1390, + "x2": 1529, + "y2": 1445 + }, + "value": "4,09", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1401, + "x2": 1783, + "y2": 1438 + }, + "value": "16,36", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1394, + "x2": 2000, + "y2": 1438 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1394, + "x2": 2253, + "y2": 1438 + }, + "value": "18,00", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1566, + "x2": 882, + "y2": 1699 + }, + "value": "The Wim Hof Method Activate Your Potential, Transcend Your Limits00D", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 250, + "y1": 1739, + "x2": 290, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 1563, + "x2": 1095, + "y2": 1622 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1444, + "y1": 1563, + "x2": 1529, + "y2": 1622 + }, + "value": "4,22", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1702, + "y1": 1563, + "x2": 1783, + "y2": 1622 + }, + "value": "4,22", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2000, + "y2": 1614 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2169, + "y1": 1570, + "x2": 2253, + "y2": 1614 + }, + "value": "4,64", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1739, + "x2": 816, + "y2": 1794 + }, + "value": "B0028NA06C Shoeless Joe", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 250, + "y1": 1831, + "x2": 290, + "y2": 1879 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1739, + "x2": 1095, + "y2": 1791 + }, + "value": "4,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1444, + "y1": 1739, + "x2": 1529, + "y2": 1791 + }, + "value": "3,49", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1739, + "x2": 1779, + "y2": 1783 + }, + "value": "13,96", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1739, + "x2": 2000, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1739, + "x2": 2253, + "y2": 1783 + }, + "value": "15,36", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1824, + "x2": 893, + "y2": 1960 + }, + "value": "A History of Christianity Vol. 1 : Beginnings to 1500 by Kenneth S. Latourette", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 198, + "y1": 2052, + "x2": 493, + "y2": 2103 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 669, + "x2": 1422, + "y2": 713 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 967, + "x2": 1331, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1331, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1018, + "y1": 1265, + "x2": 1095, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1394, + "x2": 1239, + "y2": 1438 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1563, + "x2": 1246, + "y2": 1622 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1739, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 1831, + "x2": 1095, + "y2": 1883 + }, + "value": "5,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1831, + "x2": 1239, + "y2": 1875 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1426, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1269, + "x2": 1665, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1272, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2000, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1269, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1346 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1444, + "y1": 1831, + "x2": 1529, + "y2": 1883 + }, + "value": "4,09", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1831, + "x2": 1779, + "y2": 1875 + }, + "value": "20,45", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1831, + "x2": 2000, + "y2": 1875 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1831, + "x2": 2253, + "y2": 1875 + }, + "value": "22,49", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 959, + "y1": 2181, + "x2": 1051, + "y2": 2225 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1048, + "y1": 2177, + "x2": 1121, + "y2": 2232 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 996, + "y1": 2269, + "x2": 1084, + "y2": 2317 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1386, + "y1": 2181, + "x2": 1474, + "y2": 2225 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2181, + "x2": 1584, + "y2": 2225 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1481, + "y1": 2272, + "x2": 1584, + "y2": 2309 + }, + "value": "54,99", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 2350, + "x2": 1588, + "y2": 2412 + }, + "value": "$54,99", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2181, + "x2": 1871, + "y2": 2225 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1783, + "y1": 2272, + "x2": 1867, + "y2": 2309 + }, + "value": "5,50", + "label": "" + }, + { + "rect": { + "x1": 1735, + "y1": 2350, + "x2": 1871, + "y2": 2412 + }, + "value": "$5,50", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2181, + "x2": 2139, + "y2": 2225 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2181, + "x2": 2260, + "y2": 2225 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2161, + "y1": 2272, + "x2": 2260, + "y2": 2309 + }, + "value": "60,49", + "label": "" + }, + { + "rect": { + "x1": 2110, + "y1": 2364, + "x2": 2260, + "y2": 2401 + }, + "value": "$ 60,49", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2364, + "x2": 853, + "y2": 2398 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_136.json b/docs/json/invoice_136.json new file mode 100644 index 0000000000000000000000000000000000000000..a516ad539d5e46ef6b3359aed456c9e4d3526647 --- /dev/null +++ b/docs/json/invoice_136.json @@ -0,0 +1,733 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 42, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 404, + "y2": 165 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 165 + }, + "value": "37292788", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 198, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 382, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 382, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 213, + "x2": 1470, + "y2": 265 + }, + "value": "07/12/2013", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 761, + "x2": 640, + "y2": 919 + }, + "value": "Bennett-Sanchez 279 Stephen Fork Dunnland, AL 07718", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1022 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1022 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 761, + "x2": 1805, + "y2": 919 + }, + "value": "Riley-Miller 812 Jones Mews Suite 921 Salazarmouth, CT 46426", + "label": "header:client" + }, + { + "rect": { + "x1": 364, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "991-70-5110", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "973-73-9497", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 941, + "y2": 1066 + }, + "value": "GB60YH5D00503639265086", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 228, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 584, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 967, + "x2": 1334, + "y2": 1022 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1397, + "y2": 1022 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1011, + "y1": 1265, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1239, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1394, + "x2": 889, + "y2": 1519 + }, + "value": "Chindi Rugs Carpet New Design Bohemian Garden Yoga Mat Indian Kilim Coverlet", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1092, + "y2": 1445 + }, + "value": "3,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1394, + "x2": 1242, + "y2": 1438 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1401, + "x2": 1529, + "y2": 1438 + }, + "value": "29,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1676, + "y1": 1401, + "x2": 1779, + "y2": 1438 + }, + "value": "89,97", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1394, + "x2": 2003, + "y2": 1438 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1394, + "x2": 2253, + "y2": 1438 + }, + "value": "98,97", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1566, + "x2": 889, + "y2": 1695 + }, + "value": "Fluffy Rug Carpet Non Slip Soft Area Rugs Bathroom Room Round Floor Mat Washable", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1566, + "x2": 1092, + "y2": 1614 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1150, + "y1": 1566, + "x2": 1246, + "y2": 1614 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1444, + "y1": 1566, + "x2": 1533, + "y2": 1614 + }, + "value": "8,59", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1702, + "y1": 1574, + "x2": 1783, + "y2": 1614 + }, + "value": "8,59", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2003, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2172, + "y1": 1574, + "x2": 2253, + "y2": 1614 + }, + "value": "9,45", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1739, + "x2": 904, + "y2": 1868 + }, + "value": "Carton Tiger Print Area Rug Faux Skin Rug Hide Cute Carpet Floor Mat Home Decor", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1739, + "x2": 1095, + "y2": 1794 + }, + "value": "1,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1743, + "x2": 1246, + "y2": 1787 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1269, + "x2": 1426, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1269, + "x2": 1661, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1272, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2132, + "y1": 1309, + "x2": 2253, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1743, + "x2": 1529, + "y2": 1787 + }, + "value": "10,99", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1743, + "x2": 1779, + "y2": 1787 + }, + "value": "10,99", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1743, + "x2": 2003, + "y2": 1787 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1743, + "x2": 2253, + "y2": 1787 + }, + "value": "12,09", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1394, + "x2": 298, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1566, + "x2": 298, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1739, + "x2": 298, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 198, + "y1": 1967, + "x2": 493, + "y2": 2019 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 2096, + "x2": 1048, + "y2": 2133 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2085, + "x2": 1121, + "y2": 2140 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 2181, + "x2": 1081, + "y2": 2225 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2081, + "x2": 1478, + "y2": 2136 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2096, + "x2": 1584, + "y2": 2133 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1467, + "y1": 2181, + "x2": 1584, + "y2": 2225 + }, + "value": "109,55", + "label": "" + }, + { + "rect": { + "x1": 1415, + "y1": 2269, + "x2": 1584, + "y2": 2317 + }, + "value": "$ 109,55", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2096, + "x2": 1867, + "y2": 2133 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2181, + "x2": 1867, + "y2": 2225 + }, + "value": "10,96", + "label": "" + }, + { + "rect": { + "x1": 1713, + "y1": 2269, + "x2": 1864, + "y2": 2317 + }, + "value": "$ 10,96", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2096, + "x2": 2139, + "y2": 2133 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 2096, + "x2": 2260, + "y2": 2133 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2181, + "x2": 2260, + "y2": 2225 + }, + "value": "120,51", + "label": "" + }, + { + "rect": { + "x1": 2088, + "y1": 2269, + "x2": 2260, + "y2": 2317 + }, + "value": "$ 120,51", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2269, + "x2": 860, + "y2": 2309 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_137.json b/docs/json/invoice_137.json new file mode 100644 index 0000000000000000000000000000000000000000..fcfdddcb71e6526fecc5487898b335f51a19dfbd --- /dev/null +++ b/docs/json/invoice_137.json @@ -0,0 +1,1063 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 43, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 406, + "y2": 164 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 113, + "x2": 515, + "y2": 172 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 808, + "y2": 164 + }, + "value": "84422507", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 322, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 322, + "y1": 208, + "x2": 384, + "y2": 270 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 384, + "y1": 216, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1473, + "y2": 263 + }, + "value": "12/08/2019", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 756, + "x2": 837, + "y2": 921 + }, + "value": "Shelton Inc 6718 Esparza Bridge Lake Waltermouth, MS 38936", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1885, + "y2": 921 + }, + "value": "Watson, White and Lawrence 5575 Santiago Extension Port Rebeccamouth, MI 17974", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "925-76-2898", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "961-79-5330", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1030, + "x2": 913, + "y2": 1082 + }, + "value": "GB90LFJV64626371402095", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 314, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 968, + "x2": 1337, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1337, + "y1": 968, + "x2": 1396, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1012, + "y1": 1264, + "x2": 1089, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1239, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 351, + "y1": 1392, + "x2": 873, + "y2": 1531 + }, + "value": "HP Windows 10 Pro Desktop Computer Intel QUAD CORE i5 Wifi, Keyboard & Mouse", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1089, + "y2": 1443 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1392, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 1400, + "x2": 1527, + "y2": 1440 + }, + "value": "169,95", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "169,95", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1392, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2134, + "y1": 1400, + "x2": 2251, + "y2": 1440 + }, + "value": "186,95", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1568, + "x2": 873, + "y2": 1696 + }, + "value": "Alarco Gaming PC Desktop Computer Intel i5v 8GV 1Tbv WIN 10v NVIDIA GTX 650 1GB", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1564, + "x2": 1089, + "y2": 1615 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1151, + "y1": 1564, + "x2": 1246, + "y2": 1615 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 1571, + "x2": 1527, + "y2": 1611 + }, + "value": "500,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1571, + "x2": 1779, + "y2": 1611 + }, + "value": "500,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 2002, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2134, + "y1": 1571, + "x2": 2251, + "y2": 1611 + }, + "value": "550,00", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1739, + "x2": 855, + "y2": 1867 + }, + "value": "HP Pro 3500 Microtower Desktop Computer 3.4GHz i3 4GB 500GB Windows 10 Pro", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1739, + "x2": 1093, + "y2": 1794 + }, + "value": "1,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1739, + "x2": 1246, + "y2": 1787 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1739, + "x2": 1527, + "y2": 1787 + }, + "value": "74,99", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1677, + "y1": 1739, + "x2": 1779, + "y2": 1787 + }, + "value": "74,99", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1739, + "x2": 2002, + "y2": 1787 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1739, + "x2": 2251, + "y2": 1787 + }, + "value": "82,49", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1918, + "x2": 873, + "y2": 2087 + }, + "value": "Intel Compute Stick PC (32GB, 1.33GHz, 2GB) - BOXSTCKIA32WFC + Wireless Keyboard", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1915, + "x2": 1093, + "y2": 1962 + }, + "value": "5,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1918, + "x2": 1242, + "y2": 1959 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1918, + "x2": 1527, + "y2": 1959 + }, + "value": "29,99", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1918, + "x2": 1779, + "y2": 1959 + }, + "value": "149,95", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1918, + "x2": 2002, + "y2": 1959 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2134, + "y1": 1918, + "x2": 2251, + "y2": 1959 + }, + "value": "164,94", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 2119, + "x2": 913, + "y2": 2251 + }, + "value": "NEW RGB Quad Core Gaming PC Desktop Computer 4.2 GHz 500 8GB RAM WIN 10 WIFI", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 2127, + "x2": 1089, + "y2": 2171 + }, + "value": "2,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2127, + "x2": 1242, + "y2": 2171 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 2127, + "x2": 1527, + "y2": 2171 + }, + "value": "299,99", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 2127, + "x2": 1779, + "y2": 2171 + }, + "value": "599,98", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 2119, + "x2": 2002, + "y2": 2174 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2134, + "y1": 2127, + "x2": 2251, + "y2": 2171 + }, + "value": "659,98", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 2302, + "x2": 866, + "y2": 2434 + }, + "value": "HP XW9400 AMD Dual Core 2216 2. .6GHz /8GB/250GB/ PC Computer 1 Desktop", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 2298, + "x2": 1093, + "y2": 2353 + }, + "value": "4,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2302, + "x2": 1242, + "y2": 2342 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 2302, + "x2": 1527, + "y2": 2342 + }, + "value": "225,00", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 2302, + "x2": 1779, + "y2": 2342 + }, + "value": "900,00", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2302, + "x2": 2002, + "y2": 2342 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 2302, + "x2": 2251, + "y2": 2342 + }, + "value": "990,00", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 2474, + "x2": 811, + "y2": 2562 + }, + "value": "Alienware Area 51 Gaming Desktop Computer", + "label": "items_row7:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 2467, + "x2": 1089, + "y2": 2521 + }, + "value": "4,00", + "label": "items_row7:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2474, + "x2": 1242, + "y2": 2518 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1663, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1268, + "x2": 2251, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1308, + "x2": 2251, + "y2": 1352 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 2478, + "x2": 1527, + "y2": 2518 + }, + "value": "600,00", + "label": "items_row7:item_net_price" + }, + { + "rect": { + "x1": 1622, + "y1": 2467, + "x2": 1779, + "y2": 2521 + }, + "value": "2 400,00", + "label": "items_row7:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2474, + "x2": 2002, + "y2": 2518 + }, + "value": "10%", + "label": "items_row7:item_vat" + }, + { + "rect": { + "x1": 2094, + "y1": 2467, + "x2": 2251, + "y2": 2521 + }, + "value": "2 640,00", + "label": "items_row7:item_gross_worth" + }, + { + "rect": { + "x1": 245, + "y1": 1392, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 245, + "y1": 1568, + "x2": 296, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 245, + "y1": 1739, + "x2": 296, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 245, + "y1": 1915, + "x2": 296, + "y2": 1959 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 245, + "y1": 2127, + "x2": 296, + "y2": 2174 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 245, + "y1": 2298, + "x2": 296, + "y2": 2342 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 245, + "y1": 2467, + "x2": 296, + "y2": 2521 + }, + "value": "7.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 2649, + "x2": 493, + "y2": 2700 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2781, + "x2": 1049, + "y2": 2825 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1041, + "y1": 2777, + "x2": 1122, + "y2": 2828 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2869, + "x2": 1082, + "y2": 2909 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1392, + "y1": 2781, + "x2": 1473, + "y2": 2825 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1473, + "y1": 2781, + "x2": 1586, + "y2": 2825 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 2869, + "x2": 1469, + "y2": 2916 + }, + "value": "4", + "label": "" + }, + { + "rect": { + "x1": 1458, + "y1": 2869, + "x2": 1586, + "y2": 2909 + }, + "value": "794,87", + "label": "" + }, + { + "rect": { + "x1": 1378, + "y1": 2956, + "x2": 1586, + "y2": 3007 + }, + "value": "$4794,87", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2781, + "x2": 1867, + "y2": 2825 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1739, + "y1": 2869, + "x2": 1863, + "y2": 2909 + }, + "value": "479,49", + "label": "" + }, + { + "rect": { + "x1": 1692, + "y1": 2956, + "x2": 1863, + "y2": 3007 + }, + "value": "$ 479,49", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2781, + "x2": 2141, + "y2": 2825 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2145, + "y1": 2781, + "x2": 2258, + "y2": 2825 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2094, + "y1": 2861, + "x2": 2265, + "y2": 2923 + }, + "value": "5274,36", + "label": "" + }, + { + "rect": { + "x1": 2053, + "y1": 2956, + "x2": 2258, + "y2": 3007 + }, + "value": "$5274,36", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2960, + "x2": 859, + "y2": 3000 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_138.json b/docs/json/invoice_138.json new file mode 100644 index 0000000000000000000000000000000000000000..171281e413a3fcb43cc38a0dc2197ff3a9e2e008 --- /dev/null +++ b/docs/json/invoice_138.json @@ -0,0 +1,1063 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 44, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 199, + "y1": 108, + "x2": 409, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 116, + "x2": 514, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 528, + "y1": 113, + "x2": 808, + "y2": 162 + }, + "value": "12830936", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 317, + "y1": 208, + "x2": 381, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 212, + "x2": 518, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1203, + "y1": 215, + "x2": 1468, + "y2": 263 + }, + "value": "04/27/2021", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 199, + "y1": 667, + "x2": 383, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 205, + "y1": 756, + "x2": 833, + "y2": 919 + }, + "value": "Johnson LLC 5736 Boyer Square Suite 316 Daniellebury, MI 72789", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 973, + "x2": 296, + "y2": 1024 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 970, + "x2": 359, + "y2": 1024 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1247, + "y1": 756, + "x2": 1845, + "y2": 923 + }, + "value": "Smith, Anderson and Ward 4365 Osborn Shoals North Bradleyton, NC 21207", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 973, + "x2": 640, + "y2": 1021 + }, + "value": "980-77-0423", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1031, + "x2": 330, + "y2": 1073 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1405, + "y1": 973, + "x2": 1680, + "y2": 1021 + }, + "value": "914-78-1124", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 339, + "y1": 1028, + "x2": 955, + "y2": 1076 + }, + "value": "GB30QDVO20178698471358", + "label": "header:iban" + }, + { + "rect": { + "x1": 199, + "y1": 1141, + "x2": 376, + "y2": 1192 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 233, + "y1": 1264, + "x2": 312, + "y2": 1315 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 355, + "y1": 1267, + "x2": 581, + "y2": 1315 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1237, + "y1": 664, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1245, + "y1": 973, + "x2": 1336, + "y2": 1024 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 970, + "x2": 1399, + "y2": 1024 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1264, + "x2": 1097, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1267, + "x2": 1236, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 359, + "y1": 1398, + "x2": 900, + "y2": 1522 + }, + "value": "FAST Dell Windows 10 Desktop Computer Core 2 Duo 4GB Ram 250GB DVD WiFi 22\" LCD", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1006, + "y1": 1394, + "x2": 1094, + "y2": 1446 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1398, + "x2": 1244, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1405, + "y1": 1401, + "x2": 1526, + "y2": 1440 + }, + "value": "169,95", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1401, + "x2": 1782, + "y2": 1440 + }, + "value": "169,95", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1917, + "y1": 1398, + "x2": 2001, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1401, + "x2": 2253, + "y2": 1440 + }, + "value": "186,95", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 359, + "y1": 1569, + "x2": 879, + "y2": 1700 + }, + "value": "Desktop Computer Gaming PC Build Your Own Ryzen 3000G 3200G 3.5Ghz+ Vega or GTX", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1006, + "y1": 1566, + "x2": 1094, + "y2": 1617 + }, + "value": "5,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1153, + "y1": 1566, + "x2": 1245, + "y2": 1617 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1405, + "y1": 1572, + "x2": 1526, + "y2": 1614 + }, + "value": "579,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1618, + "y1": 1558, + "x2": 1786, + "y2": 1621 + }, + "value": "2895,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1917, + "y1": 1569, + "x2": 2001, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 1566, + "x2": 2253, + "y2": 1614 + }, + "value": "3 184,50", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 355, + "y1": 1743, + "x2": 901, + "y2": 1908 + }, + "value": "HP ProDesk G1 Desktop Computer Core i3 3.4GHz 8GB 500GB HD 19\" LCD Windows 10 PC", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1006, + "y1": 1740, + "x2": 1097, + "y2": 1792 + }, + "value": "1,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1405, + "y1": 1743, + "x2": 1526, + "y2": 1786 + }, + "value": "119,95", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1743, + "x2": 1782, + "y2": 1786 + }, + "value": "119,95", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1917, + "y1": 1743, + "x2": 2001, + "y2": 1786 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1743, + "x2": 2253, + "y2": 1786 + }, + "value": "131,95", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 355, + "y1": 1952, + "x2": 829, + "y2": 2128 + }, + "value": "AMD Dual Core 3.9Ghz 4GB DDR3 500GB HDD WiFi Windows 10 Desktop PC Computer", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1155, + "y1": 1743, + "x2": 1245, + "y2": 1786 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1005, + "y1": 1952, + "x2": 1097, + "y2": 2005 + }, + "value": "2,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1153, + "y1": 1952, + "x2": 1245, + "y2": 2005 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1402, + "y1": 1958, + "x2": 1530, + "y2": 2000 + }, + "value": "259,99", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1657, + "y1": 1958, + "x2": 1782, + "y2": 2000 + }, + "value": "519,98", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1916, + "y1": 1952, + "x2": 2005, + "y2": 2005 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2129, + "y1": 1958, + "x2": 2253, + "y2": 2000 + }, + "value": "571,98", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 360, + "y1": 2175, + "x2": 682, + "y2": 2217 + }, + "value": "personal computer", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1006, + "y1": 2172, + "x2": 1090, + "y2": 2214 + }, + "value": "4,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2172, + "x2": 1244, + "y2": 2214 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 2172, + "x2": 1530, + "y2": 2214 + }, + "value": "59,00", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1657, + "y1": 2172, + "x2": 1782, + "y2": 2214 + }, + "value": "236,00", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1916, + "y1": 2165, + "x2": 2005, + "y2": 2217 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 2172, + "x2": 2253, + "y2": 2214 + }, + "value": "259,60", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 359, + "y1": 2257, + "x2": 824, + "y2": 2345 + }, + "value": "desktop computers gaming build from scratch", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1006, + "y1": 2261, + "x2": 1090, + "y2": 2303 + }, + "value": "2,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2261, + "x2": 1244, + "y2": 2303 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1405, + "y1": 2261, + "x2": 1530, + "y2": 2303 + }, + "value": "188,00", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 2261, + "x2": 1782, + "y2": 2303 + }, + "value": "376,00", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1916, + "y1": 2254, + "x2": 2005, + "y2": 2306 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2129, + "y1": 2261, + "x2": 2253, + "y2": 2303 + }, + "value": "413,60", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 355, + "y1": 2387, + "x2": 875, + "y2": 2522 + }, + "value": "Gaming PC Desktop Computer Intel i7 RGB, GTX 1660, 16GB RAM, 2TB HDD, 480GB SSD", + "label": "items_row7:item_desc" + }, + { + "rect": { + "x1": 1006, + "y1": 2387, + "x2": 1094, + "y2": 2440 + }, + "value": "2,00", + "label": "items_row7:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2391, + "x2": 1244, + "y2": 2433 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1344, + "y1": 1264, + "x2": 1428, + "y2": 1315 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1270, + "x2": 1530, + "y2": 1314 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1267, + "x2": 1665, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1664, + "y1": 1270, + "x2": 1782, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1267, + "x2": 1929, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1925, + "y1": 1264, + "x2": 2001, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1267, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1307, + "x2": 2253, + "y2": 1349 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1405, + "y1": 2391, + "x2": 1526, + "y2": 2433 + }, + "value": "809,99", + "label": "items_row7:item_net_price" + }, + { + "rect": { + "x1": 1620, + "y1": 2380, + "x2": 1786, + "y2": 2443 + }, + "value": "1619,98", + "label": "items_row7:item_net_worth" + }, + { + "rect": { + "x1": 1916, + "y1": 2383, + "x2": 2005, + "y2": 2437 + }, + "value": "10%", + "label": "items_row7:item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 2387, + "x2": 2253, + "y2": 2437 + }, + "value": "1 781,98", + "label": "items_row7:item_gross_worth" + }, + { + "rect": { + "x1": 249, + "y1": 1398, + "x2": 294, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 249, + "y1": 1569, + "x2": 296, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 249, + "y1": 1740, + "x2": 294, + "y2": 1789 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 249, + "y1": 1952, + "x2": 294, + "y2": 2000 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 249, + "y1": 2168, + "x2": 294, + "y2": 2217 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 249, + "y1": 2257, + "x2": 294, + "y2": 2306 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 249, + "y1": 2387, + "x2": 294, + "y2": 2437 + }, + "value": "7.", + "label": "" + }, + { + "rect": { + "x1": 200, + "y1": 2613, + "x2": 494, + "y2": 2661 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 2740, + "x2": 1047, + "y2": 2782 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1043, + "y1": 2732, + "x2": 1123, + "y2": 2789 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2821, + "x2": 1084, + "y2": 2875 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1387, + "y1": 2732, + "x2": 1475, + "y2": 2786 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1468, + "y1": 2740, + "x2": 1588, + "y2": 2779 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 2826, + "x2": 1468, + "y2": 2875 + }, + "value": "5", + "label": "" + }, + { + "rect": { + "x1": 1454, + "y1": 2829, + "x2": 1588, + "y2": 2871 + }, + "value": "936,86", + "label": "" + }, + { + "rect": { + "x1": 1378, + "y1": 2912, + "x2": 1589, + "y2": 2963 + }, + "value": "$5936,86", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1780, + "y1": 2740, + "x2": 1869, + "y2": 2782 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1741, + "y1": 2829, + "x2": 1864, + "y2": 2871 + }, + "value": "593,69", + "label": "" + }, + { + "rect": { + "x1": 1691, + "y1": 2915, + "x2": 1864, + "y2": 2963 + }, + "value": "$ 593,69", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2026, + "y1": 2740, + "x2": 2140, + "y2": 2782 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2142, + "y1": 2740, + "x2": 2261, + "y2": 2782 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2098, + "y1": 2820, + "x2": 2263, + "y2": 2883 + }, + "value": "6530,55", + "label": "" + }, + { + "rect": { + "x1": 2051, + "y1": 2912, + "x2": 2261, + "y2": 2963 + }, + "value": "$6530,55", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 748, + "y1": 2918, + "x2": 856, + "y2": 2957 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_139.json b/docs/json/invoice_139.json new file mode 100644 index 0000000000000000000000000000000000000000..464045647f0476af6a65daeccf36fd7914a50d74 --- /dev/null +++ b/docs/json/invoice_139.json @@ -0,0 +1,893 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 45, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 195, + "y1": 107, + "x2": 408, + "y2": 165 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 419, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 805, + "y2": 165 + }, + "value": "68043569", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 206, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 206, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 213, + "x2": 1467, + "y2": 265 + }, + "value": "09/09/2011", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 195, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 206, + "y1": 754, + "x2": 746, + "y2": 923 + }, + "value": "Schultz, Lopez and Smith 789 Ramirez Row Jeffreybury, SC 21462", + "label": "header:seller" + }, + { + "rect": { + "x1": 202, + "y1": 974, + "x2": 294, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 294, + "y1": 971, + "x2": 360, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 757, + "x2": 1797, + "y2": 919 + }, + "value": "David-Rhodes 306 Valdez Run Edwardsmouth, DC 53145", + "label": "header:client" + }, + { + "rect": { + "x1": 371, + "y1": 982, + "x2": 636, + "y2": 1019 + }, + "value": "958-76-9947", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 974, + "x2": 1683, + "y2": 1019 + }, + "value": "960-87-0985", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 952, + "y2": 1066 + }, + "value": "GB94RSWA52694096609663", + "label": "header:iban" + }, + { + "rect": { + "x1": 195, + "y1": 1136, + "x2": 379, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1313 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1269, + "x2": 584, + "y2": 1313 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 974, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 971, + "x2": 1397, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1095, + "y2": 1316 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1239, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1394, + "x2": 875, + "y2": 1530 + }, + "value": "10\" Cuphead Game Soft Plush Doll Cuphead Mugman Mecup Brocup kids Gift US Stock", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1394, + "x2": 1095, + "y2": 1449 + }, + "value": "4,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1397, + "x2": 1529, + "y2": 1441 + }, + "value": "26,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1397, + "x2": 1779, + "y2": 1441 + }, + "value": "107,96", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1397, + "x2": 2257, + "y2": 1441 + }, + "value": "118,76", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 360, + "y1": 1574, + "x2": 860, + "y2": 1703 + }, + "value": "Sketchers Energy Lights Boys Black Canvas Size 4 With Charging Cable", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1011, + "y1": 1574, + "x2": 1092, + "y2": 1611 + }, + "value": "3,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1150, + "y1": 1566, + "x2": 1246, + "y2": 1618 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1574, + "x2": 1529, + "y2": 1611 + }, + "value": "12,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1574, + "x2": 1783, + "y2": 1611 + }, + "value": "36,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1570, + "x2": 2003, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1574, + "x2": 2257, + "y2": 1611 + }, + "value": "39,60", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 360, + "y1": 1743, + "x2": 776, + "y2": 1864 + }, + "value": "Boys Kids Printed Cotton Slippers Zip Fastening 350172494", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1739, + "x2": 1095, + "y2": 1794 + }, + "value": "1,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1743, + "x2": 1246, + "y2": 1787 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1743, + "x2": 1529, + "y2": 1787 + }, + "value": "19,68", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1683, + "y1": 1743, + "x2": 1779, + "y2": 1787 + }, + "value": "19,68", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1743, + "x2": 2003, + "y2": 1787 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1743, + "x2": 2257, + "y2": 1787 + }, + "value": "21,65", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1912, + "x2": 805, + "y2": 1964 + }, + "value": "6 Pairs Of Jordan's Size 7y", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1912, + "x2": 1095, + "y2": 1960 + }, + "value": "5,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1912, + "x2": 1242, + "y2": 1956 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 1916, + "x2": 1529, + "y2": 1956 + }, + "value": "130,00", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1916, + "x2": 1779, + "y2": 1956 + }, + "value": "650,00", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1912, + "x2": 2003, + "y2": 1956 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1912, + "x2": 2257, + "y2": 1956 + }, + "value": "715,00", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 2004, + "x2": 875, + "y2": 2133 + }, + "value": "Durango Lill Little Kid Western Casual Western Purple Boys - Size 2 M", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 2000, + "x2": 1095, + "y2": 2056 + }, + "value": "1,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2004, + "x2": 1246, + "y2": 2048 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1269, + "x2": 1426, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1665, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1316 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2257, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1305, + "x2": 2257, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 2004, + "x2": 1529, + "y2": 2048 + }, + "value": "68,00", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 2004, + "x2": 1779, + "y2": 2048 + }, + "value": "68,00", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2004, + "x2": 2003, + "y2": 2048 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 2004, + "x2": 2257, + "y2": 2048 + }, + "value": "74,80", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 294, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1570, + "x2": 294, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1739, + "x2": 294, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1912, + "x2": 294, + "y2": 1956 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 2000, + "x2": 294, + "y2": 2052 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 195, + "y1": 2225, + "x2": 493, + "y2": 2272 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 2353, + "x2": 1048, + "y2": 2398 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2350, + "x2": 1121, + "y2": 2405 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 2442, + "x2": 1081, + "y2": 2482 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2353, + "x2": 1470, + "y2": 2398 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2353, + "x2": 1588, + "y2": 2398 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1463, + "y1": 2442, + "x2": 1588, + "y2": 2482 + }, + "value": "881,64", + "label": "" + }, + { + "rect": { + "x1": 1411, + "y1": 2530, + "x2": 1588, + "y2": 2574 + }, + "value": "$ 881,64", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2353, + "x2": 1867, + "y2": 2398 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2442, + "x2": 1867, + "y2": 2482 + }, + "value": "88,16", + "label": "" + }, + { + "rect": { + "x1": 1713, + "y1": 2526, + "x2": 1867, + "y2": 2578 + }, + "value": "$88,16", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2022, + "y1": 2353, + "x2": 2139, + "y2": 2398 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 2353, + "x2": 2260, + "y2": 2398 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 2442, + "x2": 2260, + "y2": 2482 + }, + "value": "969,80", + "label": "" + }, + { + "rect": { + "x1": 2088, + "y1": 2526, + "x2": 2260, + "y2": 2574 + }, + "value": "$ 969,80", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2530, + "x2": 856, + "y2": 2570 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_14.json b/docs/json/invoice_14.json new file mode 100644 index 0000000000000000000000000000000000000000..5c539cb820442215ebcfe25932c4c771be08d0aa --- /dev/null +++ b/docs/json/invoice_14.json @@ -0,0 +1,573 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 46, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 406, + "y2": 164 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 113, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 808, + "y2": 164 + }, + "value": "62517865", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 216, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 216, + "x2": 1469, + "y2": 263 + }, + "value": "06/02/2015", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 205, + "y1": 760, + "x2": 745, + "y2": 917 + }, + "value": "Trujillo-Hunt 430 Mark Ferry Suite 495 Maxside, DC 65686", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1695, + "y2": 921 + }, + "value": "Lee and Sons 8552 Karen Islands East Roger, ID 40416", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "992-71-8540", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 329, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "929-86-0601", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1027, + "x2": 946, + "y2": 1074 + }, + "value": "GB73HCPH34959888432899", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1392, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1392, + "x2": 808, + "y2": 1443 + }, + "value": "Care & Repair of Furniture", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 968, + "x2": 1334, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1396, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1012, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1239, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1093, + "y2": 1447 + }, + "value": "2,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1663, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1308, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1392, + "x2": 1531, + "y2": 1447 + }, + "value": "4,25", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1699, + "y1": 1392, + "x2": 1787, + "y2": 1447 + }, + "value": "8,50", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2170, + "y1": 1392, + "x2": 2258, + "y2": 1447 + }, + "value": "9,35", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 197, + "y1": 1538, + "x2": 493, + "y2": 1586 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 1663, + "x2": 1049, + "y2": 1706 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1049, + "y1": 1663, + "x2": 1122, + "y2": 1714 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 1758, + "x2": 1082, + "y2": 1794 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 1663, + "x2": 1469, + "y2": 1706 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 1663, + "x2": 1586, + "y2": 1706 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1502, + "y1": 1750, + "x2": 1589, + "y2": 1802 + }, + "value": "8,50", + "label": "" + }, + { + "rect": { + "x1": 1462, + "y1": 1842, + "x2": 1586, + "y2": 1889 + }, + "value": "$ 8,50", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1663, + "x2": 1867, + "y2": 1706 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1783, + "y1": 1758, + "x2": 1863, + "y2": 1794 + }, + "value": "0,85", + "label": "" + }, + { + "rect": { + "x1": 1736, + "y1": 1842, + "x2": 1867, + "y2": 1889 + }, + "value": "$0,85", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 1663, + "x2": 2138, + "y2": 1706 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1663, + "x2": 2262, + "y2": 1706 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2178, + "y1": 1750, + "x2": 2265, + "y2": 1802 + }, + "value": "9,35", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1842, + "x2": 2262, + "y2": 1889 + }, + "value": "$9,35", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 1845, + "x2": 859, + "y2": 1886 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_140.json b/docs/json/invoice_140.json new file mode 100644 index 0000000000000000000000000000000000000000..511ecdfd450722e9326e044e3b5bd4a1edb04bb0 --- /dev/null +++ b/docs/json/invoice_140.json @@ -0,0 +1,973 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 47, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 194, + "y1": 106, + "x2": 409, + "y2": 164 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 804, + "y2": 164 + }, + "value": "32656405", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 205, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 205, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 212, + "x2": 515, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 212, + "x2": 1469, + "y2": 263 + }, + "value": "10/25/2013", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 194, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 753, + "x2": 786, + "y2": 917 + }, + "value": "Mcdonald and Sons 66687 Lori Common West Cindyshire, CO 65813", + "label": "header:seller" + }, + { + "rect": { + "x1": 201, + "y1": 976, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 362, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 753, + "x2": 1816, + "y2": 921 + }, + "value": "James, Johnson and Adkins 0809 Paul Course Apt. 768 Hornbury, CT 89077", + "label": "header:client" + }, + { + "rect": { + "x1": 369, + "y1": 979, + "x2": 636, + "y2": 1020 + }, + "value": "991-86-2003", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 329, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 976, + "x2": 1684, + "y2": 1020 + }, + "value": "931-98-1810", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 343, + "y1": 1030, + "x2": 917, + "y2": 1067 + }, + "value": "GB32NFY133796812641240", + "label": "header:iban" + }, + { + "rect": { + "x1": 194, + "y1": 1136, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1312 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 585, + "y2": 1312 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 968, + "x2": 1337, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1337, + "y1": 968, + "x2": 1396, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1096, + "y2": 1316 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1239, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1392, + "x2": 903, + "y2": 1491 + }, + "value": "Toddler Kids Monster Jam Shoes Size 11c Grave Digger", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1089, + "y2": 1447 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1392, + "x2": 1531, + "y2": 1447 + }, + "value": "9,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1699, + "y1": 1392, + "x2": 1787, + "y2": 1447 + }, + "value": "9,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2006, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2170, + "y1": 1392, + "x2": 2262, + "y2": 1447 + }, + "value": "9,90", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1527, + "x2": 892, + "y2": 1659 + }, + "value": "PUMA Pre-School Scuderia Ferrari Drift Cat 5 Ultra II Shoes Boys 12c", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1012, + "y1": 1535, + "x2": 1089, + "y2": 1575 + }, + "value": "5,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1151, + "y1": 1527, + "x2": 1246, + "y2": 1579 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1535, + "x2": 1527, + "y2": 1575 + }, + "value": "21,22", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1535, + "x2": 1779, + "y2": 1575 + }, + "value": "106,10", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1527, + "x2": 2006, + "y2": 1579 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1535, + "x2": 2251, + "y2": 1575 + }, + "value": "116,71", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 362, + "y1": 1696, + "x2": 862, + "y2": 1831 + }, + "value": "Newborn Infant Baby Girl Boy Kid Winter Warm Coat Knit Outwear Hooded Jumpsuit", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1699, + "x2": 1089, + "y2": 1747 + }, + "value": "4,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1699, + "x2": 1242, + "y2": 1747 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1699, + "x2": 1527, + "y2": 1747 + }, + "value": "22,69", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1684, + "y1": 1699, + "x2": 1783, + "y2": 1747 + }, + "value": "90,76", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1696, + "x2": 2006, + "y2": 1750 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1699, + "x2": 2254, + "y2": 1747 + }, + "value": "99,84", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1871, + "x2": 906, + "y2": 1955 + }, + "value": "Nike Kids KD Trey 5 / Nike Black Size 4.5aY", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1871, + "x2": 1089, + "y2": 1915 + }, + "value": "3,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1871, + "x2": 1242, + "y2": 1915 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1871, + "x2": 1527, + "y2": 1915 + }, + "value": "22,00", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1871, + "x2": 1779, + "y2": 1915 + }, + "value": "66,00", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1871, + "x2": 2006, + "y2": 1915 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1871, + "x2": 2254, + "y2": 1915 + }, + "value": "72,60", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 362, + "y1": 1999, + "x2": 822, + "y2": 2050 + }, + "value": "Skechers Shoes Kids Size 2", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1999, + "x2": 1096, + "y2": 2054 + }, + "value": "3,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2002, + "x2": 1246, + "y2": 2046 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 2002, + "x2": 1527, + "y2": 2046 + }, + "value": "10,00", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 2006, + "x2": 1783, + "y2": 2046 + }, + "value": "30,00", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2002, + "x2": 2006, + "y2": 2046 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 2002, + "x2": 2254, + "y2": 2046 + }, + "value": "33,00", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 2087, + "x2": 906, + "y2": 2218 + }, + "value": "Nautica Kids Boys Navy & Red with White Rubber Sole Running Sneakers Shoes US 10", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 2087, + "x2": 1096, + "y2": 2141 + }, + "value": "1,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2094, + "x2": 1242, + "y2": 2138 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1348, + "y1": 1264, + "x2": 1425, + "y2": 1312 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1666, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1666, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2006, + "y2": 1316 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2254, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1305, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 2094, + "x2": 1527, + "y2": 2138 + }, + "value": "500,00", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 2094, + "x2": 1779, + "y2": 2138 + }, + "value": "500,00", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2094, + "x2": 2006, + "y2": 2138 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2127, + "y1": 2094, + "x2": 2254, + "y2": 2138 + }, + "value": "550,00", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1527, + "x2": 296, + "y2": 1575 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1696, + "x2": 296, + "y2": 1750 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1871, + "x2": 296, + "y2": 1918 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1999, + "x2": 296, + "y2": 2050 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2087, + "x2": 296, + "y2": 2141 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 194, + "y1": 2317, + "x2": 493, + "y2": 2364 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 961, + "y1": 2441, + "x2": 1049, + "y2": 2481 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2441, + "x2": 1122, + "y2": 2488 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2532, + "x2": 1078, + "y2": 2573 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1392, + "y1": 2441, + "x2": 1469, + "y2": 2481 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1465, + "y1": 2441, + "x2": 1586, + "y2": 2481 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1462, + "y1": 2532, + "x2": 1586, + "y2": 2573 + }, + "value": "801,86", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 2609, + "x2": 1593, + "y2": 2675 + }, + "value": "$801,86", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2441, + "x2": 1867, + "y2": 2481 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2532, + "x2": 1867, + "y2": 2573 + }, + "value": "80,19", + "label": "" + }, + { + "rect": { + "x1": 1714, + "y1": 2609, + "x2": 1867, + "y2": 2679 + }, + "value": "$80,19", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2021, + "y1": 2441, + "x2": 2138, + "y2": 2481 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2145, + "y1": 2441, + "x2": 2262, + "y2": 2481 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 2532, + "x2": 2262, + "y2": 2573 + }, + "value": "882,05", + "label": "" + }, + { + "rect": { + "x1": 2090, + "y1": 2620, + "x2": 2262, + "y2": 2660 + }, + "value": "$ 882,05", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2620, + "x2": 851, + "y2": 2660 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_141.json b/docs/json/invoice_141.json new file mode 100644 index 0000000000000000000000000000000000000000..edfaa8a681a6e6cc3e8c7a6c5ec09f418be45cdc --- /dev/null +++ b/docs/json/invoice_141.json @@ -0,0 +1,733 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 48, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 195, + "y1": 107, + "x2": 408, + "y2": 165 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 805, + "y2": 165 + }, + "value": "80150256", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 206, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 206, + "x2": 382, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 382, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 213, + "x2": 1467, + "y2": 265 + }, + "value": "07/24/2017", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 195, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 202, + "y1": 754, + "x2": 878, + "y2": 919 + }, + "value": "Jenkins, Green and Strickland 74549 Delgado Court Suite 000 South Melanieton, VA 36822", + "label": "header:seller" + }, + { + "rect": { + "x1": 1246, + "y1": 754, + "x2": 1875, + "y2": 919 + }, + "value": "Perkins PLC 67729 Palmer Creek Apt. 286 Lake Karen, NM 55829", + "label": "header:client" + }, + { + "rect": { + "x1": 1242, + "y1": 971, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 971, + "x2": 1397, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 368, + "y1": 974, + "x2": 640, + "y2": 1019 + }, + "value": "907-73-8970", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 1408, + "y1": 974, + "x2": 1683, + "y2": 1019 + }, + "value": "970-76-7515", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 202, + "y1": 974, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 971, + "x2": 360, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 923, + "y2": 1081 + }, + "value": "GB70TBB52427765625418", + "label": "header:iban" + }, + { + "rect": { + "x1": 195, + "y1": 1140, + "x2": 379, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1313 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1269, + "x2": 584, + "y2": 1313 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 298, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1397, + "x2": 805, + "y2": 1482 + }, + "value": "The Heretic's Daughter by Kathleen Kent", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1526, + "x2": 298, + "y2": 1574 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 1394, + "x2": 1095, + "y2": 1449 + }, + "value": "4,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1444, + "y1": 1394, + "x2": 1533, + "y2": 1449 + }, + "value": "3,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1683, + "y1": 1397, + "x2": 1783, + "y2": 1438 + }, + "value": "15,96", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1438 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1397, + "x2": 2257, + "y2": 1438 + }, + "value": "17,56", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1526, + "x2": 871, + "y2": 1658 + }, + "value": "How to Get an Asian Girlfriend by Derek Strong (English) Paperback Book Free Shi", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1695, + "x2": 298, + "y2": 1750 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 1011, + "y1": 1533, + "x2": 1092, + "y2": 1574 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1426, + "y1": 1533, + "x2": 1529, + "y2": 1574 + }, + "value": "15,44", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1683, + "y1": 1533, + "x2": 1783, + "y2": 1574 + }, + "value": "15,44", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1526, + "x2": 2003, + "y2": 1577 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1533, + "x2": 2257, + "y2": 1574 + }, + "value": "16,98", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1695, + "x2": 897, + "y2": 1750 + }, + "value": "Jesus (Hardback or Cased Book)", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1316 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1239, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1242, + "y2": 1438 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1150, + "y1": 1526, + "x2": 1246, + "y2": 1577 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1011, + "y1": 1703, + "x2": 1092, + "y2": 1747 + }, + "value": "2,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1703, + "x2": 1242, + "y2": 1747 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1426, + "y2": 1313 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1665, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1316 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2257, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1305, + "x2": 2257, + "y2": 1346 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1703, + "x2": 1529, + "y2": 1747 + }, + "value": "31,96", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1703, + "x2": 1779, + "y2": 1747 + }, + "value": "63,92", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1695, + "x2": 2003, + "y2": 1750 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1703, + "x2": 2257, + "y2": 1747 + }, + "value": "70,31", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 198, + "y1": 1850, + "x2": 489, + "y2": 1883 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 1964, + "x2": 1048, + "y2": 2004 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 1960, + "x2": 1121, + "y2": 2015 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 996, + "y1": 2048, + "x2": 1084, + "y2": 2103 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 1964, + "x2": 1467, + "y2": 2004 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1467, + "y1": 1964, + "x2": 1588, + "y2": 2004 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1485, + "y1": 2056, + "x2": 1588, + "y2": 2100 + }, + "value": "95,32", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 2140, + "x2": 1592, + "y2": 2203 + }, + "value": "$95,32", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1964, + "x2": 1867, + "y2": 2004 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1779, + "y1": 2048, + "x2": 1867, + "y2": 2103 + }, + "value": "9,53", + "label": "" + }, + { + "rect": { + "x1": 1735, + "y1": 2147, + "x2": 1864, + "y2": 2192 + }, + "value": "$9,53", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2022, + "y1": 1964, + "x2": 2139, + "y2": 2004 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 1964, + "x2": 2260, + "y2": 2004 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 2056, + "x2": 2260, + "y2": 2100 + }, + "value": "104,85", + "label": "" + }, + { + "rect": { + "x1": 2088, + "y1": 2147, + "x2": 2260, + "y2": 2195 + }, + "value": "$ 104,85", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2147, + "x2": 856, + "y2": 2184 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_142.json b/docs/json/invoice_142.json new file mode 100644 index 0000000000000000000000000000000000000000..a921d7c166a202da9730a83edb32e9e07619085f --- /dev/null +++ b/docs/json/invoice_142.json @@ -0,0 +1,903 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 49, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 195, + "y1": 107, + "x2": 408, + "y2": 165 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 419, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 805, + "y2": 165 + }, + "value": "80930562", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 206, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 206, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 213, + "x2": 1470, + "y2": 265 + }, + "value": "08/14/2012", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 195, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 206, + "y1": 757, + "x2": 746, + "y2": 919 + }, + "value": "Harvey-Bell 2289 Jacobs Orchard West Amanda, MN 41051", + "label": "header:seller" + }, + { + "rect": { + "x1": 202, + "y1": 974, + "x2": 294, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 294, + "y1": 971, + "x2": 360, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 754, + "x2": 1687, + "y2": 927 + }, + "value": "Vazquez Inc 6424 Terry Cliff New Jacob, RI 57421", + "label": "header:client" + }, + { + "rect": { + "x1": 368, + "y1": 974, + "x2": 640, + "y2": 1019 + }, + "value": "989-76-2310", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 974, + "x2": 1683, + "y2": 1019 + }, + "value": "918-83-5577", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 952, + "y2": 1066 + }, + "value": "GB64HCMB38220199023910", + "label": "header:iban" + }, + { + "rect": { + "x1": 195, + "y1": 1136, + "x2": 379, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1313 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1269, + "x2": 584, + "y2": 1313 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 974, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 971, + "x2": 1397, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1095, + "y2": 1316 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1239, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1397, + "x2": 897, + "y2": 1526 + }, + "value": "SONY Playstation2 Slim Console set \" SCPH-90000 / White \"I TESTED Working 11192", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1394, + "x2": 1092, + "y2": 1449 + }, + "value": "3,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1397, + "x2": 1529, + "y2": 1441 + }, + "value": "90,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1397, + "x2": 1779, + "y2": 1441 + }, + "value": "270,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2128, + "y1": 1397, + "x2": 2257, + "y2": 1441 + }, + "value": "297,00", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1570, + "x2": 889, + "y2": 1658 + }, + "value": "Nintendo 64 N64 Console Black Japan Tested Working NUSHA", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1566, + "x2": 1092, + "y2": 1618 + }, + "value": "5,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1570, + "x2": 1242, + "y2": 1611 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1574, + "x2": 1529, + "y2": 1611 + }, + "value": "49,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1574, + "x2": 1779, + "y2": 1611 + }, + "value": "249,95", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1570, + "x2": 2003, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2128, + "y1": 1574, + "x2": 2257, + "y2": 1611 + }, + "value": "274,95", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1695, + "x2": 827, + "y2": 1868 + }, + "value": "Sony PlayStation 4 500GB Console 8 Games BUNDLE (1)Controller GTAV, METAL GEAR", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1011, + "y1": 1703, + "x2": 1092, + "y2": 1747 + }, + "value": "2,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1703, + "x2": 1242, + "y2": 1747 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1400, + "y1": 1703, + "x2": 1529, + "y2": 1747 + }, + "value": "239,99", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1703, + "x2": 1779, + "y2": 1747 + }, + "value": "479,98", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1695, + "x2": 2003, + "y2": 1750 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1703, + "x2": 2257, + "y2": 1747 + }, + "value": "527,98", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 360, + "y1": 1912, + "x2": 864, + "y2": 2000 + }, + "value": "Sega Saturn Console Gray HST-3200 HST-3210 Japanese", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1912, + "x2": 1095, + "y2": 1960 + }, + "value": "3,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1912, + "x2": 1242, + "y2": 1956 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 1916, + "x2": 1529, + "y2": 1956 + }, + "value": "119,98", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1916, + "x2": 1779, + "y2": 1956 + }, + "value": "359,94", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1912, + "x2": 2003, + "y2": 1956 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1912, + "x2": 2257, + "y2": 1956 + }, + "value": "395,93", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 360, + "y1": 2041, + "x2": 779, + "y2": 2129 + }, + "value": "Nintendo Wii U Console Deluxe/Handheld Bundle", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 2041, + "x2": 1092, + "y2": 2096 + }, + "value": "5,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2044, + "x2": 1246, + "y2": 2089 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1269, + "x2": 1426, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1665, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1316 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2257, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1305, + "x2": 2257, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 2048, + "x2": 1529, + "y2": 2092 + }, + "value": "79,99", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 2048, + "x2": 1779, + "y2": 2089 + }, + "value": "399,95", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2044, + "x2": 2003, + "y2": 2089 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2128, + "y1": 2048, + "x2": 2257, + "y2": 2089 + }, + "value": "439,95", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 294, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1570, + "x2": 294, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1695, + "x2": 294, + "y2": 1750 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1912, + "x2": 294, + "y2": 1956 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 2041, + "x2": 294, + "y2": 2092 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 195, + "y1": 2225, + "x2": 493, + "y2": 2272 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 2353, + "x2": 1048, + "y2": 2398 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2350, + "x2": 1121, + "y2": 2405 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 2442, + "x2": 1081, + "y2": 2482 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2353, + "x2": 1467, + "y2": 2398 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2353, + "x2": 1588, + "y2": 2398 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 2442, + "x2": 1463, + "y2": 2489 + }, + "value": "1", + "label": "" + }, + { + "rect": { + "x1": 1456, + "y1": 2442, + "x2": 1588, + "y2": 2482 + }, + "value": "759,82", + "label": "" + }, + { + "rect": { + "x1": 1378, + "y1": 2523, + "x2": 1588, + "y2": 2578 + }, + "value": "$1 759,82", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2353, + "x2": 1867, + "y2": 2398 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1742, + "y1": 2442, + "x2": 1867, + "y2": 2482 + }, + "value": "175,98", + "label": "" + }, + { + "rect": { + "x1": 1691, + "y1": 2530, + "x2": 1864, + "y2": 2574 + }, + "value": "$ 175,98", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2022, + "y1": 2353, + "x2": 2139, + "y2": 2398 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 2353, + "x2": 2260, + "y2": 2398 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2099, + "y1": 2434, + "x2": 2268, + "y2": 2497 + }, + "value": "1935,80", + "label": "" + }, + { + "rect": { + "x1": 2055, + "y1": 2526, + "x2": 2260, + "y2": 2574 + }, + "value": "$1935,80", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2530, + "x2": 856, + "y2": 2570 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_143.json b/docs/json/invoice_143.json new file mode 100644 index 0000000000000000000000000000000000000000..612d3b0b6c9168a5f68e4f8b5e0cefe13934ee6a --- /dev/null +++ b/docs/json/invoice_143.json @@ -0,0 +1,893 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 50, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 195, + "y1": 107, + "x2": 408, + "y2": 165 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 419, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 805, + "y2": 165 + }, + "value": "26675003", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 206, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 206, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 213, + "x2": 1470, + "y2": 265 + }, + "value": "10/24/2012", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 195, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 206, + "y1": 765, + "x2": 731, + "y2": 919 + }, + "value": "Wright-Lucas 602 Lisa Mews Suite 300 Livingstonton, VT 48889", + "label": "header:seller" + }, + { + "rect": { + "x1": 202, + "y1": 974, + "x2": 294, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 294, + "y1": 971, + "x2": 360, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 754, + "x2": 1753, + "y2": 919 + }, + "value": "Hayes Inc 959 Michael Ridges Carterhaven, MO 19856", + "label": "header:client" + }, + { + "rect": { + "x1": 371, + "y1": 982, + "x2": 636, + "y2": 1019 + }, + "value": "946-79-2529", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 982, + "x2": 1680, + "y2": 1019 + }, + "value": "966-87-8299", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 941, + "y2": 1066 + }, + "value": "GB92UKUV22836497179015", + "label": "header:iban" + }, + { + "rect": { + "x1": 195, + "y1": 1136, + "x2": 379, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1313 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1269, + "x2": 584, + "y2": 1313 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 971, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 971, + "x2": 1397, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1316 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1239, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1394, + "x2": 871, + "y2": 1526 + }, + "value": "How to Get an Asian Girlfriend by Derek Strong (English) Paperback Book Free Shi", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1394, + "x2": 1092, + "y2": 1449 + }, + "value": "3,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1397, + "x2": 1529, + "y2": 1441 + }, + "value": "15,44", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1397, + "x2": 1779, + "y2": 1441 + }, + "value": "46,32", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1397, + "x2": 2257, + "y2": 1441 + }, + "value": "50,95", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1566, + "x2": 864, + "y2": 1703 + }, + "value": "A boy who grew up eating nightmare It's Okay to Not Be Okay Picturebook 00000000", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1011, + "y1": 1574, + "x2": 1092, + "y2": 1611 + }, + "value": "2,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1150, + "y1": 1566, + "x2": 1246, + "y2": 1618 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1574, + "x2": 1529, + "y2": 1611 + }, + "value": "19,50", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1683, + "y1": 1574, + "x2": 1779, + "y2": 1611 + }, + "value": "39,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1570, + "x2": 2003, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1574, + "x2": 2257, + "y2": 1611 + }, + "value": "42,90", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1736, + "x2": 875, + "y2": 1872 + }, + "value": "The Graphic Design Reference & Specification Book: Everything Graphic Designers", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1739, + "x2": 1092, + "y2": 1794 + }, + "value": "2,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1743, + "x2": 1246, + "y2": 1787 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1743, + "x2": 1529, + "y2": 1787 + }, + "value": "20,18", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1743, + "x2": 1779, + "y2": 1787 + }, + "value": "40,36", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1743, + "x2": 2003, + "y2": 1787 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1743, + "x2": 2257, + "y2": 1787 + }, + "value": "44,40", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1912, + "x2": 867, + "y2": 2008 + }, + "value": "Language and Woman's Place by Robin Lakoff", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1912, + "x2": 1095, + "y2": 1960 + }, + "value": "4,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1912, + "x2": 1246, + "y2": 1956 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1441, + "y1": 1912, + "x2": 1533, + "y2": 1960 + }, + "value": "4,09", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1912, + "x2": 1783, + "y2": 1956 + }, + "value": "16,36", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1912, + "x2": 2003, + "y2": 1956 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1912, + "x2": 2257, + "y2": 1956 + }, + "value": "18,00", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 2044, + "x2": 617, + "y2": 2089 + }, + "value": "American Zoos", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 2041, + "x2": 1092, + "y2": 2096 + }, + "value": "4,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2044, + "x2": 1246, + "y2": 2089 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1269, + "x2": 1426, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1665, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1316 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2257, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1305, + "x2": 2257, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1444, + "y1": 2041, + "x2": 1533, + "y2": 2096 + }, + "value": "4,89", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1683, + "y1": 2048, + "x2": 1779, + "y2": 2092 + }, + "value": "19,56", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2044, + "x2": 2003, + "y2": 2089 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 2044, + "x2": 2257, + "y2": 2089 + }, + "value": "21,52", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 294, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1570, + "x2": 294, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1739, + "x2": 294, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1912, + "x2": 294, + "y2": 1956 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 2041, + "x2": 294, + "y2": 2092 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 195, + "y1": 2184, + "x2": 493, + "y2": 2232 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 2309, + "x2": 1048, + "y2": 2357 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2309, + "x2": 1121, + "y2": 2364 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 996, + "y1": 2394, + "x2": 1084, + "y2": 2449 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2309, + "x2": 1470, + "y2": 2357 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1467, + "y1": 2309, + "x2": 1588, + "y2": 2357 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1463, + "y1": 2401, + "x2": 1588, + "y2": 2445 + }, + "value": "161,60", + "label": "" + }, + { + "rect": { + "x1": 1411, + "y1": 2489, + "x2": 1588, + "y2": 2534 + }, + "value": "$ 161,60", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2309, + "x2": 1867, + "y2": 2357 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2401, + "x2": 1867, + "y2": 2445 + }, + "value": "16,16", + "label": "" + }, + { + "rect": { + "x1": 1713, + "y1": 2489, + "x2": 1864, + "y2": 2534 + }, + "value": "$ 16,16", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2022, + "y1": 2309, + "x2": 2139, + "y2": 2357 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2147, + "y1": 2309, + "x2": 2260, + "y2": 2357 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2401, + "x2": 2260, + "y2": 2445 + }, + "value": "177,76", + "label": "" + }, + { + "rect": { + "x1": 2084, + "y1": 2489, + "x2": 2260, + "y2": 2534 + }, + "value": "$ 177,76", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2489, + "x2": 856, + "y2": 2526 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_144.json b/docs/json/invoice_144.json new file mode 100644 index 0000000000000000000000000000000000000000..44d213dda74e2ef0d36bd9b7d4327909a669f8a1 --- /dev/null +++ b/docs/json/invoice_144.json @@ -0,0 +1,833 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 51, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 195, + "y1": 107, + "x2": 408, + "y2": 165 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 419, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 805, + "y2": 165 + }, + "value": "92651511", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 206, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 206, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 213, + "x2": 1467, + "y2": 265 + }, + "value": "01/18/2015", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 673, + "x2": 379, + "y2": 713 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 206, + "y1": 754, + "x2": 805, + "y2": 919 + }, + "value": "Jones Inc 841 Megan Square Apt. 156 Danielbury, VA 27103", + "label": "header:seller" + }, + { + "rect": { + "x1": 202, + "y1": 974, + "x2": 294, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 294, + "y1": 971, + "x2": 360, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 754, + "x2": 1805, + "y2": 919 + }, + "value": "Macdonald Ltd 33169 Cody Falls Apt. 775 North Matthew, MA 96841", + "label": "header:client" + }, + { + "rect": { + "x1": 371, + "y1": 982, + "x2": 636, + "y2": 1019 + }, + "value": "953-80-8084", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 982, + "x2": 1680, + "y2": 1019 + }, + "value": "989-90-6230", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 338, + "y1": 1026, + "x2": 934, + "y2": 1074 + }, + "value": "GB20PPSV40476334461682", + "label": "header:iban" + }, + { + "rect": { + "x1": 195, + "y1": 1136, + "x2": 379, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1313 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1269, + "x2": 584, + "y2": 1313 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 974, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 971, + "x2": 1397, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1316 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1239, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1394, + "x2": 904, + "y2": 1533 + }, + "value": "Rug Beni Ourain, Moroccan Handmade 100% Wool Area Rug Berber Beni Ouarain Carpet", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1394, + "x2": 1095, + "y2": 1449 + }, + "value": "4,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1400, + "y1": 1397, + "x2": 1529, + "y2": 1441 + }, + "value": "450,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1625, + "y1": 1394, + "x2": 1783, + "y2": 1449 + }, + "value": "1800,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 1394, + "x2": 2257, + "y2": 1449 + }, + "value": "1980,00", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1570, + "x2": 889, + "y2": 1706 + }, + "value": "Nordic Style Round Carpet Blue Green Stitching Pattern Decor Rug Room Area Rugs", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1574, + "x2": 1092, + "y2": 1611 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1150, + "y1": 1566, + "x2": 1246, + "y2": 1618 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1574, + "x2": 1529, + "y2": 1611 + }, + "value": "25,30", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1574, + "x2": 1783, + "y2": 1611 + }, + "value": "101,20", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1570, + "x2": 2003, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1574, + "x2": 2257, + "y2": 1611 + }, + "value": "111,32", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1743, + "x2": 860, + "y2": 1908 + }, + "value": "YILONG 4'x6' Vintage Handmade Carpet Medallion Porch Hand Knotted Silk Rugs 080B", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1739, + "x2": 1092, + "y2": 1794 + }, + "value": "3,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1743, + "x2": 1246, + "y2": 1787 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1364, + "y1": 1732, + "x2": 1536, + "y2": 1798 + }, + "value": "3600,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1603, + "y1": 1743, + "x2": 1779, + "y2": 1787 + }, + "value": "10 800,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1743, + "x2": 2003, + "y2": 1787 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2077, + "y1": 1739, + "x2": 2257, + "y2": 1787 + }, + "value": "11 880,00", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1956, + "x2": 897, + "y2": 2092 + }, + "value": "Nordic Cartoon Phoenix Carpets Kids Bedroom Area Rugs Parlor Anti-slip Mat Decor", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1953, + "x2": 1095, + "y2": 2008 + }, + "value": "1,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1150, + "y1": 1953, + "x2": 1246, + "y2": 2008 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1269, + "x2": 1426, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1665, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1316 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2257, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1305, + "x2": 2257, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 294, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1570, + "x2": 294, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1739, + "x2": 294, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1953, + "x2": 294, + "y2": 2000 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1956, + "x2": 1529, + "y2": 2000 + }, + "value": "13,66", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1683, + "y1": 1956, + "x2": 1783, + "y2": 2000 + }, + "value": "13,66", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1956, + "x2": 2003, + "y2": 1997 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1956, + "x2": 2257, + "y2": 2000 + }, + "value": "15,03", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 195, + "y1": 2184, + "x2": 493, + "y2": 2228 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 2306, + "x2": 1048, + "y2": 2346 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2302, + "x2": 1121, + "y2": 2357 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 2394, + "x2": 1081, + "y2": 2438 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2306, + "x2": 1470, + "y2": 2346 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1467, + "y1": 2306, + "x2": 1588, + "y2": 2346 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 2394, + "x2": 1459, + "y2": 2438 + }, + "value": "12", + "label": "" + }, + { + "rect": { + "x1": 1463, + "y1": 2401, + "x2": 1588, + "y2": 2438 + }, + "value": "714,86", + "label": "" + }, + { + "rect": { + "x1": 1353, + "y1": 2482, + "x2": 1588, + "y2": 2534 + }, + "value": "$12 714,86", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1654, + "y1": 2482, + "x2": 1867, + "y2": 2530 + }, + "value": "$1271,49", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 1779, + "y1": 2306, + "x2": 1867, + "y2": 2346 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1713, + "y1": 2401, + "x2": 1739, + "y2": 2438 + }, + "value": "1", + "label": "" + }, + { + "rect": { + "x1": 1731, + "y1": 2401, + "x2": 1864, + "y2": 2438 + }, + "value": "271,49", + "label": "" + }, + { + "rect": { + "x1": 2022, + "y1": 2306, + "x2": 2139, + "y2": 2346 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 2306, + "x2": 2260, + "y2": 2346 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2080, + "y1": 2390, + "x2": 2260, + "y2": 2445 + }, + "value": "13986,35", + "label": "" + }, + { + "rect": { + "x1": 2022, + "y1": 2478, + "x2": 2264, + "y2": 2537 + }, + "value": "$13986,35", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2482, + "x2": 853, + "y2": 2523 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_145.json b/docs/json/invoice_145.json new file mode 100644 index 0000000000000000000000000000000000000000..865a1414698cf2347e99893662cea60a4d05e62f --- /dev/null +++ b/docs/json/invoice_145.json @@ -0,0 +1,813 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 52, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 195, + "y1": 107, + "x2": 408, + "y2": 165 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 805, + "y2": 165 + }, + "value": "87970852", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 206, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 206, + "x2": 382, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 382, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 213, + "x2": 1470, + "y2": 265 + }, + "value": "05/16/2018", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 195, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 206, + "y1": 757, + "x2": 629, + "y2": 919 + }, + "value": "Harvey-Rivas 205 Smith Camp Lewiston, TX 81451", + "label": "header:seller" + }, + { + "rect": { + "x1": 202, + "y1": 974, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 971, + "x2": 360, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 754, + "x2": 1555, + "y2": 919 + }, + "value": "Trujillo PLC USS Chen FPO AA 56870", + "label": "header:client" + }, + { + "rect": { + "x1": 368, + "y1": 974, + "x2": 640, + "y2": 1019 + }, + "value": "944-74-6922", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 982, + "x2": 1680, + "y2": 1019 + }, + "value": "903-83-8188", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 908, + "y2": 1081 + }, + "value": "GB80JAPJ33404818900485", + "label": "header:iban" + }, + { + "rect": { + "x1": 195, + "y1": 1140, + "x2": 379, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1313 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1269, + "x2": 584, + "y2": 1313 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 971, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 971, + "x2": 1397, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1095, + "y2": 1316 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1239, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1394, + "x2": 908, + "y2": 1493 + }, + "value": "Rabbit Wine Tool Kit 6 Piece Set. Open box Sealed", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1394, + "x2": 1092, + "y2": 1449 + }, + "value": "3,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1242, + "y2": 1438 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1397, + "x2": 1529, + "y2": 1438 + }, + "value": "24,20", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1397, + "x2": 1779, + "y2": 1438 + }, + "value": "72,60", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1438 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1397, + "x2": 2257, + "y2": 1438 + }, + "value": "79,86", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 360, + "y1": 1530, + "x2": 867, + "y2": 1611 + }, + "value": "Lolita Happy Retirement Wine Glass 15 Ounce GLS11-5534H", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1533, + "x2": 1092, + "y2": 1574 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1150, + "y1": 1526, + "x2": 1246, + "y2": 1577 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1444, + "y1": 1533, + "x2": 1529, + "y2": 1574 + }, + "value": "8,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1683, + "y1": 1533, + "x2": 1783, + "y2": 1574 + }, + "value": "32,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1526, + "x2": 2003, + "y2": 1577 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1533, + "x2": 2257, + "y2": 1574 + }, + "value": "35,20", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1658, + "x2": 794, + "y2": 1787 + }, + "value": "VINTAGE ANTIQUE BRASS TABLE TOP WINE BOTTLE OPENER /WOOD HANDLE", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1655, + "x2": 1092, + "y2": 1706 + }, + "value": "3,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1655, + "x2": 1242, + "y2": 1703 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1658, + "x2": 1529, + "y2": 1703 + }, + "value": "60,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1661, + "y1": 1658, + "x2": 1779, + "y2": 1703 + }, + "value": "180,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1655, + "x2": 2003, + "y2": 1706 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1658, + "x2": 2257, + "y2": 1703 + }, + "value": "198,00", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1824, + "x2": 860, + "y2": 1960 + }, + "value": "Anthropologie Gold Elegant Swan Decorative Metal Bottle Stopper Wine Saver", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1831, + "x2": 1095, + "y2": 1883 + }, + "value": "1,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1835, + "x2": 1242, + "y2": 1872 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1269, + "x2": 1426, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1665, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1316 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2257, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1305, + "x2": 2257, + "y2": 1346 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1835, + "x2": 1529, + "y2": 1872 + }, + "value": "19,98", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1683, + "y1": 1835, + "x2": 1779, + "y2": 1872 + }, + "value": "19,98", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1835, + "x2": 2003, + "y2": 1872 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1835, + "x2": 2257, + "y2": 1872 + }, + "value": "21,98", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 298, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1526, + "x2": 298, + "y2": 1574 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1655, + "x2": 298, + "y2": 1703 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1831, + "x2": 298, + "y2": 1879 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 195, + "y1": 2056, + "x2": 493, + "y2": 2103 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 2184, + "x2": 1048, + "y2": 2221 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2177, + "x2": 1121, + "y2": 2228 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 996, + "y1": 2261, + "x2": 1084, + "y2": 2313 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2184, + "x2": 1470, + "y2": 2221 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1467, + "y1": 2184, + "x2": 1588, + "y2": 2221 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1463, + "y1": 2272, + "x2": 1588, + "y2": 2309 + }, + "value": "304,58", + "label": "" + }, + { + "rect": { + "x1": 1411, + "y1": 2357, + "x2": 1588, + "y2": 2409 + }, + "value": "$ 304,58", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2184, + "x2": 1867, + "y2": 2221 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2272, + "x2": 1867, + "y2": 2309 + }, + "value": "30,46", + "label": "" + }, + { + "rect": { + "x1": 1713, + "y1": 2350, + "x2": 1867, + "y2": 2412 + }, + "value": "$30,46", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2022, + "y1": 2184, + "x2": 2139, + "y2": 2221 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 2184, + "x2": 2260, + "y2": 2221 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 2269, + "x2": 2268, + "y2": 2317 + }, + "value": "335,04", + "label": "" + }, + { + "rect": { + "x1": 2088, + "y1": 2357, + "x2": 2260, + "y2": 2409 + }, + "value": "$ 335,04", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2361, + "x2": 853, + "y2": 2405 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_146.json b/docs/json/invoice_146.json new file mode 100644 index 0000000000000000000000000000000000000000..a740a9582342ba82d9bd861005ccfd884c082489 --- /dev/null +++ b/docs/json/invoice_146.json @@ -0,0 +1,573 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 53, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 195, + "y1": 107, + "x2": 408, + "y2": 165 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 805, + "y2": 165 + }, + "value": "94885760", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 206, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 206, + "x2": 382, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 382, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 213, + "x2": 1470, + "y2": 265 + }, + "value": "08/22/2012", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 195, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 206, + "y1": 754, + "x2": 856, + "y2": 923 + }, + "value": "Crawford, Acosta and Solomon 65675 Watkins Springs Dudleyport, GA 24388", + "label": "header:seller" + }, + { + "rect": { + "x1": 1242, + "y1": 757, + "x2": 1911, + "y2": 919 + }, + "value": "Chen-Ortega 451 Christine Branch Suite 192 Lisahaven, NY 75573", + "label": "header:client" + }, + { + "rect": { + "x1": 1242, + "y1": 971, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 971, + "x2": 1397, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 368, + "y1": 974, + "x2": 640, + "y2": 1019 + }, + "value": "995-99-2920", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 1408, + "y1": 974, + "x2": 1683, + "y2": 1019 + }, + "value": "974-99-3914", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 202, + "y1": 974, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 971, + "x2": 360, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 926, + "y2": 1081 + }, + "value": "GB36ENEJ21422561399911", + "label": "header:iban" + }, + { + "rect": { + "x1": 195, + "y1": 1140, + "x2": 379, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1313 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1269, + "x2": 584, + "y2": 1313 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1095, + "y2": 1316 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1239, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1397, + "x2": 901, + "y2": 1522 + }, + "value": "Nike 747998-401 Team Hustle D7 Kids Blue Mid Top Basketball Shoes Size 4Y US", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1394, + "x2": 1092, + "y2": 1449 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1242, + "y2": 1438 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1269, + "x2": 1426, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1665, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1316 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2257, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1305, + "x2": 2257, + "y2": 1346 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1397, + "x2": 1529, + "y2": 1438 + }, + "value": "10,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1397, + "x2": 1779, + "y2": 1438 + }, + "value": "54,95", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1438 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1397, + "x2": 2257, + "y2": 1438 + }, + "value": "60,45", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 298, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 195, + "y1": 1625, + "x2": 493, + "y2": 1669 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 1747, + "x2": 1048, + "y2": 1791 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1048, + "y1": 1739, + "x2": 1121, + "y2": 1802 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1839, + "x2": 1081, + "y2": 1879 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 1747, + "x2": 1467, + "y2": 1791 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1467, + "y1": 1747, + "x2": 1588, + "y2": 1791 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1485, + "y1": 1839, + "x2": 1588, + "y2": 1879 + }, + "value": "54,95", + "label": "" + }, + { + "rect": { + "x1": 1433, + "y1": 1919, + "x2": 1588, + "y2": 1971 + }, + "value": "$54,95", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1747, + "x2": 1867, + "y2": 1791 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1779, + "y1": 1835, + "x2": 1867, + "y2": 1883 + }, + "value": "5,50", + "label": "" + }, + { + "rect": { + "x1": 1735, + "y1": 1919, + "x2": 1867, + "y2": 1971 + }, + "value": "$5,50", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2022, + "y1": 1747, + "x2": 2139, + "y2": 1791 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 1747, + "x2": 2260, + "y2": 1791 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2154, + "y1": 1842, + "x2": 2260, + "y2": 1883 + }, + "value": "60,45", + "label": "" + }, + { + "rect": { + "x1": 2110, + "y1": 1919, + "x2": 2260, + "y2": 1967 + }, + "value": "$ 60,45", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 1923, + "x2": 856, + "y2": 1964 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_147.json b/docs/json/invoice_147.json new file mode 100644 index 0000000000000000000000000000000000000000..5991a0a0d06ff3a1bc8ebd1a4a2f44961b8054cb --- /dev/null +++ b/docs/json/invoice_147.json @@ -0,0 +1,663 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 54, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 195, + "y1": 107, + "x2": 408, + "y2": 165 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 419, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 805, + "y2": 165 + }, + "value": "90446683", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 206, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 206, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 213, + "x2": 1470, + "y2": 265 + }, + "value": "02/11/2016", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 195, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 202, + "y1": 765, + "x2": 750, + "y2": 919 + }, + "value": "Chang-Cooper 452 Miller Plains Apt. 418 Barrettside, UT 97139", + "label": "header:seller" + }, + { + "rect": { + "x1": 202, + "y1": 974, + "x2": 294, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 294, + "y1": 971, + "x2": 360, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 765, + "x2": 1753, + "y2": 919 + }, + "value": "Peterson-Long 92441 Kimberly Curve East Mathew, OH 84858", + "label": "header:client" + }, + { + "rect": { + "x1": 368, + "y1": 974, + "x2": 640, + "y2": 1019 + }, + "value": "911-96-2770", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 974, + "x2": 1683, + "y2": 1019 + }, + "value": "911-96-7248", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 948, + "y2": 1066 + }, + "value": "GB19LAZW37358375097586", + "label": "header:iban" + }, + { + "rect": { + "x1": 195, + "y1": 1136, + "x2": 379, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1313 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1269, + "x2": 584, + "y2": 1313 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 974, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 971, + "x2": 1397, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1316 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1239, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1397, + "x2": 889, + "y2": 1486 + }, + "value": "Cabi 5610 Striped White Blue Launch Maxi Dress Womens Sz", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1394, + "x2": 1092, + "y2": 1449 + }, + "value": "3,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1397, + "x2": 1529, + "y2": 1441 + }, + "value": "48,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1397, + "x2": 1779, + "y2": 1441 + }, + "value": "146,97", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1397, + "x2": 2257, + "y2": 1441 + }, + "value": "161,67", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1566, + "x2": 886, + "y2": 1658 + }, + "value": "Socialite White Black Striped A Line Dress With Pockets Large", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1566, + "x2": 1092, + "y2": 1618 + }, + "value": "5,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1570, + "x2": 1242, + "y2": 1611 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1269, + "x2": 1426, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1665, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1316 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2257, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1305, + "x2": 2257, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1574, + "x2": 1529, + "y2": 1611 + }, + "value": "10,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1574, + "x2": 1779, + "y2": 1611 + }, + "value": "50,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1566, + "x2": 2003, + "y2": 1618 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1574, + "x2": 2257, + "y2": 1611 + }, + "value": "55,00", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 294, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1570, + "x2": 294, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1475, + "x2": 397, + "y2": 1526 + }, + "value": "M", + "label": "" + }, + { + "rect": { + "x1": 195, + "y1": 1758, + "x2": 493, + "y2": 1805 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 1879, + "x2": 1048, + "y2": 1916 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 1872, + "x2": 1121, + "y2": 1931 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 1964, + "x2": 1081, + "y2": 2008 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 1872, + "x2": 1474, + "y2": 1923 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 1883, + "x2": 1588, + "y2": 1916 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1463, + "y1": 1967, + "x2": 1588, + "y2": 2008 + }, + "value": "196,97", + "label": "" + }, + { + "rect": { + "x1": 1411, + "y1": 2056, + "x2": 1588, + "y2": 2103 + }, + "value": "$ 196,97", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1879, + "x2": 1867, + "y2": 1916 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 1967, + "x2": 1867, + "y2": 2008 + }, + "value": "19,70", + "label": "" + }, + { + "rect": { + "x1": 1713, + "y1": 2048, + "x2": 1871, + "y2": 2111 + }, + "value": "$19,70", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2022, + "y1": 1879, + "x2": 2143, + "y2": 1916 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 1883, + "x2": 2260, + "y2": 1916 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1967, + "x2": 2260, + "y2": 2008 + }, + "value": "216,67", + "label": "" + }, + { + "rect": { + "x1": 2084, + "y1": 2056, + "x2": 2260, + "y2": 2103 + }, + "value": "$ 216,67", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2056, + "x2": 856, + "y2": 2100 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_148.json b/docs/json/invoice_148.json new file mode 100644 index 0000000000000000000000000000000000000000..723a7a4c63e0238f9ef7e39b3668d245e7ecbd1d --- /dev/null +++ b/docs/json/invoice_148.json @@ -0,0 +1,813 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 55, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 195, + "y1": 107, + "x2": 408, + "y2": 165 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 805, + "y2": 165 + }, + "value": "29470022", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 206, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 206, + "x2": 382, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 382, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 213, + "x2": 1470, + "y2": 265 + }, + "value": "02/17/2019", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 195, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 206, + "y1": 754, + "x2": 908, + "y2": 919 + }, + "value": "Sanchez Group 5214 Angela Field West Elizabethchester, TN 38827", + "label": "header:seller" + }, + { + "rect": { + "x1": 202, + "y1": 974, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 971, + "x2": 360, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 765, + "x2": 1716, + "y2": 919 + }, + "value": "Estrada-Vasquez 4555 Morgan Key Caitlinland, WV 65224", + "label": "header:client" + }, + { + "rect": { + "x1": 368, + "y1": 974, + "x2": 640, + "y2": 1019 + }, + "value": "936-94-8863", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 982, + "x2": 1680, + "y2": 1019 + }, + "value": "965-70-2868", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 926, + "y2": 1081 + }, + "value": "GB50JVRS02423611510258", + "label": "header:iban" + }, + { + "rect": { + "x1": 195, + "y1": 1140, + "x2": 379, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1313 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1269, + "x2": 584, + "y2": 1313 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 971, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 971, + "x2": 1397, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1316 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1239, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 360, + "y1": 1397, + "x2": 889, + "y2": 1533 + }, + "value": "Imitation Wool Carpet Rugs Koala Panda Plush Living Room Blankets Non Slip Decor", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1394, + "x2": 1092, + "y2": 1449 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1242, + "y2": 1438 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1397, + "x2": 1529, + "y2": 1438 + }, + "value": "26,11", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1661, + "y1": 1397, + "x2": 1779, + "y2": 1438 + }, + "value": "130,55", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1438 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1397, + "x2": 2257, + "y2": 1438 + }, + "value": "143,61", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1570, + "x2": 897, + "y2": 1703 + }, + "value": "Romantic Rose Flowers Area Rugs Kitchen Living Room Floor Mat Non-slip Carpets", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1566, + "x2": 1092, + "y2": 1622 + }, + "value": "5,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1150, + "y1": 1566, + "x2": 1246, + "y2": 1622 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1574, + "x2": 1529, + "y2": 1611 + }, + "value": "13,37", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1574, + "x2": 1779, + "y2": 1611 + }, + "value": "66,85", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1570, + "x2": 2003, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1574, + "x2": 2257, + "y2": 1611 + }, + "value": "73,53", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1739, + "x2": 875, + "y2": 1868 + }, + "value": "3D Printed Mat Vortex Illusion Living room Rug Carpet Floors Doors Round Mat", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1739, + "x2": 1092, + "y2": 1794 + }, + "value": "3,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1739, + "x2": 1246, + "y2": 1787 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1739, + "x2": 1529, + "y2": 1787 + }, + "value": "11,63", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1739, + "x2": 1779, + "y2": 1787 + }, + "value": "34,89", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1739, + "x2": 2003, + "y2": 1787 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1739, + "x2": 2257, + "y2": 1787 + }, + "value": "38,38", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 360, + "y1": 1912, + "x2": 882, + "y2": 2041 + }, + "value": "handmade carpet rug vtg moroccan boucherouite wollen 9.4*3.5 /288cm*107cm", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1912, + "x2": 1095, + "y2": 1960 + }, + "value": "1,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1912, + "x2": 1242, + "y2": 1956 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1269, + "x2": 1426, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1665, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1316 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2257, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1305, + "x2": 2257, + "y2": 1346 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1400, + "y1": 1916, + "x2": 1529, + "y2": 1956 + }, + "value": "289,99", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1661, + "y1": 1916, + "x2": 1779, + "y2": 1956 + }, + "value": "289,99", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1912, + "x2": 2003, + "y2": 1956 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1916, + "x2": 2257, + "y2": 1956 + }, + "value": "318,99", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 298, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1570, + "x2": 298, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1739, + "x2": 298, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1912, + "x2": 298, + "y2": 1960 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 195, + "y1": 2140, + "x2": 493, + "y2": 2184 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 2261, + "x2": 1048, + "y2": 2306 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2261, + "x2": 1121, + "y2": 2309 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 996, + "y1": 2353, + "x2": 1081, + "y2": 2398 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2261, + "x2": 1470, + "y2": 2306 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1467, + "y1": 2261, + "x2": 1588, + "y2": 2306 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1459, + "y1": 2350, + "x2": 1588, + "y2": 2405 + }, + "value": "522,28", + "label": "" + }, + { + "rect": { + "x1": 1411, + "y1": 2442, + "x2": 1588, + "y2": 2489 + }, + "value": "$ 522,28", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2261, + "x2": 1867, + "y2": 2306 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2353, + "x2": 1864, + "y2": 2398 + }, + "value": "52,23", + "label": "" + }, + { + "rect": { + "x1": 1713, + "y1": 2442, + "x2": 1867, + "y2": 2489 + }, + "value": "$52,23", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2022, + "y1": 2261, + "x2": 2139, + "y2": 2306 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 2261, + "x2": 2260, + "y2": 2306 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 2353, + "x2": 2260, + "y2": 2398 + }, + "value": "574,51", + "label": "" + }, + { + "rect": { + "x1": 2091, + "y1": 2442, + "x2": 2260, + "y2": 2482 + }, + "value": "$ 574,51", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2442, + "x2": 853, + "y2": 2482 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_149.json b/docs/json/invoice_149.json new file mode 100644 index 0000000000000000000000000000000000000000..b24163553ec4e59daa76ba010b0eb7e8549b4076 --- /dev/null +++ b/docs/json/invoice_149.json @@ -0,0 +1,663 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 56, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 195, + "y1": 107, + "x2": 408, + "y2": 165 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 419, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 805, + "y2": 165 + }, + "value": "28610769", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 206, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 206, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 213, + "x2": 1467, + "y2": 265 + }, + "value": "06/19/2017", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 195, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 206, + "y1": 754, + "x2": 676, + "y2": 919 + }, + "value": "Martin Inc 40533 Joseph Summit Davistown, ME 15851", + "label": "header:seller" + }, + { + "rect": { + "x1": 202, + "y1": 974, + "x2": 294, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 294, + "y1": 971, + "x2": 360, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 754, + "x2": 1742, + "y2": 923 + }, + "value": "Eaton Ltd 84559 Zavala Forges Sullivanbury, TN 83437", + "label": "header:client" + }, + { + "rect": { + "x1": 368, + "y1": 974, + "x2": 640, + "y2": 1019 + }, + "value": "927-99-7937", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 982, + "x2": 1680, + "y2": 1019 + }, + "value": "963-94-0760", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 338, + "y1": 1026, + "x2": 934, + "y2": 1074 + }, + "value": "GB11PTYT82637652514320", + "label": "header:iban" + }, + { + "rect": { + "x1": 195, + "y1": 1136, + "x2": 379, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1313 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1269, + "x2": 584, + "y2": 1313 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 294, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 360, + "y1": 1397, + "x2": 893, + "y2": 1526 + }, + "value": "Nintendo 64 N64 Console Complete in Box Mint Beautiful! From Japan!", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1570, + "x2": 294, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 1394, + "x2": 1092, + "y2": 1449 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1400, + "y1": 1397, + "x2": 1529, + "y2": 1441 + }, + "value": "269,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1625, + "y1": 1394, + "x2": 1783, + "y2": 1449 + }, + "value": "1349,95", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2102, + "y1": 1397, + "x2": 2257, + "y2": 1441 + }, + "value": "1 484,95", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1566, + "x2": 882, + "y2": 1703 + }, + "value": "\"New\" Nintendo 3DS XL New Black Handheld Console (RED-001) w/ Charger & Stylus", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 971, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 971, + "x2": 1397, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1095, + "y2": 1316 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1239, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 1566, + "x2": 1092, + "y2": 1618 + }, + "value": "5,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1150, + "y1": 1566, + "x2": 1246, + "y2": 1618 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1269, + "x2": 1426, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1665, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1316 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2257, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1305, + "x2": 2257, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 1574, + "x2": 1529, + "y2": 1611 + }, + "value": "124,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1574, + "x2": 1779, + "y2": 1611 + }, + "value": "624,95", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1570, + "x2": 2003, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1574, + "x2": 2257, + "y2": 1611 + }, + "value": "687,44", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 195, + "y1": 1798, + "x2": 493, + "y2": 1846 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 1912, + "x2": 1051, + "y2": 1964 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 1912, + "x2": 1121, + "y2": 1967 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 996, + "y1": 2004, + "x2": 1084, + "y2": 2056 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 1912, + "x2": 1474, + "y2": 1964 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1467, + "y1": 1919, + "x2": 1588, + "y2": 1956 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 2000, + "x2": 1592, + "y2": 2063 + }, + "value": "1974,90", + "label": "" + }, + { + "rect": { + "x1": 1378, + "y1": 2089, + "x2": 1592, + "y2": 2155 + }, + "value": "$1974,90", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1912, + "x2": 1871, + "y2": 1964 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1742, + "y1": 2008, + "x2": 1864, + "y2": 2056 + }, + "value": "197,49", + "label": "" + }, + { + "rect": { + "x1": 1691, + "y1": 2096, + "x2": 1864, + "y2": 2147 + }, + "value": "$ 197,49", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2022, + "y1": 1919, + "x2": 2139, + "y2": 1956 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 1919, + "x2": 2260, + "y2": 1960 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2102, + "y1": 2008, + "x2": 2139, + "y2": 2056 + }, + "value": "2", + "label": "" + }, + { + "rect": { + "x1": 2124, + "y1": 2008, + "x2": 2260, + "y2": 2056 + }, + "value": "172,39", + "label": "" + }, + { + "rect": { + "x1": 2055, + "y1": 2096, + "x2": 2260, + "y2": 2147 + }, + "value": "$2172,39", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2103, + "x2": 856, + "y2": 2140 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_15.json b/docs/json/invoice_15.json new file mode 100644 index 0000000000000000000000000000000000000000..ee18bf7b0cd5a5e69ca6b9e82591598ad72914bd --- /dev/null +++ b/docs/json/invoice_15.json @@ -0,0 +1,573 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 57, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 406, + "y2": 164 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 113, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 808, + "y2": 164 + }, + "value": "67095041", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 216, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 216, + "x2": 1473, + "y2": 263 + }, + "value": "12/14/2018", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 205, + "y1": 756, + "x2": 826, + "y2": 925 + }, + "value": "Wade, Scott and Glover 9022 Jeffrey Course Apt. 247 Tylershire, DC 71720", + "label": "header:seller" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1863, + "y2": 917 + }, + "value": "Bernard, Welch and Freeman 06193 Julia Row Michelleburgh, NH 84339", + "label": "header:client" + }, + { + "rect": { + "x1": 1242, + "y1": 968, + "x2": 1334, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1396, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 369, + "y1": 979, + "x2": 636, + "y2": 1016 + }, + "value": "985-88-4789", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "905-74-4614", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 329, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 343, + "y1": 1030, + "x2": 913, + "y2": 1082 + }, + "value": "GB44IJGO64103154190692", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1396, + "x2": 862, + "y2": 1524 + }, + "value": "Champagne Glass Holder Storage Bar Accessory with Shelf Wall Mount Wine Holder", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1012, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1239, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1096, + "y2": 1447 + }, + "value": "4,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1268, + "x2": 1425, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1663, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1308, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1400, + "x2": 1527, + "y2": 1440 + }, + "value": "19,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1677, + "y1": 1400, + "x2": 1783, + "y2": 1440 + }, + "value": "79,96", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1396, + "x2": 2258, + "y2": 1440 + }, + "value": "87,96", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 197, + "y1": 1622, + "x2": 493, + "y2": 1670 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 1747, + "x2": 1049, + "y2": 1791 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1049, + "y1": 1743, + "x2": 1122, + "y2": 1802 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 1838, + "x2": 1082, + "y2": 1878 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 1747, + "x2": 1469, + "y2": 1791 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 1747, + "x2": 1586, + "y2": 1791 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1483, + "y1": 1838, + "x2": 1586, + "y2": 1878 + }, + "value": "79,96", + "label": "" + }, + { + "rect": { + "x1": 1436, + "y1": 1926, + "x2": 1586, + "y2": 1970 + }, + "value": "$ 79,96", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1747, + "x2": 1867, + "y2": 1791 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1779, + "y1": 1834, + "x2": 1867, + "y2": 1886 + }, + "value": "8,00", + "label": "" + }, + { + "rect": { + "x1": 1736, + "y1": 1922, + "x2": 1867, + "y2": 1973 + }, + "value": "$8,00", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 1747, + "x2": 2138, + "y2": 1791 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1747, + "x2": 2262, + "y2": 1791 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2156, + "y1": 1842, + "x2": 2262, + "y2": 1882 + }, + "value": "87,96", + "label": "" + }, + { + "rect": { + "x1": 2112, + "y1": 1926, + "x2": 2262, + "y2": 1970 + }, + "value": "$ 87,96", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 1926, + "x2": 859, + "y2": 1966 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_150.json b/docs/json/invoice_150.json new file mode 100644 index 0000000000000000000000000000000000000000..64447d2af887c5482429d13f3f0ebe65338401cb --- /dev/null +++ b/docs/json/invoice_150.json @@ -0,0 +1,1003 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 58, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 404, + "y2": 165 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 165 + }, + "value": "33691533", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 198, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 382, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 382, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 213, + "x2": 1470, + "y2": 265 + }, + "value": "07/25/2014", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 761, + "x2": 651, + "y2": 919 + }, + "value": "Fowler-Griffin 3122 Gene Mountain Marcport, AK 52348", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1022 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1022 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 761, + "x2": 1856, + "y2": 919 + }, + "value": "Scott-Garcia 808 Stacy Squares East Oscarchester, KS 93753", + "label": "header:client" + }, + { + "rect": { + "x1": 368, + "y1": 978, + "x2": 636, + "y2": 1015 + }, + "value": "996-86-5609", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 978, + "x2": 1676, + "y2": 1015 + }, + "value": "963-95-6326", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 952, + "y2": 1066 + }, + "value": "GB79HWNL47420369669125", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 228, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 584, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 967, + "x2": 1334, + "y2": 1022 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1397, + "y2": 1022 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1011, + "y1": 1265, + "x2": 1095, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1239, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1394, + "x2": 908, + "y2": 1445 + }, + "value": "Dell Optiplex 9010 PC Computer", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1092, + "y2": 1445 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1394, + "x2": 1242, + "y2": 1438 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1401, + "x2": 1529, + "y2": 1438 + }, + "value": "99,90", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1401, + "x2": 1779, + "y2": 1438 + }, + "value": "499,50", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1394, + "x2": 2003, + "y2": 1438 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1401, + "x2": 2253, + "y2": 1438 + }, + "value": "549,45", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1530, + "x2": 842, + "y2": 1658 + }, + "value": "HP 8300 Slim Desktop Small Computer PC i5 3.2GHz 4GB 500GB Windows 10 Pro WiFi", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1530, + "x2": 1092, + "y2": 1574 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1150, + "y1": 1522, + "x2": 1246, + "y2": 1574 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1530, + "x2": 1529, + "y2": 1574 + }, + "value": "99,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1530, + "x2": 1779, + "y2": 1574 + }, + "value": "399,96", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1522, + "x2": 2003, + "y2": 1574 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1530, + "x2": 2253, + "y2": 1574 + }, + "value": "439,96", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1699, + "x2": 897, + "y2": 1831 + }, + "value": "Custom Built Windows 98 Retro Gaming Industrial PC Computer P2 B Montego II 5GB", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1011, + "y1": 1703, + "x2": 1092, + "y2": 1747 + }, + "value": "1,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1703, + "x2": 1242, + "y2": 1747 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1404, + "y1": 1703, + "x2": 1529, + "y2": 1747 + }, + "value": "409,99", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1703, + "x2": 1779, + "y2": 1747 + }, + "value": "409,99", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1695, + "x2": 2003, + "y2": 1750 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1703, + "x2": 2253, + "y2": 1747 + }, + "value": "450,99", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1868, + "x2": 897, + "y2": 2000 + }, + "value": "Custom Build Dell Desktop Computer i5 I 16GB I 1TB SSD I HDMI Windows 10 PC WiFi", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1875, + "x2": 1092, + "y2": 1916 + }, + "value": "4,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1875, + "x2": 1242, + "y2": 1916 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1875, + "x2": 1529, + "y2": 1916 + }, + "value": "99,00", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1875, + "x2": 1779, + "y2": 1916 + }, + "value": "396,00", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1875, + "x2": 2003, + "y2": 1916 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1875, + "x2": 2253, + "y2": 1916 + }, + "value": "435,60", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2044, + "x2": 842, + "y2": 2096 + }, + "value": "$5.00 Desktop Computers!", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 2041, + "x2": 1092, + "y2": 2096 + }, + "value": "5,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2044, + "x2": 1246, + "y2": 2085 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1444, + "y1": 2041, + "x2": 1533, + "y2": 2096 + }, + "value": "5,00", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1672, + "y1": 2041, + "x2": 1783, + "y2": 2096 + }, + "value": "25,00", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2044, + "x2": 2003, + "y2": 2085 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 2044, + "x2": 2253, + "y2": 2085 + }, + "value": "27,50", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2133, + "x2": 867, + "y2": 2265 + }, + "value": "CAD Solidworks Video Photo Editing Workstation 64GB 8C Xeon Quadro Computer NVME", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 2125, + "x2": 1095, + "y2": 2181 + }, + "value": "3,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2133, + "x2": 1242, + "y2": 2173 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1269, + "x2": 1426, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1269, + "x2": 1661, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1272, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2132, + "y1": 1309, + "x2": 2253, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1404, + "y1": 2136, + "x2": 1529, + "y2": 2173 + }, + "value": "520,00", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1621, + "y1": 2133, + "x2": 1779, + "y2": 2173 + }, + "value": "1560,00", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2133, + "x2": 2003, + "y2": 2173 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 2125, + "x2": 2257, + "y2": 2181 + }, + "value": "1716,00", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1394, + "x2": 298, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1530, + "x2": 298, + "y2": 1574 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1699, + "x2": 298, + "y2": 1750 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1872, + "x2": 298, + "y2": 1919 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 2041, + "x2": 298, + "y2": 2089 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 2125, + "x2": 298, + "y2": 2177 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1438, + "x2": 441, + "y2": 1478 + }, + "value": "Intel", + "label": "" + }, + { + "rect": { + "x1": 437, + "y1": 1434, + "x2": 533, + "y2": 1486 + }, + "value": "Core", + "label": "" + }, + { + "rect": { + "x1": 198, + "y1": 2361, + "x2": 493, + "y2": 2409 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 2486, + "x2": 1048, + "y2": 2526 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2482, + "x2": 1121, + "y2": 2534 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 996, + "y1": 2574, + "x2": 1081, + "y2": 2611 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2486, + "x2": 1470, + "y2": 2526 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2486, + "x2": 1584, + "y2": 2526 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 2570, + "x2": 1592, + "y2": 2622 + }, + "value": "3290,45", + "label": "" + }, + { + "rect": { + "x1": 1378, + "y1": 2655, + "x2": 1584, + "y2": 2710 + }, + "value": "$3290,45", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2486, + "x2": 1867, + "y2": 2526 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1739, + "y1": 2578, + "x2": 1864, + "y2": 2611 + }, + "value": "329,05", + "label": "" + }, + { + "rect": { + "x1": 1691, + "y1": 2662, + "x2": 1864, + "y2": 2710 + }, + "value": "$ 329,05", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2486, + "x2": 2139, + "y2": 2526 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 2486, + "x2": 2260, + "y2": 2526 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2099, + "y1": 2574, + "x2": 2139, + "y2": 2618 + }, + "value": "3", + "label": "" + }, + { + "rect": { + "x1": 2128, + "y1": 2578, + "x2": 2260, + "y2": 2611 + }, + "value": "619,50", + "label": "" + }, + { + "rect": { + "x1": 2051, + "y1": 2655, + "x2": 2260, + "y2": 2710 + }, + "value": "$3619,50", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2662, + "x2": 860, + "y2": 2699 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_151.json b/docs/json/invoice_151.json new file mode 100644 index 0000000000000000000000000000000000000000..b8e813c37dd74c2c6fe8b87a256b3ebdf831b6b5 --- /dev/null +++ b/docs/json/invoice_151.json @@ -0,0 +1,753 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 59, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 404, + "y2": 165 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 114, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 165 + }, + "value": "53339803", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 198, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 382, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 382, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 213, + "x2": 1474, + "y2": 265 + }, + "value": "09/11/2018", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 757, + "x2": 779, + "y2": 916 + }, + "value": "Evans LLC 507 Young Parks Suite 231 Robinsonside, WV 82205", + "label": "header:seller" + }, + { + "rect": { + "x1": 1242, + "y1": 757, + "x2": 1742, + "y2": 916 + }, + "value": "Ball, Smith and Rhodes 472 Marcus Courts Kristinatown, AK 01280", + "label": "header:client" + }, + { + "rect": { + "x1": 1239, + "y1": 967, + "x2": 1334, + "y2": 1022 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1397, + "y2": 1022 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 368, + "y1": 978, + "x2": 640, + "y2": 1015 + }, + "value": "968-83-7054", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "991-83-1943", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1022 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1022 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 342, + "y1": 1033, + "x2": 930, + "y2": 1074 + }, + "value": "GB94JWPV41308802932072", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 228, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 584, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1011, + "y1": 1265, + "x2": 1092, + "y2": 1316 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1239, + "y2": 1305 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1394, + "x2": 867, + "y2": 1522 + }, + "value": "Yilong 5.5'x8' Handwoven Silk Area Rugs Red Living Room Classic Carpets 1696", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1092, + "y2": 1449 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1394, + "x2": 1242, + "y2": 1438 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1371, + "y1": 1394, + "x2": 1529, + "y2": 1445 + }, + "value": "3 300,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1625, + "y1": 1394, + "x2": 1779, + "y2": 1445 + }, + "value": "3 300,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1394, + "x2": 2003, + "y2": 1438 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 1394, + "x2": 2253, + "y2": 1445 + }, + "value": "3 630,00", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1570, + "x2": 904, + "y2": 1703 + }, + "value": "YILONG 4'x6' Golden Handmade Area Carpet Tribal Hand Knotted Silk Rugs 074B", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1563, + "x2": 1092, + "y2": 1614 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1150, + "y1": 1563, + "x2": 1246, + "y2": 1614 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1371, + "y1": 1563, + "x2": 1529, + "y2": 1614 + }, + "value": "3 600,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1625, + "y1": 1570, + "x2": 1779, + "y2": 1614 + }, + "value": "3 600,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1570, + "x2": 2003, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 1563, + "x2": 2257, + "y2": 1614 + }, + "value": "3960,00", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 349, + "y1": 1739, + "x2": 856, + "y2": 1879 + }, + "value": "Yilong 5'x7' Handknotted Silk Carpet Home Interior Classic Luxury Area Rug 1047", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1739, + "x2": 1095, + "y2": 1794 + }, + "value": "1,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1739, + "x2": 1246, + "y2": 1787 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1426, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1269, + "x2": 1665, + "y2": 1305 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1665, + "y1": 1272, + "x2": 1779, + "y2": 1305 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1305 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1316 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2253, + "y2": 1305 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1305, + "x2": 2253, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1364, + "y1": 1732, + "x2": 1533, + "y2": 1798 + }, + "value": "8400,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1617, + "y1": 1732, + "x2": 1786, + "y2": 1798 + }, + "value": "8400,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1739, + "x2": 2003, + "y2": 1787 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2088, + "y1": 1732, + "x2": 2260, + "y2": 1798 + }, + "value": "9240,00", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1394, + "x2": 298, + "y2": 1445 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1570, + "x2": 298, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1739, + "x2": 298, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 198, + "y1": 1964, + "x2": 493, + "y2": 2019 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 2096, + "x2": 1048, + "y2": 2136 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2089, + "x2": 1121, + "y2": 2140 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 2181, + "x2": 1081, + "y2": 2221 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2085, + "x2": 1478, + "y2": 2136 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1474, + "y1": 2096, + "x2": 1584, + "y2": 2136 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1411, + "y1": 2177, + "x2": 1463, + "y2": 2221 + }, + "value": "15", + "label": "" + }, + { + "rect": { + "x1": 1459, + "y1": 2181, + "x2": 1584, + "y2": 2221 + }, + "value": "300,00", + "label": "" + }, + { + "rect": { + "x1": 1353, + "y1": 2269, + "x2": 1584, + "y2": 2313 + }, + "value": "$ 15 300,00", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1658, + "y1": 2269, + "x2": 1867, + "y2": 2317 + }, + "value": "$1530,00", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 1779, + "y1": 2096, + "x2": 1867, + "y2": 2136 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1702, + "y1": 2173, + "x2": 1867, + "y2": 2232 + }, + "value": "1530,00", + "label": "" + }, + { + "rect": { + "x1": 2025, + "y1": 2096, + "x2": 2139, + "y2": 2136 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2143, + "y1": 2096, + "x2": 2260, + "y2": 2136 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2084, + "y1": 2177, + "x2": 2139, + "y2": 2221 + }, + "value": "16", + "label": "" + }, + { + "rect": { + "x1": 2128, + "y1": 2181, + "x2": 2260, + "y2": 2221 + }, + "value": "830,00", + "label": "" + }, + { + "rect": { + "x1": 2029, + "y1": 2269, + "x2": 2260, + "y2": 2313 + }, + "value": "$ 16 830,00", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2272, + "x2": 856, + "y2": 2309 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_152.json b/docs/json/invoice_152.json new file mode 100644 index 0000000000000000000000000000000000000000..d7c59bdb29c0579c69e846eb5f330114fc697635 --- /dev/null +++ b/docs/json/invoice_152.json @@ -0,0 +1,683 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 60, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 165 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 805, + "y2": 162 + }, + "value": "13110923", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 316, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 316, + "y1": 210, + "x2": 382, + "y2": 265 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 210, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 213, + "x2": 1470, + "y2": 265 + }, + "value": "12/21/2013", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 662, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 757, + "x2": 856, + "y2": 919 + }, + "value": "Cruz, Meyer and Quinn 599 Nancy Common Suite 746 Holdershire, CO 20226", + "label": "header:seller" + }, + { + "rect": { + "x1": 1246, + "y1": 757, + "x2": 1864, + "y2": 919 + }, + "value": "Hodges, Lang and Thompson 685 Daniel Alley Audreyview, OR 28942", + "label": "header:client" + }, + { + "rect": { + "x1": 1239, + "y1": 971, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 971, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 364, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "992-81-7813", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "907-76-8703", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 294, + "y1": 971, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 1033, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 338, + "y1": 1030, + "x2": 945, + "y2": 1077 + }, + "value": "GB32AMZY31340900461145", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1144, + "x2": 375, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 309, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 584, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1095, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 349, + "y1": 1397, + "x2": 893, + "y2": 1522 + }, + "value": "54 Inches Marble Dinning Table Top Hand Crafted Reception Table Home Furniture", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1095, + "y2": 1445 + }, + "value": "4,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1150, + "y1": 1397, + "x2": 1239, + "y2": 1438 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1367, + "y1": 1394, + "x2": 1529, + "y2": 1445 + }, + "value": "4452,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1606, + "y1": 1397, + "x2": 1783, + "y2": 1438 + }, + "value": "17 808,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1438 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2077, + "y1": 1397, + "x2": 2253, + "y2": 1438 + }, + "value": "19 588,80", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1566, + "x2": 908, + "y2": 1706 + }, + "value": "24\"x24\" Top Marble White Table Carnelian Marquetry Interior Thanksgiving Gift", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1566, + "x2": 1092, + "y2": 1614 + }, + "value": "5,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1150, + "y1": 1566, + "x2": 1246, + "y2": 1614 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1426, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1665, + "y1": 1272, + "x2": 1783, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1367, + "y1": 1559, + "x2": 1533, + "y2": 1622 + }, + "value": "2000,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1606, + "y1": 1566, + "x2": 1783, + "y2": 1614 + }, + "value": "10 000,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1397, + "x2": 294, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1566, + "x2": 298, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2003, + "y2": 1614 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2073, + "y1": 1566, + "x2": 2257, + "y2": 1614 + }, + "value": "11000,00", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 198, + "y1": 1798, + "x2": 493, + "y2": 1842 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 1916, + "x2": 1051, + "y2": 1967 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 1916, + "x2": 1125, + "y2": 1971 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 996, + "y1": 2004, + "x2": 1084, + "y2": 2056 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 1916, + "x2": 1478, + "y2": 1967 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1467, + "y1": 1919, + "x2": 1588, + "y2": 1960 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 2008, + "x2": 1463, + "y2": 2052 + }, + "value": "27", + "label": "" + }, + { + "rect": { + "x1": 1459, + "y1": 2008, + "x2": 1588, + "y2": 2052 + }, + "value": "808,00", + "label": "" + }, + { + "rect": { + "x1": 1349, + "y1": 2089, + "x2": 1592, + "y2": 2151 + }, + "value": "$27808,00", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1654, + "y1": 2089, + "x2": 1871, + "y2": 2151 + }, + "value": "$2780,80", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 1779, + "y1": 1916, + "x2": 1871, + "y2": 1967 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1705, + "y1": 2008, + "x2": 1746, + "y2": 2056 + }, + "value": "2", + "label": "" + }, + { + "rect": { + "x1": 1731, + "y1": 2008, + "x2": 1864, + "y2": 2052 + }, + "value": "780,80", + "label": "" + }, + { + "rect": { + "x1": 2025, + "y1": 1919, + "x2": 2139, + "y2": 1960 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1919, + "x2": 2264, + "y2": 1964 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2080, + "y1": 2008, + "x2": 2135, + "y2": 2052 + }, + "value": "30", + "label": "" + }, + { + "rect": { + "x1": 2132, + "y1": 2008, + "x2": 2260, + "y2": 2052 + }, + "value": "588,80", + "label": "" + }, + { + "rect": { + "x1": 2025, + "y1": 2089, + "x2": 2264, + "y2": 2151 + }, + "value": "$30588,80", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 746, + "y1": 2100, + "x2": 856, + "y2": 2136 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_153.json b/docs/json/invoice_153.json new file mode 100644 index 0000000000000000000000000000000000000000..c9694181caf9ec48fdcf6b7a9f97f68780f6cd95 --- /dev/null +++ b/docs/json/invoice_153.json @@ -0,0 +1,673 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 61, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 165 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 805, + "y2": 162 + }, + "value": "86561552", + "label": "None:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 316, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 316, + "y1": 210, + "x2": 382, + "y2": 265 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 210, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 213, + "x2": 1470, + "y2": 265 + }, + "value": "03/09/2018", + "label": "None:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 757, + "x2": 776, + "y2": 919 + }, + "value": "Williams Group 0213 Stacie Port Suite 528 Martinezchester, IA 78438", + "label": "None:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 294, + "y1": 971, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 765, + "x2": 1941, + "y2": 919 + }, + "value": "Taylor-Howard 8050 Greene Turnpike Suite 104 Lake Elizabethchester, VT 74878", + "label": "None:client" + }, + { + "rect": { + "x1": 364, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "965-77-6799", + "label": "None:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1033, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "952-79-5757", + "label": "None:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1033, + "x2": 948, + "y2": 1070 + }, + "value": "GB63VZHN76142928623566", + "label": "None:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1144, + "x2": 375, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 309, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1269, + "x2": 584, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 662, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 971, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 971, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1095, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1397, + "x2": 889, + "y2": 1522 + }, + "value": "FAST Dell Optiplex Windows 10 Desktop Computer Tower C2D 4GB DVD WiFi 17\" LCD", + "label": "None:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1092, + "y2": 1445 + }, + "value": "5,00", + "label": "None:item_qty" + }, + { + "rect": { + "x1": 1150, + "y1": 1397, + "x2": 1239, + "y2": 1438 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 1401, + "x2": 1522, + "y2": 1438 + }, + "value": "124,95", + "label": "None:item_net_price" + }, + { + "rect": { + "x1": 1661, + "y1": 1401, + "x2": 1783, + "y2": 1438 + }, + "value": "624,75", + "label": "None:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1438 + }, + "value": "10%", + "label": "None:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1401, + "x2": 2253, + "y2": 1438 + }, + "value": "687,23", + "label": "None:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1566, + "x2": 864, + "y2": 1703 + }, + "value": "Sentry Gaming Computer I Ryzen 3 3200G I 16 GB Ram I Build-to-Order", + "label": "None:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1574, + "x2": 1092, + "y2": 1614 + }, + "value": "4,00", + "label": "None:item_qty" + }, + { + "rect": { + "x1": 1150, + "y1": 1566, + "x2": 1246, + "y2": 1614 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1426, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1272, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1269, + "x2": 1665, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1665, + "y1": 1272, + "x2": 1783, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 1574, + "x2": 1522, + "y2": 1614 + }, + "value": "594,99", + "label": "None:item_net_price" + }, + { + "rect": { + "x1": 1621, + "y1": 1566, + "x2": 1786, + "y2": 1614 + }, + "value": "2379,96", + "label": "None:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2003, + "y2": 1614 + }, + "value": "10%", + "label": "None:item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 1566, + "x2": 2253, + "y2": 1614 + }, + "value": "2 617,96", + "label": "None:item_gross_worth" + }, + { + "rect": { + "x1": 250, + "y1": 1397, + "x2": 294, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1566, + "x2": 298, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 198, + "y1": 1798, + "x2": 493, + "y2": 1842 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 1916, + "x2": 1051, + "y2": 1967 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 1916, + "x2": 1125, + "y2": 1971 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 996, + "y1": 2004, + "x2": 1084, + "y2": 2056 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 1916, + "x2": 1478, + "y2": 1967 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1467, + "y1": 1919, + "x2": 1588, + "y2": 1960 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 2004, + "x2": 1467, + "y2": 2056 + }, + "value": "3", + "label": "" + }, + { + "rect": { + "x1": 1456, + "y1": 2008, + "x2": 1580, + "y2": 2052 + }, + "value": "004,71", + "label": "" + }, + { + "rect": { + "x1": 1378, + "y1": 2092, + "x2": 1588, + "y2": 2144 + }, + "value": "$3004,71", + "label": "None:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1916, + "x2": 1871, + "y2": 1967 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1742, + "y1": 2008, + "x2": 1864, + "y2": 2052 + }, + "value": "300,47", + "label": "" + }, + { + "rect": { + "x1": 1687, + "y1": 2089, + "x2": 1871, + "y2": 2151 + }, + "value": "$300,47", + "label": "None:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 1919, + "x2": 2139, + "y2": 1960 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1919, + "x2": 2264, + "y2": 1964 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2106, + "y1": 2008, + "x2": 2135, + "y2": 2048 + }, + "value": "3", + "label": "" + }, + { + "rect": { + "x1": 2124, + "y1": 2008, + "x2": 2260, + "y2": 2052 + }, + "value": "305,18", + "label": "" + }, + { + "rect": { + "x1": 2051, + "y1": 2092, + "x2": 2264, + "y2": 2144 + }, + "value": "$3305,18", + "label": "None:total_gross_worth" + }, + { + "rect": { + "x1": 746, + "y1": 2100, + "x2": 856, + "y2": 2136 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_154.json b/docs/json/invoice_154.json new file mode 100644 index 0000000000000000000000000000000000000000..36820923e07540a8de384305b9e5948767ce3227 --- /dev/null +++ b/docs/json/invoice_154.json @@ -0,0 +1,653 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 62, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 164 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 808, + "y2": 164 + }, + "value": "66537515", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 208, + "x2": 322, + "y2": 267 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 384, + "y2": 270 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 376, + "y1": 212, + "x2": 519, + "y2": 267 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 216, + "x2": 1473, + "y2": 267 + }, + "value": "11/25/2018", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 205, + "y1": 760, + "x2": 778, + "y2": 921 + }, + "value": "Lucas-Bright 404 Adrian Ranch South Victorfurt, CO 37971", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 362, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 764, + "x2": 1885, + "y2": 925 + }, + "value": "Morris-Trujillo 75345 Alexis Radial Suite 968 Jeanville, CO 37508", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "910-77-5920", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 212, + "y1": 1030, + "x2": 333, + "y2": 1071 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "991-75-0436", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 336, + "y1": 1027, + "x2": 943, + "y2": 1078 + }, + "value": "GB36GFUF93342035354916", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 661, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 972, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1239, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1400, + "x2": 848, + "y2": 1531 + }, + "value": "VINTAGE IRON WINE BOTTLE HOLDER CADDY-HAND WROUGHT, CUT, SOLDERED", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1093, + "y2": 1443 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1400, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1400, + "x2": 1531, + "y2": 1440 + }, + "value": "22,50", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "112,50", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1400, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2134, + "y1": 1400, + "x2": 2254, + "y2": 1440 + }, + "value": "123,75", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1571, + "x2": 844, + "y2": 1699 + }, + "value": "Press Wine 15L Fruit Cider Apple Crusher Juice Grape Stainless Maker Grapes New", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1564, + "x2": 1093, + "y2": 1615 + }, + "value": "5,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1151, + "y1": 1564, + "x2": 1246, + "y2": 1615 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1268, + "x2": 1425, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1268, + "x2": 1531, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1663, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1268, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1305, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 1571, + "x2": 1527, + "y2": 1611 + }, + "value": "279,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1626, + "y1": 1564, + "x2": 1783, + "y2": 1615 + }, + "value": "1395,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1571, + "x2": 1999, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2094, + "y1": 1564, + "x2": 2254, + "y2": 1615 + }, + "value": "1534,50", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1400, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1571, + "x2": 296, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 1798, + "x2": 493, + "y2": 1845 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 1915, + "x2": 1049, + "y2": 1966 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1041, + "y1": 1915, + "x2": 1125, + "y2": 1970 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2006, + "x2": 1085, + "y2": 2057 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 1915, + "x2": 1476, + "y2": 1966 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 1922, + "x2": 1589, + "y2": 1959 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 2002, + "x2": 1593, + "y2": 2065 + }, + "value": "1507,50", + "label": "" + }, + { + "rect": { + "x1": 1378, + "y1": 2094, + "x2": 1589, + "y2": 2145 + }, + "value": "$1507,50", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1915, + "x2": 1871, + "y2": 1966 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1739, + "y1": 2010, + "x2": 1863, + "y2": 2054 + }, + "value": "150,75", + "label": "" + }, + { + "rect": { + "x1": 1692, + "y1": 2097, + "x2": 1863, + "y2": 2145 + }, + "value": "$ 150,75", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 1922, + "x2": 2141, + "y2": 1959 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1922, + "x2": 2262, + "y2": 1962 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2097, + "y1": 2006, + "x2": 2262, + "y2": 2057 + }, + "value": "1658,25", + "label": "" + }, + { + "rect": { + "x1": 2046, + "y1": 2094, + "x2": 2262, + "y2": 2145 + }, + "value": "$1658,25", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 745, + "y1": 2101, + "x2": 855, + "y2": 2138 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_155.json b/docs/json/invoice_155.json new file mode 100644 index 0000000000000000000000000000000000000000..462c2a31fbe43338402592e5d641b48bd61933e9 --- /dev/null +++ b/docs/json/invoice_155.json @@ -0,0 +1,893 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 63, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 164 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 808, + "y2": 164 + }, + "value": "17548173", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 208, + "x2": 322, + "y2": 267 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 384, + "y2": 270 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 376, + "y1": 212, + "x2": 519, + "y2": 267 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 216, + "x2": 1469, + "y2": 267 + }, + "value": "10/20/2012", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 756, + "x2": 778, + "y2": 921 + }, + "value": "Shaw and Sons 7192 Jessica Inlet Apt. 960 Karenhaven, GA 67765", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 362, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1845, + "y2": 925 + }, + "value": "Conrad, Smith and Watkins 83986 Potter Ford Suite 216 Jessicatown, KY 23742", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "941-82-2136", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 212, + "y1": 1030, + "x2": 333, + "y2": 1071 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "904-86-6711", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 336, + "y1": 1027, + "x2": 950, + "y2": 1078 + }, + "value": "GB93UZRN614151415520236090", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 661, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1239, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 351, + "y1": 1400, + "x2": 873, + "y2": 1524 + }, + "value": "Wall Mounted Upside Down Wine Bottle Rack Goblet Glass Holder Storage Organizer", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1093, + "y2": 1443 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1400, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1400, + "x2": 1531, + "y2": 1440 + }, + "value": "14,98", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "14,98", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1400, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1400, + "x2": 2254, + "y2": 1440 + }, + "value": "16,48", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1571, + "x2": 829, + "y2": 1706 + }, + "value": "Wine Openers.Heavy Duty Stainless Steel Hinges Wine Key.12Pcs/Random Color.", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1571, + "x2": 1093, + "y2": 1611 + }, + "value": "3,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1151, + "y1": 1564, + "x2": 1246, + "y2": 1615 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1571, + "x2": 1527, + "y2": 1611 + }, + "value": "29,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1571, + "x2": 1779, + "y2": 1611 + }, + "value": "89,97", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1571, + "x2": 1999, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1571, + "x2": 2254, + "y2": 1611 + }, + "value": "98,97", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1739, + "x2": 884, + "y2": 1831 + }, + "value": "New without boxes heavy duty plastic wine glasses lot of 16", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1739, + "x2": 1093, + "y2": 1794 + }, + "value": "2,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1743, + "x2": 1527, + "y2": 1783 + }, + "value": "12,95", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1681, + "y1": 1743, + "x2": 1783, + "y2": 1783 + }, + "value": "25,90", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1743, + "x2": 1999, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1743, + "x2": 2254, + "y2": 1783 + }, + "value": "28,49", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1871, + "x2": 870, + "y2": 1999 + }, + "value": "EU Blichmann Riptide Brewing Pump - Hombrew Beer Wine Food Grade Stainless Steel", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1871, + "x2": 1093, + "y2": 1922 + }, + "value": "5,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1871, + "x2": 1239, + "y2": 1915 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1399, + "y1": 1871, + "x2": 1527, + "y2": 1915 + }, + "value": "200,00", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1626, + "y1": 1871, + "x2": 1779, + "y2": 1918 + }, + "value": "1 000,00", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1871, + "x2": 1999, + "y2": 1915 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2097, + "y1": 1871, + "x2": 2254, + "y2": 1918 + }, + "value": "1 100,00", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 2043, + "x2": 870, + "y2": 2130 + }, + "value": "Pier 1 Multi-color Cordial Liqueur Wine Glasses Set of 4", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 2043, + "x2": 1093, + "y2": 2097 + }, + "value": "5,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2046, + "x2": 1246, + "y2": 2087 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1268, + "x2": 1425, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1268, + "x2": 1531, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1663, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1268, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1305, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 2050, + "x2": 1531, + "y2": 2087 + }, + "value": "30,00", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1659, + "y1": 2050, + "x2": 1779, + "y2": 2087 + }, + "value": "150,00", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2046, + "x2": 1999, + "y2": 2087 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2134, + "y1": 2050, + "x2": 2254, + "y2": 2087 + }, + "value": "165,00", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1400, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1571, + "x2": 296, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1739, + "x2": 296, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1871, + "x2": 296, + "y2": 1918 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2043, + "x2": 296, + "y2": 2090 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 2225, + "x2": 493, + "y2": 2273 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2353, + "x2": 1045, + "y2": 2397 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1041, + "y1": 2350, + "x2": 1125, + "y2": 2401 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 2441, + "x2": 1082, + "y2": 2485 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2353, + "x2": 1469, + "y2": 2397 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2353, + "x2": 1589, + "y2": 2397 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 2430, + "x2": 1593, + "y2": 2492 + }, + "value": "1280,85", + "label": "" + }, + { + "rect": { + "x1": 1378, + "y1": 2521, + "x2": 1586, + "y2": 2580 + }, + "value": "$1 280,85", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2353, + "x2": 1871, + "y2": 2397 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1739, + "y1": 2441, + "x2": 1863, + "y2": 2485 + }, + "value": "128,09", + "label": "" + }, + { + "rect": { + "x1": 1692, + "y1": 2529, + "x2": 1863, + "y2": 2576 + }, + "value": "$ 128,09", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2353, + "x2": 2141, + "y2": 2397 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2353, + "x2": 2262, + "y2": 2397 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2097, + "y1": 2437, + "x2": 2262, + "y2": 2488 + }, + "value": "1408,94", + "label": "" + }, + { + "rect": { + "x1": 2046, + "y1": 2529, + "x2": 2262, + "y2": 2576 + }, + "value": "$1408,94", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 745, + "y1": 2529, + "x2": 855, + "y2": 2573 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_156.json b/docs/json/invoice_156.json new file mode 100644 index 0000000000000000000000000000000000000000..58351ec05412e443288616cc165ea93b0307dd6d --- /dev/null +++ b/docs/json/invoice_156.json @@ -0,0 +1,653 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 64, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 164 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 113, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 808, + "y2": 164 + }, + "value": "16581981", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 208, + "x2": 322, + "y2": 267 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 384, + "y2": 270 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 376, + "y1": 208, + "x2": 519, + "y2": 267 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1473, + "y2": 267 + }, + "value": "07/26/2016", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 387, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 756, + "x2": 639, + "y2": 928 + }, + "value": "Barber LLC 9294 Tina Plains East Emily, IL 26489", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 362, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1816, + "y2": 928 + }, + "value": "Case, Wagner and Johnson 2308 Sarah Island South Larry, NH 84344", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 979, + "x2": 639, + "y2": 1020 + }, + "value": "921-84-3806", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 333, + "y2": 1071 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "921-84-3388", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1030, + "x2": 935, + "y2": 1082 + }, + "value": "GB67JWCS29906137954735", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 661, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 972, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1239, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1400, + "x2": 899, + "y2": 1524 + }, + "value": "NEW TOMMY HILFIGER RED WHITE BLUE #5 COLOR BLOCK BEACH SANDALS BOYS KIDS 8/9", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1093, + "y2": 1443 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1400, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1400, + "x2": 1527, + "y2": 1440 + }, + "value": "34,50", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "172,50", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1400, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2134, + "y1": 1400, + "x2": 2251, + "y2": 1440 + }, + "value": "189,75", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1571, + "x2": 870, + "y2": 1692 + }, + "value": "Kid's Unicorn Sunglasses Girls Rainbow Mythical Fashion Shades", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1571, + "x2": 1089, + "y2": 1611 + }, + "value": "3,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1151, + "y1": 1564, + "x2": 1246, + "y2": 1615 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1268, + "x2": 1425, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1268, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1663, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1268, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1268, + "x2": 2251, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1305, + "x2": 2251, + "y2": 1352 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1571, + "x2": 1527, + "y2": 1611 + }, + "value": "9,95", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1571, + "x2": 1779, + "y2": 1611 + }, + "value": "29,85", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1571, + "x2": 1999, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1571, + "x2": 2251, + "y2": 1611 + }, + "value": "32,83", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1400, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1571, + "x2": 296, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 1798, + "x2": 493, + "y2": 1842 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 1915, + "x2": 1049, + "y2": 1966 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1041, + "y1": 1915, + "x2": 1125, + "y2": 1970 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2006, + "x2": 1085, + "y2": 2054 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 1915, + "x2": 1476, + "y2": 1966 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 1922, + "x2": 1589, + "y2": 1959 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1465, + "y1": 2010, + "x2": 1586, + "y2": 2054 + }, + "value": "202,35", + "label": "" + }, + { + "rect": { + "x1": 1410, + "y1": 2090, + "x2": 1593, + "y2": 2152 + }, + "value": "$202,35", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1915, + "x2": 1871, + "y2": 1966 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2010, + "x2": 1863, + "y2": 2054 + }, + "value": "20,23", + "label": "" + }, + { + "rect": { + "x1": 1710, + "y1": 2090, + "x2": 1871, + "y2": 2156 + }, + "value": "$20,23", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 1922, + "x2": 2141, + "y2": 1959 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1922, + "x2": 2262, + "y2": 1959 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 2010, + "x2": 2258, + "y2": 2054 + }, + "value": "222,58", + "label": "" + }, + { + "rect": { + "x1": 2090, + "y1": 2097, + "x2": 2258, + "y2": 2145 + }, + "value": "$ 222,58", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 745, + "y1": 2101, + "x2": 855, + "y2": 2138 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_157.json b/docs/json/invoice_157.json new file mode 100644 index 0000000000000000000000000000000000000000..758f5bdc46e342eec1b1461f3251179c8d753cf6 --- /dev/null +++ b/docs/json/invoice_157.json @@ -0,0 +1,843 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 65, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 164 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 172 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 113, + "x2": 808, + "y2": 164 + }, + "value": "27188556", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 208, + "x2": 322, + "y2": 267 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 384, + "y2": 270 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 376, + "y1": 212, + "x2": 519, + "y2": 267 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 216, + "x2": 1473, + "y2": 267 + }, + "value": "03/10/2019", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 672, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 661, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 756, + "x2": 903, + "y2": 921 + }, + "value": "Hicks and Sons 6468 Sandra Mountains Apt. 893 South Carlamouth, TN 11722", + "label": "header:seller" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1882, + "y2": 925 + }, + "value": "Washington and Sons 420 Jonathan Union Suite 057 Mcdonaldbury, CA 32669", + "label": "header:client" + }, + { + "rect": { + "x1": 1246, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "943-87-1893", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 1403, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "936-98-2132", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 362, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 212, + "y1": 1030, + "x2": 333, + "y2": 1071 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 336, + "y1": 1027, + "x2": 932, + "y2": 1078 + }, + "value": "GB14GIRC85339920238877", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 234, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1400, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1392, + "x2": 811, + "y2": 1524 + }, + "value": "26\"x26\" Top White Marble Coffee Table Historical Taj Mahal Art Black Friday Gift", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1571, + "x2": 296, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 1392, + "x2": 1093, + "y2": 1443 + }, + "value": "4,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1370, + "y1": 1392, + "x2": 1531, + "y2": 1443 + }, + "value": "2226,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1622, + "y1": 1392, + "x2": 1783, + "y2": 1443 + }, + "value": "8904,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1400, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2090, + "y1": 1389, + "x2": 2258, + "y2": 1451 + }, + "value": "9794,40", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1564, + "x2": 906, + "y2": 1696 + }, + "value": "18\"x14\" Modern Top Oval Coffee Table With 15\" Tall Stand Christmas Gift D\u00e9cor", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1739, + "x2": 296, + "y2": 1787 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 1005, + "y1": 1571, + "x2": 1093, + "y2": 1611 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1367, + "y1": 1557, + "x2": 1531, + "y2": 1619 + }, + "value": "1200,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1619, + "y1": 1557, + "x2": 1787, + "y2": 1619 + }, + "value": "4800,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1571, + "x2": 1999, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2090, + "y1": 1557, + "x2": 2258, + "y2": 1619 + }, + "value": "5280,00", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1743, + "x2": 862, + "y2": 1867 + }, + "value": "15\"x15\" White Marble Coffee Table Top With 15\" Tall Stand Semi Precious Art Deco", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1915, + "x2": 296, + "y2": 1959 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 1739, + "x2": 1093, + "y2": 1794 + }, + "value": "4,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1399, + "y1": 1743, + "x2": 1527, + "y2": 1783 + }, + "value": "575,99", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1619, + "y1": 1732, + "x2": 1787, + "y2": 1798 + }, + "value": "2303,96", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1743, + "x2": 1999, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2094, + "y1": 1739, + "x2": 2254, + "y2": 1787 + }, + "value": "2 534,36", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1915, + "x2": 844, + "y2": 2039 + }, + "value": "13 Inch Marble Coffee Table Stone Game Table Mother of Pearl with Check Pattern", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1316 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1312 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1400, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1564, + "x2": 1246, + "y2": 1615 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 1915, + "x2": 1093, + "y2": 1962 + }, + "value": "3,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1915, + "x2": 1239, + "y2": 1959 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1268, + "x2": 1425, + "y2": 1312 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1268, + "x2": 1531, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1666, + "y2": 1312 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1666, + "y1": 1268, + "x2": 1779, + "y2": 1312 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1312 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1316 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1268, + "x2": 2254, + "y2": 1312 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1305, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 1918, + "x2": 1527, + "y2": 1959 + }, + "value": "301,75", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1918, + "x2": 1779, + "y2": 1959 + }, + "value": "905,25", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1915, + "x2": 1999, + "y2": 1959 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1915, + "x2": 2254, + "y2": 1959 + }, + "value": "995,78", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 197, + "y1": 2138, + "x2": 493, + "y2": 2189 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2266, + "x2": 1045, + "y2": 2306 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1041, + "y1": 2258, + "x2": 1125, + "y2": 2317 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2353, + "x2": 1082, + "y2": 2397 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2266, + "x2": 1473, + "y2": 2306 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2266, + "x2": 1589, + "y2": 2306 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1410, + "y1": 2353, + "x2": 1465, + "y2": 2397 + }, + "value": "16", + "label": "" + }, + { + "rect": { + "x1": 1454, + "y1": 2353, + "x2": 1589, + "y2": 2397 + }, + "value": "913,21", + "label": "" + }, + { + "rect": { + "x1": 1356, + "y1": 2437, + "x2": 1586, + "y2": 2488 + }, + "value": "$ 16 913,21", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1655, + "y1": 2437, + "x2": 1867, + "y2": 2488 + }, + "value": "$1691,32", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 1779, + "y1": 2266, + "x2": 1871, + "y2": 2306 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1703, + "y1": 2353, + "x2": 1739, + "y2": 2397 + }, + "value": "1", + "label": "" + }, + { + "rect": { + "x1": 1725, + "y1": 2353, + "x2": 1863, + "y2": 2397 + }, + "value": "691,32", + "label": "" + }, + { + "rect": { + "x1": 2024, + "y1": 2266, + "x2": 2141, + "y2": 2306 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2266, + "x2": 2262, + "y2": 2306 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2086, + "y1": 2353, + "x2": 2134, + "y2": 2397 + }, + "value": "18", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 2353, + "x2": 2262, + "y2": 2397 + }, + "value": "604,53", + "label": "" + }, + { + "rect": { + "x1": 2024, + "y1": 2437, + "x2": 2258, + "y2": 2488 + }, + "value": "$ 18 604,53", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 745, + "y1": 2445, + "x2": 851, + "y2": 2485 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_158.json b/docs/json/invoice_158.json new file mode 100644 index 0000000000000000000000000000000000000000..3878f3f817e39701fd27eed8813f11aa862ef754 --- /dev/null +++ b/docs/json/invoice_158.json @@ -0,0 +1,973 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 66, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 164 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 113, + "x2": 808, + "y2": 164 + }, + "value": "22537855", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 208, + "x2": 322, + "y2": 267 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 384, + "y2": 270 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 376, + "y1": 212, + "x2": 519, + "y2": 267 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 216, + "x2": 1473, + "y2": 267 + }, + "value": "07/03/2013", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 661, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 756, + "x2": 818, + "y2": 921 + }, + "value": "Barton, Garcia and Richards 3194 Brianna Path Suite 785 Cainfort, WV 50923", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 362, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1871, + "y2": 921 + }, + "value": "Wilson, Wagner and Newman 7038 Burns Street Rhodesville, MN 41253", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "945-96-2248", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 212, + "y1": 1030, + "x2": 333, + "y2": 1071 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "961-85-8571", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1030, + "x2": 935, + "y2": 1071 + }, + "value": "GB98FOPY29496953726939", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1239, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1400, + "x2": 899, + "y2": 1524 + }, + "value": "Muted Vegetable Dye Khootan Oriental Area Rug Hand-knotted Floral 8'x11' Carpet", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1096, + "y2": 1443 + }, + "value": "4,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1400, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1370, + "y1": 1392, + "x2": 1531, + "y2": 1443 + }, + "value": "2015,64", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1622, + "y1": 1392, + "x2": 1783, + "y2": 1443 + }, + "value": "8062,56", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1400, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2094, + "y1": 1392, + "x2": 2254, + "y2": 1443 + }, + "value": "8868,82", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1571, + "x2": 884, + "y2": 1706 + }, + "value": "Imitation Wool Carpet Rugs Koala Panda Plush Living Room Blankets Non Slip Decor", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1564, + "x2": 1093, + "y2": 1615 + }, + "value": "5,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1151, + "y1": 1564, + "x2": 1246, + "y2": 1615 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1571, + "x2": 1527, + "y2": 1611 + }, + "value": "26,11", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1571, + "x2": 1779, + "y2": 1611 + }, + "value": "130,55", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1571, + "x2": 1999, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2134, + "y1": 1571, + "x2": 2254, + "y2": 1611 + }, + "value": "143,61", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1743, + "x2": 873, + "y2": 1831 + }, + "value": "Moroccan Handmade Amazigh Carpet 9'2\" x 4'5\"", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1739, + "x2": 1093, + "y2": 1794 + }, + "value": "2,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 1743, + "x2": 1531, + "y2": 1783 + }, + "value": "329,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1743, + "x2": 1779, + "y2": 1783 + }, + "value": "658,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1743, + "x2": 1999, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2134, + "y1": 1743, + "x2": 2254, + "y2": 1783 + }, + "value": "723,80", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1871, + "x2": 884, + "y2": 2002 + }, + "value": "YILONG 1.2x1.7' 300L Handmade Tree of Life Silk Carpet Home Tapestry LH693A", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1871, + "x2": 1093, + "y2": 1915 + }, + "value": "2,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1871, + "x2": 1239, + "y2": 1915 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 1871, + "x2": 1527, + "y2": 1915 + }, + "value": "188,00", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1871, + "x2": 1779, + "y2": 1915 + }, + "value": "376,00", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1871, + "x2": 1999, + "y2": 1915 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1871, + "x2": 2254, + "y2": 1915 + }, + "value": "413,60", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 2043, + "x2": 903, + "y2": 2174 + }, + "value": "Carton Tiger Print Area Rug Faux Skin Rug Hide Cute Carpet Floor Mat Home Decor", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 2043, + "x2": 1093, + "y2": 2097 + }, + "value": "2,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1425, + "y1": 2046, + "x2": 1531, + "y2": 2087 + }, + "value": "10,99", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 2046, + "x2": 1779, + "y2": 2087 + }, + "value": "21,98", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2046, + "x2": 1999, + "y2": 2087 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 2046, + "x2": 2254, + "y2": 2087 + }, + "value": "24,18", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 1155, + "y1": 2046, + "x2": 1246, + "y2": 2087 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 2214, + "x2": 913, + "y2": 2353 + }, + "value": "7x10 Diamond Geometric Rugs Contemporary Black Color Large Mat Dhurrie Carpet", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 2218, + "x2": 1093, + "y2": 2266 + }, + "value": "1,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2218, + "x2": 1239, + "y2": 2266 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1268, + "x2": 1531, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1663, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1268, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1305, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 2218, + "x2": 1531, + "y2": 2266 + }, + "value": "350,00", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 2218, + "x2": 1779, + "y2": 2266 + }, + "value": "350,00", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2218, + "x2": 1999, + "y2": 2266 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2134, + "y1": 2218, + "x2": 2254, + "y2": 2266 + }, + "value": "385,00", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1400, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1571, + "x2": 296, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1739, + "x2": 296, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1871, + "x2": 296, + "y2": 1918 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2043, + "x2": 296, + "y2": 2090 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2214, + "x2": 296, + "y2": 2266 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 2441, + "x2": 493, + "y2": 2488 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2565, + "x2": 1045, + "y2": 2609 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2565, + "x2": 1125, + "y2": 2616 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2649, + "x2": 1085, + "y2": 2704 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2565, + "x2": 1473, + "y2": 2609 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2565, + "x2": 1589, + "y2": 2609 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 2649, + "x2": 1593, + "y2": 2704 + }, + "value": "9599,09", + "label": "" + }, + { + "rect": { + "x1": 1378, + "y1": 2737, + "x2": 1589, + "y2": 2792 + }, + "value": "$9599,09", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2565, + "x2": 1871, + "y2": 2609 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1739, + "y1": 2660, + "x2": 1863, + "y2": 2700 + }, + "value": "959,91", + "label": "" + }, + { + "rect": { + "x1": 1692, + "y1": 2744, + "x2": 1863, + "y2": 2792 + }, + "value": "$ 959,91", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2565, + "x2": 2141, + "y2": 2609 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2565, + "x2": 2262, + "y2": 2609 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2083, + "y1": 2649, + "x2": 2262, + "y2": 2704 + }, + "value": "10559,00", + "label": "" + }, + { + "rect": { + "x1": 2028, + "y1": 2737, + "x2": 2262, + "y2": 2792 + }, + "value": "$ 10559,00", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 745, + "y1": 2744, + "x2": 855, + "y2": 2784 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_159.json b/docs/json/invoice_159.json new file mode 100644 index 0000000000000000000000000000000000000000..24fd96a70d6696f854a9823e0f7b240b78327d67 --- /dev/null +++ b/docs/json/invoice_159.json @@ -0,0 +1,813 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 67, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 164 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 113, + "x2": 808, + "y2": 164 + }, + "value": "99053443", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 208, + "x2": 322, + "y2": 267 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 384, + "y2": 270 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 376, + "y1": 212, + "x2": 519, + "y2": 267 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 216, + "x2": 1473, + "y2": 267 + }, + "value": "06/04/2019", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 661, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 205, + "y1": 756, + "x2": 837, + "y2": 921 + }, + "value": "Chavez, Morton and Gonzales PSC 9799, Box 3101 APO AA 71589", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 362, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1893, + "y2": 921 + }, + "value": "Walters, Cantu and Duran 9356 Burnett Rest Apt. 035 Port Kennethmouth, NE 89318", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "935-78-4545", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 212, + "y1": 1030, + "x2": 333, + "y2": 1071 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "911-94-2974", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 336, + "y1": 1027, + "x2": 943, + "y2": 1078 + }, + "value": "GB78Q5ZR27259773261475", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1239, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1400, + "x2": 873, + "y2": 1484 + }, + "value": "One Year through the Bible by David R. Veerman", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1093, + "y2": 1443 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1400, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1392, + "x2": 1531, + "y2": 1443 + }, + "value": "4,49", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "22,45", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1400, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1400, + "x2": 2254, + "y2": 1440 + }, + "value": "24,70", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 351, + "y1": 1524, + "x2": 866, + "y2": 1615 + }, + "value": "A History of the Indians of the United States (The", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1531, + "x2": 1093, + "y2": 1571 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1151, + "y1": 1524, + "x2": 1246, + "y2": 1575 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1531, + "x2": 1531, + "y2": 1571 + }, + "value": "4,49", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1695, + "y1": 1524, + "x2": 1787, + "y2": 1575 + }, + "value": "4,49", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1524, + "x2": 2002, + "y2": 1575 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2170, + "y1": 1531, + "x2": 2254, + "y2": 1571 + }, + "value": "4,94", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1652, + "x2": 851, + "y2": 1783 + }, + "value": "Game of Thrones: The Poster Collection (Paperback or Softback)", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1652, + "x2": 1093, + "y2": 1706 + }, + "value": "5,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1659, + "x2": 1239, + "y2": 1699 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1663, + "x2": 1527, + "y2": 1706 + }, + "value": "20,87", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1663, + "x2": 1779, + "y2": 1706 + }, + "value": "104,35", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1652, + "x2": 2002, + "y2": 1706 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2134, + "y1": 1663, + "x2": 2254, + "y2": 1706 + }, + "value": "114,79", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1831, + "x2": 884, + "y2": 1959 + }, + "value": "In the Footsteps of the Russian Snowman (Paperback or Softback)", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1831, + "x2": 1093, + "y2": 1871 + }, + "value": "3,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1831, + "x2": 1239, + "y2": 1871 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1268, + "x2": 1531, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1663, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1268, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1305, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1831, + "x2": 1527, + "y2": 1871 + }, + "value": "25,87", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1831, + "x2": 1779, + "y2": 1871 + }, + "value": "77,61", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1831, + "x2": 1999, + "y2": 1871 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1831, + "x2": 2254, + "y2": 1871 + }, + "value": "85,37", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1400, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1527, + "x2": 296, + "y2": 1571 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1659, + "x2": 296, + "y2": 1706 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1831, + "x2": 296, + "y2": 1878 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 2054, + "x2": 493, + "y2": 2105 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2182, + "x2": 1045, + "y2": 2225 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1041, + "y1": 2178, + "x2": 1125, + "y2": 2229 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 994, + "y1": 2266, + "x2": 1085, + "y2": 2317 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2182, + "x2": 1473, + "y2": 2225 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2182, + "x2": 1589, + "y2": 2225 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1465, + "y1": 2269, + "x2": 1589, + "y2": 2317 + }, + "value": "208,90", + "label": "" + }, + { + "rect": { + "x1": 1414, + "y1": 2357, + "x2": 1589, + "y2": 2408 + }, + "value": "$ 208,90", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2182, + "x2": 1871, + "y2": 2225 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2269, + "x2": 1863, + "y2": 2317 + }, + "value": "20,89", + "label": "" + }, + { + "rect": { + "x1": 1710, + "y1": 2350, + "x2": 1871, + "y2": 2415 + }, + "value": "$20,89", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2182, + "x2": 2141, + "y2": 2225 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2182, + "x2": 2262, + "y2": 2225 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 2269, + "x2": 2262, + "y2": 2317 + }, + "value": "229,79", + "label": "" + }, + { + "rect": { + "x1": 2090, + "y1": 2357, + "x2": 2258, + "y2": 2408 + }, + "value": "$ 229,79", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 745, + "y1": 2361, + "x2": 851, + "y2": 2401 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_16.json b/docs/json/invoice_16.json new file mode 100644 index 0000000000000000000000000000000000000000..7d3c2bd3e75fdb198cf7e7c245d5d3ca302ad034 --- /dev/null +++ b/docs/json/invoice_16.json @@ -0,0 +1,663 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 68, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 406, + "y2": 164 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 113, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 113, + "x2": 808, + "y2": 164 + }, + "value": "93356118", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 216, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 216, + "x2": 1473, + "y2": 263 + }, + "value": "06/14/2013", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 387, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 760, + "x2": 702, + "y2": 917 + }, + "value": "Simon-Colon 05647 Oconnell Coves Dennistown, MD 47477", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1820, + "y2": 917 + }, + "value": "Robinson, Cannon and Ray 630 Alex Islands Suite 809 Brandonport, NC 62378", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "974-95-4763", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 329, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "976-82-9140", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 343, + "y1": 1030, + "x2": 950, + "y2": 1067 + }, + "value": "GB81XWKP43253048936289", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 968, + "x2": 1334, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1396, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1012, + "y1": 1264, + "x2": 1096, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1239, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1396, + "x2": 903, + "y2": 1524 + }, + "value": "Semi Precious Stone Inlay Art Island Table Top Marble Dinning Table 36 Inches", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1093, + "y2": 1447 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1363, + "y1": 1385, + "x2": 1531, + "y2": 1451 + }, + "value": "1751,25", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1622, + "y1": 1392, + "x2": 1779, + "y2": 1443 + }, + "value": "8 756,25", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2094, + "y1": 1392, + "x2": 2258, + "y2": 1447 + }, + "value": "9631,87", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 351, + "y1": 1568, + "x2": 899, + "y2": 1696 + }, + "value": "6 Pack Metal Plated Table Locks Dining Training Table Buckles Connectors Hardwar", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1568, + "x2": 1093, + "y2": 1619 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1151, + "y1": 1568, + "x2": 1246, + "y2": 1619 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1663, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1308, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1571, + "x2": 1527, + "y2": 1611 + }, + "value": "12,73", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1571, + "x2": 1779, + "y2": 1611 + }, + "value": "12,73", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 2002, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1571, + "x2": 2254, + "y2": 1611 + }, + "value": "14,00", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 296, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 1794, + "x2": 493, + "y2": 1845 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 1915, + "x2": 1052, + "y2": 1966 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 1915, + "x2": 1122, + "y2": 1970 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2002, + "x2": 1085, + "y2": 2057 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 1915, + "x2": 1473, + "y2": 1966 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 1922, + "x2": 1586, + "y2": 1959 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1995, + "x2": 1593, + "y2": 2065 + }, + "value": "8768,98", + "label": "" + }, + { + "rect": { + "x1": 1374, + "y1": 2087, + "x2": 1589, + "y2": 2152 + }, + "value": "$8768,98", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1915, + "x2": 1871, + "y2": 1966 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1739, + "y1": 2010, + "x2": 1867, + "y2": 2054 + }, + "value": "876,90", + "label": "" + }, + { + "rect": { + "x1": 1684, + "y1": 2087, + "x2": 1867, + "y2": 2152 + }, + "value": "$876,90", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 1922, + "x2": 2138, + "y2": 1959 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1922, + "x2": 2262, + "y2": 1962 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2101, + "y1": 2006, + "x2": 2138, + "y2": 2054 + }, + "value": "9", + "label": "" + }, + { + "rect": { + "x1": 2127, + "y1": 2010, + "x2": 2262, + "y2": 2054 + }, + "value": "645,88", + "label": "" + }, + { + "rect": { + "x1": 2050, + "y1": 2094, + "x2": 2262, + "y2": 2145 + }, + "value": "$9645,88", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2101, + "x2": 859, + "y2": 2138 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_160.json b/docs/json/invoice_160.json new file mode 100644 index 0000000000000000000000000000000000000000..2a0eadf977ac15e6b2374c679d7be3ce4a0daa70 --- /dev/null +++ b/docs/json/invoice_160.json @@ -0,0 +1,813 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 69, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 164 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 808, + "y2": 164 + }, + "value": "64218159", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 208, + "x2": 322, + "y2": 267 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 384, + "y2": 270 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 376, + "y1": 212, + "x2": 519, + "y2": 267 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 216, + "x2": 1473, + "y2": 267 + }, + "value": "11/09/2013", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 387, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 760, + "x2": 665, + "y2": 925 + }, + "value": "Price-Bishop 216 Christopher Inlet Leslieport, MS 04768", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 362, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1794, + "y2": 921 + }, + "value": "Mata, Pena and Avery 7006 Jill Tunnel Suite 463 North Sarah, WV45252", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "951-85-6757", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 212, + "y1": 1030, + "x2": 333, + "y2": 1071 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "980-74-4827", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1030, + "x2": 924, + "y2": 1071 + }, + "value": "GB841G5P08278278890356055", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 661, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1239, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1400, + "x2": 855, + "y2": 1491 + }, + "value": "The Cheater (Fear Street, No. 18) by R. L. Stine", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1096, + "y2": 1443 + }, + "value": "4,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1400, + "x2": 1239, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1392, + "x2": 1531, + "y2": 1443 + }, + "value": "4,09", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1400, + "x2": 1783, + "y2": 1440 + }, + "value": "16,36", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1400, + "x2": 1999, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1400, + "x2": 2254, + "y2": 1440 + }, + "value": "18,00", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 351, + "y1": 1524, + "x2": 866, + "y2": 1611 + }, + "value": "The Picture of Dorian Gray by Oscar Wilde", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1531, + "x2": 1093, + "y2": 1571 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1151, + "y1": 1524, + "x2": 1246, + "y2": 1575 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1531, + "x2": 1531, + "y2": 1571 + }, + "value": "4,49", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1695, + "y1": 1524, + "x2": 1787, + "y2": 1575 + }, + "value": "4,49", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1524, + "x2": 2002, + "y2": 1575 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2170, + "y1": 1531, + "x2": 2254, + "y2": 1571 + }, + "value": "4,94", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 351, + "y1": 1652, + "x2": 734, + "y2": 1706 + }, + "value": "Luke S Fate Star Wars", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1663, + "x2": 1093, + "y2": 1706 + }, + "value": "4,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1659, + "x2": 1239, + "y2": 1699 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1663, + "x2": 1531, + "y2": 1706 + }, + "value": "4,49", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1663, + "x2": 1779, + "y2": 1706 + }, + "value": "17,96", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1652, + "x2": 2002, + "y2": 1706 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2156, + "y1": 1663, + "x2": 2254, + "y2": 1706 + }, + "value": "19,76", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 351, + "y1": 1743, + "x2": 800, + "y2": 1831 + }, + "value": "All American History Vol 1 Student Reader", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1750, + "x2": 1093, + "y2": 1794 + }, + "value": "2,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1151, + "y1": 1743, + "x2": 1246, + "y2": 1798 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1268, + "x2": 1531, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1663, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1268, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 1999, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1305, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1750, + "x2": 1531, + "y2": 1794 + }, + "value": "9,99", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1750, + "x2": 1779, + "y2": 1794 + }, + "value": "19,98", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1743, + "x2": 2002, + "y2": 1798 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1750, + "x2": 2254, + "y2": 1794 + }, + "value": "21,98", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1400, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1527, + "x2": 296, + "y2": 1571 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1659, + "x2": 296, + "y2": 1706 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1743, + "x2": 296, + "y2": 1794 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 201, + "y1": 1937, + "x2": 490, + "y2": 1973 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2054, + "x2": 1045, + "y2": 2097 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1041, + "y1": 2054, + "x2": 1125, + "y2": 2108 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 2145, + "x2": 1082, + "y2": 2189 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2054, + "x2": 1469, + "y2": 2097 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2057, + "x2": 1589, + "y2": 2097 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1483, + "y1": 2145, + "x2": 1589, + "y2": 2189 + }, + "value": "58,79", + "label": "" + }, + { + "rect": { + "x1": 1432, + "y1": 2225, + "x2": 1593, + "y2": 2291 + }, + "value": "$58,79", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2054, + "x2": 1871, + "y2": 2097 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1779, + "y1": 2141, + "x2": 1871, + "y2": 2192 + }, + "value": "5,88", + "label": "" + }, + { + "rect": { + "x1": 1739, + "y1": 2229, + "x2": 1867, + "y2": 2280 + }, + "value": "$5,88", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2054, + "x2": 2141, + "y2": 2097 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2054, + "x2": 2262, + "y2": 2097 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2156, + "y1": 2145, + "x2": 2262, + "y2": 2189 + }, + "value": "64,67", + "label": "" + }, + { + "rect": { + "x1": 2105, + "y1": 2225, + "x2": 2262, + "y2": 2291 + }, + "value": "$64,67", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 745, + "y1": 2233, + "x2": 851, + "y2": 2273 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_161.json b/docs/json/invoice_161.json new file mode 100644 index 0000000000000000000000000000000000000000..5a0e890369dbc3f11d83cc5c8924fbcea5594796 --- /dev/null +++ b/docs/json/invoice_161.json @@ -0,0 +1,583 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 70, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "29333870", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 320, + "y2": 268 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 268 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1470, + "y2": 268 + }, + "value": "03/06/2021", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 386, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 761, + "x2": 695, + "y2": 919 + }, + "value": "Watson-Harris 2272 Elizabeth Rue Port Melissa, NY 40256", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 360, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 761, + "x2": 1687, + "y2": 927 + }, + "value": "Castillo-Obrien 94800 Diane Via Kellybury, MN 10858", + "label": "header:client" + }, + { + "rect": { + "x1": 368, + "y1": 978, + "x2": 636, + "y2": 1019 + }, + "value": "916-72-9081", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 213, + "y1": 1030, + "x2": 331, + "y2": 1070 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 978, + "x2": 1676, + "y2": 1019 + }, + "value": "981-84-1838", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1033, + "x2": 923, + "y2": 1070 + }, + "value": "GB82D)FU82ZI3146210425", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 235, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1269, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 298, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1397, + "x2": 838, + "y2": 1526 + }, + "value": "FASHIONCRAFT 'Love Is A Voyage' Wine Bottle Topper Silvertoned 3 1/2\"", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1239, + "y1": 662, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1092, + "y2": 1441 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1430, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1269, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1269, + "x2": 1661, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1269, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2007, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1353 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1444, + "y1": 1394, + "x2": 1533, + "y2": 1441 + }, + "value": "9,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1698, + "y1": 1394, + "x2": 1783, + "y2": 1441 + }, + "value": "9,99", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1397, + "x2": 2253, + "y2": 1441 + }, + "value": "10,99", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 198, + "y1": 1622, + "x2": 493, + "y2": 1673 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 1747, + "x2": 1048, + "y2": 1791 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1048, + "y1": 1743, + "x2": 1121, + "y2": 1802 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 1835, + "x2": 1081, + "y2": 1879 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1393, + "y1": 1747, + "x2": 1470, + "y2": 1791 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 1747, + "x2": 1588, + "y2": 1791 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1503, + "y1": 1831, + "x2": 1588, + "y2": 1886 + }, + "value": "9,99", + "label": "" + }, + { + "rect": { + "x1": 1456, + "y1": 1916, + "x2": 1588, + "y2": 1982 + }, + "value": "$9,99", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1747, + "x2": 1871, + "y2": 1791 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1779, + "y1": 1831, + "x2": 1871, + "y2": 1886 + }, + "value": "1,00", + "label": "" + }, + { + "rect": { + "x1": 1735, + "y1": 1927, + "x2": 1775, + "y2": 1971 + }, + "value": "$", + "label": "" + }, + { + "rect": { + "x1": 1764, + "y1": 1923, + "x2": 1871, + "y2": 1975 + }, + "value": "1,00", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 1747, + "x2": 2139, + "y2": 1791 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1747, + "x2": 2260, + "y2": 1791 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2158, + "y1": 1839, + "x2": 2260, + "y2": 1879 + }, + "value": "10,99", + "label": "" + }, + { + "rect": { + "x1": 2110, + "y1": 1923, + "x2": 2260, + "y2": 1971 + }, + "value": "$ 10,99", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 746, + "y1": 1927, + "x2": 856, + "y2": 1971 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_162.json b/docs/json/invoice_162.json new file mode 100644 index 0000000000000000000000000000000000000000..152ce3e7972bd6550fb468473d0f5784a09664d9 --- /dev/null +++ b/docs/json/invoice_162.json @@ -0,0 +1,653 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 71, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "19832522", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 208, + "x2": 318, + "y2": 267 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 212, + "x2": 519, + "y2": 267 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1473, + "y2": 267 + }, + "value": "09/27/2016", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 661, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 764, + "x2": 848, + "y2": 925 + }, + "value": "Cunningnam.lchmond 2393 Katherine Vista Apt. 837 East Kathy, AK 60961", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 362, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1948, + "y2": 925 + }, + "value": "Parks, Hardin and Hines 6911 Anderson Squares Apt. 618 Johnland, NV 30999", + "label": "header:client" + }, + { + "rect": { + "x1": 369, + "y1": 979, + "x2": 639, + "y2": 1020 + }, + "value": "943-81-2616", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 212, + "y1": 1030, + "x2": 329, + "y2": 1071 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "904-78-5257", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1027, + "x2": 932, + "y2": 1078 + }, + "value": "GB761RQX71544776249289", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 234, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1268, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1396, + "x2": 888, + "y2": 1491 + }, + "value": "Caslon Blue White Sleeveless Belted Ruffle Rayon Dress Sz L", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1093, + "y2": 1443 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1392, + "x2": 1531, + "y2": 1443 + }, + "value": "4,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1403, + "x2": 1779, + "y2": 1440 + }, + "value": "24,95", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1396, + "x2": 2254, + "y2": 1440 + }, + "value": "27,45", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1524, + "x2": 866, + "y2": 1655 + }, + "value": "Talbots Petite 8 Navy & White Dandelion Puffs Sleeveless Dress", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1531, + "x2": 1089, + "y2": 1571 + }, + "value": "3,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1524, + "x2": 1246, + "y2": 1575 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1268, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1663, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1268, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1308, + "x2": 2254, + "y2": 1352 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1531, + "x2": 1527, + "y2": 1571 + }, + "value": "14,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1531, + "x2": 1779, + "y2": 1571 + }, + "value": "44,97", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1524, + "x2": 2006, + "y2": 1575 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1531, + "x2": 2254, + "y2": 1571 + }, + "value": "49,47", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1527, + "x2": 296, + "y2": 1571 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 1754, + "x2": 493, + "y2": 1802 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 1875, + "x2": 1049, + "y2": 1918 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 1875, + "x2": 1122, + "y2": 1929 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 1966, + "x2": 1082, + "y2": 2010 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 1875, + "x2": 1473, + "y2": 1926 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 1882, + "x2": 1589, + "y2": 1918 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1483, + "y1": 1970, + "x2": 1589, + "y2": 2010 + }, + "value": "69,92", + "label": "" + }, + { + "rect": { + "x1": 1432, + "y1": 2050, + "x2": 1589, + "y2": 2112 + }, + "value": "$69,92", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1875, + "x2": 1871, + "y2": 1918 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1779, + "y1": 1962, + "x2": 1871, + "y2": 2013 + }, + "value": "6,99", + "label": "" + }, + { + "rect": { + "x1": 1736, + "y1": 2050, + "x2": 1871, + "y2": 2112 + }, + "value": "$6,99", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 1875, + "x2": 2141, + "y2": 1918 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1882, + "x2": 2262, + "y2": 1918 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2159, + "y1": 1966, + "x2": 2262, + "y2": 2010 + }, + "value": "76,91", + "label": "" + }, + { + "rect": { + "x1": 2108, + "y1": 2054, + "x2": 2262, + "y2": 2105 + }, + "value": "$ 76,91", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 745, + "y1": 2054, + "x2": 855, + "y2": 2097 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_163.json b/docs/json/invoice_163.json new file mode 100644 index 0000000000000000000000000000000000000000..c4f883722072dd8a709e3404d042396b0c8fe1a3 --- /dev/null +++ b/docs/json/invoice_163.json @@ -0,0 +1,763 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 72, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "78984257", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 320, + "y2": 268 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 268 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1474, + "y2": 268 + }, + "value": "10/20/2019", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 386, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 673, + "x2": 1422, + "y2": 713 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 757, + "x2": 915, + "y2": 919 + }, + "value": "Hernandez, Brown and Rodriguez 965 Kelly Rue Apt. 663 Burnston, NE 43142", + "label": "header:seller" + }, + { + "rect": { + "x1": 1246, + "y1": 761, + "x2": 1694, + "y2": 919 + }, + "value": "Petersen-Best 0532 Thomas Views Alexistown, ID 76053", + "label": "header:client" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 364, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "930-82-7616", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 1404, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "938-81-5983", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 360, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 213, + "y1": 1030, + "x2": 331, + "y2": 1070 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 342, + "y1": 1026, + "x2": 937, + "y2": 1077 + }, + "value": "GB40ZQFP78280907734742", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 235, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1269, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1095, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1394, + "x2": 904, + "y2": 1519 + }, + "value": "Rectangle Area Rug Wood Grain Carpet Mat for Living Room Bedroom - 180x60cm", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1092, + "y2": 1441 + }, + "value": "3,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1397, + "x2": 1525, + "y2": 1441 + }, + "value": "32,81", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1405, + "x2": 1779, + "y2": 1441 + }, + "value": "98,43", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1397, + "x2": 2253, + "y2": 1441 + }, + "value": "108,27", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1570, + "x2": 860, + "y2": 1739 + }, + "value": "YILONG 4'x6' Vintage Handmade Carpet Medallion Porch Hand Knotted Silk Rugs 080B", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1563, + "x2": 1092, + "y2": 1614 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1563, + "x2": 1246, + "y2": 1614 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1364, + "y1": 1559, + "x2": 1533, + "y2": 1622 + }, + "value": "3600,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1621, + "y1": 1563, + "x2": 1783, + "y2": 1614 + }, + "value": "3600,00", + "label": "items_row2:total_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1783, + "x2": 2003, + "y2": 1828 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 1563, + "x2": 2253, + "y2": 1614 + }, + "value": "3960,00", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1783, + "x2": 904, + "y2": 1919 + }, + "value": "YILONG 4'x6' Golden Handmade Carpet Kid Friendly Hand Knotted Silk Rugs 088B", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1780, + "x2": 1095, + "y2": 1831 + }, + "value": "5,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1783, + "x2": 1242, + "y2": 1828 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1349, + "y1": 1269, + "x2": 1426, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1269, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1269, + "x2": 1661, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1269, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1353 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 298, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1570, + "x2": 298, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1780, + "x2": 298, + "y2": 1831 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 1919, + "y1": 1570, + "x2": 2003, + "y2": 1611 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1371, + "y1": 1783, + "x2": 1525, + "y2": 1828 + }, + "value": "4800,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1599, + "y1": 1783, + "x2": 1779, + "y2": 1828 + }, + "value": "24 000,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1000, + "y1": 2221, + "x2": 1081, + "y2": 2265 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2077, + "y1": 1783, + "x2": 2253, + "y2": 1828 + }, + "value": "26 400,00", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 198, + "y1": 2008, + "x2": 493, + "y2": 2056 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 2133, + "x2": 1048, + "y2": 2173 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2129, + "x2": 1121, + "y2": 2181 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1393, + "y1": 2133, + "x2": 1474, + "y2": 2173 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2133, + "x2": 1588, + "y2": 2173 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 2221, + "x2": 1463, + "y2": 2265 + }, + "value": "27", + "label": "" + }, + { + "rect": { + "x1": 1452, + "y1": 2225, + "x2": 1588, + "y2": 2265 + }, + "value": "698,43", + "label": "" + }, + { + "rect": { + "x1": 1353, + "y1": 2309, + "x2": 1588, + "y2": 2361 + }, + "value": "$27698,43", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1650, + "y1": 2309, + "x2": 1867, + "y2": 2361 + }, + "value": "$2769,84", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 1779, + "y1": 2133, + "x2": 1871, + "y2": 2173 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1705, + "y1": 2221, + "x2": 1742, + "y2": 2269 + }, + "value": "2", + "label": "" + }, + { + "rect": { + "x1": 1724, + "y1": 2225, + "x2": 1864, + "y2": 2265 + }, + "value": "769,84", + "label": "" + }, + { + "rect": { + "x1": 2025, + "y1": 2133, + "x2": 2139, + "y2": 2173 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2133, + "x2": 2260, + "y2": 2173 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2084, + "y1": 2221, + "x2": 2139, + "y2": 2265 + }, + "value": "30", + "label": "" + }, + { + "rect": { + "x1": 2124, + "y1": 2225, + "x2": 2257, + "y2": 2265 + }, + "value": "468,27", + "label": "" + }, + { + "rect": { + "x1": 2025, + "y1": 2309, + "x2": 2260, + "y2": 2361 + }, + "value": "$30468,27", + "label": "summary:item_gross_worth" + }, + { + "rect": { + "x1": 746, + "y1": 2313, + "x2": 856, + "y2": 2353 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_164.json b/docs/json/invoice_164.json new file mode 100644 index 0000000000000000000000000000000000000000..0536a241d2947cab8b1940fcb3f9020037cd30f6 --- /dev/null +++ b/docs/json/invoice_164.json @@ -0,0 +1,753 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 73, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "93769983", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 320, + "y2": 268 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 268 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1474, + "y2": 268 + }, + "value": "06/01/2019", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 757, + "x2": 702, + "y2": 919 + }, + "value": "Brown, King and Henry 02006 Kim Via New Lori, AK 11417", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 360, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 757, + "x2": 1966, + "y2": 919 + }, + "value": "Jones, Swanson and Smith 2763 Stephanie Garden Suite 608 North Samuelhaven, ME 92975", + "label": "header:client" + }, + { + "rect": { + "x1": 364, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "947-79-9964", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 213, + "y1": 1030, + "x2": 331, + "y2": 1070 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 978, + "x2": 1676, + "y2": 1019 + }, + "value": "900-85-9685", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1026, + "x2": 945, + "y2": 1077 + }, + "value": "GB55CCPV37554454518615", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 235, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1269, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 298, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1394, + "x2": 901, + "y2": 1519 + }, + "value": "52\"x26\" White Marble Top Center Table Carnelian Pietradura Inlaid Halloween Gift", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1570, + "x2": 298, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1092, + "y2": 1441 + }, + "value": "3,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1371, + "y1": 1394, + "x2": 1525, + "y2": 1441 + }, + "value": "7 777,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1599, + "y1": 1397, + "x2": 1779, + "y2": 1441 + }, + "value": "23331,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2077, + "y1": 1397, + "x2": 2253, + "y2": 1441 + }, + "value": "25 664,10", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1570, + "x2": 849, + "y2": 1695 + }, + "value": "13\"x13\" White Marble Chess Inlay Top Table With 15\" Tall Stand Christmas Gift", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1739, + "x2": 298, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 1570, + "x2": 1088, + "y2": 1611 + }, + "value": "2,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1404, + "y1": 1570, + "x2": 1525, + "y2": 1611 + }, + "value": "600,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1628, + "y1": 1570, + "x2": 1779, + "y2": 1611 + }, + "value": "1200,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1570, + "x2": 2003, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 1563, + "x2": 2253, + "y2": 1614 + }, + "value": "1320,00", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1739, + "x2": 849, + "y2": 1868 + }, + "value": "18\" Marble Coffee Table Top Lapis Collectible Floral Inlay Kitchen Decors W335", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1239, + "y1": 662, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 971, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1563, + "x2": 1246, + "y2": 1614 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1739, + "x2": 1095, + "y2": 1791 + }, + "value": "5,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1430, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1269, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1269, + "x2": 1661, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1269, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1404, + "y1": 1743, + "x2": 1525, + "y2": 1783 + }, + "value": "355,68", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1621, + "y1": 1732, + "x2": 1786, + "y2": 1798 + }, + "value": "1778,40", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1353 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1919, + "y1": 1743, + "x2": 2003, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2091, + "y1": 1732, + "x2": 2257, + "y2": 1798 + }, + "value": "1956,24", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 198, + "y1": 1967, + "x2": 493, + "y2": 2011 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 2089, + "x2": 1048, + "y2": 2136 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2089, + "x2": 1121, + "y2": 2140 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 2181, + "x2": 1081, + "y2": 2225 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1393, + "y1": 2089, + "x2": 1474, + "y2": 2136 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2089, + "x2": 1588, + "y2": 2136 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1411, + "y1": 2181, + "x2": 1588, + "y2": 2225 + }, + "value": "26309,40", + "label": "" + }, + { + "rect": { + "x1": 1353, + "y1": 2269, + "x2": 1584, + "y2": 2317 + }, + "value": "$ 26 309,40", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1650, + "y1": 2261, + "x2": 1864, + "y2": 2320 + }, + "value": "$2 630,94", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 1779, + "y1": 2089, + "x2": 1871, + "y2": 2136 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1705, + "y1": 2177, + "x2": 1742, + "y2": 2228 + }, + "value": "2", + "label": "" + }, + { + "rect": { + "x1": 1735, + "y1": 2181, + "x2": 1864, + "y2": 2225 + }, + "value": "630,94", + "label": "" + }, + { + "rect": { + "x1": 2025, + "y1": 2089, + "x2": 2139, + "y2": 2136 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2089, + "x2": 2260, + "y2": 2136 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2084, + "y1": 2177, + "x2": 2139, + "y2": 2225 + }, + "value": "28", + "label": "" + }, + { + "rect": { + "x1": 2124, + "y1": 2181, + "x2": 2257, + "y2": 2225 + }, + "value": "940,34", + "label": "" + }, + { + "rect": { + "x1": 2029, + "y1": 2269, + "x2": 2257, + "y2": 2317 + }, + "value": "$ 28 940,34", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 746, + "y1": 2269, + "x2": 856, + "y2": 2313 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_165.json b/docs/json/invoice_165.json new file mode 100644 index 0000000000000000000000000000000000000000..e1fada955bf1b52cc13de137e54db4121342137a --- /dev/null +++ b/docs/json/invoice_165.json @@ -0,0 +1,893 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 74, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "65428348", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 320, + "y2": 268 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 268 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1470, + "y2": 268 + }, + "value": "07/27/2017", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 202, + "y1": 673, + "x2": 379, + "y2": 713 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 206, + "y1": 757, + "x2": 643, + "y2": 919 + }, + "value": "Perez Ltd PSC 1848, Box 8316 APO AA 15675", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 360, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 757, + "x2": 1882, + "y2": 919 + }, + "value": "Diaz LLC 387 Anthony Garden West Margaretside, NH 43447", + "label": "header:client" + }, + { + "rect": { + "x1": 364, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "945-81-8549", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 213, + "y1": 1030, + "x2": 331, + "y2": 1070 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1404, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "914-77-7181", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 934, + "y2": 1070 + }, + "value": "GB34FPYD88234862125581", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 235, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1269, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 662, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 971, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1397, + "x2": 853, + "y2": 1486 + }, + "value": "Jams World Hawaiian D Dress Rayon SZ.L", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1092, + "y2": 1441 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1422, + "y1": 1405, + "x2": 1525, + "y2": 1441 + }, + "value": "65,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1405, + "x2": 1783, + "y2": 1441 + }, + "value": "65,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1397, + "x2": 2253, + "y2": 1441 + }, + "value": "71,50", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 349, + "y1": 1522, + "x2": 831, + "y2": 1658 + }, + "value": "Liza Byrd Dress Sz L- Coral Green Medallion Print Short Sleeve 100% Cotton Line", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1530, + "x2": 1088, + "y2": 1570 + }, + "value": "2,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1522, + "x2": 1246, + "y2": 1574 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1530, + "x2": 1525, + "y2": 1570 + }, + "value": "17,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1530, + "x2": 1779, + "y2": 1570 + }, + "value": "35,98", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1522, + "x2": 2007, + "y2": 1574 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1530, + "x2": 2253, + "y2": 1570 + }, + "value": "39,58", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1699, + "x2": 827, + "y2": 1828 + }, + "value": "SCOTT MCCINTOCK SIZE 12 BLACK PARTY DRESS WITH SPARKLIND TOP", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1703, + "x2": 1092, + "y2": 1743 + }, + "value": "5,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1703, + "x2": 1242, + "y2": 1743 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1422, + "y1": 1703, + "x2": 1525, + "y2": 1743 + }, + "value": "25,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1703, + "x2": 1779, + "y2": 1743 + }, + "value": "125,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1695, + "x2": 2007, + "y2": 1750 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1703, + "x2": 2253, + "y2": 1743 + }, + "value": "137,50", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 349, + "y1": 1872, + "x2": 853, + "y2": 1960 + }, + "value": "Jams World Hawaiian 0 Dress Rayon SZ.L", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1872, + "x2": 1095, + "y2": 1923 + }, + "value": "5,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1875, + "x2": 1242, + "y2": 1916 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1875, + "x2": 1525, + "y2": 1916 + }, + "value": "65,00", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1875, + "x2": 1779, + "y2": 1916 + }, + "value": "325,00", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1875, + "x2": 2003, + "y2": 1916 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1875, + "x2": 2253, + "y2": 1916 + }, + "value": "357,50", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 349, + "y1": 2000, + "x2": 904, + "y2": 2125 + }, + "value": "Jcrew Mercantile Women's Maxi Dress Size 2 Floral Tiered Lined Pink", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 2000, + "x2": 1095, + "y2": 2056 + }, + "value": "3,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2000, + "x2": 1246, + "y2": 2044 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1349, + "y1": 1269, + "x2": 1426, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1269, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1269, + "x2": 1661, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1269, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1353 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1422, + "y1": 2000, + "x2": 1525, + "y2": 2044 + }, + "value": "20,00", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 2000, + "x2": 1783, + "y2": 2044 + }, + "value": "60,00", + "label": "items_row5:total_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2000, + "x2": 2003, + "y2": 2044 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 2000, + "x2": 2253, + "y2": 2044 + }, + "value": "66,00", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 298, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1522, + "x2": 298, + "y2": 1570 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1699, + "x2": 298, + "y2": 1750 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1872, + "x2": 298, + "y2": 1919 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 2000, + "x2": 298, + "y2": 2048 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 198, + "y1": 2225, + "x2": 493, + "y2": 2272 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 2353, + "x2": 1048, + "y2": 2398 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2350, + "x2": 1121, + "y2": 2401 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 2442, + "x2": 1081, + "y2": 2486 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1393, + "y1": 2353, + "x2": 1474, + "y2": 2398 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2353, + "x2": 1588, + "y2": 2398 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1467, + "y1": 2442, + "x2": 1588, + "y2": 2486 + }, + "value": "610,98", + "label": "" + }, + { + "rect": { + "x1": 1415, + "y1": 2534, + "x2": 1584, + "y2": 2578 + }, + "value": "$ 610,98", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2353, + "x2": 1871, + "y2": 2398 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2442, + "x2": 1867, + "y2": 2486 + }, + "value": "61,10", + "label": "" + }, + { + "rect": { + "x1": 1713, + "y1": 2530, + "x2": 1871, + "y2": 2581 + }, + "value": "$61,10", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2353, + "x2": 2139, + "y2": 2398 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2353, + "x2": 2260, + "y2": 2398 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 2442, + "x2": 2260, + "y2": 2486 + }, + "value": "672,08", + "label": "" + }, + { + "rect": { + "x1": 2091, + "y1": 2530, + "x2": 2257, + "y2": 2578 + }, + "value": "$ 672,08", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 746, + "y1": 2534, + "x2": 856, + "y2": 2574 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_166.json b/docs/json/invoice_166.json new file mode 100644 index 0000000000000000000000000000000000000000..3b2e81353200b9045ba1ee5adb070fe3ed0e7f09 --- /dev/null +++ b/docs/json/invoice_166.json @@ -0,0 +1,573 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 75, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "57114004", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 320, + "y2": 268 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 268 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1470, + "y2": 268 + }, + "value": "03/20/2012", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 386, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 761, + "x2": 772, + "y2": 919 + }, + "value": "Parker-Gonzalez 702 Hill Lake Suite 129 West Samantha, KS 31457", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 360, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 757, + "x2": 1878, + "y2": 919 + }, + "value": "Gardner, Hernandez and Hart PSC 7928, Box 7446 APO AE 33867", + "label": "header:client" + }, + { + "rect": { + "x1": 364, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "943-81-9821", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 213, + "y1": 1030, + "x2": 331, + "y2": 1070 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1404, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "956-83-1183", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 945, + "y2": 1070 + }, + "value": "GB73KBWT75185699279775", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 235, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1269, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 662, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1394, + "x2": 871, + "y2": 1486 + }, + "value": "Seashells of North America: A Guide to Field Ident", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1092, + "y2": 1441 + }, + "value": "3,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1430, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1269, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1269, + "x2": 1661, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1269, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1353 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2150, + "y1": 1397, + "x2": 2253, + "y2": 1441 + }, + "value": "14,82", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 298, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 1444, + "y1": 1394, + "x2": 1533, + "y2": 1441 + }, + "value": "4,49", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1397, + "x2": 1779, + "y2": 1441 + }, + "value": "13,47", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 198, + "y1": 1577, + "x2": 493, + "y2": 1625 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 1706, + "x2": 1048, + "y2": 1750 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1048, + "y1": 1703, + "x2": 1121, + "y2": 1754 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 1794, + "x2": 1081, + "y2": 1839 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 1393, + "y1": 1706, + "x2": 1470, + "y2": 1750 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 1706, + "x2": 1588, + "y2": 1750 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1481, + "y1": 1798, + "x2": 1588, + "y2": 1839 + }, + "value": "13,47", + "label": "" + }, + { + "rect": { + "x1": 2158, + "y1": 1798, + "x2": 2260, + "y2": 1839 + }, + "value": "14,82", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 1437, + "y1": 1883, + "x2": 1588, + "y2": 1934 + }, + "value": "$ 13,47", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1706, + "x2": 1871, + "y2": 1750 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1779, + "y1": 1791, + "x2": 1871, + "y2": 1842 + }, + "value": "1,35", + "label": "" + }, + { + "rect": { + "x1": 1742, + "y1": 1883, + "x2": 1867, + "y2": 1934 + }, + "value": "$ 1,35", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 1706, + "x2": 2139, + "y2": 1750 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1706, + "x2": 2260, + "y2": 1750 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2110, + "y1": 1883, + "x2": 2260, + "y2": 1934 + }, + "value": "$14,82", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 746, + "y1": 1886, + "x2": 856, + "y2": 1927 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_167.json b/docs/json/invoice_167.json new file mode 100644 index 0000000000000000000000000000000000000000..946e92eae0e3d3337f759e508b9fe20f16dea327 --- /dev/null +++ b/docs/json/invoice_167.json @@ -0,0 +1,643 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 76, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 114, + "x2": 515, + "y2": 165 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 533, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "76588527", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 316, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 316, + "y1": 210, + "x2": 382, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 382, + "y1": 210, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 213, + "x2": 1470, + "y2": 265 + }, + "value": "11/21/2018", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 386, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 757, + "x2": 691, + "y2": 919 + }, + "value": "Oliver and Sons 49905 Anthony Loaf North Kristi, WA 43365", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 360, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 761, + "x2": 1841, + "y2": 919 + }, + "value": "Kirby-Charles 4159 Brown Valley Apt. 572 Brownstad, MN 48794", + "label": "header:client" + }, + { + "rect": { + "x1": 364, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "991-79-5422", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 334, + "y2": 1070 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1404, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "982-95-3864", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 930, + "y2": 1081 + }, + "value": "GB27XRO22702702939702011", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1199 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 235, + "y1": 1265, + "x2": 309, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1269, + "x2": 584, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 662, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 971, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1095, + "y2": 1316 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1313 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 346, + "y1": 1390, + "x2": 897, + "y2": 1489 + }, + "value": "Nintendo 64 Console with Box, Foam and extra oem controller", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1011, + "y1": 1390, + "x2": 1095, + "y2": 1441 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1401, + "x2": 1239, + "y2": 1438 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1404, + "y1": 1405, + "x2": 1525, + "y2": 1438 + }, + "value": "120,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1661, + "y1": 1405, + "x2": 1779, + "y2": 1438 + }, + "value": "120,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1401, + "x2": 2000, + "y2": 1438 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1405, + "x2": 2253, + "y2": 1438 + }, + "value": "132,00", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1522, + "x2": 871, + "y2": 1614 + }, + "value": "Sony PlayStation 3 150GB Charcoal Black Console (Used)", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1011, + "y1": 1533, + "x2": 1092, + "y2": 1574 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1522, + "x2": 1246, + "y2": 1574 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1349, + "y1": 1269, + "x2": 1426, + "y2": 1313 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1269, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1269, + "x2": 1665, + "y2": 1313 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1665, + "y1": 1269, + "x2": 1779, + "y2": 1313 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1313 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2000, + "y2": 1316 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2253, + "y2": 1313 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2132, + "y1": 1309, + "x2": 2253, + "y2": 1353 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1404, + "y1": 1533, + "x2": 1525, + "y2": 1574 + }, + "value": "139,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1661, + "y1": 1533, + "x2": 1779, + "y2": 1574 + }, + "value": "559,96", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1522, + "x2": 2007, + "y2": 1574 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1533, + "x2": 2253, + "y2": 1574 + }, + "value": "615,96", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 250, + "y1": 1401, + "x2": 298, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 202, + "y1": 1706, + "x2": 493, + "y2": 1758 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 1835, + "x2": 1051, + "y2": 1879 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1040, + "y1": 1831, + "x2": 1125, + "y2": 1883 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1927, + "x2": 1081, + "y2": 1971 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 1835, + "x2": 1470, + "y2": 1879 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 1835, + "x2": 1588, + "y2": 1879 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1467, + "y1": 1927, + "x2": 1588, + "y2": 1971 + }, + "value": "679,96", + "label": "" + }, + { + "rect": { + "x1": 1411, + "y1": 2011, + "x2": 1588, + "y2": 2067 + }, + "value": "$679,96", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1835, + "x2": 1871, + "y2": 1879 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 1927, + "x2": 1867, + "y2": 1971 + }, + "value": "68,00", + "label": "" + }, + { + "rect": { + "x1": 1713, + "y1": 2011, + "x2": 1867, + "y2": 2067 + }, + "value": "$68,00", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 1835, + "x2": 2139, + "y2": 1879 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1835, + "x2": 2264, + "y2": 1879 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2132, + "y1": 1927, + "x2": 2264, + "y2": 1971 + }, + "value": "747,96", + "label": "" + }, + { + "rect": { + "x1": 2088, + "y1": 2019, + "x2": 2260, + "y2": 2063 + }, + "value": "$ 747,96", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 746, + "y1": 2011, + "x2": 853, + "y2": 2056 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_168.json b/docs/json/invoice_168.json new file mode 100644 index 0000000000000000000000000000000000000000..011bddde9c57229836e615614005ee2a7316a137 --- /dev/null +++ b/docs/json/invoice_168.json @@ -0,0 +1,763 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 77, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "50368630", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 320, + "y2": 268 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 268 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1474, + "y2": 268 + }, + "value": "10/08/2018", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 662, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 757, + "x2": 820, + "y2": 927 + }, + "value": "Dominguez, Hunt and Garcia 305 Burgess Plains Liubury, RI 60555", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 360, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 757, + "x2": 1889, + "y2": 927 + }, + "value": "Knight, Contreras and Roberts 2906 Sarah Tunnel Apt. 135 Lake Ryan, MN 54454", + "label": "header:client" + }, + { + "rect": { + "x1": 364, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "919-84-3991", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 213, + "y1": 1030, + "x2": 331, + "y2": 1070 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 978, + "x2": 1676, + "y2": 1019 + }, + "value": "980-96-4855", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 956, + "y2": 1070 + }, + "value": "GB68RGWY69259946979217", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 235, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1269, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 298, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1397, + "x2": 845, + "y2": 1522 + }, + "value": "6'x3' Black Marble Dining Center Table Top Marquetry Inlay Outdoor Decor H3420A", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1570, + "x2": 298, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1092, + "y2": 1441 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1371, + "y1": 1394, + "x2": 1525, + "y2": 1441 + }, + "value": "5 756,72", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1599, + "y1": 1397, + "x2": 1779, + "y2": 1441 + }, + "value": "28 783,60", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2077, + "y1": 1397, + "x2": 2253, + "y2": 1441 + }, + "value": "31 661,96", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1570, + "x2": 882, + "y2": 1699 + }, + "value": "Hardwood Insect Pinning Block Contains 9 Holes with Same Heights for Pin", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1739, + "x2": 298, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 1570, + "x2": 1088, + "y2": 1611 + }, + "value": "3,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1426, + "y1": 1570, + "x2": 1525, + "y2": 1611 + }, + "value": "13,46", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1570, + "x2": 1779, + "y2": 1611 + }, + "value": "40,38", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1570, + "x2": 2003, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1570, + "x2": 2253, + "y2": 1611 + }, + "value": "44,42", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1739, + "x2": 886, + "y2": 1868 + }, + "value": "36\" Round Marble Dining Table Lapis Mosaic Floral Inlay Furniture Decorates B397", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1563, + "x2": 1246, + "y2": 1614 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1739, + "x2": 1092, + "y2": 1791 + }, + "value": "3,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1430, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1269, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1269, + "x2": 1661, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1269, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1353 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1367, + "y1": 1732, + "x2": 1536, + "y2": 1798 + }, + "value": "1490,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1617, + "y1": 1732, + "x2": 1786, + "y2": 1798 + }, + "value": "4470,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1743, + "x2": 2003, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2091, + "y1": 1732, + "x2": 2257, + "y2": 1798 + }, + "value": "4917,00", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 198, + "y1": 1967, + "x2": 493, + "y2": 2011 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 2089, + "x2": 1048, + "y2": 2136 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2089, + "x2": 1121, + "y2": 2140 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 2181, + "x2": 1081, + "y2": 2225 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2089, + "x2": 1478, + "y2": 2136 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2089, + "x2": 1588, + "y2": 2136 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1411, + "y1": 2177, + "x2": 1463, + "y2": 2225 + }, + "value": "33", + "label": "" + }, + { + "rect": { + "x1": 1456, + "y1": 2181, + "x2": 1588, + "y2": 2225 + }, + "value": "293,98", + "label": "" + }, + { + "rect": { + "x1": 1353, + "y1": 2269, + "x2": 1588, + "y2": 2317 + }, + "value": "$ 33 293,98", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1650, + "y1": 2258, + "x2": 1871, + "y2": 2320 + }, + "value": "$3329,40", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 1779, + "y1": 2089, + "x2": 1871, + "y2": 2136 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1705, + "y1": 2177, + "x2": 1742, + "y2": 2228 + }, + "value": "3", + "label": "" + }, + { + "rect": { + "x1": 1735, + "y1": 2181, + "x2": 1864, + "y2": 2225 + }, + "value": "329,40", + "label": "" + }, + { + "rect": { + "x1": 2025, + "y1": 2089, + "x2": 2139, + "y2": 2136 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2089, + "x2": 2260, + "y2": 2136 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2084, + "y1": 2177, + "x2": 2139, + "y2": 2225 + }, + "value": "36", + "label": "" + }, + { + "rect": { + "x1": 2124, + "y1": 2181, + "x2": 2260, + "y2": 2225 + }, + "value": "623,38", + "label": "" + }, + { + "rect": { + "x1": 2029, + "y1": 2269, + "x2": 2257, + "y2": 2317 + }, + "value": "$ 36 623,38", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 746, + "y1": 2269, + "x2": 856, + "y2": 2313 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_169.json b/docs/json/invoice_169.json new file mode 100644 index 0000000000000000000000000000000000000000..54f2dc77834d9179fd6e8ca834527a1f1b9b2327 --- /dev/null +++ b/docs/json/invoice_169.json @@ -0,0 +1,733 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 78, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "84404809", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 208, + "x2": 318, + "y2": 267 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 212, + "x2": 519, + "y2": 267 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1469, + "y2": 267 + }, + "value": "09/11/2011", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 387, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 205, + "y1": 760, + "x2": 811, + "y2": 921 + }, + "value": "Tucker-Wilson 692 Eric Parkway Suite 247 Port Douglasview, ME 57524", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 362, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 760, + "x2": 1776, + "y2": 921 + }, + "value": "Bishop-Taylor 570 Evans Pine Michelemouth, CT 51747", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "920-83-4326", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 212, + "y1": 1030, + "x2": 329, + "y2": 1071 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "922-72-7545", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1030, + "x2": 943, + "y2": 1071 + }, + "value": "GB265VMT24500832022977", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 234, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1268, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1396, + "x2": 800, + "y2": 1531 + }, + "value": "Pictures From a Distant Country: Seeing America Through Old Paper Money", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1571, + "x2": 296, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1005, + "y1": 1392, + "x2": 1093, + "y2": 1443 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1425, + "y1": 1396, + "x2": 1527, + "y2": 1440 + }, + "value": "13,84", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1403, + "x2": 1783, + "y2": 1440 + }, + "value": "69,20", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1396, + "x2": 2254, + "y2": 1440 + }, + "value": "76,12", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1571, + "x2": 906, + "y2": 1696 + }, + "value": "Arnold Ehret RATIONAL FASTING 1971 paperback collector's edition", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1739, + "x2": 296, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 1008, + "y1": 1571, + "x2": 1089, + "y2": 1611 + }, + "value": "3,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1443, + "y1": 1564, + "x2": 1531, + "y2": 1615 + }, + "value": "6,75", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1571, + "x2": 1779, + "y2": 1611 + }, + "value": "20,25", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1571, + "x2": 2002, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1571, + "x2": 2254, + "y2": 1611 + }, + "value": "22,27", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1739, + "x2": 636, + "y2": 1791 + }, + "value": "Walleye wisdom", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 197, + "y1": 1886, + "x2": 493, + "y2": 1933 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 661, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1564, + "x2": 1246, + "y2": 1615 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1005, + "y1": 1739, + "x2": 1096, + "y2": 1791 + }, + "value": "5,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1348, + "y1": 1268, + "x2": 1425, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1268, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1663, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1268, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1308, + "x2": 2254, + "y2": 1352 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1739, + "x2": 1531, + "y2": 1791 + }, + "value": "4,49", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1743, + "x2": 1779, + "y2": 1783 + }, + "value": "22,45", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1743, + "x2": 2002, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1743, + "x2": 2254, + "y2": 1783 + }, + "value": "24,70", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 957, + "y1": 2002, + "x2": 1049, + "y2": 2057 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2002, + "x2": 1122, + "y2": 2061 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2090, + "x2": 1085, + "y2": 2145 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2002, + "x2": 1473, + "y2": 2057 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2010, + "x2": 1589, + "y2": 2050 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1465, + "y1": 2101, + "x2": 1589, + "y2": 2141 + }, + "value": "111,90", + "label": "" + }, + { + "rect": { + "x1": 1414, + "y1": 2185, + "x2": 1589, + "y2": 2233 + }, + "value": "$ 111,90", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2002, + "x2": 1871, + "y2": 2057 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1765, + "y1": 2101, + "x2": 1863, + "y2": 2141 + }, + "value": "11,19", + "label": "" + }, + { + "rect": { + "x1": 1714, + "y1": 2185, + "x2": 1863, + "y2": 2233 + }, + "value": "$ 11,19", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2010, + "x2": 2141, + "y2": 2050 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2010, + "x2": 2262, + "y2": 2050 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2101, + "x2": 2262, + "y2": 2141 + }, + "value": "123,09", + "label": "" + }, + { + "rect": { + "x1": 2090, + "y1": 2185, + "x2": 2258, + "y2": 2233 + }, + "value": "$ 123,09", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 745, + "y1": 2185, + "x2": 855, + "y2": 2229 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_17.json b/docs/json/invoice_17.json new file mode 100644 index 0000000000000000000000000000000000000000..18b242b350edc27fca4c76c810b33b3aeac624aa --- /dev/null +++ b/docs/json/invoice_17.json @@ -0,0 +1,1053 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 79, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 406, + "y2": 164 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 113, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 808, + "y2": 164 + }, + "value": "77658002", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 216, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 216, + "x2": 1473, + "y2": 263 + }, + "value": "01/21/2014", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 756, + "x2": 815, + "y2": 921 + }, + "value": "Mckenzie, Clay and Campos 76099 Bryan View Suite 318 Gregoryberg, NM 46284", + "label": "header:seller" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1714, + "y2": 921 + }, + "value": "Espinoza LLC 7698 Davis Freeway Rachelport, CO 79421", + "label": "header:client" + }, + { + "rect": { + "x1": 1239, + "y1": 972, + "x2": 1334, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1396, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "973-94-2620", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 1407, + "y1": 979, + "x2": 1677, + "y2": 1016 + }, + "value": "968-84-7486", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 329, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 340, + "y1": 1027, + "x2": 946, + "y2": 1074 + }, + "value": "GB69HUXE82460947316450", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1012, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1239, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1396, + "x2": 833, + "y2": 1487 + }, + "value": "Divided Black Asymmetrical Dress -size 8 NWT", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1093, + "y2": 1447 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1392, + "x2": 1531, + "y2": 1447 + }, + "value": "7,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1699, + "y1": 1392, + "x2": 1787, + "y2": 1447 + }, + "value": "7,99", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2170, + "y1": 1392, + "x2": 2258, + "y2": 1447 + }, + "value": "8,79", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1527, + "x2": 837, + "y2": 1663 + }, + "value": "Eileen Fisher Women's Long Sleeve Fleece Lined Front Pockets Dress XS Gray", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1531, + "x2": 1093, + "y2": 1571 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1151, + "y1": 1524, + "x2": 1246, + "y2": 1575 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1531, + "x2": 1527, + "y2": 1571 + }, + "value": "15,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1531, + "x2": 1783, + "y2": 1571 + }, + "value": "63,96", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1524, + "x2": 2002, + "y2": 1575 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1531, + "x2": 2254, + "y2": 1571 + }, + "value": "70,36", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1696, + "x2": 910, + "y2": 1794 + }, + "value": "db Yellow Link Print Fit and Flare Sleeveless Dress Sz M/L", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1699, + "x2": 1093, + "y2": 1747 + }, + "value": "3,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1699, + "x2": 1242, + "y2": 1747 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1699, + "x2": 1527, + "y2": 1747 + }, + "value": "14,99", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1677, + "y1": 1699, + "x2": 1779, + "y2": 1747 + }, + "value": "44,97", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1696, + "x2": 2002, + "y2": 1750 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1699, + "x2": 2254, + "y2": 1747 + }, + "value": "49,47", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1823, + "x2": 881, + "y2": 1922 + }, + "value": "womens sparkle dress size 2X Holiday Party RED metallic", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1831, + "x2": 1093, + "y2": 1882 + }, + "value": "5,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1834, + "x2": 1242, + "y2": 1875 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1831, + "x2": 1531, + "y2": 1882 + }, + "value": "9,99", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1677, + "y1": 1834, + "x2": 1779, + "y2": 1875 + }, + "value": "49,95", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1834, + "x2": 2002, + "y2": 1875 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1834, + "x2": 2254, + "y2": 1875 + }, + "value": "54,95", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1955, + "x2": 881, + "y2": 2087 + }, + "value": "Lands End Womens 3/4 Sleeve Dress Plus 3X Navy Blue Floral Cotton Knit 482038", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1959, + "x2": 1093, + "y2": 2010 + }, + "value": "4,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1962, + "x2": 1242, + "y2": 2006 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1962, + "x2": 1527, + "y2": 2006 + }, + "value": "21,23", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1677, + "y1": 1962, + "x2": 1779, + "y2": 2006 + }, + "value": "84,92", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1962, + "x2": 2002, + "y2": 2006 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1962, + "x2": 2254, + "y2": 2006 + }, + "value": "93,41", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 2130, + "x2": 826, + "y2": 2266 + }, + "value": "Liza Byrd Dress Sz L- Coral Green Medallion Print Short Sleeve 100% Cotton Line", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 2130, + "x2": 1096, + "y2": 2182 + }, + "value": "2,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2134, + "x2": 1242, + "y2": 2174 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 2134, + "x2": 1527, + "y2": 2174 + }, + "value": "17,99", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1677, + "y1": 2134, + "x2": 1779, + "y2": 2174 + }, + "value": "35,98", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2134, + "x2": 2002, + "y2": 2174 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 2134, + "x2": 2254, + "y2": 2174 + }, + "value": "39,58", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 2306, + "x2": 870, + "y2": 2437 + }, + "value": "CLIFFORD & WILLS BLACK NET/MESH OVER TAUPE LONG DRESS SIZE 4", + "label": "items_row7:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 2309, + "x2": 1093, + "y2": 2353 + }, + "value": "1,00", + "label": "items_row7:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2309, + "x2": 1242, + "y2": 2353 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1663, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1308, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1447, + "y1": 2309, + "x2": 1527, + "y2": 2353 + }, + "value": "5,99", + "label": "items_row7:item_net_price" + }, + { + "rect": { + "x1": 1699, + "y1": 2302, + "x2": 1787, + "y2": 2357 + }, + "value": "5,99", + "label": "items_row7:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2302, + "x2": 2006, + "y2": 2357 + }, + "value": "10%", + "label": "items_row7:item_vat" + }, + { + "rect": { + "x1": 2174, + "y1": 2309, + "x2": 2254, + "y2": 2353 + }, + "value": "6,59", + "label": "items_row7:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1527, + "x2": 296, + "y2": 1571 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1699, + "x2": 296, + "y2": 1750 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1831, + "x2": 296, + "y2": 1878 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1959, + "x2": 296, + "y2": 2006 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2130, + "x2": 296, + "y2": 2178 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2306, + "x2": 296, + "y2": 2357 + }, + "value": "7.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 2532, + "x2": 493, + "y2": 2580 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2653, + "x2": 1049, + "y2": 2697 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2649, + "x2": 1122, + "y2": 2708 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2741, + "x2": 1085, + "y2": 2792 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2653, + "x2": 1473, + "y2": 2697 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2657, + "x2": 1586, + "y2": 2697 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1465, + "y1": 2744, + "x2": 1586, + "y2": 2788 + }, + "value": "293,76", + "label": "" + }, + { + "rect": { + "x1": 1414, + "y1": 2836, + "x2": 1586, + "y2": 2883 + }, + "value": "$ 293,76", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2653, + "x2": 1867, + "y2": 2697 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2744, + "x2": 1867, + "y2": 2788 + }, + "value": "29,38", + "label": "" + }, + { + "rect": { + "x1": 1714, + "y1": 2836, + "x2": 1867, + "y2": 2883 + }, + "value": "$29,38", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2653, + "x2": 2138, + "y2": 2697 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2657, + "x2": 2262, + "y2": 2697 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 2744, + "x2": 2262, + "y2": 2788 + }, + "value": "323,14", + "label": "" + }, + { + "rect": { + "x1": 2086, + "y1": 2836, + "x2": 2262, + "y2": 2879 + }, + "value": "$ 323,14", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2836, + "x2": 859, + "y2": 2872 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_170.json b/docs/json/invoice_170.json new file mode 100644 index 0000000000000000000000000000000000000000..d157a8d2a6eb66d17ca7c4f2c2d4e881da9ce965 --- /dev/null +++ b/docs/json/invoice_170.json @@ -0,0 +1,813 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 80, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "40345107", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 320, + "y2": 268 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 268 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1474, + "y2": 268 + }, + "value": "04/02/2013", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 386, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 206, + "y1": 761, + "x2": 838, + "y2": 927 + }, + "value": "Thomas-Mitchel 21128 Castillo Dale Suite 547 Stephensborough, UT 28006", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 360, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 761, + "x2": 1819, + "y2": 919 + }, + "value": "Roberts-Wolfe 20334 Anne Point Apt. 522 West Sean, SC 35533", + "label": "header:client" + }, + { + "rect": { + "x1": 364, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "904-75-2423", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 213, + "y1": 1030, + "x2": 331, + "y2": 1070 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1404, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "933-91-1306", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 956, + "y2": 1070 + }, + "value": "GB87WTNX68187420702306", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 235, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1269, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 673, + "x2": 1422, + "y2": 713 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 971, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1397, + "x2": 831, + "y2": 1486 + }, + "value": "New Wallis black floral midi dress sleeveles, size UK 12", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1092, + "y2": 1441 + }, + "value": "2,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1422, + "y1": 1405, + "x2": 1525, + "y2": 1441 + }, + "value": "38,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1405, + "x2": 1783, + "y2": 1441 + }, + "value": "76,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1397, + "x2": 2253, + "y2": 1441 + }, + "value": "83,60", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1526, + "x2": 886, + "y2": 1611 + }, + "value": "Caslon Blue White Sleeveless Belted Ruffle Rayon Dress Sz L", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1530, + "x2": 1088, + "y2": 1570 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1522, + "x2": 1246, + "y2": 1574 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1444, + "y1": 1530, + "x2": 1525, + "y2": 1570 + }, + "value": "4,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1530, + "x2": 1779, + "y2": 1570 + }, + "value": "19,96", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1522, + "x2": 2007, + "y2": 1574 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1530, + "x2": 2253, + "y2": 1570 + }, + "value": "21,96", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1658, + "x2": 912, + "y2": 1750 + }, + "value": "Lulus Women's Black Bell Sleeve Floral Swing Dress Size S", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1662, + "x2": 1088, + "y2": 1703 + }, + "value": "2,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1655, + "x2": 1246, + "y2": 1706 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1662, + "x2": 1525, + "y2": 1703 + }, + "value": "22,95", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1662, + "x2": 1779, + "y2": 1703 + }, + "value": "45,90", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1655, + "x2": 2007, + "y2": 1706 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1662, + "x2": 2253, + "y2": 1703 + }, + "value": "50,49", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1791, + "x2": 875, + "y2": 1879 + }, + "value": "Cherry Halter Rockabilly Black Summer Dress Size 3/4", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1791, + "x2": 1088, + "y2": 1831 + }, + "value": "5,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1791, + "x2": 1242, + "y2": 1831 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1349, + "y1": 1269, + "x2": 1426, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1269, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1269, + "x2": 1661, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1269, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1353 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1444, + "y1": 1791, + "x2": 1525, + "y2": 1831 + }, + "value": "3,50", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1791, + "x2": 1779, + "y2": 1831 + }, + "value": "17,50", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1783, + "x2": 2007, + "y2": 1839 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2158, + "y1": 1791, + "x2": 2253, + "y2": 1831 + }, + "value": "19,25", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 298, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1526, + "x2": 298, + "y2": 1570 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1658, + "x2": 298, + "y2": 1703 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1791, + "x2": 298, + "y2": 1839 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 198, + "y1": 1975, + "x2": 493, + "y2": 2022 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 2089, + "x2": 1048, + "y2": 2144 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2089, + "x2": 1121, + "y2": 2147 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 2181, + "x2": 1084, + "y2": 2232 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2089, + "x2": 1478, + "y2": 2144 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2100, + "x2": 1588, + "y2": 2136 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1467, + "y1": 2188, + "x2": 1588, + "y2": 2228 + }, + "value": "159,36", + "label": "" + }, + { + "rect": { + "x1": 1415, + "y1": 2272, + "x2": 1588, + "y2": 2320 + }, + "value": "$ 159,36", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2089, + "x2": 1871, + "y2": 2144 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1764, + "y1": 2188, + "x2": 1864, + "y2": 2228 + }, + "value": "15,94", + "label": "" + }, + { + "rect": { + "x1": 1713, + "y1": 2272, + "x2": 1867, + "y2": 2320 + }, + "value": "$ 15,94", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2100, + "x2": 2139, + "y2": 2136 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2100, + "x2": 2260, + "y2": 2136 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 2188, + "x2": 2260, + "y2": 2228 + }, + "value": "175,30", + "label": "" + }, + { + "rect": { + "x1": 2088, + "y1": 2272, + "x2": 2257, + "y2": 2320 + }, + "value": "$ 175,30", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 746, + "y1": 2272, + "x2": 856, + "y2": 2317 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_171.json b/docs/json/invoice_171.json new file mode 100644 index 0000000000000000000000000000000000000000..11c9f921d77b5e0fa598190c47e886a9b8a53ae4 --- /dev/null +++ b/docs/json/invoice_171.json @@ -0,0 +1,663 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 81, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "56014042", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 320, + "y2": 268 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 268 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1474, + "y2": 268 + }, + "value": "10/01/2014", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 386, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 761, + "x2": 823, + "y2": 919 + }, + "value": "Nichols-Barajas 3882 Stacy Ville Apt. 488 Lake Kristinatown, ND 48049", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 360, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 757, + "x2": 1882, + "y2": 919 + }, + "value": "Mckay PLC 5542 Danielle Drive Suite 381 West Mason, ME 76671", + "label": "header:client" + }, + { + "rect": { + "x1": 364, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "953-87-6813", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 213, + "y1": 1030, + "x2": 331, + "y2": 1070 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1404, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "965-90-8517", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1026, + "x2": 945, + "y2": 1077 + }, + "value": "GB08KXQT197119711661357354", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 235, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1269, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 349, + "y1": 1438, + "x2": 434, + "y2": 1486 + }, + "value": "10c", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 662, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 971, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1269, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1394, + "x2": 875, + "y2": 1441 + }, + "value": "Jordan Hydro 2 (TD)-Child Size", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1394, + "x2": 1092, + "y2": 1441 + }, + "value": "2,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1444, + "y1": 1394, + "x2": 1533, + "y2": 1441 + }, + "value": "5,75", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1405, + "x2": 1779, + "y2": 1441 + }, + "value": "11,50", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1397, + "x2": 2253, + "y2": 1441 + }, + "value": "12,65", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1526, + "x2": 864, + "y2": 1662 + }, + "value": "Sketchers Energy Lights Boys Black Canvas Size 4 With Charging Cable", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1530, + "x2": 1088, + "y2": 1570 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1522, + "x2": 1246, + "y2": 1574 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1430, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1269, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1269, + "x2": 1661, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1269, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1269, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1269, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1353 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1530, + "x2": 1525, + "y2": 1570 + }, + "value": "12,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1530, + "x2": 1779, + "y2": 1570 + }, + "value": "48,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1522, + "x2": 2007, + "y2": 1574 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1530, + "x2": 2253, + "y2": 1570 + }, + "value": "52,80", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 298, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1526, + "x2": 298, + "y2": 1570 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 198, + "y1": 1754, + "x2": 493, + "y2": 1802 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 1875, + "x2": 1048, + "y2": 1919 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 1875, + "x2": 1121, + "y2": 1931 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 1967, + "x2": 1081, + "y2": 2011 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 1875, + "x2": 1474, + "y2": 1927 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 1883, + "x2": 1588, + "y2": 1919 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1481, + "y1": 1971, + "x2": 1588, + "y2": 2011 + }, + "value": "59,50", + "label": "" + }, + { + "rect": { + "x1": 1433, + "y1": 2048, + "x2": 1588, + "y2": 2111 + }, + "value": "$59,50", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1875, + "x2": 1871, + "y2": 1919 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1779, + "y1": 1964, + "x2": 1867, + "y2": 2011 + }, + "value": "5,95", + "label": "" + }, + { + "rect": { + "x1": 1735, + "y1": 2048, + "x2": 1871, + "y2": 2111 + }, + "value": "$5,95", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 1875, + "x2": 2139, + "y2": 1919 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1883, + "x2": 2260, + "y2": 1919 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2158, + "y1": 1971, + "x2": 2260, + "y2": 2011 + }, + "value": "65,45", + "label": "" + }, + { + "rect": { + "x1": 2106, + "y1": 2048, + "x2": 2264, + "y2": 2111 + }, + "value": "$65,45", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 746, + "y1": 2056, + "x2": 856, + "y2": 2096 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_172.json b/docs/json/invoice_172.json new file mode 100644 index 0000000000000000000000000000000000000000..aa6277c0648f222a42c0f44afecaaed0a216755c --- /dev/null +++ b/docs/json/invoice_172.json @@ -0,0 +1,813 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 82, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 512, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "43453121", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 212, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1469, + "y2": 263 + }, + "value": "03/24/2021", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 205, + "y1": 756, + "x2": 775, + "y2": 925 + }, + "value": "Wise and Sons 83453 Burton Village Thomaschester, DC43575", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1779, + "y2": 925 + }, + "value": "Moran, Taylor and Myers 9311 Henry Walks New Joshuaton, IN 32006", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "987-98-5868", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 212, + "y1": 1030, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "935-92-2626", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1027, + "x2": 957, + "y2": 1074 + }, + "value": "GB530LRW11043792655355", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1264, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 968, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1264, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1400, + "x2": 895, + "y2": 1484 + }, + "value": "One Pebbled Confetti Glass Wine Water Goblet 12 OZ 8\" tall", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1396, + "x2": 1093, + "y2": 1443 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1400, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1396, + "x2": 1531, + "y2": 1443 + }, + "value": "8,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1699, + "y1": 1396, + "x2": 1783, + "y2": 1443 + }, + "value": "8,99", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1400, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2167, + "y1": 1396, + "x2": 2254, + "y2": 1443 + }, + "value": "9,89", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1527, + "x2": 884, + "y2": 1655 + }, + "value": "Twas The Nightcap Before Christmas Rosy Red Felt Fabric Wine Bottle Cover", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1531, + "x2": 1093, + "y2": 1575 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1524, + "x2": 1246, + "y2": 1579 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1531, + "x2": 1527, + "y2": 1575 + }, + "value": "16,95", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1531, + "x2": 1779, + "y2": 1575 + }, + "value": "67,80", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1524, + "x2": 2002, + "y2": 1579 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1531, + "x2": 2254, + "y2": 1575 + }, + "value": "74,58", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1696, + "x2": 840, + "y2": 1827 + }, + "value": "Vintage Set of 3 Cobalt Blue Glass Wine Glasses / Water Goblets Barware Stemware", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1703, + "x2": 1093, + "y2": 1743 + }, + "value": "4,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1703, + "x2": 1242, + "y2": 1743 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1703, + "x2": 1527, + "y2": 1743 + }, + "value": "24,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1703, + "x2": 1779, + "y2": 1743 + }, + "value": "96,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1696, + "x2": 2002, + "y2": 1747 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1703, + "x2": 2254, + "y2": 1743 + }, + "value": "105,60", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1875, + "x2": 903, + "y2": 2002 + }, + "value": "Mikasa Cheers Metallics Gold 14oz Wine Glasses With Original Stickers -Set Of 2", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1875, + "x2": 1093, + "y2": 1918 + }, + "value": "1,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1875, + "x2": 1242, + "y2": 1918 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1268, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1264, + "x2": 1666, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1268, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1264, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1264, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1308, + "x2": 2254, + "y2": 1352 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1871, + "x2": 1531, + "y2": 1922 + }, + "value": "9,99", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1699, + "y1": 1871, + "x2": 1783, + "y2": 1922 + }, + "value": "9,99", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1875, + "x2": 2002, + "y2": 1918 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2152, + "y1": 1875, + "x2": 2254, + "y2": 1918 + }, + "value": "10,99", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1400, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1527, + "x2": 292, + "y2": 1575 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1699, + "x2": 292, + "y2": 1747 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1871, + "x2": 292, + "y2": 1918 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 2094, + "x2": 497, + "y2": 2145 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2225, + "x2": 1049, + "y2": 2266 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2218, + "x2": 1122, + "y2": 2269 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2313, + "x2": 1082, + "y2": 2353 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2225, + "x2": 1473, + "y2": 2266 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2225, + "x2": 1586, + "y2": 2266 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1465, + "y1": 2317, + "x2": 1586, + "y2": 2353 + }, + "value": "182,78", + "label": "" + }, + { + "rect": { + "x1": 1414, + "y1": 2397, + "x2": 1586, + "y2": 2448 + }, + "value": "$ 182,78", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2225, + "x2": 1867, + "y2": 2266 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2313, + "x2": 1863, + "y2": 2353 + }, + "value": "18,28", + "label": "" + }, + { + "rect": { + "x1": 1710, + "y1": 2390, + "x2": 1867, + "y2": 2452 + }, + "value": "$18,28", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2225, + "x2": 2141, + "y2": 2266 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2145, + "y1": 2225, + "x2": 2262, + "y2": 2266 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 2317, + "x2": 2262, + "y2": 2353 + }, + "value": "201,06", + "label": "" + }, + { + "rect": { + "x1": 2094, + "y1": 2401, + "x2": 2258, + "y2": 2445 + }, + "value": "$ 201,06", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2401, + "x2": 855, + "y2": 2445 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_173.json b/docs/json/invoice_173.json new file mode 100644 index 0000000000000000000000000000000000000000..054dc786e607d74be003abd3a2df38f4d577dd6b --- /dev/null +++ b/docs/json/invoice_173.json @@ -0,0 +1,733 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 83, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 512, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "38996645", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 212, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1469, + "y2": 263 + }, + "value": "02/16/2015", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 205, + "y1": 764, + "x2": 946, + "y2": 925 + }, + "value": "Barnett-Hughes 970 Jacqueline Mountain Suite 464 Johnview, OH 74615", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 760, + "x2": 1673, + "y2": 921 + }, + "value": "Orr-Morales Unit 9194 Box 2632 DPO AA 51733", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 979, + "x2": 639, + "y2": 1016 + }, + "value": "949-90-9756", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 212, + "y1": 1030, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "981-94-9978", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1027, + "x2": 917, + "y2": 1074 + }, + "value": "GB11ILRS63036524830415", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1264, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1400, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1400, + "x2": 808, + "y2": 1484 + }, + "value": "LuLaRoe Nicole Dress Size Medium 12", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1527, + "x2": 292, + "y2": 1575 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1005, + "y1": 1396, + "x2": 1093, + "y2": 1443 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1443, + "y1": 1396, + "x2": 1531, + "y2": 1443 + }, + "value": "1,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1699, + "y1": 1396, + "x2": 1783, + "y2": 1443 + }, + "value": "9,95", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1400, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1400, + "x2": 2254, + "y2": 1440 + }, + "value": "10,94", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1527, + "x2": 888, + "y2": 1659 + }, + "value": "Elisa Cavaletti Daniela Dallavalle Shift Dress Grey And White .Size M", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1699, + "x2": 292, + "y2": 1747 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 1005, + "y1": 1531, + "x2": 1093, + "y2": 1575 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1429, + "y1": 1531, + "x2": 1527, + "y2": 1575 + }, + "value": "60,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1531, + "x2": 1779, + "y2": 1575 + }, + "value": "240,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1524, + "x2": 2002, + "y2": 1579 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1531, + "x2": 2254, + "y2": 1575 + }, + "value": "264,00", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1703, + "x2": 884, + "y2": 1783 + }, + "value": "NWT Boohoo Sabra Emerald Green Floral Ruffle Dress Sz 12", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 972, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1264, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1400, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1524, + "x2": 1246, + "y2": 1579 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1008, + "y1": 1703, + "x2": 1093, + "y2": 1743 + }, + "value": "5,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1703, + "x2": 1242, + "y2": 1743 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1268, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1264, + "x2": 1666, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1268, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1264, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1264, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1308, + "x2": 2254, + "y2": 1352 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1447, + "y1": 1703, + "x2": 1527, + "y2": 1743 + }, + "value": "4,99", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1703, + "x2": 1779, + "y2": 1743 + }, + "value": "24,95", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1696, + "x2": 2002, + "y2": 1747 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1703, + "x2": 2254, + "y2": 1743 + }, + "value": "27,45", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 197, + "y1": 1886, + "x2": 497, + "y2": 1933 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2006, + "x2": 1049, + "y2": 2057 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2006, + "x2": 1122, + "y2": 2061 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2090, + "x2": 1085, + "y2": 2145 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2006, + "x2": 1473, + "y2": 2057 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2010, + "x2": 1586, + "y2": 2050 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1462, + "y1": 2101, + "x2": 1586, + "y2": 2141 + }, + "value": "274,90", + "label": "" + }, + { + "rect": { + "x1": 1414, + "y1": 2185, + "x2": 1586, + "y2": 2233 + }, + "value": "$ 274,90", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1776, + "y1": 2006, + "x2": 1871, + "y2": 2057 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2101, + "x2": 1863, + "y2": 2141 + }, + "value": "27,49", + "label": "" + }, + { + "rect": { + "x1": 1710, + "y1": 2178, + "x2": 1867, + "y2": 2244 + }, + "value": "$27,49", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2010, + "x2": 2141, + "y2": 2050 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2010, + "x2": 2262, + "y2": 2050 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 2101, + "x2": 2262, + "y2": 2141 + }, + "value": "302,39", + "label": "" + }, + { + "rect": { + "x1": 2086, + "y1": 2185, + "x2": 2258, + "y2": 2233 + }, + "value": "$ 302,39", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2185, + "x2": 855, + "y2": 2225 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_174.json b/docs/json/invoice_174.json new file mode 100644 index 0000000000000000000000000000000000000000..f8f3b9ecb070d453b3acef3d7d7eb04b3f9ba1e0 --- /dev/null +++ b/docs/json/invoice_174.json @@ -0,0 +1,963 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 84, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 512, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 113, + "x2": 808, + "y2": 161 + }, + "value": "26838088", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 212, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1469, + "y2": 263 + }, + "value": "05/16/2017", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 756, + "x2": 866, + "y2": 921 + }, + "value": "Montoya PLC 57965 Roach Course Suite 288 Lake Matthew, WY 35612", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1845, + "y2": 921 + }, + "value": "Moss Inc 1678 Smith Pike West Lauraburgh, SD 71031", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "962-78-0347", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 212, + "y1": 1030, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "910-92-0579", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 340, + "y1": 1030, + "x2": 943, + "y2": 1071 + }, + "value": "GB44YXUC66955506983383", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1264, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1400, + "x2": 292, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1400, + "x2": 632, + "y2": 1443 + }, + "value": "Quilts of Illusion", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1484, + "x2": 292, + "y2": 1535 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1005, + "y1": 1396, + "x2": 1093, + "y2": 1443 + }, + "value": "4,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1443, + "y1": 1396, + "x2": 1531, + "y2": 1443 + }, + "value": "5,79", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1400, + "x2": 1783, + "y2": 1440 + }, + "value": "23,16", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1400, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1400, + "x2": 2254, + "y2": 1440 + }, + "value": "25,48", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1484, + "x2": 884, + "y2": 1538 + }, + "value": "Photosynthesis by Rabinowitch", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1575, + "x2": 292, + "y2": 1622 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 1005, + "y1": 1484, + "x2": 1093, + "y2": 1535 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1429, + "y1": 1487, + "x2": 1527, + "y2": 1527 + }, + "value": "11,31", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1487, + "x2": 1779, + "y2": 1527 + }, + "value": "45,24", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1487, + "x2": 2002, + "y2": 1527 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1487, + "x2": 2254, + "y2": 1535 + }, + "value": "49,76", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 351, + "y1": 1575, + "x2": 661, + "y2": 1619 + }, + "value": "The Puzzle Palace", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1663, + "x2": 292, + "y2": 1710 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 1005, + "y1": 1571, + "x2": 1093, + "y2": 1622 + }, + "value": "1,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1443, + "y1": 1571, + "x2": 1531, + "y2": 1622 + }, + "value": "4,49", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1699, + "y1": 1571, + "x2": 1783, + "y2": 1622 + }, + "value": "4,49", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1575, + "x2": 2002, + "y2": 1619 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2167, + "y1": 1571, + "x2": 2254, + "y2": 1622 + }, + "value": "4,94", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 351, + "y1": 1663, + "x2": 866, + "y2": 1754 + }, + "value": "A History of the Indians of the United States (The", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1791, + "x2": 292, + "y2": 1842 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 1005, + "y1": 1663, + "x2": 1093, + "y2": 1714 + }, + "value": "2,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1443, + "y1": 1663, + "x2": 1531, + "y2": 1714 + }, + "value": "4,49", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1699, + "y1": 1663, + "x2": 1783, + "y2": 1714 + }, + "value": "8,98", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1666, + "x2": 2002, + "y2": 1706 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1794, + "x2": 2254, + "y2": 1838 + }, + "value": "9,88", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 351, + "y1": 1791, + "x2": 661, + "y2": 1842 + }, + "value": "That Quail Robert", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1878, + "x2": 292, + "y2": 1929 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 1005, + "y1": 1791, + "x2": 1096, + "y2": 1842 + }, + "value": "5,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1429, + "y1": 1886, + "x2": 1527, + "y2": 1926 + }, + "value": "4,89", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1886, + "x2": 1779, + "y2": 1926 + }, + "value": "24,45", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1886, + "x2": 2002, + "y2": 1926 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1886, + "x2": 2254, + "y2": 1926 + }, + "value": "26,90", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 351, + "y1": 1886, + "x2": 910, + "y2": 2010 + }, + "value": "The Complete Illustrated Works of Lewis Carroll by Carroll, Lewis Hardback Book", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1005, + "y1": 1878, + "x2": 1093, + "y2": 1933 + }, + "value": "5,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1681, + "y1": 1798, + "x2": 1779, + "y2": 1838 + }, + "value": "10,49", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1918, + "y1": 1794, + "x2": 2002, + "y2": 1838 + }, + "value": "52,45", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 197, + "y1": 2108, + "x2": 497, + "y2": 2152 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 1443, + "y1": 1791, + "x2": 1531, + "y2": 1842 + }, + "value": "57,70", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 972, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1264, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1400, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1487, + "x2": 1242, + "y2": 1527 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1575, + "x2": 1242, + "y2": 1619 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1666, + "x2": 1242, + "y2": 1706 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1794, + "x2": 1242, + "y2": 1838 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1886, + "x2": 1242, + "y2": 1926 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1429, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1268, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1264, + "x2": 1666, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1268, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1264, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1264, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1308, + "x2": 2254, + "y2": 1352 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2233, + "x2": 1049, + "y2": 2273 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2229, + "x2": 1122, + "y2": 2288 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 2320, + "x2": 1082, + "y2": 2364 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2233, + "x2": 1469, + "y2": 2273 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2233, + "x2": 1586, + "y2": 2273 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1465, + "y1": 2328, + "x2": 1586, + "y2": 2364 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1414, + "y1": 2412, + "x2": 1586, + "y2": 2459 + }, + "value": "158,77", + "label": "" + }, + { + "rect": { + "x1": 1779, + "y1": 2233, + "x2": 1867, + "y2": 2273 + }, + "value": "$ 158,77", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1761, + "y1": 2328, + "x2": 1863, + "y2": 2364 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1717, + "y1": 2412, + "x2": 1863, + "y2": 2459 + }, + "value": "15,88", + "label": "" + }, + { + "rect": { + "x1": 2024, + "y1": 2233, + "x2": 2141, + "y2": 2273 + }, + "value": "$ 15,88", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2141, + "y1": 2233, + "x2": 2262, + "y2": 2273 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 2320, + "x2": 2262, + "y2": 2364 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2086, + "y1": 2412, + "x2": 2258, + "y2": 2459 + }, + "value": "174,65", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2412, + "x2": 855, + "y2": 2452 + }, + "value": "$ 174,65", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_175.json b/docs/json/invoice_175.json new file mode 100644 index 0000000000000000000000000000000000000000..4c996515a1aa5d4bcd2b9809cfb54d2fa0f8ef99 --- /dev/null +++ b/docs/json/invoice_175.json @@ -0,0 +1,593 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 85, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 511, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "28753573", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 198, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1474, + "y2": 265 + }, + "value": "07/28/2012", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 757, + "x2": 776, + "y2": 919 + }, + "value": "Reynolds PLC 748 Bernard Park Apt. 046 East Matthew, MI 14088", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 757, + "x2": 1941, + "y2": 919 + }, + "value": "Gordon, Crawford and Jacobs 05731 Johnathan Plain Suite 384 West Ericborough, IL 39257", + "label": "header:client" + }, + { + "rect": { + "x1": 364, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "937-77-3353", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 213, + "y1": 1030, + "x2": 334, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "957-97-1966", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1026, + "x2": 956, + "y2": 1074 + }, + "value": "GB890YRM56667359406013", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1265, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1441, + "x2": 419, + "y2": 1486 + }, + "value": "set", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 1441, + "x2": 485, + "y2": 1486 + }, + "value": "NIB", + "label": "" + }, + { + "rect": { + "x1": 198, + "y1": 1577, + "x2": 496, + "y2": 1629 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1265, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 349, + "y1": 1397, + "x2": 853, + "y2": 1441 + }, + "value": "Vina Wine bottle opener 5 pc", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1397, + "x2": 1092, + "y2": 1441 + }, + "value": "3,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1401, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1426, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1269, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1265, + "x2": 1665, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1269, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1265, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1265, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1353 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2147, + "y1": 1401, + "x2": 2253, + "y2": 1441 + }, + "value": "65,97", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1401, + "x2": 290, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1401, + "x2": 1525, + "y2": 1441 + }, + "value": "19,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1401, + "x2": 1779, + "y2": 1441 + }, + "value": "59,97", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1401, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 956, + "y1": 1706, + "x2": 1048, + "y2": 1747 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1048, + "y1": 1703, + "x2": 1121, + "y2": 1754 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 1794, + "x2": 1081, + "y2": 1839 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 1706, + "x2": 1470, + "y2": 1747 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 1706, + "x2": 1584, + "y2": 1747 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1481, + "y1": 1798, + "x2": 1584, + "y2": 1839 + }, + "value": "59,97", + "label": "" + }, + { + "rect": { + "x1": 2158, + "y1": 1798, + "x2": 2257, + "y2": 1839 + }, + "value": "65,97", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 1437, + "y1": 1886, + "x2": 1584, + "y2": 1934 + }, + "value": "$ 59,97", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1706, + "x2": 1864, + "y2": 1747 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1779, + "y1": 1791, + "x2": 1867, + "y2": 1842 + }, + "value": "6,00", + "label": "" + }, + { + "rect": { + "x1": 1742, + "y1": 1879, + "x2": 1864, + "y2": 1934 + }, + "value": "$ 6,00", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 1706, + "x2": 2139, + "y2": 1747 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1706, + "x2": 2260, + "y2": 1747 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2106, + "y1": 1879, + "x2": 2264, + "y2": 1934 + }, + "value": "$65,97", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 1886, + "x2": 856, + "y2": 1927 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_176.json b/docs/json/invoice_176.json new file mode 100644 index 0000000000000000000000000000000000000000..7a607116a67cef2c439ef566456756729e0e697b --- /dev/null +++ b/docs/json/invoice_176.json @@ -0,0 +1,813 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 86, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 404, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 511, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "55236311", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 210, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1470, + "y2": 265 + }, + "value": "10/21/2017", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 757, + "x2": 765, + "y2": 919 + }, + "value": "Hill PLC 6031 Lynn Walks Apt. 242 West Carlos, TX 58783", + "label": "header:seller" + }, + { + "rect": { + "x1": 1246, + "y1": 761, + "x2": 1948, + "y2": 916 + }, + "value": "Ward-Lindsey 1556 Davenport Greens Apt. 902 North Steven, TX 74063", + "label": "header:client" + }, + { + "rect": { + "x1": 1246, + "y1": 971, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 364, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "925-86-4526", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "919-75-1778", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 334, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 342, + "y1": 1026, + "x2": 945, + "y2": 1074 + }, + "value": "GB43XGPY43263263353953673", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1261, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1265, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1401, + "x2": 290, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1394, + "x2": 812, + "y2": 1486 + }, + "value": "Nightmares in the Sky: Gargoyles and Grotesques", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1526, + "x2": 290, + "y2": 1574 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 1394, + "x2": 1092, + "y2": 1441 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1444, + "y1": 1394, + "x2": 1533, + "y2": 1441 + }, + "value": "7,50", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1401, + "x2": 1783, + "y2": 1441 + }, + "value": "37,50", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1401, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2147, + "y1": 1401, + "x2": 2253, + "y2": 1441 + }, + "value": "41,25", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1526, + "x2": 809, + "y2": 1622 + }, + "value": "Spectacular Ireland Coffee Table Book - very large", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1658, + "x2": 290, + "y2": 1703 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 1526, + "x2": 1088, + "y2": 1574 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1430, + "y1": 1526, + "x2": 1525, + "y2": 1574 + }, + "value": "10,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1526, + "x2": 1779, + "y2": 1574 + }, + "value": "10,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1522, + "x2": 2003, + "y2": 1574 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2158, + "y1": 1526, + "x2": 2253, + "y2": 1574 + }, + "value": "11,00", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1651, + "x2": 901, + "y2": 1783 + }, + "value": "Midnight Sun(Twilight) by Stephenie Meyer I Hardback UK Edition", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1828, + "x2": 290, + "y2": 1879 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 1651, + "x2": 1092, + "y2": 1706 + }, + "value": "3,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1426, + "y1": 1662, + "x2": 1525, + "y2": 1703 + }, + "value": "24,99", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1662, + "x2": 1779, + "y2": 1703 + }, + "value": "74,97", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1651, + "x2": 2003, + "y2": 1706 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2147, + "y1": 1662, + "x2": 2253, + "y2": 1703 + }, + "value": "82,47", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 349, + "y1": 1828, + "x2": 889, + "y2": 1960 + }, + "value": "The Fifty Greatest Conspiracies of All Time History S Biggest Myster", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 198, + "y1": 2056, + "x2": 496, + "y2": 2103 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1261, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1265, + "x2": 1235, + "y2": 1313 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1401, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1522, + "x2": 1246, + "y2": 1574 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1658, + "x2": 1242, + "y2": 1699 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 1828, + "x2": 1095, + "y2": 1883 + }, + "value": "1,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1831, + "x2": 1242, + "y2": 1875 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1342, + "y1": 1261, + "x2": 1430, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1269, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1265, + "x2": 1665, + "y2": 1313 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1269, + "x2": 1779, + "y2": 1313 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1265, + "x2": 1930, + "y2": 1313 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1261, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1265, + "x2": 2253, + "y2": 1313 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1353 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1444, + "y1": 1828, + "x2": 1533, + "y2": 1883 + }, + "value": "4,49", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1694, + "y1": 1828, + "x2": 1783, + "y2": 1883 + }, + "value": "4,49", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1831, + "x2": 2003, + "y2": 1875 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2169, + "y1": 1828, + "x2": 2257, + "y2": 1883 + }, + "value": "4,94", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 956, + "y1": 2181, + "x2": 1048, + "y2": 2225 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1040, + "y1": 2177, + "x2": 1125, + "y2": 2232 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 992, + "y1": 2265, + "x2": 1084, + "y2": 2313 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1393, + "y1": 2181, + "x2": 1474, + "y2": 2225 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2181, + "x2": 1588, + "y2": 2225 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1467, + "y1": 2269, + "x2": 1588, + "y2": 2313 + }, + "value": "126,96", + "label": "" + }, + { + "rect": { + "x1": 1415, + "y1": 2357, + "x2": 1588, + "y2": 2405 + }, + "value": "$ 126,96", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2181, + "x2": 1867, + "y2": 2225 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2269, + "x2": 1864, + "y2": 2313 + }, + "value": "12,70", + "label": "" + }, + { + "rect": { + "x1": 1716, + "y1": 2357, + "x2": 1864, + "y2": 2405 + }, + "value": "$ 12,70", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2181, + "x2": 2139, + "y2": 2225 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2181, + "x2": 2260, + "y2": 2225 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 2265, + "x2": 2264, + "y2": 2320 + }, + "value": "139,66", + "label": "" + }, + { + "rect": { + "x1": 2091, + "y1": 2357, + "x2": 2257, + "y2": 2405 + }, + "value": "$ 139,66", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2361, + "x2": 853, + "y2": 2405 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_177.json b/docs/json/invoice_177.json new file mode 100644 index 0000000000000000000000000000000000000000..eb1527f0e4134d42cbc0df3889648b26d7a9ea43 --- /dev/null +++ b/docs/json/invoice_177.json @@ -0,0 +1,973 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 87, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 511, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "37535203", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 198, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1470, + "y2": 265 + }, + "value": "07/13/2015", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 386, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 761, + "x2": 750, + "y2": 919 + }, + "value": "Garcia-Burton 0340 Moran Port Pattonborough, WI 65859", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 761, + "x2": 1963, + "y2": 919 + }, + "value": "Miranda-Nielsen 8668 Rangel Stravenue Suite 392 Port Kristen, SD 88510", + "label": "header:client" + }, + { + "rect": { + "x1": 364, + "y1": 978, + "x2": 640, + "y2": 1015 + }, + "value": "916-83-8601", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 213, + "y1": 1030, + "x2": 334, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "989-84-4547", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1026, + "x2": 934, + "y2": 1074 + }, + "value": "GB30ICA043176037560423", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1265, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1397, + "x2": 290, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 349, + "y1": 1397, + "x2": 801, + "y2": 1441 + }, + "value": "Q&A a Day: 5-Year Journal", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1486, + "x2": 290, + "y2": 1533 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1397, + "x2": 1092, + "y2": 1441 + }, + "value": "3,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1444, + "y1": 1397, + "x2": 1533, + "y2": 1441 + }, + "value": "4,49", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1401, + "x2": 1779, + "y2": 1441 + }, + "value": "13,47", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1401, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2147, + "y1": 1401, + "x2": 2253, + "y2": 1441 + }, + "value": "14,82", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 349, + "y1": 1486, + "x2": 912, + "y2": 1614 + }, + "value": "Poor Charlie's Almanack The Wit and Wisdom of Charles T Munger 3rd Ed. BRAND NEW", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1658, + "x2": 290, + "y2": 1703 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1486, + "x2": 1092, + "y2": 1533 + }, + "value": "5,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1426, + "y1": 1486, + "x2": 1525, + "y2": 1526 + }, + "value": "64,95", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1486, + "x2": 1779, + "y2": 1526 + }, + "value": "324,75", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1486, + "x2": 2003, + "y2": 1526 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1486, + "x2": 2253, + "y2": 1526 + }, + "value": "357,23", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1658, + "x2": 853, + "y2": 1791 + }, + "value": "Against All Odds : The Untold Story of Canada's Unlikely Hockey Heroes", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1831, + "x2": 290, + "y2": 1879 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1651, + "x2": 1092, + "y2": 1706 + }, + "value": "5,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1448, + "y1": 1662, + "x2": 1525, + "y2": 1703 + }, + "value": "4,41", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1662, + "x2": 1779, + "y2": 1703 + }, + "value": "22,05", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1651, + "x2": 2003, + "y2": 1706 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2147, + "y1": 1662, + "x2": 2253, + "y2": 1703 + }, + "value": "24,26", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1831, + "x2": 842, + "y2": 1886 + }, + "value": "Enough By Helen Roseveare", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1919, + "x2": 290, + "y2": 1964 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1831, + "x2": 1092, + "y2": 1883 + }, + "value": "3,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1444, + "y1": 1831, + "x2": 1533, + "y2": 1883 + }, + "value": "8,86", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1831, + "x2": 1779, + "y2": 1875 + }, + "value": "26,58", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1831, + "x2": 2003, + "y2": 1875 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2147, + "y1": 1831, + "x2": 2253, + "y2": 1875 + }, + "value": "29,24", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1919, + "x2": 713, + "y2": 1964 + }, + "value": "Waterfowl Illustrated", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1919, + "x2": 1092, + "y2": 1964 + }, + "value": "4,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1448, + "y1": 1919, + "x2": 1525, + "y2": 1964 + }, + "value": "5,80", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 246, + "y1": 2011, + "x2": 290, + "y2": 2056 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 1680, + "y1": 1919, + "x2": 1783, + "y2": 1964 + }, + "value": "23,20", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1916, + "x2": 2003, + "y2": 1967 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2147, + "y1": 1919, + "x2": 2253, + "y2": 1964 + }, + "value": "25,52", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 349, + "y1": 2008, + "x2": 573, + "y2": 2056 + }, + "value": "The Messiah", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 202, + "y1": 2147, + "x2": 496, + "y2": 2195 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1095, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1265, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1401, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1486, + "x2": 1242, + "y2": 1526 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1658, + "x2": 1242, + "y2": 1699 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1831, + "x2": 1242, + "y2": 1875 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1919, + "x2": 1242, + "y2": 1964 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 2011, + "x2": 1092, + "y2": 2056 + }, + "value": "5,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2008, + "x2": 1246, + "y2": 2056 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1430, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1269, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1265, + "x2": 1665, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1269, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1265, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1265, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1353 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1448, + "y1": 2011, + "x2": 1525, + "y2": 2056 + }, + "value": "4,49", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 2011, + "x2": 1779, + "y2": 2056 + }, + "value": "22,45", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 2008, + "x2": 2003, + "y2": 2056 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2147, + "y1": 2011, + "x2": 2253, + "y2": 2056 + }, + "value": "24,70", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 956, + "y1": 2272, + "x2": 1048, + "y2": 2317 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2269, + "x2": 1121, + "y2": 2324 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 2361, + "x2": 1081, + "y2": 2405 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2272, + "x2": 1474, + "y2": 2317 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2272, + "x2": 1584, + "y2": 2317 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1463, + "y1": 2368, + "x2": 1584, + "y2": 2405 + }, + "value": "432,50", + "label": "" + }, + { + "rect": { + "x1": 1411, + "y1": 2449, + "x2": 1592, + "y2": 2511 + }, + "value": "$432,50", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2272, + "x2": 1867, + "y2": 2317 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2361, + "x2": 1864, + "y2": 2405 + }, + "value": "43,25", + "label": "" + }, + { + "rect": { + "x1": 1713, + "y1": 2449, + "x2": 1864, + "y2": 2500 + }, + "value": "$43,25", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2272, + "x2": 2139, + "y2": 2317 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2272, + "x2": 2260, + "y2": 2317 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 2361, + "x2": 2260, + "y2": 2405 + }, + "value": "475,75", + "label": "" + }, + { + "rect": { + "x1": 2091, + "y1": 2456, + "x2": 2257, + "y2": 2497 + }, + "value": "$ 475,75", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2453, + "x2": 853, + "y2": 2497 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_178.json b/docs/json/invoice_178.json new file mode 100644 index 0000000000000000000000000000000000000000..f7b80ce191fe0b0c700b453166d617a3703e2a7c --- /dev/null +++ b/docs/json/invoice_178.json @@ -0,0 +1,813 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 88, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 511, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "79434652", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 198, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1474, + "y2": 265 + }, + "value": "06/22/2013", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 757, + "x2": 761, + "y2": 919 + }, + "value": "Ware Group 879 Jones Haven Apt. 398 Port Gloria, TN 84764", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 757, + "x2": 1893, + "y2": 919 + }, + "value": "Keller Inc 801 Yolanda Gardens Apt. 613 New lanside, WV 53879", + "label": "header:client" + }, + { + "rect": { + "x1": 364, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "905-94-4458", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 213, + "y1": 1030, + "x2": 334, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "964-74-0577", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1026, + "x2": 937, + "y2": 1074 + }, + "value": "GB05FZSB29082242149094", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1265, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1265, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 349, + "y1": 1401, + "x2": 860, + "y2": 1522 + }, + "value": "Dont Sweat the Small Stuff and Its All Small Stuff: Simple Ways to Keep", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1397, + "x2": 1092, + "y2": 1441 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1401, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1444, + "y1": 1397, + "x2": 1533, + "y2": 1441 + }, + "value": "4,49", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1698, + "y1": 1397, + "x2": 1786, + "y2": 1441 + }, + "value": "4,49", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1401, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2169, + "y1": 1397, + "x2": 2253, + "y2": 1441 + }, + "value": "4,94", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1563, + "x2": 845, + "y2": 1662 + }, + "value": "Book: The Lee-Enfield by lan Skennerton- Signed Edition", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1570, + "x2": 1092, + "y2": 1614 + }, + "value": "2,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1566, + "x2": 1242, + "y2": 1611 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1570, + "x2": 1525, + "y2": 1614 + }, + "value": "94,95", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1570, + "x2": 1779, + "y2": 1614 + }, + "value": "189,90", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2003, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1570, + "x2": 2253, + "y2": 1614 + }, + "value": "208,89", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 349, + "y1": 1695, + "x2": 875, + "y2": 1787 + }, + "value": "The Last Kings of Shanghai by Jonathan Kaufman", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1703, + "x2": 1092, + "y2": 1743 + }, + "value": "3,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1703, + "x2": 1242, + "y2": 1743 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1448, + "y1": 1703, + "x2": 1525, + "y2": 1743 + }, + "value": "2,99", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1702, + "y1": 1703, + "x2": 1779, + "y2": 1743 + }, + "value": "8,97", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1695, + "x2": 2003, + "y2": 1747 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2172, + "y1": 1703, + "x2": 2253, + "y2": 1743 + }, + "value": "9,87", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1831, + "x2": 904, + "y2": 1960 + }, + "value": "Arnold Ehret RATIONAL FASTING 1971 paperback collector's edition", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1831, + "x2": 1095, + "y2": 1883 + }, + "value": "1,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1831, + "x2": 1242, + "y2": 1875 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1430, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1269, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1265, + "x2": 1665, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1269, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1265, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1265, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1353 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1444, + "y1": 1831, + "x2": 1533, + "y2": 1883 + }, + "value": "6,75", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1698, + "y1": 1831, + "x2": 1783, + "y2": 1883 + }, + "value": "6,75", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1831, + "x2": 2003, + "y2": 1875 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2172, + "y1": 1831, + "x2": 2253, + "y2": 1875 + }, + "value": "7,43", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1401, + "x2": 290, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1566, + "x2": 298, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1699, + "x2": 290, + "y2": 1747 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1831, + "x2": 290, + "y2": 1879 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 198, + "y1": 2056, + "x2": 496, + "y2": 2103 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 2181, + "x2": 1048, + "y2": 2225 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2177, + "x2": 1121, + "y2": 2228 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 992, + "y1": 2265, + "x2": 1084, + "y2": 2317 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2181, + "x2": 1474, + "y2": 2225 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2181, + "x2": 1584, + "y2": 2225 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1463, + "y1": 2269, + "x2": 1584, + "y2": 2313 + }, + "value": "210,11", + "label": "" + }, + { + "rect": { + "x1": 1415, + "y1": 2357, + "x2": 1584, + "y2": 2405 + }, + "value": "$ 210,11", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2181, + "x2": 1867, + "y2": 2225 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2269, + "x2": 1864, + "y2": 2313 + }, + "value": "21,01", + "label": "" + }, + { + "rect": { + "x1": 1709, + "y1": 2350, + "x2": 1871, + "y2": 2412 + }, + "value": "$21,01", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2181, + "x2": 2139, + "y2": 2225 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2181, + "x2": 2260, + "y2": 2225 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 2269, + "x2": 2260, + "y2": 2313 + }, + "value": "231,12", + "label": "" + }, + { + "rect": { + "x1": 2088, + "y1": 2357, + "x2": 2257, + "y2": 2405 + }, + "value": "$ 231,12", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2361, + "x2": 853, + "y2": 2405 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_179.json b/docs/json/invoice_179.json new file mode 100644 index 0000000000000000000000000000000000000000..f37544230634c91e0ac0df00b692e0ec58f06a25 --- /dev/null +++ b/docs/json/invoice_179.json @@ -0,0 +1,993 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 89, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 404, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 511, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 805, + "y2": 162 + }, + "value": "15665127", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 198, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 210, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 213, + "x2": 1474, + "y2": 265 + }, + "value": "11/03/2020", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 382, + "y2": 724 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 757, + "x2": 511, + "y2": 916 + }, + "value": "Greene Ltd USCGC Lane FPO AP22594", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 757, + "x2": 1779, + "y2": 916 + }, + "value": "Cruz, Martinez and Jones 406 Baker Street Wendyshire, WI 08892", + "label": "header:client" + }, + { + "rect": { + "x1": 364, + "y1": 978, + "x2": 640, + "y2": 1015 + }, + "value": "928-81-0532", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 334, + "y2": 1070 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "929-70-8255", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1026, + "x2": 945, + "y2": 1074 + }, + "value": "GB59TOAH68983697464363", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 371, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1265, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1401, + "x2": 290, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1401, + "x2": 897, + "y2": 1522 + }, + "value": "Custom Build Dell Desktop Computer i5 I 16GB I 2TB I SSD Windows 10 PC WiFi DVD", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1566, + "x2": 298, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1397, + "x2": 1092, + "y2": 1441 + }, + "value": "3,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1426, + "y1": 1401, + "x2": 1525, + "y2": 1441 + }, + "value": "99,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1654, + "y1": 1401, + "x2": 1779, + "y2": 1441 + }, + "value": "297,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1401, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1401, + "x2": 2253, + "y2": 1441 + }, + "value": "326,70", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1563, + "x2": 904, + "y2": 1699 + }, + "value": "Dell OptiPlex 9020 SFF DVD-RW/Barebone PC Desktop Computer NO 05/CPU/HDD/RAM", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1739, + "x2": 290, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1563, + "x2": 1092, + "y2": 1618 + }, + "value": "2,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1426, + "y1": 1570, + "x2": 1525, + "y2": 1614 + }, + "value": "49,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1570, + "x2": 1779, + "y2": 1614 + }, + "value": "99,98", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2003, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1570, + "x2": 2253, + "y2": 1614 + }, + "value": "109,98", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1743, + "x2": 901, + "y2": 1868 + }, + "value": "Dell Precision Workstation Computer Intel Xeon Quad Core 16GB 1TB Windows 10 Pro", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1912, + "x2": 290, + "y2": 1964 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1739, + "x2": 1092, + "y2": 1791 + }, + "value": "2,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1408, + "y1": 1743, + "x2": 1525, + "y2": 1787 + }, + "value": "139,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1654, + "y1": 1743, + "x2": 1779, + "y2": 1787 + }, + "value": "278,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1743, + "x2": 2003, + "y2": 1787 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1743, + "x2": 2253, + "y2": 1787 + }, + "value": "305,80", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1916, + "x2": 904, + "y2": 2044 + }, + "value": "Dell Desktop Computer Optiplex 790 USFF Core i3 4GB 250GB HD Windows 10 Pro PC", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 2078, + "x2": 290, + "y2": 2129 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1912, + "x2": 1095, + "y2": 1964 + }, + "value": "4,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1426, + "y1": 1916, + "x2": 1525, + "y2": 1960 + }, + "value": "99,95", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1654, + "y1": 1916, + "x2": 1779, + "y2": 1960 + }, + "value": "399,80", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1916, + "x2": 2003, + "y2": 1960 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2128, + "y1": 1916, + "x2": 2253, + "y2": 1960 + }, + "value": "439,78", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2089, + "x2": 875, + "y2": 2214 + }, + "value": "AMD Quad Core Custom Built Gaming PC Computer Desktop 16GB 2TB Blue LED", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 2258, + "x2": 290, + "y2": 2306 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 2078, + "x2": 1095, + "y2": 2136 + }, + "value": "2,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1400, + "y1": 2089, + "x2": 1525, + "y2": 2129 + }, + "value": "509,99", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1625, + "y1": 2089, + "x2": 1779, + "y2": 2129 + }, + "value": "1019,98", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2089, + "x2": 2003, + "y2": 2129 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2095, + "y1": 2078, + "x2": 2253, + "y2": 2136 + }, + "value": "1121,98", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2254, + "x2": 912, + "y2": 2386 + }, + "value": "HP T520 Thin Client Computer AMD GX-212JC 1.2GHz 4GB RAM TESTED !IREAD BELOW!!", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 713 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1265, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1401, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1563, + "x2": 1246, + "y2": 1618 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1743, + "x2": 1246, + "y2": 1787 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1916, + "x2": 1242, + "y2": 1960 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 2089, + "x2": 1242, + "y2": 2129 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1007, + "y1": 2261, + "x2": 1092, + "y2": 2306 + }, + "value": "1,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2261, + "x2": 1242, + "y2": 2306 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1349, + "y1": 1265, + "x2": 1426, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1269, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1265, + "x2": 1665, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1269, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1265, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1265, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1309, + "x2": 2253, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 2261, + "x2": 1525, + "y2": 2306 + }, + "value": "37,75", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 2261, + "x2": 1779, + "y2": 2306 + }, + "value": "37,75", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 2254, + "x2": 2003, + "y2": 2306 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2147, + "y1": 2261, + "x2": 2253, + "y2": 2306 + }, + "value": "41,53", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 202, + "y1": 2482, + "x2": 496, + "y2": 2534 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 2614, + "x2": 1048, + "y2": 2648 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2611, + "x2": 1121, + "y2": 2659 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 2699, + "x2": 1081, + "y2": 2739 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2603, + "x2": 1478, + "y2": 2651 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2614, + "x2": 1584, + "y2": 2648 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 2695, + "x2": 1467, + "y2": 2743 + }, + "value": "2", + "label": "" + }, + { + "rect": { + "x1": 1452, + "y1": 2699, + "x2": 1584, + "y2": 2739 + }, + "value": "132,51", + "label": "" + }, + { + "rect": { + "x1": 1378, + "y1": 2780, + "x2": 1584, + "y2": 2835 + }, + "value": "$2132,51", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2614, + "x2": 1867, + "y2": 2648 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1739, + "y1": 2699, + "x2": 1864, + "y2": 2739 + }, + "value": "213,25", + "label": "" + }, + { + "rect": { + "x1": 1691, + "y1": 2784, + "x2": 1864, + "y2": 2835 + }, + "value": "$ 213,25", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2614, + "x2": 2139, + "y2": 2648 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2614, + "x2": 2260, + "y2": 2648 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2102, + "y1": 2695, + "x2": 2139, + "y2": 2743 + }, + "value": "2", + "label": "" + }, + { + "rect": { + "x1": 2124, + "y1": 2699, + "x2": 2257, + "y2": 2739 + }, + "value": "345,76", + "label": "" + }, + { + "rect": { + "x1": 2051, + "y1": 2784, + "x2": 2260, + "y2": 2835 + }, + "value": "$2345,76", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2784, + "x2": 856, + "y2": 2831 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_18.json b/docs/json/invoice_18.json new file mode 100644 index 0000000000000000000000000000000000000000..a9f73690bc1056c5f54460613063cb2e260d7709 --- /dev/null +++ b/docs/json/invoice_18.json @@ -0,0 +1,903 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 90, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 406, + "y2": 164 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 113, + "x2": 515, + "y2": 168 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 113, + "x2": 808, + "y2": 164 + }, + "value": "97511742", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 197, + "y1": 208, + "x2": 318, + "y2": 263 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 318, + "y1": 208, + "x2": 380, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 380, + "y1": 216, + "x2": 519, + "y2": 263 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1202, + "y1": 216, + "x2": 1473, + "y2": 263 + }, + "value": "04/07/2016", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 205, + "y1": 756, + "x2": 643, + "y2": 917 + }, + "value": "Decker PLC PSC 4781, Box 6245 APO AE 78725", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 968, + "x2": 358, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1933, + "y2": 917 + }, + "value": "Boyle Ltd 42517 Laurie Passage Suite 826 North Charleshaven, NC 09365", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "957-87-4031", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1030, + "x2": 329, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "993-86-3706", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 343, + "y1": 1030, + "x2": 939, + "y2": 1067 + }, + "value": "GB49WFLF18981790361495", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1264, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1268, + "x2": 585, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 716 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 972, + "x2": 1334, + "y2": 1023 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 968, + "x2": 1396, + "y2": 1023 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1012, + "y1": 1264, + "x2": 1093, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1268, + "x2": 1239, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 354, + "y1": 1396, + "x2": 873, + "y2": 1527 + }, + "value": "Nintendo Wii New Super Mario Bros Console System Bundle Gamecube Compatible", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1093, + "y2": 1447 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1400, + "x2": 1527, + "y2": 1440 + }, + "value": "89,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1677, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "89,99", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2156, + "y1": 1396, + "x2": 2258, + "y2": 1440 + }, + "value": "98,99", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1568, + "x2": 848, + "y2": 1699 + }, + "value": "Sony PlayStation 5 Console - White Disc Version CONFIRMED PRE ORDER PS5", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1568, + "x2": 1093, + "y2": 1619 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1151, + "y1": 1568, + "x2": 1246, + "y2": 1619 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 1571, + "x2": 1527, + "y2": 1611 + }, + "value": "499,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1571, + "x2": 1779, + "y2": 1611 + }, + "value": "499,99", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 2002, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1571, + "x2": 2254, + "y2": 1611 + }, + "value": "549,99", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1739, + "x2": 797, + "y2": 1827 + }, + "value": "Microsoft Xbox One S 1TB Console White", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1739, + "x2": 1093, + "y2": 1794 + }, + "value": "5,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1743, + "x2": 1246, + "y2": 1787 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 1743, + "x2": 1524, + "y2": 1787 + }, + "value": "189,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1743, + "x2": 1779, + "y2": 1787 + }, + "value": "945,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1743, + "x2": 2002, + "y2": 1787 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2090, + "y1": 1732, + "x2": 2262, + "y2": 1794 + }, + "value": "1039,50", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1867, + "x2": 910, + "y2": 1995 + }, + "value": "Nintendo Wii Teal Blue Limited Edition Console with Mario Kart - MINT TESTED", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1875, + "x2": 1093, + "y2": 1915 + }, + "value": "2,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1875, + "x2": 1242, + "y2": 1915 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 1875, + "x2": 1524, + "y2": 1915 + }, + "value": "114,99", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1655, + "y1": 1875, + "x2": 1779, + "y2": 1915 + }, + "value": "229,98", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1922, + "y1": 1875, + "x2": 2006, + "y2": 1915 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1875, + "x2": 2254, + "y2": 1915 + }, + "value": "252,98", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 2039, + "x2": 895, + "y2": 2171 + }, + "value": "Sony PlayStation 5 Console PS5- PRESALE- Disc Version Pre Order Confirmed", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 2039, + "x2": 1093, + "y2": 2094 + }, + "value": "3,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2043, + "x2": 1246, + "y2": 2087 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1268, + "x2": 1425, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1272, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1586, + "y1": 1268, + "x2": 1663, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1272, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1268, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1264, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1268, + "x2": 2254, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1308, + "x2": 2254, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 2046, + "x2": 1527, + "y2": 2087 + }, + "value": "849,99", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1622, + "y1": 2039, + "x2": 1787, + "y2": 2094 + }, + "value": "2549,97", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2043, + "x2": 2002, + "y2": 2087 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2094, + "y1": 2039, + "x2": 2258, + "y2": 2094 + }, + "value": "2804,97", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 296, + "y2": 1443 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 296, + "y2": 1611 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1739, + "x2": 296, + "y2": 1791 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1871, + "x2": 296, + "y2": 1918 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2039, + "x2": 296, + "y2": 2090 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 2266, + "x2": 493, + "y2": 2317 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2393, + "x2": 1049, + "y2": 2437 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2390, + "x2": 1122, + "y2": 2448 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 2485, + "x2": 1082, + "y2": 2525 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2393, + "x2": 1473, + "y2": 2437 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2401, + "x2": 1586, + "y2": 2437 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 2474, + "x2": 1593, + "y2": 2536 + }, + "value": "4314,93", + "label": "" + }, + { + "rect": { + "x1": 1378, + "y1": 2569, + "x2": 1586, + "y2": 2620 + }, + "value": "$4314,93", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2393, + "x2": 1867, + "y2": 2437 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1743, + "y1": 2488, + "x2": 1863, + "y2": 2525 + }, + "value": "431,49", + "label": "" + }, + { + "rect": { + "x1": 1692, + "y1": 2573, + "x2": 1863, + "y2": 2620 + }, + "value": "$ 431,49", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2393, + "x2": 2138, + "y2": 2437 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2141, + "y1": 2393, + "x2": 2262, + "y2": 2437 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2101, + "y1": 2481, + "x2": 2138, + "y2": 2529 + }, + "value": "4", + "label": "" + }, + { + "rect": { + "x1": 2127, + "y1": 2488, + "x2": 2262, + "y2": 2525 + }, + "value": "746,42", + "label": "" + }, + { + "rect": { + "x1": 2050, + "y1": 2569, + "x2": 2262, + "y2": 2620 + }, + "value": "$4746,42", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2573, + "x2": 859, + "y2": 2613 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_180.json b/docs/json/invoice_180.json new file mode 100644 index 0000000000000000000000000000000000000000..2caa01c098a999c5aab995fa53fd27fb262d93bd --- /dev/null +++ b/docs/json/invoice_180.json @@ -0,0 +1,733 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 91, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 511, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "10541959", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 198, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1470, + "y2": 265 + }, + "value": "02/19/2017", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 386, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 761, + "x2": 834, + "y2": 927 + }, + "value": "Alvarez-Woods 7059 Bauer Squares Apt. 050 West Tammy, TN 81798", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 765, + "x2": 1834, + "y2": 919 + }, + "value": "Smith-Haynes 11054 Adrian Stream Port Nicholasfort, NE 71131", + "label": "header:client" + }, + { + "rect": { + "x1": 364, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "939-92-6291", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 213, + "y1": 1030, + "x2": 334, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "974-91-1402", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1026, + "x2": 945, + "y2": 1074 + }, + "value": "GB35DSTQ64817325575579", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1265, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1265, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1401, + "x2": 853, + "y2": 1522 + }, + "value": "Women Sexy Lingerie Lace Dress Underwear Babydoll Sleepwear G-string Bikini Lot", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1397, + "x2": 1092, + "y2": 1441 + }, + "value": "1,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1401, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1444, + "y1": 1397, + "x2": 1533, + "y2": 1441 + }, + "value": "0,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1698, + "y1": 1397, + "x2": 1783, + "y2": 1441 + }, + "value": "0,99", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1401, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2169, + "y1": 1397, + "x2": 2253, + "y2": 1441 + }, + "value": "1,09", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1566, + "x2": 886, + "y2": 1655 + }, + "value": "NWT Boohoo Sabra Emerald Green Floral Ruffle Dress Sz 12", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1570, + "x2": 1092, + "y2": 1614 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1563, + "x2": 1246, + "y2": 1618 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1448, + "y1": 1570, + "x2": 1525, + "y2": 1614 + }, + "value": "4,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1570, + "x2": 1779, + "y2": 1614 + }, + "value": "19,96", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1563, + "x2": 2003, + "y2": 1618 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2147, + "y1": 1570, + "x2": 2253, + "y2": 1614 + }, + "value": "21,96", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1699, + "x2": 871, + "y2": 1831 + }, + "value": "Sexy Lingerie Lace Dress Babydoll Women's Underwear Nightwear Sleepwear G-string", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1703, + "x2": 1092, + "y2": 1743 + }, + "value": "1,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1703, + "x2": 1242, + "y2": 1743 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1430, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1269, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1265, + "x2": 1665, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1269, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1265, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1265, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1353 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1448, + "y1": 1703, + "x2": 1525, + "y2": 1743 + }, + "value": "5,19", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1702, + "y1": 1703, + "x2": 1779, + "y2": 1743 + }, + "value": "5,19", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1695, + "x2": 2003, + "y2": 1747 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2172, + "y1": 1703, + "x2": 2253, + "y2": 1743 + }, + "value": "5,71", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1401, + "x2": 290, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1566, + "x2": 298, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1699, + "x2": 290, + "y2": 1747 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 198, + "y1": 1927, + "x2": 496, + "y2": 1975 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 2044, + "x2": 1048, + "y2": 2096 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2044, + "x2": 1121, + "y2": 2100 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 2133, + "x2": 1084, + "y2": 2184 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2044, + "x2": 1474, + "y2": 2096 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2048, + "x2": 1584, + "y2": 2089 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1481, + "y1": 2140, + "x2": 1584, + "y2": 2181 + }, + "value": "26,14", + "label": "" + }, + { + "rect": { + "x1": 1437, + "y1": 2225, + "x2": 1584, + "y2": 2272 + }, + "value": "$ 26,14", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1775, + "y1": 2044, + "x2": 1871, + "y2": 2096 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1779, + "y1": 2133, + "x2": 1864, + "y2": 2184 + }, + "value": "2,61", + "label": "" + }, + { + "rect": { + "x1": 1735, + "y1": 2225, + "x2": 1864, + "y2": 2280 + }, + "value": "$2,61", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2048, + "x2": 2139, + "y2": 2089 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2048, + "x2": 2260, + "y2": 2089 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2158, + "y1": 2140, + "x2": 2257, + "y2": 2181 + }, + "value": "28,75", + "label": "" + }, + { + "rect": { + "x1": 2106, + "y1": 2225, + "x2": 2264, + "y2": 2280 + }, + "value": "$28,75", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2225, + "x2": 856, + "y2": 2269 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_181.json b/docs/json/invoice_181.json new file mode 100644 index 0000000000000000000000000000000000000000..2034bc9767abdf490b876c067be873ba5885636d --- /dev/null +++ b/docs/json/invoice_181.json @@ -0,0 +1,743 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 92, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 404, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 511, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "60400209", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 210, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1470, + "y2": 265 + }, + "value": "10/02/2017", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 206, + "y1": 757, + "x2": 849, + "y2": 916 + }, + "value": "White PLC 26881 Gregory Loaf Suite 262 Frenchmouth, AL 15024", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 761, + "x2": 1959, + "y2": 919 + }, + "value": "Elliott-Cole 912 Coleman Mountains Apt. 947 New Brittanymouth, TX 87230", + "label": "header:client" + }, + { + "rect": { + "x1": 364, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "995-72-0848", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1030, + "x2": 334, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "979-73-3842", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 945, + "y2": 1070 + }, + "value": "GB81EOTC18830149895987", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1261, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1265, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1261, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1265, + "x2": 1235, + "y2": 1313 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1401, + "x2": 904, + "y2": 1486 + }, + "value": "RICOSTA BGE boys everyday casual sandals NEW Size 33/US", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1394, + "x2": 1092, + "y2": 1441 + }, + "value": "2,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1401, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1401, + "x2": 1525, + "y2": 1441 + }, + "value": "45,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1401, + "x2": 1783, + "y2": 1441 + }, + "value": "90,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1401, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2147, + "y1": 1401, + "x2": 2253, + "y2": 1441 + }, + "value": "99,00", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1566, + "x2": 889, + "y2": 1703 + }, + "value": "Blueteeth LED Galaxy Projector Starry Night Lamp Star Projection Night Light USB", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1570, + "x2": 1088, + "y2": 1614 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1563, + "x2": 1246, + "y2": 1618 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1570, + "x2": 1525, + "y2": 1614 + }, + "value": "28,49", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1570, + "x2": 1779, + "y2": 1614 + }, + "value": "113,96", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2003, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1570, + "x2": 2253, + "y2": 1614 + }, + "value": "125,36", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1747, + "x2": 871, + "y2": 1868 + }, + "value": "Kid's Unicorn Sunglasses Girls Rainbow Mythical Fashion Shades", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1739, + "x2": 1092, + "y2": 1791 + }, + "value": "3,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1747, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1426, + "y2": 1313 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1269, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1265, + "x2": 1665, + "y2": 1313 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1269, + "x2": 1779, + "y2": 1313 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1265, + "x2": 1930, + "y2": 1313 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1261, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1265, + "x2": 2253, + "y2": 1313 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1353 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1444, + "y1": 1739, + "x2": 1525, + "y2": 1791 + }, + "value": "9,95", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1747, + "x2": 1779, + "y2": 1783 + }, + "value": "29,85", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1747, + "x2": 2003, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2147, + "y1": 1747, + "x2": 2253, + "y2": 1783 + }, + "value": "32,83", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1401, + "x2": 290, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1566, + "x2": 298, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1739, + "x2": 290, + "y2": 1787 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 198, + "y1": 1967, + "x2": 496, + "y2": 2011 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 349, + "y1": 1475, + "x2": 390, + "y2": 1522 + }, + "value": "2", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 2089, + "x2": 1048, + "y2": 2136 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1040, + "y1": 2089, + "x2": 1125, + "y2": 2140 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 2181, + "x2": 1081, + "y2": 2225 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2089, + "x2": 1474, + "y2": 2136 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2089, + "x2": 1588, + "y2": 2136 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1463, + "y1": 2181, + "x2": 1588, + "y2": 2225 + }, + "value": "233,81", + "label": "" + }, + { + "rect": { + "x1": 1411, + "y1": 2265, + "x2": 1584, + "y2": 2313 + }, + "value": "$ 233,81", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2089, + "x2": 1867, + "y2": 2136 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2181, + "x2": 1864, + "y2": 2225 + }, + "value": "23,38", + "label": "" + }, + { + "rect": { + "x1": 1716, + "y1": 2265, + "x2": 1864, + "y2": 2313 + }, + "value": "$ 23,38", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2089, + "x2": 2139, + "y2": 2136 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2089, + "x2": 2260, + "y2": 2136 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 2181, + "x2": 2257, + "y2": 2225 + }, + "value": "257,19", + "label": "" + }, + { + "rect": { + "x1": 2091, + "y1": 2265, + "x2": 2257, + "y2": 2313 + }, + "value": "$ 257,19", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2269, + "x2": 856, + "y2": 2313 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_182.json b/docs/json/invoice_182.json new file mode 100644 index 0000000000000000000000000000000000000000..25aca289017ac432e252e128b79ba6b95d5bd04c --- /dev/null +++ b/docs/json/invoice_182.json @@ -0,0 +1,733 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 93, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 511, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "62312762", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 198, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1474, + "y2": 265 + }, + "value": "03/08/2019", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 386, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 761, + "x2": 871, + "y2": 927 + }, + "value": "Lambert-Murphy 67341 Kennedy Brook Apt. 901 Jonesmouth, HI 64478", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 765, + "x2": 1819, + "y2": 927 + }, + "value": "Dalton-Pope 49580 Keith Ferry Apt. 170 Port Johnburgh, NJ 58435", + "label": "header:client" + }, + { + "rect": { + "x1": 364, + "y1": 971, + "x2": 640, + "y2": 1019 + }, + "value": "983-75-3868", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 213, + "y1": 1030, + "x2": 334, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "903-86-9811", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1026, + "x2": 948, + "y2": 1074 + }, + "value": "GB02NXHR06400921861370", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1265, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1401, + "x2": 290, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1401, + "x2": 904, + "y2": 1522 + }, + "value": "Fluffy Floor Mat Anti-Skid Shaggy Area Rugs Dining Living Room Carpet Home Decor", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1566, + "x2": 298, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1397, + "x2": 1092, + "y2": 1441 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1444, + "y1": 1397, + "x2": 1533, + "y2": 1441 + }, + "value": "3,89", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1401, + "x2": 1779, + "y2": 1441 + }, + "value": "19,45", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1401, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2147, + "y1": 1401, + "x2": 2253, + "y2": 1441 + }, + "value": "21,40", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1566, + "x2": 886, + "y2": 1706 + }, + "value": "Handmade Tribal Geometric Design 4X6 Indo-Gabbeh Oriental Rug Kids Room Carpet", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 246, + "y1": 1739, + "x2": 290, + "y2": 1787 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1563, + "x2": 1092, + "y2": 1618 + }, + "value": "2,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1404, + "y1": 1570, + "x2": 1525, + "y2": 1614 + }, + "value": "272,60", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1570, + "x2": 1779, + "y2": 1614 + }, + "value": "545,20", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2003, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1570, + "x2": 2253, + "y2": 1614 + }, + "value": "599,72", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1739, + "x2": 875, + "y2": 1872 + }, + "value": "Striped Contemporary Gabbeh Kashkoli Oriental Area Rug Handmade Wool Carpet 6x8", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1265, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1401, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1154, + "y1": 1563, + "x2": 1246, + "y2": 1618 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1003, + "y1": 1739, + "x2": 1095, + "y2": 1791 + }, + "value": "1,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1430, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1269, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1265, + "x2": 1665, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1269, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1265, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1265, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1353 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1404, + "y1": 1743, + "x2": 1525, + "y2": 1783 + }, + "value": "417,24", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1743, + "x2": 1779, + "y2": 1783 + }, + "value": "417,24", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1743, + "x2": 2003, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1743, + "x2": 2253, + "y2": 1783 + }, + "value": "458,96", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 198, + "y1": 1967, + "x2": 496, + "y2": 2019 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 2089, + "x2": 1044, + "y2": 2136 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2089, + "x2": 1121, + "y2": 2140 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 2181, + "x2": 1081, + "y2": 2225 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2089, + "x2": 1478, + "y2": 2136 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2089, + "x2": 1584, + "y2": 2136 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1463, + "y1": 2181, + "x2": 1584, + "y2": 2225 + }, + "value": "981,89", + "label": "" + }, + { + "rect": { + "x1": 1411, + "y1": 2269, + "x2": 1584, + "y2": 2317 + }, + "value": "$ 981,89", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2089, + "x2": 1867, + "y2": 2136 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2181, + "x2": 1864, + "y2": 2225 + }, + "value": "98,19", + "label": "" + }, + { + "rect": { + "x1": 1709, + "y1": 2258, + "x2": 1867, + "y2": 2324 + }, + "value": "$98,19", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2089, + "x2": 2139, + "y2": 2136 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2089, + "x2": 2260, + "y2": 2136 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2099, + "y1": 2170, + "x2": 2264, + "y2": 2232 + }, + "value": "1080,08", + "label": "" + }, + { + "rect": { + "x1": 2047, + "y1": 2258, + "x2": 2264, + "y2": 2324 + }, + "value": "$1080,08", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2269, + "x2": 856, + "y2": 2313 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_183.json b/docs/json/invoice_183.json new file mode 100644 index 0000000000000000000000000000000000000000..ba1aebfb1abc33471b9b3cde50b95100894cb924 --- /dev/null +++ b/docs/json/invoice_183.json @@ -0,0 +1,1053 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 94, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 110, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 511, + "y2": 169 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 809, + "y2": 162 + }, + "value": "35050964", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 198, + "y1": 210, + "x2": 320, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 320, + "y1": 210, + "x2": 379, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 379, + "y1": 213, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 217, + "x2": 1470, + "y2": 265 + }, + "value": "11/18/2011", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 198, + "y1": 669, + "x2": 382, + "y2": 721 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 761, + "x2": 673, + "y2": 919 + }, + "value": "Soto-Carson 55690 Ashley Bridge Claudiafurt, CT 32907", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 971, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 967, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 757, + "x2": 1805, + "y2": 927 + }, + "value": "Wong, Le and Hall 2113 Snyder Key Apt. 223 Hensleyburgh, FL 21218", + "label": "header:client" + }, + { + "rect": { + "x1": 364, + "y1": 978, + "x2": 640, + "y2": 1015 + }, + "value": "918-81-3436", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 213, + "y1": 1030, + "x2": 334, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1408, + "y1": 971, + "x2": 1680, + "y2": 1019 + }, + "value": "948-88-4170", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1030, + "x2": 937, + "y2": 1070 + }, + "value": "GB06RRZI29931514103942", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1265, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1265, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 717 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1242, + "y1": 967, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 967, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1265, + "x2": 1092, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1265, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1401, + "x2": 904, + "y2": 1519 + }, + "value": "Sperry Top-Sider Boys Toddlers Lace Tie Boat Shoes Brown 13M New", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1397, + "x2": 1095, + "y2": 1441 + }, + "value": "4,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1401, + "x2": 1242, + "y2": 1441 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1401, + "x2": 1525, + "y2": 1441 + }, + "value": "37,69", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 1401, + "x2": 1783, + "y2": 1441 + }, + "value": "150,76", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1401, + "x2": 2003, + "y2": 1441 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1401, + "x2": 2253, + "y2": 1441 + }, + "value": "165,84", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1563, + "x2": 842, + "y2": 1699 + }, + "value": "Deer Stag Kids Landry Boys Lace Up Sneakers Gray/Blue Size 6", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1570, + "x2": 1092, + "y2": 1614 + }, + "value": "3,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1563, + "x2": 1246, + "y2": 1618 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1570, + "x2": 1525, + "y2": 1614 + }, + "value": "28,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1570, + "x2": 1779, + "y2": 1614 + }, + "value": "86,97", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2003, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2147, + "y1": 1570, + "x2": 2253, + "y2": 1614 + }, + "value": "95,67", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1743, + "x2": 853, + "y2": 1872 + }, + "value": "Durango Lill Little Kid Saddle Western Casual Western Tan Boys - Size 2 M", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1739, + "x2": 1095, + "y2": 1791 + }, + "value": "1,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1743, + "x2": 1525, + "y2": 1783 + }, + "value": "68,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1743, + "x2": 1783, + "y2": 1783 + }, + "value": "68,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1743, + "x2": 2003, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2147, + "y1": 1743, + "x2": 2253, + "y2": 1783 + }, + "value": "74,80", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1916, + "x2": 864, + "y2": 2041 + }, + "value": "Lotto Youth Boys Fuerzapura L500 Jr Soccer Cleats Size 2.5 White Blue M6147 2.5Y", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 1912, + "x2": 1095, + "y2": 1964 + }, + "value": "3,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1916, + "x2": 1242, + "y2": 1960 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1919, + "x2": 1525, + "y2": 1960 + }, + "value": "19,99", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1919, + "x2": 1779, + "y2": 1960 + }, + "value": "59,97", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1916, + "x2": 2003, + "y2": 1960 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2147, + "y1": 1916, + "x2": 2253, + "y2": 1960 + }, + "value": "65,97", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 2078, + "x2": 790, + "y2": 2136 + }, + "value": "Kids Jordan 7 Retro Sz 2y", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 2078, + "x2": 1095, + "y2": 2136 + }, + "value": "1,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2089, + "x2": 1242, + "y2": 2125 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 2089, + "x2": 1525, + "y2": 2129 + }, + "value": "72,00", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 2089, + "x2": 1779, + "y2": 2129 + }, + "value": "72,00", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1922, + "y1": 2089, + "x2": 2003, + "y2": 2125 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2147, + "y1": 2089, + "x2": 2253, + "y2": 2129 + }, + "value": "79,20", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2173, + "x2": 897, + "y2": 2302 + }, + "value": "Saucony Boys' Ride ISO Sneaker, White/Blue/Vizi Red, 7 M US Little Kid", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 2170, + "x2": 1095, + "y2": 2225 + }, + "value": "5,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2177, + "x2": 1242, + "y2": 2221 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 2177, + "x2": 1525, + "y2": 2221 + }, + "value": "27,99", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1658, + "y1": 2177, + "x2": 1779, + "y2": 2221 + }, + "value": "139,95", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2173, + "x2": 2003, + "y2": 2214 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 2177, + "x2": 2253, + "y2": 2214 + }, + "value": "153,94", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 2346, + "x2": 798, + "y2": 2511 + }, + "value": "Native Charley White Sandals-Size Infant/Child 6-Boys/Girls-Very Good Condition", + "label": "items_row7:item_desc" + }, + { + "rect": { + "x1": 1003, + "y1": 2350, + "x2": 1092, + "y2": 2390 + }, + "value": "2,00", + "label": "items_row7:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2342, + "x2": 1246, + "y2": 2394 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1426, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1269, + "x2": 1525, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1584, + "y1": 1265, + "x2": 1665, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1269, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1265, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1265, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1265, + "x2": 2253, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1309, + "x2": 2253, + "y2": 1353 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 2350, + "x2": 1525, + "y2": 2390 + }, + "value": "13,00", + "label": "items_row7:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 2350, + "x2": 1779, + "y2": 2390 + }, + "value": "26,00", + "label": "items_row7:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 2342, + "x2": 2003, + "y2": 2394 + }, + "value": "10%", + "label": "items_row7:item_vat" + }, + { + "rect": { + "x1": 2147, + "y1": 2350, + "x2": 2253, + "y2": 2390 + }, + "value": "28,60", + "label": "items_row7:item_gross_worth" + }, + { + "rect": { + "x1": 246, + "y1": 1401, + "x2": 290, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1566, + "x2": 298, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1739, + "x2": 290, + "y2": 1787 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 1912, + "x2": 290, + "y2": 1964 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 2078, + "x2": 290, + "y2": 2129 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 2170, + "x2": 290, + "y2": 2221 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 246, + "y1": 2346, + "x2": 290, + "y2": 2390 + }, + "value": "7.", + "label": "" + }, + { + "rect": { + "x1": 202, + "y1": 2614, + "x2": 496, + "y2": 2659 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 956, + "y1": 2739, + "x2": 1048, + "y2": 2780 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2732, + "x2": 1121, + "y2": 2791 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 2820, + "x2": 1084, + "y2": 2876 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2732, + "x2": 1478, + "y2": 2787 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2739, + "x2": 1584, + "y2": 2776 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1463, + "y1": 2828, + "x2": 1584, + "y2": 2872 + }, + "value": "603,65", + "label": "" + }, + { + "rect": { + "x1": 1415, + "y1": 2916, + "x2": 1584, + "y2": 2964 + }, + "value": "$ 603,65", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2739, + "x2": 1867, + "y2": 2780 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2828, + "x2": 1864, + "y2": 2872 + }, + "value": "60,37", + "label": "" + }, + { + "rect": { + "x1": 1709, + "y1": 2909, + "x2": 1867, + "y2": 2971 + }, + "value": "$60,37", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2739, + "x2": 2139, + "y2": 2780 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2739, + "x2": 2260, + "y2": 2780 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 2828, + "x2": 2257, + "y2": 2872 + }, + "value": "664,02", + "label": "" + }, + { + "rect": { + "x1": 2088, + "y1": 2916, + "x2": 2257, + "y2": 2960 + }, + "value": "$ 664,02", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2920, + "x2": 856, + "y2": 2956 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_184.json b/docs/json/invoice_184.json new file mode 100644 index 0000000000000000000000000000000000000000..0c0fa82a23ea41d8d0a39ecee355344f70178200 --- /dev/null +++ b/docs/json/invoice_184.json @@ -0,0 +1,893 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 95, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 198, + "y1": 107, + "x2": 408, + "y2": 162 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 415, + "y1": 118, + "x2": 515, + "y2": 165 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 529, + "y1": 114, + "x2": 805, + "y2": 162 + }, + "value": "79128264", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 195, + "y1": 210, + "x2": 316, + "y2": 265 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 316, + "y1": 210, + "x2": 382, + "y2": 268 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 382, + "y1": 210, + "x2": 518, + "y2": 265 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 213, + "x2": 1470, + "y2": 265 + }, + "value": "12/31/2014", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 202, + "y1": 669, + "x2": 382, + "y2": 713 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 210, + "y1": 761, + "x2": 643, + "y2": 923 + }, + "value": "Rivera-Thompson 0115 Brown Drives Ryanside, NM 95662", + "label": "header:seller" + }, + { + "rect": { + "x1": 206, + "y1": 974, + "x2": 298, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 298, + "y1": 971, + "x2": 357, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 757, + "x2": 1871, + "y2": 919 + }, + "value": "Pearson, Gibbs and Ayala 795 Brittany Points Suite 504 Riceland, AZ 55140", + "label": "header:client" + }, + { + "rect": { + "x1": 364, + "y1": 974, + "x2": 640, + "y2": 1019 + }, + "value": "926-97-6956", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 210, + "y1": 1033, + "x2": 331, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1404, + "y1": 974, + "x2": 1680, + "y2": 1019 + }, + "value": "991-70-8455", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 342, + "y1": 1026, + "x2": 945, + "y2": 1077 + }, + "value": "GB27DVYV74575286475604", + "label": "header:iban" + }, + { + "rect": { + "x1": 198, + "y1": 1140, + "x2": 375, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 232, + "y1": 1261, + "x2": 312, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 357, + "y1": 1265, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 666, + "x2": 1426, + "y2": 713 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 974, + "x2": 1334, + "y2": 1026 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 971, + "x2": 1400, + "y2": 1026 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1014, + "y1": 1261, + "x2": 1095, + "y2": 1320 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1165, + "y1": 1265, + "x2": 1235, + "y2": 1309 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 353, + "y1": 1397, + "x2": 908, + "y2": 1522 + }, + "value": "Ol Red Wine Glasses Ball Mason Jar Fancy Rednecks Set of 2 New in Box", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1394, + "x2": 1095, + "y2": 1445 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1397, + "x2": 1242, + "y2": 1438 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1401, + "x2": 1529, + "y2": 1438 + }, + "value": "35,00", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1661, + "y1": 1401, + "x2": 1779, + "y2": 1438 + }, + "value": "175,00", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1397, + "x2": 2003, + "y2": 1438 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2132, + "y1": 1401, + "x2": 2257, + "y2": 1438 + }, + "value": "192,50", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 353, + "y1": 1566, + "x2": 875, + "y2": 1699 + }, + "value": "Single Bottle Wine Holder Mini Bar Painted & Signed by Artist Alejandro Lopez", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1566, + "x2": 1095, + "y2": 1618 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1566, + "x2": 1246, + "y2": 1618 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1570, + "x2": 1529, + "y2": 1614 + }, + "value": "39,99", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1570, + "x2": 1779, + "y2": 1614 + }, + "value": "39,99", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1566, + "x2": 2003, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1570, + "x2": 2257, + "y2": 1614 + }, + "value": "43,99", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1739, + "x2": 889, + "y2": 1828 + }, + "value": "a pair of wine glasses drawer 1 e", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 1739, + "x2": 1095, + "y2": 1791 + }, + "value": "4,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1444, + "y1": 1739, + "x2": 1533, + "y2": 1791 + }, + "value": "7,30", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1743, + "x2": 1783, + "y2": 1783 + }, + "value": "29,20", + "label": "items_row3:total_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1743, + "x2": 2003, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1743, + "x2": 2257, + "y2": 1783 + }, + "value": "32,12", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 1872, + "x2": 845, + "y2": 2000 + }, + "value": "Lolita \"Wine Bouquet\" Hand Painted and Decorated Wine Glass NIB", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1011, + "y1": 1872, + "x2": 1092, + "y2": 1916 + }, + "value": "1,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 1872, + "x2": 1242, + "y2": 1916 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 1872, + "x2": 1529, + "y2": 1916 + }, + "value": "20,00", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 1872, + "x2": 1779, + "y2": 1916 + }, + "value": "20,00", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 1872, + "x2": 2003, + "y2": 1916 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 1872, + "x2": 2257, + "y2": 1916 + }, + "value": "22,00", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 357, + "y1": 2041, + "x2": 875, + "y2": 2173 + }, + "value": "Lifefactory 17 OZ Wine Glass 4 Pack with Silicone Sleeves, Grass Green", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1007, + "y1": 2041, + "x2": 1095, + "y2": 2096 + }, + "value": "3,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1154, + "y1": 2044, + "x2": 1246, + "y2": 2089 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1265, + "x2": 1426, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1430, + "y1": 1269, + "x2": 1529, + "y2": 1313 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1588, + "y1": 1265, + "x2": 1665, + "y2": 1309 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1661, + "y1": 1269, + "x2": 1779, + "y2": 1309 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1841, + "y1": 1265, + "x2": 1930, + "y2": 1309 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1261, + "x2": 2003, + "y2": 1320 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 1265, + "x2": 2257, + "y2": 1309 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 1305, + "x2": 2257, + "y2": 1350 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1426, + "y1": 2044, + "x2": 1529, + "y2": 2089 + }, + "value": "27,99", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1680, + "y1": 2044, + "x2": 1779, + "y2": 2089 + }, + "value": "83,97", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1919, + "y1": 2044, + "x2": 2003, + "y2": 2089 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2150, + "y1": 2044, + "x2": 2257, + "y2": 2089 + }, + "value": "92,37", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 250, + "y1": 1397, + "x2": 294, + "y2": 1441 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1566, + "x2": 298, + "y2": 1614 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1739, + "x2": 294, + "y2": 1787 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 1872, + "x2": 294, + "y2": 1919 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 250, + "y1": 2041, + "x2": 294, + "y2": 2089 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 198, + "y1": 2269, + "x2": 496, + "y2": 2317 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 959, + "y1": 2394, + "x2": 1048, + "y2": 2434 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1044, + "y1": 2390, + "x2": 1125, + "y2": 2445 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1000, + "y1": 2482, + "x2": 1081, + "y2": 2526 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1389, + "y1": 2394, + "x2": 1470, + "y2": 2434 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1470, + "y1": 2398, + "x2": 1588, + "y2": 2434 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1463, + "y1": 2489, + "x2": 1588, + "y2": 2530 + }, + "value": "348,16", + "label": "" + }, + { + "rect": { + "x1": 1411, + "y1": 2574, + "x2": 1584, + "y2": 2622 + }, + "value": "$ 348,16", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2394, + "x2": 1867, + "y2": 2434 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2482, + "x2": 1864, + "y2": 2526 + }, + "value": "34,82", + "label": "" + }, + { + "rect": { + "x1": 1716, + "y1": 2574, + "x2": 1864, + "y2": 2622 + }, + "value": "$ 34,82", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2025, + "y1": 2394, + "x2": 2139, + "y2": 2434 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2139, + "y1": 2394, + "x2": 2260, + "y2": 2434 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2135, + "y1": 2489, + "x2": 2260, + "y2": 2530 + }, + "value": "382,98", + "label": "" + }, + { + "rect": { + "x1": 2084, + "y1": 2570, + "x2": 2257, + "y2": 2622 + }, + "value": "$ 382,98", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 750, + "y1": 2574, + "x2": 856, + "y2": 2614 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_185.json b/docs/json/invoice_185.json new file mode 100644 index 0000000000000000000000000000000000000000..a1804a91fee5d75d3e702a929f722b880ef3fa19 --- /dev/null +++ b/docs/json/invoice_185.json @@ -0,0 +1,1053 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 96, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 106, + "x2": 406, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 121, + "x2": 515, + "y2": 164 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 804, + "y2": 161 + }, + "value": "67583819", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 208, + "x2": 314, + "y2": 267 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 314, + "y1": 208, + "x2": 384, + "y2": 270 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 384, + "y1": 208, + "x2": 519, + "y2": 267 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 216, + "x2": 1469, + "y2": 267 + }, + "value": "06/01/2012", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 756, + "x2": 804, + "y2": 917 + }, + "value": "Gibson Ltd 92975 Scott Mount Lake Laurentown, ND 29361", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 972, + "x2": 296, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 296, + "y1": 972, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1714, + "y2": 917 + }, + "value": "Gomez-Martinez 225 King Roads West Scott, NV 81463", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 972, + "x2": 639, + "y2": 1020 + }, + "value": "911-94-3128", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1034, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 972, + "x2": 1681, + "y2": 1020 + }, + "value": "911-97-3515", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 343, + "y1": 1034, + "x2": 946, + "y2": 1071 + }, + "value": "GB44NGGP09758261462915", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1261, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1264, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 713 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 972, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 972, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1012, + "y1": 1261, + "x2": 1096, + "y2": 1323 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1264, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1400, + "x2": 892, + "y2": 1495 + }, + "value": "Escada Long Black Dress SZ 40 100% Silk Lining", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1096, + "y2": 1443 + }, + "value": "3,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1400, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1400, + "x2": 1527, + "y2": 1440 + }, + "value": "74,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1659, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "224,97", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1400, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1400, + "x2": 2258, + "y2": 1440 + }, + "value": "247,47", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 351, + "y1": 1524, + "x2": 903, + "y2": 1615 + }, + "value": "Lilly Pulitzer Lillywood California 8 Shift Dress", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1012, + "y1": 1527, + "x2": 1093, + "y2": 1575 + }, + "value": "1,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1524, + "x2": 1246, + "y2": 1575 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1432, + "y1": 1527, + "x2": 1527, + "y2": 1575 + }, + "value": "76,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1527, + "x2": 1783, + "y2": 1575 + }, + "value": "76,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1524, + "x2": 2002, + "y2": 1575 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1527, + "x2": 2258, + "y2": 1575 + }, + "value": "83,60", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1655, + "x2": 873, + "y2": 1743 + }, + "value": "Guess White Halter Dress Size 10", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1655, + "x2": 1096, + "y2": 1706 + }, + "value": "5,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1655, + "x2": 1246, + "y2": 1706 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1432, + "y1": 1663, + "x2": 1527, + "y2": 1703 + }, + "value": "13,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1663, + "x2": 1779, + "y2": 1703 + }, + "value": "65,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1655, + "x2": 2002, + "y2": 1706 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1655, + "x2": 2258, + "y2": 1706 + }, + "value": "71,50", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1791, + "x2": 903, + "y2": 1918 + }, + "value": "Women Elegant Fashion O-Neck Knee Length Short Sleeve Retro Floral Print Dress", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1012, + "y1": 1791, + "x2": 1093, + "y2": 1831 + }, + "value": "1,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1791, + "x2": 1242, + "y2": 1831 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1432, + "y1": 1791, + "x2": 1527, + "y2": 1831 + }, + "value": "12,00", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1791, + "x2": 1779, + "y2": 1831 + }, + "value": "12,00", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1915, + "y1": 1783, + "x2": 2002, + "y2": 1838 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2156, + "y1": 1791, + "x2": 2258, + "y2": 1831 + }, + "value": "13,20", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1959, + "x2": 581, + "y2": 2002 + }, + "value": "sandro dress", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1955, + "x2": 1096, + "y2": 2010 + }, + "value": "5,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1959, + "x2": 1246, + "y2": 2002 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1959, + "x2": 1527, + "y2": 2002 + }, + "value": "80,00", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1663, + "y1": 1959, + "x2": 1779, + "y2": 2002 + }, + "value": "400,00", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1959, + "x2": 2002, + "y2": 2002 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 1959, + "x2": 2258, + "y2": 2002 + }, + "value": "440,00", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 2050, + "x2": 851, + "y2": 2182 + }, + "value": "Women Sexy Lingerie Lace Dress Underwear Babydoll Sleepwear G-string Bikini Lot", + "label": "items_row6:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 2054, + "x2": 1093, + "y2": 2094 + }, + "value": "2,00", + "label": "items_row6:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2054, + "x2": 1242, + "y2": 2094 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 2050, + "x2": 1535, + "y2": 2101 + }, + "value": "0,99", + "label": "items_row6:item_net_price" + }, + { + "rect": { + "x1": 1703, + "y1": 2054, + "x2": 1779, + "y2": 2094 + }, + "value": "1,98", + "label": "items_row6:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2054, + "x2": 2002, + "y2": 2094 + }, + "value": "10%", + "label": "items_row6:item_vat" + }, + { + "rect": { + "x1": 2170, + "y1": 2054, + "x2": 2258, + "y2": 2094 + }, + "value": "2,18", + "label": "items_row6:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 2225, + "x2": 822, + "y2": 2353 + }, + "value": "Women's Almatrichi Madrid Dress Chevron Boho Ethnic Exotic Tribal Size 42 L", + "label": "items_row7:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 2218, + "x2": 1096, + "y2": 2273 + }, + "value": "2,00", + "label": "items_row7:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2225, + "x2": 1246, + "y2": 2266 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1425, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1432, + "y1": 1268, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1589, + "y1": 1264, + "x2": 1666, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1268, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1264, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1261, + "x2": 2002, + "y2": 1323 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1264, + "x2": 2258, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1305, + "x2": 2258, + "y2": 1352 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1432, + "y1": 2225, + "x2": 1527, + "y2": 2266 + }, + "value": "54,86", + "label": "items_row7:item_net_price" + }, + { + "rect": { + "x1": 1663, + "y1": 2225, + "x2": 1779, + "y2": 2266 + }, + "value": "109,72", + "label": "items_row7:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2225, + "x2": 2002, + "y2": 2266 + }, + "value": "10%", + "label": "items_row7:item_vat" + }, + { + "rect": { + "x1": 2130, + "y1": 2225, + "x2": 2258, + "y2": 2266 + }, + "value": "120,69", + "label": "items_row7:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1400, + "x2": 292, + "y2": 1440 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1524, + "x2": 292, + "y2": 1575 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1659, + "x2": 292, + "y2": 1703 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1787, + "x2": 292, + "y2": 1838 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1955, + "x2": 292, + "y2": 2010 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2050, + "x2": 292, + "y2": 2101 + }, + "value": "6.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2218, + "x2": 292, + "y2": 2269 + }, + "value": "7.", + "label": "" + }, + { + "rect": { + "x1": 201, + "y1": 2452, + "x2": 493, + "y2": 2488 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2576, + "x2": 1049, + "y2": 2616 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1041, + "y1": 2569, + "x2": 1125, + "y2": 2620 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 2660, + "x2": 1085, + "y2": 2704 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2576, + "x2": 1469, + "y2": 2616 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2576, + "x2": 1589, + "y2": 2616 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1462, + "y1": 2660, + "x2": 1589, + "y2": 2704 + }, + "value": "889,67", + "label": "" + }, + { + "rect": { + "x1": 1418, + "y1": 2752, + "x2": 1586, + "y2": 2799 + }, + "value": "$ 889,67", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2576, + "x2": 1867, + "y2": 2616 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2660, + "x2": 1863, + "y2": 2704 + }, + "value": "88,97", + "label": "" + }, + { + "rect": { + "x1": 1710, + "y1": 2744, + "x2": 1867, + "y2": 2806 + }, + "value": "$88,97", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2576, + "x2": 2138, + "y2": 2616 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 2576, + "x2": 2262, + "y2": 2616 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 2660, + "x2": 2258, + "y2": 2704 + }, + "value": "978,64", + "label": "" + }, + { + "rect": { + "x1": 2116, + "y1": 2752, + "x2": 2258, + "y2": 2795 + }, + "value": "978,64", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2752, + "x2": 855, + "y2": 2795 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_186.json b/docs/json/invoice_186.json new file mode 100644 index 0000000000000000000000000000000000000000..c4f8e55b8b85be250e26e24aca357c3778c0c9b7 --- /dev/null +++ b/docs/json/invoice_186.json @@ -0,0 +1,573 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 97, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 110, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 164 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 804, + "y2": 161 + }, + "value": "77256632", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 208, + "x2": 314, + "y2": 267 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 314, + "y1": 208, + "x2": 384, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 384, + "y1": 208, + "x2": 519, + "y2": 267 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 212, + "x2": 1473, + "y2": 267 + }, + "value": "05/05/2013", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 713 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 760, + "x2": 862, + "y2": 917 + }, + "value": "Cox-Ortega 52235 Rivera Ridges Suite 139 Port Alexanderstad, NH 49836", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 976, + "x2": 300, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 300, + "y1": 972, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1863, + "y2": 917 + }, + "value": "Giles Inc 7847 Rosales Lakes Apt. 767 West Loristad, WY 38537", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 976, + "x2": 639, + "y2": 1020 + }, + "value": "922-92-9761", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1034, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1407, + "y1": 976, + "x2": 1681, + "y2": 1020 + }, + "value": "921-82-4335", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 343, + "y1": 1027, + "x2": 943, + "y2": 1074 + }, + "value": "GB87GPEX70633167293017", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1195 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1261, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1264, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 976, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 972, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1261, + "x2": 1096, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1264, + "x2": 1235, + "y2": 1312 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1396, + "x2": 833, + "y2": 1484 + }, + "value": "Die with Zero by Bill Perkins (P'.D,'F, 2020)", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1096, + "y2": 1443 + }, + "value": "4,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1341, + "y1": 1261, + "x2": 1425, + "y2": 1316 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1268, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1589, + "y1": 1264, + "x2": 1666, + "y2": 1312 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1268, + "x2": 1779, + "y2": 1312 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1264, + "x2": 1929, + "y2": 1312 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1261, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1264, + "x2": 2258, + "y2": 1312 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1305, + "x2": 2258, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1392, + "x2": 1535, + "y2": 1443 + }, + "value": "3,49", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1400, + "x2": 1783, + "y2": 1440 + }, + "value": "13,96", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1396, + "x2": 2258, + "y2": 1440 + }, + "value": "15,36", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 289, + "y2": 1440 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 1582, + "x2": 497, + "y2": 1630 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 1706, + "x2": 1049, + "y2": 1747 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1049, + "y1": 1703, + "x2": 1125, + "y2": 1754 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 1794, + "x2": 1082, + "y2": 1838 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 1706, + "x2": 1469, + "y2": 1747 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 1706, + "x2": 1589, + "y2": 1747 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1483, + "y1": 1798, + "x2": 1589, + "y2": 1838 + }, + "value": "13,96", + "label": "" + }, + { + "rect": { + "x1": 1436, + "y1": 1878, + "x2": 1589, + "y2": 1933 + }, + "value": "$ 13,96", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 1706, + "x2": 1867, + "y2": 1747 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1779, + "y1": 1791, + "x2": 1867, + "y2": 1842 + }, + "value": "1,40", + "label": "" + }, + { + "rect": { + "x1": 1743, + "y1": 1886, + "x2": 1863, + "y2": 1926 + }, + "value": "$ 1,40", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 1706, + "x2": 2138, + "y2": 1747 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1706, + "x2": 2262, + "y2": 1747 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2159, + "y1": 1794, + "x2": 2262, + "y2": 1838 + }, + "value": "15,36", + "label": "" + }, + { + "rect": { + "x1": 2105, + "y1": 1878, + "x2": 2265, + "y2": 1933 + }, + "value": "$15,36", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 1882, + "x2": 855, + "y2": 1926 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_187.json b/docs/json/invoice_187.json new file mode 100644 index 0000000000000000000000000000000000000000..5dd3dea8417599588510f0a40e5a77476d1fbea8 --- /dev/null +++ b/docs/json/invoice_187.json @@ -0,0 +1,893 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 98, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 106, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 164 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 526, + "y1": 113, + "x2": 804, + "y2": 161 + }, + "value": "95635623", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 208, + "x2": 314, + "y2": 267 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 314, + "y1": 208, + "x2": 384, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 384, + "y1": 208, + "x2": 519, + "y2": 267 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 212, + "x2": 1469, + "y2": 267 + }, + "value": "08/11/2019", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 713 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 205, + "y1": 756, + "x2": 818, + "y2": 925 + }, + "value": "Jones, English and Perry 74041 Brian Camp Suite 502 East James, SC 21896", + "label": "header:seller" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1794, + "y2": 917 + }, + "value": "Diaz Ltd 166 David Mission Lake Seanview, NY 94455", + "label": "header:client" + }, + { + "rect": { + "x1": 1246, + "y1": 976, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 972, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 365, + "y1": 976, + "x2": 639, + "y2": 1020 + }, + "value": "916-83-7988", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 1403, + "y1": 976, + "x2": 1681, + "y2": 1020 + }, + "value": "949-70-9351", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 205, + "y1": 976, + "x2": 300, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 300, + "y1": 972, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 1034, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 343, + "y1": 1034, + "x2": 946, + "y2": 1071 + }, + "value": "GB76V5KM38236855870683", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1261, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1264, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1261, + "x2": 1096, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1264, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1396, + "x2": 903, + "y2": 1524 + }, + "value": "Sperry Top-Sider Boys Toddlers Lace Tie Boat Shoes Brown 13M New", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1096, + "y2": 1443 + }, + "value": "5,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 1396, + "x2": 1527, + "y2": 1440 + }, + "value": "37,69", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1663, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "188,45", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2127, + "y1": 1400, + "x2": 2258, + "y2": 1440 + }, + "value": "207,29", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1568, + "x2": 797, + "y2": 1736 + }, + "value": "Native Charley White Sandals-Size Infant/Child 6-Boys/Girls-Very Good Condition", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 1012, + "y1": 1571, + "x2": 1093, + "y2": 1615 + }, + "value": "3,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1568, + "x2": 1246, + "y2": 1619 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1571, + "x2": 1527, + "y2": 1615 + }, + "value": "13,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1571, + "x2": 1779, + "y2": 1615 + }, + "value": "39,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 2002, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1571, + "x2": 2258, + "y2": 1615 + }, + "value": "42,90", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1783, + "x2": 884, + "y2": 1867 + }, + "value": "Jordan Sneakers Size 3.5 Youth Red And Blue", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1783, + "x2": 1096, + "y2": 1831 + }, + "value": "3,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1783, + "x2": 1246, + "y2": 1827 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1443, + "y1": 1783, + "x2": 1535, + "y2": 1831 + }, + "value": "9,99", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1783, + "x2": 1779, + "y2": 1827 + }, + "value": "29,97", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1783, + "x2": 2002, + "y2": 1827 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1783, + "x2": 2258, + "y2": 1827 + }, + "value": "32,97", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 1915, + "x2": 884, + "y2": 2043 + }, + "value": "PUMA Boys Youth Universal FG Jr Soccer Cleats 2.5 White High Red NEW Futbol", + "label": "items_row4:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 1911, + "x2": 1096, + "y2": 1962 + }, + "value": "1,00", + "label": "items_row4:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1915, + "x2": 1242, + "y2": 1955 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1915, + "x2": 1527, + "y2": 1955 + }, + "value": "19,99", + "label": "items_row4:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1915, + "x2": 1779, + "y2": 1955 + }, + "value": "19,99", + "label": "items_row4:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1915, + "x2": 2002, + "y2": 1955 + }, + "value": "10%", + "label": "items_row4:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1915, + "x2": 2258, + "y2": 1955 + }, + "value": "21,99", + "label": "items_row4:item_gross_worth" + }, + { + "rect": { + "x1": 354, + "y1": 2090, + "x2": 873, + "y2": 2182 + }, + "value": "NWT The Childrens Place Boys Tan Lace Up Boots 4", + "label": "items_row5:item_desc" + }, + { + "rect": { + "x1": 1008, + "y1": 2079, + "x2": 1096, + "y2": 2138 + }, + "value": "4,00", + "label": "items_row5:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 2090, + "x2": 1242, + "y2": 2130 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1425, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1268, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1589, + "y1": 1264, + "x2": 1666, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1268, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1264, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1261, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1264, + "x2": 2258, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1305, + "x2": 2258, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1425, + "y1": 2090, + "x2": 1527, + "y2": 2134 + }, + "value": "20,99", + "label": "items_row5:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 2090, + "x2": 1783, + "y2": 2134 + }, + "value": "83,96", + "label": "items_row5:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 2090, + "x2": 2002, + "y2": 2130 + }, + "value": "10%", + "label": "items_row5:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 2090, + "x2": 2258, + "y2": 2134 + }, + "value": "92,36", + "label": "items_row5:item_gross_worth" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 292, + "y2": 1440 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 300, + "y2": 1615 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1783, + "x2": 292, + "y2": 1827 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1911, + "x2": 292, + "y2": 1959 + }, + "value": "4.", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 2079, + "x2": 292, + "y2": 2134 + }, + "value": "5.", + "label": "" + }, + { + "rect": { + "x1": 197, + "y1": 2269, + "x2": 497, + "y2": 2317 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 957, + "y1": 2393, + "x2": 1049, + "y2": 2434 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2390, + "x2": 1125, + "y2": 2445 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 1001, + "y1": 2481, + "x2": 1082, + "y2": 2525 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1388, + "y1": 2393, + "x2": 1469, + "y2": 2434 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2397, + "x2": 1589, + "y2": 2434 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1462, + "y1": 2488, + "x2": 1589, + "y2": 2525 + }, + "value": "361,37", + "label": "" + }, + { + "rect": { + "x1": 1410, + "y1": 2573, + "x2": 1586, + "y2": 2624 + }, + "value": "$ 361,37", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1779, + "y1": 2393, + "x2": 1867, + "y2": 2434 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1761, + "y1": 2488, + "x2": 1863, + "y2": 2529 + }, + "value": "36,14", + "label": "" + }, + { + "rect": { + "x1": 1717, + "y1": 2573, + "x2": 1863, + "y2": 2624 + }, + "value": "$ 36,14", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2393, + "x2": 2138, + "y2": 2434 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 2393, + "x2": 2262, + "y2": 2434 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 2488, + "x2": 2262, + "y2": 2525 + }, + "value": "397,51", + "label": "" + }, + { + "rect": { + "x1": 2083, + "y1": 2573, + "x2": 2258, + "y2": 2624 + }, + "value": "$ 397,51", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2573, + "x2": 855, + "y2": 2613 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/json/invoice_188.json b/docs/json/invoice_188.json new file mode 100644 index 0000000000000000000000000000000000000000..7a003ca4880997e6c10ceebf63aaca0693a7d57a --- /dev/null +++ b/docs/json/invoice_188.json @@ -0,0 +1,733 @@ +{ + "meta": { + "version": "v1.0", + "split": "-", + "image_id": 99, + "image_size": { + "width": 2481, + "height": 3508 + } + }, + "words": [ + { + "rect": { + "x1": 197, + "y1": 106, + "x2": 409, + "y2": 161 + }, + "value": "Invoice", + "label": "" + }, + { + "rect": { + "x1": 417, + "y1": 117, + "x2": 515, + "y2": 164 + }, + "value": "no:", + "label": "" + }, + { + "rect": { + "x1": 530, + "y1": 113, + "x2": 804, + "y2": 161 + }, + "value": "18001573", + "label": "header:invoice_no" + }, + { + "rect": { + "x1": 194, + "y1": 208, + "x2": 314, + "y2": 267 + }, + "value": "Date", + "label": "" + }, + { + "rect": { + "x1": 314, + "y1": 208, + "x2": 384, + "y2": 267 + }, + "value": "of", + "label": "" + }, + { + "rect": { + "x1": 384, + "y1": 208, + "x2": 519, + "y2": 267 + }, + "value": "issue:", + "label": "" + }, + { + "rect": { + "x1": 1206, + "y1": 212, + "x2": 1469, + "y2": 267 + }, + "value": "12/30/2012", + "label": "header:invoice_date" + }, + { + "rect": { + "x1": 197, + "y1": 669, + "x2": 384, + "y2": 720 + }, + "value": "Seller:", + "label": "" + }, + { + "rect": { + "x1": 208, + "y1": 760, + "x2": 705, + "y2": 917 + }, + "value": "Mcgrath-Ruiz 96052 Arnold Mountain East Sara, SD 80652", + "label": "header:seller" + }, + { + "rect": { + "x1": 205, + "y1": 976, + "x2": 300, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 300, + "y1": 972, + "x2": 358, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 756, + "x2": 1969, + "y2": 928 + }, + "value": "Chavez, Burke and Jones 469 Mcdonald Mountains Apt. 860 Lake Jason, MI 93514", + "label": "header:client" + }, + { + "rect": { + "x1": 365, + "y1": 976, + "x2": 639, + "y2": 1020 + }, + "value": "911-76-9645", + "label": "header:seller_tax_id" + }, + { + "rect": { + "x1": 208, + "y1": 1034, + "x2": 333, + "y2": 1074 + }, + "value": "IBAN:", + "label": "" + }, + { + "rect": { + "x1": 1403, + "y1": 976, + "x2": 1681, + "y2": 1020 + }, + "value": "976-73-2435", + "label": "header:client_tax_id" + }, + { + "rect": { + "x1": 343, + "y1": 1027, + "x2": 946, + "y2": 1078 + }, + "value": "GB37ARTN37168057473190", + "label": "header:iban" + }, + { + "rect": { + "x1": 197, + "y1": 1140, + "x2": 376, + "y2": 1191 + }, + "value": "ITEMS", + "label": "" + }, + { + "rect": { + "x1": 230, + "y1": 1261, + "x2": 311, + "y2": 1316 + }, + "value": "No.", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1264, + "x2": 581, + "y2": 1316 + }, + "value": "Description", + "label": "" + }, + { + "rect": { + "x1": 248, + "y1": 1396, + "x2": 292, + "y2": 1440 + }, + "value": "1.", + "label": "" + }, + { + "rect": { + "x1": 358, + "y1": 1396, + "x2": 840, + "y2": 1524 + }, + "value": "mDesign Metal Wine Rack Storage Organizer, 6 Bottles Chrome", + "label": "items_row1:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1568, + "x2": 300, + "y2": 1615 + }, + "value": "2.", + "label": "" + }, + { + "rect": { + "x1": 1008, + "y1": 1392, + "x2": 1096, + "y2": 1443 + }, + "value": "3,00", + "label": "items_row1:item_qty" + }, + { + "rect": { + "x1": 1425, + "y1": 1400, + "x2": 1527, + "y2": 1440 + }, + "value": "22,99", + "label": "items_row1:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1400, + "x2": 1779, + "y2": 1440 + }, + "value": "68,97", + "label": "items_row1:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1396, + "x2": 2002, + "y2": 1440 + }, + "value": "10%", + "label": "items_row1:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1396, + "x2": 2258, + "y2": 1440 + }, + "value": "75,87", + "label": "items_row1:item_gross_worth" + }, + { + "rect": { + "x1": 358, + "y1": 1568, + "x2": 840, + "y2": 1699 + }, + "value": "New Never Used CROFTON CHEFS COLLECTION WINE COOLING STICK IN PACKAGE", + "label": "items_row2:item_desc" + }, + { + "rect": { + "x1": 248, + "y1": 1739, + "x2": 292, + "y2": 1787 + }, + "value": "3.", + "label": "" + }, + { + "rect": { + "x1": 1008, + "y1": 1571, + "x2": 1093, + "y2": 1615 + }, + "value": "4,00", + "label": "items_row2:item_qty" + }, + { + "rect": { + "x1": 1443, + "y1": 1571, + "x2": 1527, + "y2": 1615 + }, + "value": "3,00", + "label": "items_row2:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1571, + "x2": 1783, + "y2": 1615 + }, + "value": "12,00", + "label": "items_row2:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1568, + "x2": 2002, + "y2": 1611 + }, + "value": "10%", + "label": "items_row2:item_vat" + }, + { + "rect": { + "x1": 2156, + "y1": 1571, + "x2": 2258, + "y2": 1615 + }, + "value": "13,20", + "label": "items_row2:item_gross_worth" + }, + { + "rect": { + "x1": 362, + "y1": 1743, + "x2": 731, + "y2": 1787 + }, + "value": "Refinery Wine Opener", + "label": "items_row3:item_desc" + }, + { + "rect": { + "x1": 197, + "y1": 1882, + "x2": 497, + "y2": 1933 + }, + "value": "SUMMARY", + "label": "" + }, + { + "rect": { + "x1": 1239, + "y1": 665, + "x2": 1425, + "y2": 713 + }, + "value": "Client:", + "label": "" + }, + { + "rect": { + "x1": 1246, + "y1": 972, + "x2": 1334, + "y2": 1027 + }, + "value": "Tax", + "label": "" + }, + { + "rect": { + "x1": 1334, + "y1": 972, + "x2": 1399, + "y2": 1027 + }, + "value": "Id:", + "label": "" + }, + { + "rect": { + "x1": 1016, + "y1": 1261, + "x2": 1096, + "y2": 1319 + }, + "value": "Qty", + "label": "" + }, + { + "rect": { + "x1": 1166, + "y1": 1264, + "x2": 1235, + "y2": 1308 + }, + "value": "UM", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1396, + "x2": 1242, + "y2": 1440 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1155, + "y1": 1568, + "x2": 1246, + "y2": 1619 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1008, + "y1": 1739, + "x2": 1096, + "y2": 1791 + }, + "value": "2,00", + "label": "items_row3:item_qty" + }, + { + "rect": { + "x1": 1155, + "y1": 1743, + "x2": 1246, + "y2": 1783 + }, + "value": "each", + "label": "" + }, + { + "rect": { + "x1": 1345, + "y1": 1264, + "x2": 1425, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1268, + "x2": 1527, + "y2": 1312 + }, + "value": "price", + "label": "" + }, + { + "rect": { + "x1": 1589, + "y1": 1264, + "x2": 1666, + "y2": 1308 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1663, + "y1": 1268, + "x2": 1779, + "y2": 1308 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1842, + "y1": 1264, + "x2": 1929, + "y2": 1308 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1926, + "y1": 1261, + "x2": 2002, + "y2": 1319 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 1264, + "x2": 2258, + "y2": 1308 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 1305, + "x2": 2258, + "y2": 1348 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1429, + "y1": 1743, + "x2": 1527, + "y2": 1783 + }, + "value": "10,00", + "label": "items_row3:item_net_price" + }, + { + "rect": { + "x1": 1681, + "y1": 1743, + "x2": 1783, + "y2": 1783 + }, + "value": "20,00", + "label": "items_row3:item_net_worth" + }, + { + "rect": { + "x1": 1918, + "y1": 1743, + "x2": 2002, + "y2": 1783 + }, + "value": "10%", + "label": "items_row3:item_vat" + }, + { + "rect": { + "x1": 2148, + "y1": 1743, + "x2": 2258, + "y2": 1783 + }, + "value": "22,00", + "label": "items_row3:item_gross_worth" + }, + { + "rect": { + "x1": 957, + "y1": 2002, + "x2": 1052, + "y2": 2057 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1045, + "y1": 2002, + "x2": 1125, + "y2": 2057 + }, + "value": "[%]", + "label": "" + }, + { + "rect": { + "x1": 998, + "y1": 2090, + "x2": 1085, + "y2": 2145 + }, + "value": "10%", + "label": "" + }, + { + "rect": { + "x1": 1385, + "y1": 2002, + "x2": 1469, + "y2": 2057 + }, + "value": "Net", + "label": "" + }, + { + "rect": { + "x1": 1469, + "y1": 2010, + "x2": 1589, + "y2": 2046 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 1465, + "y1": 2101, + "x2": 1589, + "y2": 2145 + }, + "value": "100,97", + "label": "" + }, + { + "rect": { + "x1": 1414, + "y1": 2185, + "x2": 1586, + "y2": 2233 + }, + "value": "$ 100,97", + "label": "summary:total_net_worth" + }, + { + "rect": { + "x1": 1776, + "y1": 2002, + "x2": 1871, + "y2": 2057 + }, + "value": "VAT", + "label": "" + }, + { + "rect": { + "x1": 1765, + "y1": 2101, + "x2": 1863, + "y2": 2145 + }, + "value": "10,10", + "label": "" + }, + { + "rect": { + "x1": 1717, + "y1": 2185, + "x2": 1863, + "y2": 2233 + }, + "value": "$ 10,10", + "label": "summary:total_vat" + }, + { + "rect": { + "x1": 2024, + "y1": 2010, + "x2": 2138, + "y2": 2046 + }, + "value": "Gross", + "label": "" + }, + { + "rect": { + "x1": 2138, + "y1": 2010, + "x2": 2262, + "y2": 2046 + }, + "value": "worth", + "label": "" + }, + { + "rect": { + "x1": 2134, + "y1": 2101, + "x2": 2258, + "y2": 2145 + }, + "value": "111,07", + "label": "" + }, + { + "rect": { + "x1": 2086, + "y1": 2185, + "x2": 2258, + "y2": 2233 + }, + "value": "$ 111,07", + "label": "summary:total_gross_worth" + }, + { + "rect": { + "x1": 749, + "y1": 2185, + "x2": 855, + "y2": 2229 + }, + "value": "Total", + "label": "" + } + ] +} \ No newline at end of file diff --git a/docs/labels.json b/docs/labels.json new file mode 100644 index 0000000000000000000000000000000000000000..0943fce04f69378501bd87d6ecc980311ad73dee --- /dev/null +++ b/docs/labels.json @@ -0,0 +1,84 @@ +{ + "labels": [ + { + "id": 1, + "name": "invoice_no", + "description": "Invoice Number" + }, + { + "id": 2, + "name": "invoice_date", + "description": "Invoice Date" + }, + { + "id": 3, + "name": "seller", + "description": "Seller" + }, + { + "id": 4, + "name": "client", + "description": "Client" + }, + { + "id": 5, + "name": "seller_tax_id", + "description": "Seller Tax ID" + }, + { + "id": 6, + "name": "client_tax_id", + "description": "Client Tax ID" + }, + { + "id": 7, + "name": "iban", + "description": "IBAN" + }, + { + "id": 8, + "name": "item_desc", + "description": "Item Description" + }, + { + "id": 9, + "name": "item_qty", + "description": "Item Quantity" + }, + { + "id": 10, + "name": "item_net_price", + "description": "Item Net Price" + }, + { + "id": 11, + "name": "item_net_worth", + "description": "Item Net Worth" + }, + { + "id": 12, + "name": "item_vat", + "description": "Item VAT" + }, + { + "id": 13, + "name": "item_gross_worth", + "description": "Item Gross Worth" + }, + { + "id": 14, + "name": "total_net_worth", + "description": "Total Net Worth" + }, + { + "id": 15, + "name": "total_vat", + "description": "Total VAT" + }, + { + "id": 16, + "name": "total_gross_worth", + "description": "Total Gross Worth" + } + ] +} \ No newline at end of file diff --git a/docs/status.json b/docs/status.json new file mode 100644 index 0000000000000000000000000000000000000000..4f7dc5b32f4f3510595eca323773598ee3c46ca4 --- /dev/null +++ b/docs/status.json @@ -0,0 +1,9 @@ +{ + "annotations": [ + { + "completed": 501, + "in_progress": 499, + "total": 1000 + } + ] +} \ No newline at end of file diff --git a/docs/visitors.json b/docs/visitors.json new file mode 100644 index 0000000000000000000000000000000000000000..b23e66d2722d96dc7e459b6248bb6cbcda555c5d --- /dev/null +++ b/docs/visitors.json @@ -0,0 +1 @@ +{"meta": {"visitors": 4004}} \ No newline at end of file diff --git a/toolbar/__init__.py b/toolbar/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..b114c5e6e488ebab36d4a2fe9bcf73eccff6bbac --- /dev/null +++ b/toolbar/__init__.py @@ -0,0 +1,5 @@ +import streamlit.components.v1 as components +component_toolbar_buttons = components.declare_component( + name='component_toolbar_buttons', + path='./toolbar' +) \ No newline at end of file diff --git a/toolbar/__pycache__/__init__.cpython-311.pyc b/toolbar/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ea529b529db9b018821feeef0fcb4ca9b79664c4 Binary files /dev/null and b/toolbar/__pycache__/__init__.cpython-311.pyc differ diff --git a/toolbar/index.html b/toolbar/index.html new file mode 100644 index 0000000000000000000000000000000000000000..be5b5ce4d9049b38b1e37db5c3bec86d31e8f3bc --- /dev/null +++ b/toolbar/index.html @@ -0,0 +1,150 @@ + + + + + + + + +
+ + + +
+ + + + + \ No newline at end of file diff --git a/toolbar_main/__init__.py b/toolbar_main/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..f535aaea55bf3083ffe0eef9f53de718b5632a74 --- /dev/null +++ b/toolbar_main/__init__.py @@ -0,0 +1,5 @@ +import streamlit.components.v1 as components +component_toolbar_main = components.declare_component( + name='component_toolbar_main', + path='./toolbar_main' +) \ No newline at end of file diff --git a/toolbar_main/__pycache__/__init__.cpython-311.pyc b/toolbar_main/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..760adcdebf66fa9bddd28db681572e0dc414e0ad Binary files /dev/null and b/toolbar_main/__pycache__/__init__.cpython-311.pyc differ diff --git a/toolbar_main/index.html b/toolbar_main/index.html new file mode 100644 index 0000000000000000000000000000000000000000..6b7306fb725dae1cb18202326a77e48255968a20 --- /dev/null +++ b/toolbar_main/index.html @@ -0,0 +1,149 @@ + + + + + + + + +
+ + + +
+ + + + + \ No newline at end of file diff --git a/tools/__pycache__/agstyler.cpython-311.pyc b/tools/__pycache__/agstyler.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ad0874dca357d943c5efa6dfaa2af994b3216701 Binary files /dev/null and b/tools/__pycache__/agstyler.cpython-311.pyc differ diff --git a/tools/__pycache__/st_functions.cpython-311.pyc b/tools/__pycache__/st_functions.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1625de44de69f79af4bbbaa42eb7d815704823a0 Binary files /dev/null and b/tools/__pycache__/st_functions.cpython-311.pyc differ diff --git a/tools/__pycache__/utilities.cpython-311.pyc b/tools/__pycache__/utilities.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1920479200a84d304e70899224cf5695c10d0e73 Binary files /dev/null and b/tools/__pycache__/utilities.cpython-311.pyc differ diff --git a/tools/agstyler.py b/tools/agstyler.py new file mode 100644 index 0000000000000000000000000000000000000000..35f674fa6c68450b3d91375d18ca7b5705ab7274 --- /dev/null +++ b/tools/agstyler.py @@ -0,0 +1,77 @@ +# adjusted from: https://github.com/nryabykh/streamlit-aggrid-hints + +from st_aggrid import AgGrid +from st_aggrid.grid_options_builder import GridOptionsBuilder +from st_aggrid.shared import GridUpdateMode, JsCode + + +def get_numeric_style_with_precision(precision: int) -> dict: + return {"type": ["numericColumn", "customNumericFormat"], "precision": precision} + + +PRECISION_ZERO = get_numeric_style_with_precision(0) +PRECISION_ONE = get_numeric_style_with_precision(1) +PRECISION_TWO = get_numeric_style_with_precision(2) +PINLEFT = {"pinned": "left"} + + +def draw_grid( + df, + formatter: dict = None, + selection="multiple", + use_checkbox=False, + fit_columns=False, + pagination_size=0, + theme="streamlit", + wrap_text: bool = False, + auto_height: bool = False, + grid_options: dict = None, + key=None, + css: dict = None +): + + gb = GridOptionsBuilder() + gb.configure_default_column( + filterable=True, + groupable=False, + editable=False, + wrapText=wrap_text, + autoHeight=auto_height + ) + + if grid_options is not None: + gb.configure_grid_options(**grid_options) + + for latin_name, (cyr_name, style_dict) in formatter.items(): + gb.configure_column(latin_name, header_name=cyr_name, **style_dict) + + gb.configure_selection(selection_mode=selection, use_checkbox=use_checkbox) + + if pagination_size > 0: + gb.configure_pagination(enabled=True, paginationAutoPageSize=False, paginationPageSize=pagination_size) + + return AgGrid( + df, + gridOptions=gb.build(), + update_mode=GridUpdateMode.SELECTION_CHANGED | GridUpdateMode.VALUE_CHANGED, + allow_unsafe_jscode=True, + fit_columns_on_grid_load=fit_columns, + theme=theme, + key=key, + custom_css=css, + enable_enterprise_modules=False + ) + + +def highlight(color, condition): + code = f""" + function(params) {{ + color = "{color}"; + if ({condition}) {{ + return {{ + 'backgroundColor': color + }} + }} + }}; + """ + return JsCode(code) diff --git a/tools/data_review.py b/tools/data_review.py new file mode 100644 index 0000000000000000000000000000000000000000..5bf822c0ae2c31451a2e7c27f6fb5774f5937a39 --- /dev/null +++ b/tools/data_review.py @@ -0,0 +1,29 @@ +import os +from natsort import natsorted +import json + + +def annotation_review(): + # get list of files in json directory + processed_file_names = get_processed_file_names('../docs/json/') + for file_name in processed_file_names: + # open json file + with open('../docs/json/' + file_name + '.json') as json_file: + json_file_data = json.load(json_file) + version = json_file_data['meta']['version'] + if version == "v0.1": + print(file_name + " is v0.1") + +def get_processed_file_names(dir_name): + # get ordered list of files without file extension, excluding hidden files, with JSON extension only + file_names = [os.path.splitext(f)[0] for f in os.listdir(dir_name) if + os.path.isfile(os.path.join(dir_name, f)) and not f.startswith('.') and f.endswith('.json')] + file_names = natsorted(file_names) + return file_names + +def main(): + annotation_review() + + +if __name__ == '__main__': + main() \ No newline at end of file diff --git a/tools/st_functions.py b/tools/st_functions.py new file mode 100644 index 0000000000000000000000000000000000000000..51d7ed6ffc4edcdfc29c70fc697c94eb250a1c00 --- /dev/null +++ b/tools/st_functions.py @@ -0,0 +1,72 @@ +import streamlit as st + + +def st_button(icon, url, label, iconsize): + if icon == 'youtube': + button_code = f''' +

+ + + + + {label} + +

''' + elif icon == 'twitter': + button_code = f''' +

+ + + + + {label} + +

''' + elif icon == 'linkedin': + button_code = f''' +

+ + + + + {label} + +

''' + elif icon == 'medium': + button_code = f''' +

+ + + + + {label} + +

''' + elif icon == 'newsletter': + button_code = f''' +

+ + + + + {label} + +

''' + elif icon == 'github': + button_code = f''' +

+ + + + + {label} + +

''' + elif icon == '': + button_code = f''' +

+ + {label} + +

''' + return st.markdown(button_code, unsafe_allow_html=True) \ No newline at end of file diff --git a/tools/style.css b/tools/style.css new file mode 100644 index 0000000000000000000000000000000000000000..26c1dc7734537f476f394d11d51bca99f22eeea4 --- /dev/null +++ b/tools/style.css @@ -0,0 +1,53 @@ +/* Move block container higher */ +div.block-container.css-z5fcl4.egzxvld4 { + margin-top: -5em; +} + +/* Move menu container higher */ +div.css-1544g2n.e1fqkh3o4 { + padding-top: 3rem; +} + +/* Hide anchor link */ +.css-1dgmtll.e16nr0p32 { + display: none +} + +div[data-testid="metric-container"] { + background-color: #f7f8fa; + border: 1px solid #0c0d0d; + padding: 5% 5% 5% 10%; + border-radius: 5px; + color: rgb(30, 103, 119); + overflow-wrap: break-word; +} + +/* breakline for metric text */ +div[data-testid="metric-container"] > label[data-testid="stMetricLabel"] > div { + overflow-wrap: break-word; + white-space: break-spaces; + color: black; +} + +/* Hide Streamlit bars */ +#MainMenu { + visibility: hidden; +} + +footer { + visibility: hidden; +} + +/*header {*/ +/* visibility: hidden;*/ +/*}*/ + +/*About page styling*/ + +.css-1v0mbdj.etr89bj1 { + display: block; + margin-left: auto; + margin-right: auto; + min-width: 180px; + max-width: 40%; +} \ No newline at end of file diff --git a/tools/utilities.py b/tools/utilities.py new file mode 100644 index 0000000000000000000000000000000000000000..cf129082185f80763cd97d19336c42a4e10a661c --- /dev/null +++ b/tools/utilities.py @@ -0,0 +1,9 @@ +import streamlit as st + + +def load_css(): + with open("tools/style.css") as f: + st.markdown(''.format(f.read()), unsafe_allow_html=True) + st.markdown( + '', + unsafe_allow_html=True) \ No newline at end of file diff --git a/views/__pycache__/about.cpython-311.pyc b/views/__pycache__/about.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..db2c21251101190d8a41311a8cb3d0c6d2f740ff Binary files /dev/null and b/views/__pycache__/about.cpython-311.pyc differ diff --git a/views/__pycache__/dashboard.cpython-311.pyc b/views/__pycache__/dashboard.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..76243035f54e6e25b0c002464e650294a0c7da62 Binary files /dev/null and b/views/__pycache__/dashboard.cpython-311.pyc differ diff --git a/views/__pycache__/data_annotation.cpython-311.pyc b/views/__pycache__/data_annotation.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0707a4aaf25c35fd7742728b82cd56c0b613ea7e Binary files /dev/null and b/views/__pycache__/data_annotation.cpython-311.pyc differ diff --git a/views/__pycache__/data_inference.cpython-311.pyc b/views/__pycache__/data_inference.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3945d5fff83abd8772e78aa3e37b152aa3ca9e18 Binary files /dev/null and b/views/__pycache__/data_inference.cpython-311.pyc differ diff --git a/views/__pycache__/data_review.cpython-311.pyc b/views/__pycache__/data_review.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6581c5ddc6ed47f3a80f8b9210938d257b37a83c Binary files /dev/null and b/views/__pycache__/data_review.cpython-311.pyc differ diff --git a/views/__pycache__/model_training.cpython-311.pyc b/views/__pycache__/model_training.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ed905cb60518a9aa47eae828416d5c8b955b562d Binary files /dev/null and b/views/__pycache__/model_training.cpython-311.pyc differ diff --git a/views/__pycache__/model_tuning.cpython-311.pyc b/views/__pycache__/model_tuning.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c771ae2aa157728dae840074bcfc70ef6bdccfa1 Binary files /dev/null and b/views/__pycache__/model_tuning.cpython-311.pyc differ diff --git a/views/__pycache__/setup.cpython-311.pyc b/views/__pycache__/setup.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b98e173fe7e5f24bc5c4f89595cffa8d6be26ee0 Binary files /dev/null and b/views/__pycache__/setup.cpython-311.pyc differ diff --git a/views/about.py b/views/about.py new file mode 100644 index 0000000000000000000000000000000000000000..883bf866b1d0e246b4a213f23875e88e5d1a25f0 --- /dev/null +++ b/views/about.py @@ -0,0 +1,33 @@ +import streamlit as st +from PIL import Image +from tools.st_functions import st_button + + +class About: + class Model: + pageTitle = "About" + + def view(self, model): + # st.title(model.pageTitle) + + st.write( + "[![Star](https://img.shields.io/github/stars/katanaml/sparrow.svg?logo=github&style=social)](https://github.com/katanaml/sparrow)") + + col1, col2, col3 = st.columns(3) + col2.image(Image.open('assets/ab.png')) + + st.markdown("

Andrej Baranovskij, Founder Katana ML

", + unsafe_allow_html=True) + + st.info( + 'Sparrow is a tool for data extraction from PDFs, images, and other documents. It is a part of Katana ML, ' + 'a platform for data science and machine learning.') + + icon_size = 20 + + st_button('youtube', 'https://www.youtube.com/@AndrejBaranovskij', 'Andrej Baranovskij YouTube channel', icon_size) + st_button('github', 'https://github.com/katanaml/sparrow', 'Sparrow GitHub', icon_size) + st_button('twitter', 'https://twitter.com/andrejusb', 'Follow me on Twitter', icon_size) + st_button('medium', 'https://andrejusb.medium.com', 'Read my Blogs on Medium', icon_size) + st_button('linkedin', 'https://www.linkedin.com/in/andrej-baranovskij/', 'Follow me on LinkedIn', icon_size) + st_button('', 'https://katanaml.io', 'Katana ML', icon_size) diff --git a/views/dashboard.py b/views/dashboard.py new file mode 100644 index 0000000000000000000000000000000000000000..7eeedac204956f9f04ddbf5aaf3782bd1325cba1 --- /dev/null +++ b/views/dashboard.py @@ -0,0 +1,378 @@ +import streamlit as st +import numpy as np +import pandas as pd +import json +import altair as alt +from pathlib import Path +import requests + + +class Dashboard: + class Model: + pageTitle = "Dashboard" + + wordsTitle = "Words" + + inferenceTimeTitle = "Inference Time" + + documentsTitle = "Documents" + + dailyInferenceTitle = "Top Daily Inference" + + accuracyTitle = "Mean Accuracy" + + titleModelEval = "## Evaluation Accuracy" + titleInferencePerformance = "## Inference Performance" + titleDatasetInfo = "## Dataset Info" + titleDataAnnotation = "## Data Annotation" + titleTrainingPerformance = "## Training Performance" + titleEvaluationPerformance = "## Evaluation Performance" + + status_file = "docs/status.json" + annotation_files_dir = "docs/json" + + def view(self, model): + # st.title(model.pageTitle) + + api_url = "https://katanaml-org-sparrow-ml.hf.space/api-inference/v1/sparrow-ml/statistics" + json_data_inference = [] + response = requests.get(api_url) + if response.status_code == 200: + json_data_inference = response.json() + else: + print(f"Error: Unable to fetch data from the API (status code {response.status_code})") + + api_url_t = "https://katanaml-org-sparrow-ml.hf.space/api-training/v1/sparrow-ml/statistics/training" + json_data_training = [] + response_t = requests.get(api_url_t) + if response_t.status_code == 200: + json_data_training = response_t.json() + else: + print(f"Error: Unable to fetch data from the API (status code {response_t.status_code})") + + api_url_e = "https://katanaml-org-sparrow-ml.hf.space/api-training/v1/sparrow-ml/statistics/evaluate" + json_data_evaluate = [] + response_e = requests.get(api_url_e) + if response_e.status_code == 200: + json_data_evaluate = response_e.json() + else: + print(f"Error: Unable to fetch data from the API (status code {response_e.status_code})") + + with st.container(): + col1, col2, col3, col4, col5 = st.columns(5) + + with col1: + words_count = 0 + delta_words = 0 + + if len(json_data_inference) > 3: + for i in range(0, len(json_data_inference)): + words_count = words_count + json_data_inference[i][1] + + avg_word_count = words_count / len(json_data_inference) + avg_word_last = (json_data_inference[len(json_data_inference) - 1][1] + + json_data_inference[len(json_data_inference) - 2][1] + + json_data_inference[len(json_data_inference) - 3][1]) / 3 + + if avg_word_last >= avg_word_count: + delta_words = round(100 - ((avg_word_count * 100) / avg_word_last), 2) + else: + delta_words = round(100 - ((avg_word_last * 100) / avg_word_count), 2) * -1 + + words_count = words_count / 1000 + st.metric(label=model.wordsTitle, value=str(words_count) + 'K', delta=str(delta_words) + "%") + + with col2: + docs_count = len(json_data_inference) + delta_docs = 0 + + if docs_count > 3: + inference_dates = [] + for i in range(0, len(json_data_inference)): + inference_dates.append(json_data_inference[i][4].split(" ")[0]) + + inference_dates_unique = [] + for item in inference_dates: + if item not in inference_dates_unique: + inference_dates_unique.append(item) + + if len(inference_dates_unique) > 3: + inference_dates_dict = {} + for i, key in enumerate(inference_dates_unique): + inference_dates_dict[key] = [0] + + for i in range(0, len(json_data_inference)): + inference_dates_dict[json_data_inference[i][4].split(" ")[0]][0] = \ + inference_dates_dict[json_data_inference[i][4].split(" ")[0]][0] + 1 + + # calculate average for values from inference_dates_dict + avg_value = 0 + for key, value in inference_dates_dict.items(): + avg_value = avg_value + value[0] + avg_value = round(avg_value / len(inference_dates_dict), 2) + + # calculate average for last 3 values from inference_dates_dict + avg_value_last = 0 + for i in range(1, 4): + avg_value_last = avg_value_last + inference_dates_dict[inference_dates_unique[len(inference_dates_unique) - i]][0] + avg_value_last = round(avg_value_last / 3, 2) + + if avg_value_last > avg_value: + delta_docs = round(100 - ((avg_value * 100) / avg_value_last), 2) + else: + delta_docs = round(100 - ((avg_value_last * 100) / avg_value), 2) * -1 + + st.metric(label=model.documentsTitle, value=docs_count, delta=str(delta_docs) + "%") + + with col3: + inference_dates = [] + for i in range(0, len(json_data_inference)): + inference_dates.append(json_data_inference[i][4].split(" ")[0]) + + inference_dates_unique = [] + for item in inference_dates: + if item not in inference_dates_unique: + inference_dates_unique.append(item) + + inference_dates_dict = {} + for i, key in enumerate(inference_dates_unique): + inference_dates_dict[key] = [0] + + for i in range(0, len(json_data_inference)): + inference_dates_dict[json_data_inference[i][4].split(" ")[0]][0] = \ + inference_dates_dict[json_data_inference[i][4].split(" ")[0]][0] + 1 + + # loop through the dictionary and find the max value + max_value = 0 + for key, value in inference_dates_dict.items(): + if value[0] > max_value: + max_value = value[0] + + # calculate average for values from inference_dates_dict + avg_value = 0 + for key, value in inference_dates_dict.items(): + avg_value = avg_value + value[0] + avg_value = round(avg_value / len(inference_dates_dict), 2) + + avg_delta = round(100 - ((avg_value * 100) / max_value), 2) + + st.metric(label=model.dailyInferenceTitle, value=max_value, delta=str(avg_delta) + "%") + + with col4: + inference_time_avg = 0 + + # calculate inference time average + for i in range(0, len(json_data_inference)): + inference_time_avg = inference_time_avg + json_data_inference[i][0] + inference_time_avg = round(inference_time_avg / len(json_data_inference), 2) + + delta_time = 0 + if len(json_data_inference) > 3: + avg_time_last = (json_data_inference[len(json_data_inference) - 1][0] + + json_data_inference[len(json_data_inference) - 2][0] + + json_data_inference[len(json_data_inference) - 3][0]) / 3 + + if avg_time_last > inference_time_avg: + delta_time = round(100 - ((inference_time_avg * 100) / avg_time_last), 2) + else: + delta_time = round(100 - ((avg_time_last * 100) / inference_time_avg), 2) * -1 + + st.metric(label=model.inferenceTimeTitle, value=str(inference_time_avg) + " s", delta=str(delta_time) + "%", + delta_color="inverse") + + with col5: + models_unique = [] + models_dict = {} + for i in range(0, len(json_data_evaluate)): + if json_data_evaluate[i][3] not in models_unique: + models_unique.append(json_data_evaluate[i][3]) + models_dict[json_data_evaluate[i][3]] = json_data_evaluate[i][1]['mean_accuracy'] + + avg_accuracy = 0 + for key, value in models_dict.items(): + avg_accuracy = avg_accuracy + value + avg_accuracy = round(avg_accuracy / len(models_dict), 2) + + if len(models_unique) > 3: + # calculate average accuracy for last 3 values + avg_accuracy_last = 0 + for i in range(1, 4): + avg_accuracy_last = avg_accuracy_last + models_dict[models_unique[len(models_unique) - i]] + avg_accuracy_last = round(avg_accuracy_last / 3, 2) + else: + avg_accuracy_last = avg_accuracy + + if avg_accuracy_last > avg_accuracy: + delta_accuracy = round(100 - ((avg_accuracy * 100) / avg_accuracy_last), 2) + else: + delta_accuracy = round(100 - ((avg_accuracy_last * 100) / avg_accuracy), 2) * -1 + + st.metric(label=model.accuracyTitle, value=avg_accuracy, delta=str(delta_accuracy) + "%", + delta_color="inverse") + + st.markdown("---") + + + with st.container(): + col1, col2 = st.columns(2) + + with col1: + st.write(model.titleInferencePerformance) + + models_dict = {} + + models = [] + for i in range(0, len(json_data_inference)): + models.append(json_data_inference[i][3]) + + models_unique = [] + for item in models: + if item not in models_unique: + models_unique.append(item) + + for i, key in enumerate(models_unique): + models_dict[key] = [] + + for i in range(0, len(json_data_inference)): + models_dict[json_data_inference[i][3]].append(round(json_data_inference[i][0])) + + data = pd.DataFrame(models_dict) + st.line_chart(data) + + with col2: + st.write(model.titleModelEval) + + models_unique = [] + models_dict = {} + for i in range(0, len(json_data_evaluate)): + if json_data_evaluate[i][3] not in models_unique: + models_unique.append(json_data_evaluate[i][3]) + models_dict[json_data_evaluate[i][3]] = json_data_evaluate[i][1]['accuracies'] + + data = pd.DataFrame(models_dict) + st.line_chart(data) + + st.markdown("---") + + with st.container(): + col1, col2, col3 = st.columns(3) + + with col1: + with st.container(): + st.write(model.titleDataAnnotation) + + total, completed, in_progress = self.calculate_annotation_stats(model) + + data = pd.DataFrame({"Status": ["Completed", "In Progress"], "Value": [completed, in_progress]}) + + # Create a horizontal bar chart + chart = alt.Chart(data).mark_bar().encode( + x='Value:Q', + y=alt.Y('Status:N', sort='-x'), + color=alt.Color('Status:N', legend=None) + ) + + st.altair_chart(chart) + with col2: + with st.container(): + st.write(model.titleDatasetInfo) + + api_url = "https://katanaml-org-sparrow-data.hf.space/api-dataset/v1/sparrow-data/dataset_info" + + # Make the GET request + response = requests.get(api_url) + + # Check if the request was successful (status code 200) + names = [] + rows = [] + if response.status_code == 200: + # Convert the response content to a JSON object + json_data = response.json() + + for i in range(0, len(json_data['splits'])): + names.append(json_data['splits'][i]['name']) + rows.append(json_data['splits'][i]['number_of_rows']) + else: + print(f"Error: Unable to fetch data from the API (status code {response.status_code})") + + data = pd.DataFrame({"Dataset": names, "Value": rows}) + + # Create a horizontal bar chart + chart = alt.Chart(data).mark_bar().encode( + x='Value:Q', + y=alt.Y('Dataset:N', sort='-x'), + color=alt.Color('Dataset:N', legend=None) + ) + + st.altair_chart(chart) + with col3: + with st.container(): + st.write(model.titleTrainingPerformance) + + models_dict = {} + + for i in range(0, len(json_data_training)): + models_dict[i] = round(json_data_training[i][0]) + + data = pd.DataFrame({"Runs": models_dict.keys(), "Value": list(models_dict.values())}) + + # Create a horizontal bar chart + chart = alt.Chart(data).mark_bar().encode( + x='Value:Q', + y=alt.Y('Runs:N', sort='-x'), + color=alt.Color('Runs:N', legend=None) + ) + + st.altair_chart(chart) + + st.markdown("---") + + with st.container(): + st.write(model.titleEvaluationPerformance) + + runs_dict = {} + + for i in range(0, len(json_data_evaluate)): + runs_dict[i] = round(json_data_evaluate[i][0]) + + data = pd.DataFrame({"Runs": runs_dict.keys(), "Value": list(runs_dict.values())}) + + # Create a horizontal bar chart + chart = alt.Chart(data).mark_bar().encode( + x='Value:Q', + y=alt.Y('Runs:N', sort='-x'), + color=alt.Color('Runs:N', legend=None) + ) + + st.altair_chart(chart) + + + def calculate_annotation_stats(self, model): + completed = 0 + in_progress = 0 + data_dir_path = Path(model.annotation_files_dir) + + for file_name in data_dir_path.glob("*.json"): + with open(file_name, "r") as f: + data = json.load(f) + v = data['meta']['version'] + if v == 'v0.1': + in_progress += 1 + else: + completed += 1 + total = completed + in_progress + + status_json = { + "annotations": [ + { + "completed": completed, + "in_progress": in_progress, + "total": total + } + ] + } + + with open(model.status_file, "w") as f: + json.dump(status_json, f, indent=2) + + return total, completed, in_progress diff --git a/views/data_annotation.py b/views/data_annotation.py new file mode 100644 index 0000000000000000000000000000000000000000..2eb7a8a6968f4769fdcad43bffebc4508c3dc3ed --- /dev/null +++ b/views/data_annotation.py @@ -0,0 +1,692 @@ +import streamlit as st +from PIL import Image +import streamlit_nested_layout +from streamlit_sparrow_labeling import st_sparrow_labeling +from streamlit_sparrow_labeling import DataProcessor +import json +import math +import os +from natsort import natsorted +from tools import agstyler +from tools.agstyler import PINLEFT +import pandas as pd +from toolbar_main import component_toolbar_main + + +class DataAnnotation: + class Model: + pageTitle = "Data Annotation" + + img_file = None + rects_file = None + labels_file = "docs/labels.json" + groups_file = "docs/groups.json" + + assign_labels_text = "Assign Labels" + text_caption_1 = "Check 'Assign Labels' to enable editing of labels and values, move and resize the boxes to annotate the document." + text_caption_2 = "Add annotations by clicking and dragging on the document, when 'Assign Labels' is unchecked." + + labels = ["", "invoice_no", "invoice_date", "seller", "client", "seller_tax_id", "client_tax_id", "iban", "item_desc", + "item_qty", "item_net_price", "item_net_worth", "item_vat", "item_gross_worth", "total_net_worth", "total_vat", + "total_gross_worth"] + + groups = ["", "items_row1", "items_row2", "items_row3", "items_row4", "items_row5", "items_row6", "items_row7", + "items_row8", "items_row9", "items_row10", "summary"] + + selected_field = "Selected Field: " + save_text = "Save" + saved_text = "Saved!" + + subheader_1 = "Select" + subheader_2 = "Upload" + annotation_text = "Annotation" + no_annotation_file = "No annotation file selected" + no_annotation_mapping = "Please annotate the document. Uncheck 'Assign Labels' and draw new annotations" + + download_text = "Download" + download_hint = "Download the annotated structure in JSON format" + + annotation_selection_help = "Select an annotation file to load" + upload_help = "Upload a file to annotate" + upload_button_text = "Upload" + upload_button_text_desc = "Choose a file" + + assign_labels_text = "Assign Labels" + assign_labels_help = "Check to enable editing of labels and values" + + export_labels_text = "Export Labels" + export_labels_help = "Create key-value pairs for the labels in JSON format" + done_text = "Done" + + grouping_id = "ID" + grouping_value = "Value" + + completed_text = "Completed" + completed_help = "Check to mark the annotation as completed" + + error_text = "Value is too long. Please shorten it." + selection_must_be_continuous = "Please select continuous rows" + + def view(self, model, ui_width, device_type, device_width): + with open(model.labels_file, "r") as f: + labels_json = json.load(f) + + labels_list = labels_json["labels"] + labels = [''] + for label in labels_list: + labels.append(label['name']) + model.labels = labels + + with open(model.groups_file, "r") as f: + groups_json = json.load(f) + + groups_list = groups_json["groups"] + groups = [''] + for group in groups_list: + groups.append(group['name']) + model.groups = groups + + with st.sidebar: + st.markdown("---") + st.subheader(model.subheader_1) + + placeholder_upload = st.empty() + + file_names = self.get_existing_file_names('docs/images/') + + if 'annotation_index' not in st.session_state: + st.session_state['annotation_index'] = 0 + annotation_index = 0 + else: + annotation_index = st.session_state['annotation_index'] + + annotation_selection = placeholder_upload.selectbox(model.annotation_text, file_names, + index=annotation_index, + help=model.annotation_selection_help) + + annotation_index = self.get_annotation_index(annotation_selection, file_names) + + file_extension = self.get_file_extension(annotation_selection, 'docs/images/') + model.img_file = f"docs/images/{annotation_selection}" + file_extension + model.rects_file = f"docs/json/{annotation_selection}.json" + + completed_check = st.empty() + + btn = st.button(model.export_labels_text) + if btn: + self.export_labels(model) + st.write(model.done_text) + + st.subheader(model.subheader_2) + + with st.form("upload-form", clear_on_submit=True): + uploaded_file = st.file_uploader(model.upload_button_text_desc, accept_multiple_files=False, + type=['png', 'jpg', 'jpeg'], + help=model.upload_help) + submitted = st.form_submit_button(model.upload_button_text) + + if submitted and uploaded_file is not None: + ret = self.upload_file(uploaded_file) + + if ret is not False: + file_names = self.get_existing_file_names('docs/images/') + + annotation_index = self.get_annotation_index(annotation_selection, file_names) + annotation_selection = placeholder_upload.selectbox(model.annotation_text, file_names, + index=annotation_index, + help=model.annotation_selection_help) + st.session_state['annotation_index'] = annotation_index + + # st.title(model.pageTitle + " - " + annotation_selection) + + if model.img_file is None: + st.caption(model.no_annotation_file) + return + + saved_state = self.fetch_annotations(model.rects_file) + + # annotation file has been changed + if annotation_index != st.session_state['annotation_index']: + annotation_v = saved_state['meta']['version'] + if annotation_v == "v0.1": + st.session_state["annotation_done"] = False + else: + st.session_state["annotation_done"] = True + # store the annotation file index + st.session_state['annotation_index'] = annotation_index + + # first load + if "annotation_done" not in st.session_state: + annotation_v = saved_state['meta']['version'] + if annotation_v == "v0.1": + st.session_state["annotation_done"] = False + else: + st.session_state["annotation_done"] = True + + with completed_check: + annotation_done = st.checkbox(model.completed_text, help=model.completed_help, key="annotation_done") + if annotation_done: + saved_state['meta']['version'] = "v1.0" + else: + saved_state['meta']['version'] = "v0.1" + + with open(model.rects_file, "w") as f: + json.dump(saved_state, f, indent=2) + st.session_state[model.rects_file] = saved_state + + assign_labels = st.checkbox(model.assign_labels_text, True, help=model.assign_labels_help) + mode = "transform" if assign_labels else "rect" + + docImg = Image.open(model.img_file) + + data_processor = DataProcessor() + + with st.container(): + doc_height = saved_state['meta']['image_size']['height'] + doc_width = saved_state['meta']['image_size']['width'] + canvas_width, number_of_columns = self.canvas_available_width(ui_width, doc_width, device_type, + device_width) + + if number_of_columns > 1: + col1, col2 = st.columns([number_of_columns, 10 - number_of_columns]) + with col1: + result_rects = self.render_doc(model, docImg, saved_state, mode, canvas_width, doc_height, doc_width) + with col2: + tab = st.radio("Select", ["Mapping", "Grouping", "Ordering"], horizontal=True, + label_visibility="collapsed") + if tab == "Mapping": + self.render_form(model, result_rects, data_processor, annotation_selection) + elif tab == "Grouping": + self.group_annotations(model, result_rects) + elif tab == "Ordering": + self.order_annotations(model, model.labels, model.groups, result_rects) + else: + result_rects = self.render_doc(model, docImg, saved_state, mode, canvas_width, doc_height, doc_width) + tab = st.radio("Select", ["Mapping", "Grouping"], horizontal=True, label_visibility="collapsed") + if tab == "Mapping": + self.render_form(model, result_rects, data_processor, annotation_selection) + else: + self.group_annotations(model, result_rects) + + def render_doc(self, model, docImg, saved_state, mode, canvas_width, doc_height, doc_width): + with st.container(): + height = 1296 + width = 864 + + result_rects = st_sparrow_labeling( + fill_color="rgba(0, 151, 255, 0.3)", + stroke_width=2, + stroke_color="rgba(0, 50, 255, 0.7)", + background_image=docImg, + initial_rects=saved_state, + height=height, + width=width, + drawing_mode=mode, + display_toolbar=True, + update_streamlit=True, + canvas_width=canvas_width, + doc_height=doc_height, + doc_width=doc_width, + image_rescale=True, + key="doc_annotation" + model.img_file + ) + + st.caption(model.text_caption_1) + st.caption(model.text_caption_2) + + return result_rects + + def render_form(self, model, result_rects, data_processor, annotation_selection): + with st.container(): + if result_rects is not None: + with st.form(key="fields_form"): + toolbar = st.empty() + + self.render_form_view(result_rects.rects_data['words'], model.labels, result_rects, + data_processor) + + with toolbar: + submit = st.form_submit_button(model.save_text, type="primary") + if submit: + for word in result_rects.rects_data['words']: + if len(word['value']) > 1000: + st.error(model.error_text) + return + + with open(model.rects_file, "w") as f: + json.dump(result_rects.rects_data, f, indent=2) + st.session_state[model.rects_file] = result_rects.rects_data + # st.write(model.saved_text) + st.experimental_rerun() + + if len(result_rects.rects_data['words']) == 0: + st.caption(model.no_annotation_mapping) + return + else: + with open(model.rects_file, 'rb') as file: + st.download_button(label=model.download_text, + data=file, + file_name=annotation_selection + ".json", + mime='application/json', + help=model.download_hint) + + def render_form_view(self, words, labels, result_rects, data_processor): + data = [] + for i, rect in enumerate(words): + group, label = rect['label'].split(":", 1) if ":" in rect['label'] else (None, rect['label']) + data.append({'id': i, 'value': rect['value'], 'label': label}) + df = pd.DataFrame(data) + + formatter = { + 'id': ('ID', {**PINLEFT, 'hide': True}), + 'value': ('Value', {**PINLEFT, 'editable': True}), + 'label': ('Label', {**PINLEFT, + 'width': 80, + 'editable': True, + 'cellEditor': 'agSelectCellEditor', + 'cellEditorParams': { + 'values': labels + }}) + } + + go = { + 'rowClassRules': { + 'row-selected': 'data.id === ' + str(result_rects.current_rect_index) + } + } + + green_light = "#abf7b1" + css = { + '.row-selected': { + 'background-color': f'{green_light} !important' + } + } + + response = agstyler.draw_grid( + df, + formatter=formatter, + fit_columns=True, + grid_options=go, + css=css + ) + + data = response['data'].values.tolist() + + for i, rect in enumerate(words): + value = data[i][1] + label = data[i][2] + data_processor.update_rect_data(result_rects.rects_data, i, value, label) + + def canvas_available_width(self, ui_width, doc_width, device_type, device_width): + doc_width_pct = (doc_width * 100) / ui_width + if doc_width_pct < 45: + canvas_width_pct = 37 + elif doc_width_pct < 55: + canvas_width_pct = 49 + else: + canvas_width_pct = 60 + + if ui_width > 700 and canvas_width_pct == 37 and device_type == "desktop": + return math.floor(canvas_width_pct * ui_width / 100), 4 + elif ui_width > 700 and canvas_width_pct == 49 and device_type == "desktop": + return math.floor(canvas_width_pct * ui_width / 100), 5 + elif ui_width > 700 and canvas_width_pct == 60 and device_type == "desktop": + return math.floor(canvas_width_pct * ui_width / 100), 6 + else: + if device_type == "desktop": + ui_width = device_width - math.floor((device_width * 22) / 100) + elif device_type == "mobile": + ui_width = device_width - math.floor((device_width * 13) / 100) + return ui_width, 1 + + def fetch_annotations(self, rects_file): + for key in st.session_state: + if key.startswith("docs/json/") and key != rects_file: + del st.session_state[key] + + if rects_file not in st.session_state: + with open(rects_file, "r") as f: + saved_state = json.load(f) + st.session_state[rects_file] = saved_state + else: + saved_state = st.session_state[rects_file] + + return saved_state + + def upload_file(self, uploaded_file): + if uploaded_file is not None: + if os.path.exists(os.path.join("docs/images/", uploaded_file.name)): + st.write("File already exists") + return False + + if len(uploaded_file.name) > 100: + st.write("File name too long") + return False + + with open(os.path.join("docs/images/", uploaded_file.name), "wb") as f: + f.write(uploaded_file.getbuffer()) + + img_file = Image.open(os.path.join("docs/images/", uploaded_file.name)) + + annotations_json = { + "meta": { + "version": "v0.1", + "split": "train", + "image_id": len(self.get_existing_file_names("docs/images/")), + "image_size": { + "width": img_file.width, + "height": img_file.height + } + }, + "words": [] + } + + file_name = uploaded_file.name.split(".")[0] + with open(os.path.join("docs/json/", file_name + ".json"), "w") as f: + json.dump(annotations_json, f, indent=2) + + st.success("File uploaded successfully") + + def get_existing_file_names(self, dir_name): + # get ordered list of files without file extension, excluding hidden files + return natsorted([os.path.splitext(f)[0] for f in os.listdir(dir_name) if not f.startswith('.')]) + + def get_file_extension(self, file_name, dir_name): + # get list of files, excluding hidden files + files = [f for f in os.listdir(dir_name) if not f.startswith('.')] + for f in files: + if file_name is not None and os.path.splitext(f)[0] == file_name: + return os.path.splitext(f)[1] + + def get_annotation_index(self, file, files_list): + return files_list.index(file) + + + def group_annotations(self, model, result_rects): + with st.form(key="grouping_form"): + if result_rects is not None: + words = result_rects.rects_data['words'] + data = [] + for i, rect in enumerate(words): + data.append({'id': i, 'value': rect['value']}) + df = pd.DataFrame(data) + + formatter = { + 'id': ('ID', {**PINLEFT, 'width': 50}), + 'value': ('Value', PINLEFT) + } + + toolbar = st.empty() + + response = agstyler.draw_grid( + df, + formatter=formatter, + fit_columns=True, + selection='multiple', + use_checkbox='True', + pagination_size=40 + ) + + rows = response['selected_rows'] + + with toolbar: + submit = st.form_submit_button(model.save_text, type="primary") + if submit and len(rows) > 0: + # check if there are gaps in the selected rows + if len(rows) > 1: + for i in range(len(rows) - 1): + if rows[i]['id'] + 1 != rows[i + 1]['id']: + st.error(model.selection_must_be_continuous) + return + + words = result_rects.rects_data['words'] + new_words_list = [] + coords = [] + for row in rows: + word_value = words[row['id']]['value'] + rect = words[row['id']]['rect'] + coords.append(rect) + new_words_list.append(word_value) + # convert array to string + new_word = " ".join(new_words_list) + + # Get min x1 value from coords array + x1_min = min([coord['x1'] for coord in coords]) + y1_min = min([coord['y1'] for coord in coords]) + x2_max = max([coord['x2'] for coord in coords]) + y2_max = max([coord['y2'] for coord in coords]) + + + words[rows[0]['id']]['value'] = new_word + words[rows[0]['id']]['rect'] = { + "x1": x1_min, + "y1": y1_min, + "x2": x2_max, + "y2": y2_max + } + + # loop array in reverse order and remove selected entries + i = 0 + for row in rows[::-1]: + if i == len(rows) - 1: + break + del words[row['id']] + i += 1 + + result_rects.rects_data['words'] = words + + with open(model.rects_file, "w") as f: + json.dump(result_rects.rects_data, f, indent=2) + st.session_state[model.rects_file] = result_rects.rects_data + st.experimental_rerun() + + + def order_annotations(self, model, labels, groups, result_rects): + if result_rects is not None: + self.action_event = None + data = [] + idx_list = [""] + words = result_rects.rects_data['words'] + for i, rect in enumerate(words): + if rect['label'] != "": + # split string into two variables, assign None to first variable if no split is found + group, label = rect['label'].split(":", 1) if ":" in rect['label'] else (None, rect['label']) + data.append({'id': i, 'value': rect['value'], 'label': label, 'group': group}) + idx_list.append(i) + df = pd.DataFrame(data) + + formatter = { + 'id': ('ID', {**PINLEFT, 'width': 50}), + 'value': ('Value', {**PINLEFT}), + 'label': ('Label', {**PINLEFT, + 'width': 80, + 'editable': False, + 'cellEditor': 'agSelectCellEditor', + 'cellEditorParams': { + 'values': labels + }}), + 'group': ('Group', {**PINLEFT, + 'width': 80, + 'editable': True, + 'cellEditor': 'agSelectCellEditor', + 'cellEditorParams': { + 'values': groups + }}) + } + + go = { + 'rowClassRules': { + 'row-selected': 'data.id === ' + str(result_rects.current_rect_index) + } + } + + green_light = "#abf7b1" + css = { + '.row-selected': { + 'background-color': f'{green_light} !important' + } + } + + idx_option = st.selectbox('Select row to move into', idx_list) + + def run_component(props): + value = component_toolbar_main(key='toolbar_main', **props) + return value + + def handle_event(value): + if value is not None: + if 'action_timestamp' not in st.session_state: + self.action_event = value['action'] + st.session_state['action_timestamp'] = value['timestamp'] + else: + if st.session_state['action_timestamp'] != value['timestamp']: + self.action_event = value['action'] + st.session_state['action_timestamp'] = value['timestamp'] + else: + self.action_event = None + + props = { + 'buttons': { + 'up': { + 'disabled': False, + 'rendered': '' + }, + 'down': { + 'disabled': False, + 'rendered': '' + }, + 'save': { + 'disabled': False, + 'rendered': '' + # 'rendered': 'none', + } + } + } + + handle_event(run_component(props)) + + response = agstyler.draw_grid( + df, + formatter=formatter, + fit_columns=True, + grid_options=go, + css=css + ) + + rows = response['selected_rows'] + if len(rows) == 0 and result_rects.current_rect_index > -1: + for i, row in enumerate(data): + if row['id'] == result_rects.current_rect_index: + rows = [ + { + '_selectedRowNodeInfo': { + 'nodeRowIndex': i + }, + 'id': row['id'] + } + ] + break + + if str(self.action_event) == 'up': + if len(rows) > 0: + idx = rows[0]['_selectedRowNodeInfo']['nodeRowIndex'] + if idx > 0: + row_id = rows[0]['id'] + if row_id == idx_option: + return + # swap row upwards in the array + if idx_option == "": + words[row_id], words[row_id - 1] = words[row_id - 1], words[row_id] + else: + for i in range(1000): + words[row_id], words[row_id - 1] = words[row_id - 1], words[row_id] + row_id -= 1 + if row_id == idx_option: + break + + result_rects.rects_data['words'] = words + + with open(model.rects_file, "w") as f: + json.dump(result_rects.rects_data, f, indent=2) + st.session_state[model.rects_file] = result_rects.rects_data + st.experimental_rerun() + elif str(self.action_event) == 'down': + if len(rows) > 0: + idx = rows[0]['_selectedRowNodeInfo']['nodeRowIndex'] + if idx < len(df) - 1: + row_id = rows[0]['id'] + if row_id == idx_option: + return + # swap row downwards in the array + if idx_option == "": + words[row_id], words[row_id + 1] = words[row_id + 1], words[row_id] + else: + for i in range(1000): + words[row_id], words[row_id + 1] = words[row_id + 1], words[row_id] + row_id += 1 + if row_id == idx_option: + break + + result_rects.rects_data['words'] = words + + with open(model.rects_file, "w") as f: + json.dump(result_rects.rects_data, f, indent=2) + st.session_state[model.rects_file] = result_rects.rects_data + st.experimental_rerun() + elif str(self.action_event) == 'save': + data = response['data'].values.tolist() + for elem in data: + if elem[3] != "None": + idx = elem[0] + group = elem[3] + words[idx]['label'] = f"{group}:{elem[2]}" + + result_rects.rects_data['words'] = words + + with open(model.rects_file, "w") as f: + json.dump(result_rects.rects_data, f, indent=2) + st.session_state[model.rects_file] = result_rects.rects_data + st.experimental_rerun() + + + def export_labels(self, model): + path_from = os.path.join("docs/json/") + path_to = os.path.join("docs/json/key/") + + files = [f for f in os.listdir(path_from) if not f.startswith('.')] + for file in files: + path = os.path.join(path_from, file) + if os.path.isfile(path): + with open(path, "r") as f: + data = json.load(f) + words = data['words'] + + keys = {} + row_keys = {} + + for word in words: + if word['label'] != '': + if ':' in word['label']: + group, label = word['label'].split(':', 1) + if 'row' not in group: + if group not in keys: + keys[group] = {} + keys[group][label] = word['value'] + else: + if "items" not in keys: + keys["items"] = [] + + if group not in row_keys: + row_keys[group] = {} + row_keys[group][label] = word['value'] + else: + keys[word['label']] = word['value'] + + if row_keys != {}: + for key in row_keys: + keys["items"].append(row_keys[key]) + + if keys != {}: + path = os.path.join(path_to, file) + with open(path, "w") as f: + json.dump(keys, f, indent=2) \ No newline at end of file diff --git a/views/data_inference.py b/views/data_inference.py new file mode 100644 index 0000000000000000000000000000000000000000..48beb5f2c5fad0bc035360fcee07e83471c55370 --- /dev/null +++ b/views/data_inference.py @@ -0,0 +1,219 @@ +import streamlit as st +import os +import time +from PIL import Image +import math +from streamlit_sparrow_labeling import st_sparrow_labeling +import requests +from config import settings +import json + + +class DataInference: + class Model: + # pageTitle = "Data Inference" + subheader_2 = "Upload" + initial_msg = "Please upload a file for inference" + + upload_help = "Upload a file to extract data from it" + upload_button_text = "Upload" + upload_button_text_desc = "Choose a file" + + extract_data = "Extract Data" + + model_in_use = "donut" + + img_file = None + + def set_image_file(self, img_file): + st.session_state['img_file'] = img_file + + def get_image_file(self): + if 'img_file' not in st.session_state: + return None + return st.session_state['img_file'] + + data_result = None + + def set_data_result(self, data_result): + st.session_state['data_result'] = data_result + + def get_data_result(self): + if 'data_result' not in st.session_state: + return None + return st.session_state['data_result'] + + def view(self, model, ui_width, device_type, device_width): + # st.title(model.pageTitle) + + with st.sidebar: + st.markdown("---") + st.subheader(model.subheader_2) + + with st.form("upload-form", clear_on_submit=True): + uploaded_file = st.file_uploader(model.upload_button_text_desc, accept_multiple_files=False, + type=['png', 'jpg', 'jpeg'], + help=model.upload_help) + submitted = st.form_submit_button(model.upload_button_text) + + if submitted and uploaded_file is not None: + ret = self.upload_file(uploaded_file) + + if ret is not False: + model.set_image_file(ret) + model.set_data_result(None) + + if model.get_image_file() is not None: + doc_img = Image.open(model.get_image_file()) + doc_height = doc_img.height + doc_width = doc_img.width + + canvas_width, number_of_columns = self.canvas_available_width(ui_width, doc_width, device_type, + device_width) + + if number_of_columns > 1: + col1, col2 = st.columns([number_of_columns, 10 - number_of_columns]) + with col1: + self.render_doc(model, doc_img, canvas_width, doc_height, doc_width) + with col2: + self.render_results(model) + else: + self.render_doc(model, doc_img, canvas_width, doc_height, doc_width) + self.render_results(model) + else: + st.title(model.initial_msg) + + def upload_file(self, uploaded_file): + timestamp = str(time.time()) + timestamp = timestamp.replace(".", "") + + file_name, file_extension = os.path.splitext(uploaded_file.name) + uploaded_file.name = file_name + "_" + timestamp + file_extension + + if os.path.exists(os.path.join("docs/inference/", uploaded_file.name)): + st.write("File already exists") + return False + + if len(uploaded_file.name) > 500: + st.write("File name too long") + return False + + with open(os.path.join("docs/inference/", uploaded_file.name), "wb") as f: + f.write(uploaded_file.getbuffer()) + + st.success("File uploaded successfully") + + return os.path.join("docs/inference/", uploaded_file.name) + + def canvas_available_width(self, ui_width, doc_width, device_type, device_width): + doc_width_pct = (doc_width * 100) / ui_width + if doc_width_pct < 45: + canvas_width_pct = 37 + elif doc_width_pct < 55: + canvas_width_pct = 49 + else: + canvas_width_pct = 60 + + if ui_width > 700 and canvas_width_pct == 37 and device_type == "desktop": + return math.floor(canvas_width_pct * ui_width / 100), 4 + elif ui_width > 700 and canvas_width_pct == 49 and device_type == "desktop": + return math.floor(canvas_width_pct * ui_width / 100), 5 + elif ui_width > 700 and canvas_width_pct == 60 and device_type == "desktop": + return math.floor(canvas_width_pct * ui_width / 100), 6 + else: + if device_type == "desktop": + ui_width = device_width - math.floor((device_width * 22) / 100) + elif device_type == "mobile": + ui_width = device_width - math.floor((device_width * 13) / 100) + return ui_width, 1 + + def render_doc(self, model, doc_img, canvas_width, doc_height, doc_width): + height = 1296 + width = 864 + + annotations_json = { + "meta": { + "version": "v0.1", + "split": "train", + "image_id": 0, + "image_size": { + "width": doc_width, + "height": doc_height + } + }, + "words": [] + } + + st_sparrow_labeling( + fill_color="rgba(0, 151, 255, 0.3)", + stroke_width=2, + stroke_color="rgba(0, 50, 255, 0.7)", + background_image=doc_img, + initial_rects=annotations_json, + height=height, + width=width, + drawing_mode="transform", + display_toolbar=False, + update_streamlit=False, + canvas_width=canvas_width, + doc_height=doc_height, + doc_width=doc_width, + image_rescale=True, + key="doc_annotation" + model.get_image_file() + ) + + def render_results(self, model): + with st.form(key="results_form"): + button_placeholder = st.empty() + + submit = button_placeholder.form_submit_button(model.extract_data, type="primary") + if 'inference_error' in st.session_state: + st.error(st.session_state.inference_error) + del st.session_state.inference_error + + if submit: + button_placeholder.empty() + + api_url = "https://katanaml-org-sparrow-ml.hf.space/api-inference/v1/sparrow-ml/inference" + file_path = model.get_image_file() + + with open(file_path, "rb") as file: + model_in_use = model.model_in_use + sparrow_key = settings.sparrow_key + + # Prepare the payload + files = { + 'file': (file.name, file, 'image/jpeg') + } + + data = { + 'image_url': '', + 'model_in_use': model_in_use, + 'sparrow_key': sparrow_key + } + + with st.spinner("Extracting data from document..."): + response = requests.post(api_url, data=data, files=files, timeout=180) + if response.status_code != 200: + print('Request failed with status code:', response.status_code) + print('Response:', response.text) + + st.session_state["inference_error"] = "Error extracting data from document" + st.experimental_rerun() + + model.set_data_result(response.text) + + # Display JSON data in Streamlit + st.markdown("---") + st.json(response.text) + + # replace file extension to json + file_path = file_path.replace(".jpg", ".json") + with open(file_path, "w") as f: + json.dump(response.text, f, indent=2) + + st.experimental_rerun() + else: + if model.get_data_result() is not None: + st.markdown("---") + st.json(model.get_data_result()) \ No newline at end of file diff --git a/views/data_review.py b/views/data_review.py new file mode 100644 index 0000000000000000000000000000000000000000..d5d3c719ce7870e3cb2e5f227a57c34fd2e671cf --- /dev/null +++ b/views/data_review.py @@ -0,0 +1,165 @@ +import streamlit as st +from natsort import natsorted +import os +from PIL import Image +import math +from streamlit_sparrow_labeling import st_sparrow_labeling +import json + + +class DataReview: + class Model: + # pageTitle = "Data Review" + subheader_2 = "Select" + subheader_3 = "Result" + selection_text = "File to review" + initial_msg = "Please select a file to review" + + img_file = None + + def set_image_file(self, img_file): + st.session_state['img_file_review'] = img_file + + def get_image_file(self): + if 'img_file_review' not in st.session_state: + return None + return st.session_state['img_file_review'] + + json_file = None + + def set_json_file(self, json_file): + st.session_state['json_file_review'] = json_file + + def get_json_file(self): + if 'json_file_review' not in st.session_state: + return None + return st.session_state['json_file_review'] + + def view(self, model, ui_width, device_type, device_width): + # st.title(model.pageTitle) + + with st.sidebar: + st.markdown("---") + st.subheader(model.subheader_2) + + # get list of files in inference directory + processed_file_names = self.get_processed_file_names('docs/inference/') + + if 'selection_index' not in st.session_state: + st.session_state['selection_index'] = 0 + selection_index = 0 + else: + selection_index = st.session_state['selection_index'] + + selection = st.selectbox(model.selection_text, processed_file_names, index=selection_index) + + selection_index = self.get_selection_index(selection, processed_file_names) + st.session_state['selection_index'] = selection_index + + img_file = "docs/inference/" + selection + ".jpg" + json_file = "docs/inference/" + selection + ".json" + + model.set_image_file(img_file) + model.set_json_file(json_file) + + if model.get_image_file() is not None: + doc_img = Image.open(model.get_image_file()) + doc_height = doc_img.height + doc_width = doc_img.width + + canvas_width, number_of_columns = self.canvas_available_width(ui_width, doc_width, device_type, + device_width) + + if number_of_columns > 1: + col1, col2 = st.columns([number_of_columns, 10 - number_of_columns]) + with col1: + pass + self.render_doc(model, doc_img, canvas_width, doc_height, doc_width) + with col2: + pass + self.render_results(model) + else: + pass + self.render_doc(model, doc_img, canvas_width, doc_height, doc_width) + self.render_results(model) + else: + st.title(model.initial_msg) + + + def get_processed_file_names(self, dir_name): + # get ordered list of files without file extension, excluding hidden files, with JSON extension only + file_names = [os.path.splitext(f)[0] for f in os.listdir(dir_name) if + os.path.isfile(os.path.join(dir_name, f)) and not f.startswith('.') and f.endswith('.json')] + file_names = natsorted(file_names) + return file_names + + def get_selection_index(self, file, files_list): + return files_list.index(file) + + def canvas_available_width(self, ui_width, doc_width, device_type, device_width): + doc_width_pct = (doc_width * 100) / ui_width + if doc_width_pct < 45: + canvas_width_pct = 37 + elif doc_width_pct < 55: + canvas_width_pct = 49 + else: + canvas_width_pct = 60 + + if ui_width > 700 and canvas_width_pct == 37 and device_type == "desktop": + return math.floor(canvas_width_pct * ui_width / 100), 4 + elif ui_width > 700 and canvas_width_pct == 49 and device_type == "desktop": + return math.floor(canvas_width_pct * ui_width / 100), 5 + elif ui_width > 700 and canvas_width_pct == 60 and device_type == "desktop": + return math.floor(canvas_width_pct * ui_width / 100), 6 + else: + if device_type == "desktop": + ui_width = device_width - math.floor((device_width * 22) / 100) + elif device_type == "mobile": + ui_width = device_width - math.floor((device_width * 13) / 100) + return ui_width, 1 + + + def render_doc(self, model, doc_img, canvas_width, doc_height, doc_width): + height = 1296 + width = 864 + + annotations_json = { + "meta": { + "version": "v0.1", + "split": "train", + "image_id": 0, + "image_size": { + "width": doc_width, + "height": doc_height + } + }, + "words": [] + } + + st_sparrow_labeling( + fill_color="rgba(0, 151, 255, 0.3)", + stroke_width=2, + stroke_color="rgba(0, 50, 255, 0.7)", + background_image=doc_img, + initial_rects=annotations_json, + height=height, + width=width, + drawing_mode="transform", + display_toolbar=False, + update_streamlit=False, + canvas_width=canvas_width, + doc_height=doc_height, + doc_width=doc_width, + image_rescale=True, + key="doc_annotation" + model.get_image_file() + ) + + def render_results(self, model): + json_file = model.get_json_file() + if json_file is not None: + with open(json_file) as f: + data_json = json.load(f) + st.subheader(model.subheader_3) + st.markdown("---") + st.json(data_json) + st.markdown("---") \ No newline at end of file diff --git a/views/model_training.py b/views/model_training.py new file mode 100644 index 0000000000000000000000000000000000000000..45f8eb41d12a318abb58383b30b7434fdf1c674a --- /dev/null +++ b/views/model_training.py @@ -0,0 +1,9 @@ +import streamlit as st + + +class ModelTraining: + class Model: + pageTitle = "Model Training" + + def view(self, model): + st.title(model.pageTitle) diff --git a/views/model_tuning.py b/views/model_tuning.py new file mode 100644 index 0000000000000000000000000000000000000000..b1ddafc7f4307f320187e7348d992aef31c4c231 --- /dev/null +++ b/views/model_tuning.py @@ -0,0 +1,9 @@ +import streamlit as st + + +class ModelTuning: + class Model: + pageTitle = "Model Tuning" + + def view(self, model): + st.title(model.pageTitle) diff --git a/views/setup.py b/views/setup.py new file mode 100644 index 0000000000000000000000000000000000000000..574df17cd97ba1a1617ef72271e2c03fcc6882de --- /dev/null +++ b/views/setup.py @@ -0,0 +1,233 @@ +import streamlit as st +import json +import pandas as pd +from tools import agstyler +from tools.agstyler import PINLEFT +from toolbar import component_toolbar_buttons + + +class Setup: + class Model: + header1 = "Labels" + header2 = "Groups" + labels_file = "docs/labels.json" + groups_file = "docs/groups.json" + + def view(self, model): + tab = st.radio("Select", ["Labels", "Groups"], horizontal=True, label_visibility="collapsed") + + if tab == "Labels": + st.title(model.header1) + self.setup_labels(model) + elif tab == "Groups": + st.title(model.header2) + self.setup_groups(model) + + def setup_labels(self, model): + self.action_event = False + if 'action' not in st.session_state: + st.session_state['action'] = None + + with open(model.labels_file, "r") as f: + labels_json = json.load(f) + + labels = labels_json["labels"] + + data = [] + for label in labels: + data.append({'id': label['id'], 'name': label['name'], 'description': label['description']}) + self.df = pd.DataFrame(data) + + formatter = { + 'id': ('ID', {'hide': True}), + 'name': ('Label', {**PINLEFT, 'editable': True}), + 'description': ('Description', {**PINLEFT, 'editable': True}) + } + + def run_component(props): + value = component_toolbar_buttons(key='toolbar_buttons_labels', **props) + return value + + def handle_event(value): + if value is not None: + if 'action_timestamp' not in st.session_state: + self.action_event = True + st.session_state['action_timestamp'] = value['timestamp'] + else: + if st.session_state['action_timestamp'] != value['timestamp']: + self.action_event = True + st.session_state['action_timestamp'] = value['timestamp'] + else: + self.action_event = False + + if value is not None and value['action'] == 'create' and self.action_event: + if st.session_state['action'] != 'delete': + max_id = self.df['id'].max() + self.df.loc[-1] = [max_id + 1, '', ''] # adding a row + self.df.index = self.df.index + 1 # shifting index + self.df.sort_index(inplace=True) + st.session_state['action'] = 'create' + elif value is not None and value['action'] == 'delete' and self.action_event: + if st.session_state['action'] != 'delete' and st.session_state['action'] != 'create': + rows = st.session_state['selected_rows'] + if len(rows) > 0: + idx = rows[0]['_selectedRowNodeInfo']['nodeRowIndex'] + self.df.drop(self.df.index[idx], inplace=True) + self.df.reset_index(drop=True, inplace=True) + st.session_state['action'] = 'delete' + elif value is not None and value['action'] == 'save' and self.action_event: + st.session_state['action'] = 'save' + + props = { + 'buttons': { + 'create': False, + 'delete': False, + 'save': False, + } + } + + handle_event(run_component(props)) + + if st.session_state['action'] == 'save' and 'response' in st.session_state: + if st.session_state['response'] is not None: + self.df = st.session_state['response'] + st.session_state['response'] = None + + if st.session_state['action'] == 'create' and 'response' in st.session_state: + if st.session_state['response'] is not None: + self.df = st.session_state['response'] + + if st.session_state['action'] == 'delete' and 'response' in st.session_state: + if st.session_state['response'] is not None: + self.df = st.session_state['response'] + + response = agstyler.draw_grid( + self.df, + formatter=formatter, + fit_columns=True, + pagination_size=10, + selection="single", + use_checkbox=False + ) + + rows = response['selected_rows'] + st.session_state['selected_rows'] = rows + + if st.session_state['action'] == 'create' and self.action_event: + st.session_state['response'] = response['data'] + elif st.session_state['action'] == 'delete' and self.action_event: + st.session_state['response'] = response['data'] + elif st.session_state['action'] == 'save' and self.action_event: + data = response['data'].values.tolist() + rows = [] + for row in data: + rows.append({'id': row[0], 'name': row[1], 'description': row[2]}) + + labels_json['labels'] = rows + with open(model.labels_file, "w") as f: + json.dump(labels_json, f, indent=2) + + + def setup_groups(self, model): + self.action_event = False + if 'action' not in st.session_state: + st.session_state['action'] = None + + with open(model.groups_file, "r") as f: + groups_json = json.load(f) + + groups = groups_json["groups"] + + data = [] + for group in groups: + data.append({'id': group['id'], 'name': group['name'], 'description': group['description']}) + self.df = pd.DataFrame(data) + + formatter = { + 'id': ('ID', {'hide': True}), + 'name': ('Group', {**PINLEFT, 'editable': True}), + 'description': ('Description', {**PINLEFT, 'editable': True}) + } + + def run_component(props): + value = component_toolbar_buttons(key='toolbar_buttons_groups', **props) + return value + + def handle_event(value): + if value is not None: + if 'action_timestamp' not in st.session_state: + self.action_event = True + st.session_state['action_timestamp'] = value['timestamp'] + else: + if st.session_state['action_timestamp'] != value['timestamp']: + self.action_event = True + st.session_state['action_timestamp'] = value['timestamp'] + else: + self.action_event = False + + if value is not None and value['action'] == 'create' and self.action_event: + if st.session_state['action'] != 'delete': + max_id = self.df['id'].max() + self.df.loc[-1] = [max_id + 1, '', ''] # adding a row + self.df.index = self.df.index + 1 # shifting index + self.df.sort_index(inplace=True) + st.session_state['action'] = 'create' + elif value is not None and value['action'] == 'delete' and self.action_event: + if st.session_state['action'] != 'delete' and st.session_state['action'] != 'create': + rows = st.session_state['selected_rows'] + if len(rows) > 0: + idx = rows[0]['_selectedRowNodeInfo']['nodeRowIndex'] + self.df.drop(self.df.index[idx], inplace=True) + self.df.reset_index(drop=True, inplace=True) + st.session_state['action'] = 'delete' + elif value is not None and value['action'] == 'save' and self.action_event: + st.session_state['action'] = 'save' + + props = { + 'buttons': { + 'create': False, + 'delete': False, + 'save': False, + } + } + + handle_event(run_component(props)) + + if st.session_state['action'] == 'save' and 'response' in st.session_state: + if st.session_state['response'] is not None: + self.df = st.session_state['response'] + st.session_state['response'] = None + + if st.session_state['action'] == 'create' and 'response' in st.session_state: + if st.session_state['response'] is not None: + self.df = st.session_state['response'] + + if st.session_state['action'] == 'delete' and 'response' in st.session_state: + if st.session_state['response'] is not None: + self.df = st.session_state['response'] + + response = agstyler.draw_grid( + self.df, + formatter=formatter, + fit_columns=True, + pagination_size=10, + selection="single", + use_checkbox=False + ) + + rows = response['selected_rows'] + st.session_state['selected_rows'] = rows + + if st.session_state['action'] == 'create' and self.action_event: + st.session_state['response'] = response['data'] + elif st.session_state['action'] == 'delete' and self.action_event: + st.session_state['response'] = response['data'] + elif st.session_state['action'] == 'save' and self.action_event: + data = response['data'].values.tolist() + rows = [] + for row in data: + rows.append({'id': row[0], 'name': row[1], 'description': row[2]}) + + groups_json['groups'] = rows + with open(model.groups_file, "w") as f: + json.dump(groups_json, f, indent=2)