{"info":{"_postman_id":"9a52ba13-ad6e-4f12-8036-01dafdda3bc5","name":"API Sync (Public Documentation)","description":"<html><head></head><body><p>Use this documentation to integrate your system with Loop 4 Readymix Application.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>Authentication is performed through the \"token\" parameter in the Http request header.<br>Request your company token with Loop 4 Readymix technical support or your Dealer.</p>\n<h1 id=\"error-codes\">Error Codes</h1>\n<p><strong>400 – Bad Request</strong><br>Data sent incorrectly or nonstandard</p>\n<p><strong>403 – Forbidden</strong><br>Incorrect or not informed token</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Error Codes","slug":"error-codes"}],"owner":"772905","collectionId":"9a52ba13-ad6e-4f12-8036-01dafdda3bc5","publishedId":"2s9YRDyqKV","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"3F64FF"},"publishDate":"2024-06-20T15:39:56.000Z"},"item":[{"name":"Auth","item":[{"name":"Authenticate","id":"f20eca86-7496-415c-b488-d981cce8df5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\" : \"gustavo@loop4.com.br\",\n    \"password\" : \"Gustavo@123\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.360kpi.io/auth/api-authenticate","description":"<h2 id=\"access-with-firebase-token\">Access with Firebase Token</h2>\n<p>If your company uses Firebase authentication, some adjustments are required when making requests to the Sync API. Before sending requests, you must first log in with a valid user and obtain a Firebase token.</p>\n<p>To enable this, follow the steps below to set up the necessary configuration and permissions.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td>Required</td>\n<td>string</td>\n<td>Email of a user previously registered on Loop.</td>\n</tr>\n<tr>\n<td>password</td>\n<td>Required</td>\n<td>string</td>\n<td>Password used for a user registered on Loop.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"enabling-user-access-to-the-api\">Enabling User Access to the API</h2>\n<ol>\n<li><p>Go to <strong>Administration</strong></p>\n</li>\n<li><p>Click on <strong>Users</strong></p>\n</li>\n<li><p>Add or Edit a user</p>\n</li>\n<li><p>Open the <strong>Permissions</strong> tab</p>\n</li>\n<li><p>Check the option <strong>“Access to the SYNC API”</strong></p>\n</li>\n</ol>\n<img src=\"https://content.pstmn.io/3be92bf0-6e4f-4315-84f2-cbcdd485e9ef/aW1hZ2UucG5n\" width=\"1024\" height=\"1024\" />\n\n<h3 id=\"getting-the-firebase-token\">Getting the Firebase Token</h3>\n<p>After logging in via the Firebase Authentication API, the <strong>token will be returned in the</strong> <strong><code>data</code></strong> <strong>field</strong> of the response.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-csharp\">{\n    \"success\": true,\n    \"data\": {\n        \"id\": \"jk5wjqsdPjRCsDErShp8yJeR9E53\",\n        \"token\": \"eyJhbGciOiJSUzI1NiIsImtpZCI6Ijk1MWRkZTkzMmViYWNkODhhZmIwMDM3YmZlZDhmNjJiMDdmMDg2NmIiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vY2F0MzMtNjkxMzEiLCJhdWQiOiJjYXQzMy02OTEzMSIsImF1dGhfdGltZSI6MTc1Mzg4ODQ2MCwidXNlcl9pZCI6ImprNXdqcXNkUGpSQ3NERXJTaHA4eUplUjlFNTMiLCJzdWIiOiJqazV3anFzZFBqUkNzREVyU2hwOHlKZVI5RTUzIiwiaWF0IjoxNzUzODg4NDYwLCJleHAiOjE3NTM4OTIwNjAsImVtYWlsIjoidm9sQGxvb3A0LmNvbS5iciIsImVtYWlsX3ZlcmlmaWVkIjpmYWxzZSwiZmlyZWJhc2UiOnsiaWRlbnRpdGllcyI6eyJlbWFpbCI6WyJ2b2xAbG9vcDQuY29tLmJyIl19LCJzaWduX2luX3Byb3ZpZGVyIjoicGFzc3dvcmQifX0.IhW8rzRBlXTMOsI8Rgzjn59Ihrl9-JmVttbiILlEzi9drQS5dKcHST8Fve_1s30P3WX-xcD8_Mrm-TupKNEtwSu7Hf5gWRpopgW-ZoaAdNfpiGClYymz6vB63qAI3AIjyx2uBvzQQk2cV3gvOECc8NiRC_RXmb0HhG6JEc69OfEp3HoB4qJGCtLvtsxp4dJj-RIE89dyrJaQzk6SrvqtOI1Omd3OplMsJJs1EnscOndJQoHp63DEBo7DRJ5aYTzIagSedqwABPlfSHqVYLseUsaAOgq4zvJ2lpC-XdVrWA5kT_cwEfdjUaS9Ntg-DQzpRnWkv8rk33FIUF0Gn6OQnA\"\n    },\n    \"keylang\": null,\n    \"message\": \"\"\n}\n\n</code></pre>\n<p>You must extract it and store it in a variable (e.g., <code>token</code>) to use in your API requests.</p>\n<h2 id=\"sending-requests-with-firebase-token\">Sending Requests with Firebase Token</h2>\n<p>After completing the previous steps, all requests to the Sync API must include a valid Firebase token in the header.</p>\n<p>Here’s an example using curl:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\">curl --location 'https://integration.readymix.io/api/sync/... \\\n--header 'firebase: your-company-token'\n--data-raw ''\n\n</code></pre>\n<h2 id=\"token-expiration\">Token Expiration</h2>\n<p>The Firebase token is valid for 1 hour.<br />After this period, the authentication process must be repeated to obtain a new valid token.</p>\n","urlObject":{"protocol":"https","path":["auth","api-authenticate"],"host":["api","360kpi","io"],"query":[],"variable":[]}},"response":[{"id":"7add7d8b-f226-48d9-8cd1-7e947f00532a","name":"Error Records","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\" : \"example@loop4.com.br\",\n    \"password\" : \"**\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.360kpi.io/auth/authenticate"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 30 Jul 2025 15:40:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"206"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"reason\": \"label.invalid_credencials\",\n    \"debug_reason\": \"label.invalid_credencials\",\n    \"data\": null,\n    \"extra_data\": null,\n    \"translate\": true,\n    \"unlockable\": false,\n    \"variables_to_replace\": null\n}"},{"id":"abaf6f58-c947-479d-a7ec-f34a59cfb8bf","name":"Success Records","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\" : \"gustavo@loop4.com.br\",\n    \"password\" : \"Gustavo@123\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.360kpi.io/auth/api-authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 30 Jul 2025 18:35:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1024"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": \"61MaTAFUH5fJLo1BmMYoF4wspvI3\",\n        \"token\": \"eyJhbGciOiJSUzI1NiIsImtpZCI6Ijk1MWRkZTkzMmViYWNkODhhZmIwMDM3YmZlZDhmNjJiMDdmMDg2NmIiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vY2F0MzMtNjkxMzEiLCJhdWQiOiJjYXQzMy02OTEzMSIsImF1dGhfdGltZSI6MTc1MzkwMDUyMSwidXNlcl9pZCI6IjYxTWFUQUZVSDVmSkxvMUJtTVlvRjR3c3B2STMiLCJzdWIiOiI2MU1hVEFGVUg1ZkpMbzFCbU1Zb0Y0d3NwdkkzIiwiaWF0IjoxNzUzOTAwNTIxLCJleHAiOjE3NTM5MDQxMjEsImVtYWlsIjoiZ3VzdGF2b0Bsb29wNC5jb20uYnIiLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiZmlyZWJhc2UiOnsiaWRlbnRpdGllcyI6eyJlbWFpbCI6WyJndXN0YXZvQGxvb3A0LmNvbS5iciJdfSwic2lnbl9pbl9wcm92aWRlciI6InBhc3N3b3JkIn19.g9CvoKOuCZEIm-6I2j4boRy2ni_bcaVTwP5Md0OsVEUYWjUyBqERnW6VgAL_x87e80vRxVTOuMG1-_mXDmI8Fq3_un3MKotM9JyHIA0cHnOrcQeGY0lUUtycQFo9Rn4oYMgNLhMbvaEXaQYjChsjfJWRRhsdK5jnfzGzAF2RtHrMPYZCjTnJ-plgEJTlwD7fsD8ELjA07XueMYMWDc0A3jZ40_3fyl3UD-gktILNbHd6ajB5aGBI7OLolo9gDUmxLj-cvDbwm_4KNBRBjfhrczX6FL1V9gsOAwza0FTOdPf98WeUFxFsKVPJQEt7SKOwjfHlcG7inxIhn5GnDOq_bA\"\n    },\n    \"keylang\": null,\n    \"message\": \"\"\n}"}],"_postman_id":"f20eca86-7496-415c-b488-d981cce8df5e"}],"id":"c900953a-3eeb-481c-a8db-e5a36ab7ec3a","_postman_id":"c900953a-3eeb-481c-a8db-e5a36ab7ec3a","description":""},{"name":"Customers","item":[{"name":"Insert Customers","id":"e3275467-c9ff-40ba-b91d-9291ab5fbd20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"customer_code\": \"C001\",\n        \"customer_name\": \"H&A Corporations\",\n        \"customer_legal_name\": \"H&A Corporations LLC\",\n        \"customer_person_type\": \"L\",\n        \"customer_document\": \"13008090001/23\",\n        \"customer_document2\": \"1300002\",\n        \"customer_document3\": \"1300003\",\n        \"customer_document4\": \"1300804\",\n        \"customer_email\": \"customer@email.com\",\n        \"customer_country_code\": \"+1\",\n        \"customer_phone_number\": \"92830493\",\n        \"customer_note\": \"This is a very good customer\",\n        \"customer_inactive\": 0,\n        \"customer_addresses\" : [\n            {\n                \"address_code\"  : \"ADR001\",\n                \"address_name\": \"Name of the address\",\n                \"address_street\": \"Street 1\",\n                \"address_number\": \"100\",\n                \"address_complement\": \"room 405\",\n                \"address_district\":\"downtown\",\n                \"address_city\": \"Name of the City\",                \n                \"address_state\":\"DE\",\n                \"address_zip\":\"18900\",\n                \"address_lat\":40.689687,\n                \"address_lng\":-74.045707,\n                \"address_radius\":200,\n                \"address_is_legal\":1,\n                \"address_read_only\":1,\n                \"address_notes\": \"Some notes about this address\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/customers","description":"<p>Creates / Updates Customers</p>\n<p>The customers will be created or updated on each request.<br />If the customer code exists, it will be updated, if it does not exist it will be created.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customer_code</td>\n<td>Required</td>\n<td>string</td>\n<td>The customer code, this value is used to identify each customer, must be unique per customer</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>Required</td>\n<td>string</td>\n<td>Name of the customer</td>\n</tr>\n<tr>\n<td>customer_legal_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>Legal name costumers</td>\n</tr>\n<tr>\n<td>customer_person_type</td>\n<td>Optional</td>\n<td>string</td>\n<td>\"L\" - Legal Person  <br />\"N\" - Natural Person</td>\n</tr>\n<tr>\n<td>customer_document</td>\n<td>Optional</td>\n<td>string</td>\n<td>Customers document information</td>\n</tr>\n<tr>\n<td>customer_email</td>\n<td>Optional</td>\n<td>string</td>\n<td>Customer Email</td>\n</tr>\n<tr>\n<td>customer_country_code</td>\n<td>Opitional</td>\n<td>string</td>\n<td>Costumer Country number code</td>\n</tr>\n<tr>\n<td>customer_phone_number</td>\n<td>Optional</td>\n<td>string</td>\n<td>Customer phone number with country code</td>\n</tr>\n<tr>\n<td>customer_note</td>\n<td>Optional</td>\n<td>string</td>\n<td>General Notes about the customer</td>\n</tr>\n<tr>\n<td>customer_inactive</td>\n<td>Optional</td>\n<td>int</td>\n<td>0 - False  <br />1 - True</td>\n</tr>\n<tr>\n<td>customer_addresses</td>\n<td>Optional</td>\n<td>array</td>\n<td>List of Addresses objects that belongs to this customer</td>\n</tr>\n</tbody>\n</table>\n</div><p>Address Object Description</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>address_street</td>\n<td>Required</td>\n<td>string</td>\n<td>General Street lines</td>\n</tr>\n<tr>\n<td>address_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Unique code that identifies the address</td>\n</tr>\n<tr>\n<td>address_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>Name of the Address</td>\n</tr>\n<tr>\n<td>address_number</td>\n<td>Optional</td>\n<td>string</td>\n<td>Number of the Address</td>\n</tr>\n<tr>\n<td>address_complement</td>\n<td>Optional</td>\n<td>string</td>\n<td>Complement Address</td>\n</tr>\n<tr>\n<td>address_district</td>\n<td>Optional</td>\n<td>string</td>\n<td>District of the Address</td>\n</tr>\n<tr>\n<td>address_city</td>\n<td>Optional</td>\n<td>string</td>\n<td>Name of the City</td>\n</tr>\n<tr>\n<td>address_state</td>\n<td>Optional</td>\n<td>string</td>\n<td>State of the Address</td>\n</tr>\n<tr>\n<td>address_zip</td>\n<td>Optional</td>\n<td>string</td>\n<td>ZIp of the Address</td>\n</tr>\n<tr>\n<td>address_lat</td>\n<td>Optional</td>\n<td>float</td>\n<td>Latitude of The Address</td>\n</tr>\n<tr>\n<td>address_lng</td>\n<td>Optional</td>\n<td>float</td>\n<td>Longitude of The Address</td>\n</tr>\n<tr>\n<td>address_radius</td>\n<td>Optional</td>\n<td>float</td>\n<td>Radius Of The Address</td>\n</tr>\n<tr>\n<td>address_is_legal</td>\n<td>Optional</td>\n<td>int</td>\n<td>0 - False  <br />1 - True</td>\n</tr>\n<tr>\n<td>address_read_only</td>\n<td>Optional</td>\n<td>int</td>\n<td>0 - False  <br />1 - True</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>Optional</td>\n<td>string</td>\n<td>General Notes</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","customers"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"0cd84889-659d-40a7-9b73-44402120c402","name":"Created Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n    {\n        \"customer_code\": \"C1\",\n        \"customer_name\": \"H&A Corporations\",\n        \"customer_legal_name\": \"H&A Corporations LLC\",\n        \"customer_person_type\": \"L\",\n        \"customer_document\": \"13008090001/23\",\n        \"customer_document2\": \"1300002\",\n        \"customer_document3\": \"1300003\",\n        \"customer_document4\": \"1300804\",\n        \"customer_email\": \"customer@email.com\",\n        \"customer_country_code\": \"+1\",\n        \"customer_phone_number\": \"92830493\",\n        \"customer_note\": \"This is a very good customer\",\n        \"customer_inactive\": 0,\n        \"customer_addresses\" : [\n            {\n                \"address_code\"  : \"ADR001\",\n                \"address_name\": \"Name of the address\",\n                \"address_street\": \"Street 1\",\n                \"address_number\": \"100\",\n                \"address_complement\": \"room 405\",\n                \"address_district\":\"downtown\",\n                \"address_city\": \"Name of the City\",                \n                \"address_state\":\"DE\",\n                \"address_zip\":\"18900\",\n                \"address_lat\":40.689687,\n                \"address_lng\":-74.045707,\n                \"address_radius\":200,\n                \"address_is_legal\":1,\n                \"address_read_only\":1,\n                \"address_notes\": \"Some notes about this address\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.readymix.io/api/sync/customers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 19:10:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"134"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"customer_code\": \"C1\",\n                \"status\": \"Created\"\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"741e1390-365b-4418-8d60-373701626957","name":"Update Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n    {\n        \"customer_code\": \"C1\",\n        \"customer_name\": \"H&A Corporations\",\n        \"customer_legal_name\": \"H&A Corporations LLC\",\n        \"customer_person_type\": \"L\",\n        \"customer_document\": \"13008090001/23\",\n        \"customer_document2\": \"1300002\",\n        \"customer_document3\": \"1300003\",\n        \"customer_document4\": \"1300804\",\n        \"customer_email\": \"customer@email.com\",\n        \"customer_country_code\": \"+1\",\n        \"customer_phone_number\": \"92830493\",\n        \"customer_note\": \"This is a very good customer\",\n        \"customer_inactive\": 0,\n        \"customer_addresses\" : [\n            {\n                \"address_code\"  : \"ADR001\",\n                \"address_name\": \"Name of the address\",\n                \"address_street\": \"Street 1\",\n                \"address_number\": \"100\",\n                \"address_complement\": \"room 405\",\n                \"address_district\":\"downtown\",\n                \"address_city\": \"Name of the City\",                \n                \"address_state\":\"DE\",\n                \"address_zip\":\"18900\",\n                \"address_lat\":40.689687,\n                \"address_lng\":-74.045707,\n                \"address_radius\":200,\n                \"address_is_legal\":1,\n                \"address_read_only\":1,\n                \"address_notes\": \"Some notes about this address\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.readymix.io/api/sync/customers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 19:14:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"134"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"customer_code\": \"C1\",\n                \"status\": \"Updated\"\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"e2d73506-437c-4846-8e58-798814ba5e36","name":"Error Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n    {\n        \"customer_name\": \"H&A Corporations\",\n        \"customer_legal_name\": \"H&A Corporations LLC\",\n        \"customer_person_type\": \"L\",\n        \"customer_document\": \"13008090001/23\",\n        \"customer_document2\": \"1300002\",\n        \"customer_document3\": \"1300003\",\n        \"customer_document4\": \"1300804\",\n        \"customer_email\": \"customer@email.com\",\n        \"customer_country_code\": \"+1\",\n        \"customer_phone_number\": \"92830493\",\n        \"customer_note\": \"This is a very good customer\",\n        \"customer_inactive\": 0,\n        \"customer_addresses\" : [\n            {\n                \"address_code\"  : \"ADR001\",\n                \"address_name\": \"Name of the address\",\n                \"address_street\": \"Street 1\",\n                \"address_number\": \"100\",\n                \"address_complement\": \"room 405\",\n                \"address_district\":\"downtown\",\n                \"address_city\": \"Name of the City\",                \n                \"address_state\":\"DE\",\n                \"address_zip\":\"18900\",\n                \"address_lat\":40.689687,\n                \"address_lng\":-74.045707,\n                \"address_radius\":200,\n                \"address_is_legal\":1,\n                \"address_read_only\":1,\n                \"address_notes\": \"Some notes about this address\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.readymix.io/api/sync/customers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 19:16:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"167"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [],\n        \"failed_records\": [\n            {\n                \"customer_code\": \"Not Provided\",\n                \"reason\": \"Please provide a customer code\"\n            }\n        ]\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"e3275467-c9ff-40ba-b91d-9291ab5fbd20"},{"name":"List Customers","id":"692b2910-04f9-4d66-959b-cf6f636143c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/customers","description":"<p>List Costumers to Loop 4 Readymix Application your company token.</p>\n","urlObject":{"path":["api","sync","customers"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"cd95de98-be13-4df8-b356-21441355d2dc","name":"List Customers","originalRequest":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/customers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 19:30:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"4526"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"total_pages\": 1,\n        \"total_items\": 5,\n        \"page_index\": 1,\n        \"page_total_items\": 5,\n        \"page_items\": [\n            {\n                \"id\": 352165,\n                \"code\": \"CL 01\",\n                \"projects\": [\n                    {\n                        \"id\": 547510165,\n                        \"codcontrato\": \"CONT 01\",\n                        \"clinome\": \"MRV - Brasilia\",\n                        \"cliendereco\": \"Rua Sria , 33, Guará, Brasília, Distrito Federal, 71065-330\",\n                        \"codvendedor\": null,\n                        \"pincode\": null,\n                        \"lat\": null,\n                        \"lng\": null,\n                        \"polyg\": null,\n                        \"detached\": false,\n                        \"customer_key\": \"406538217\",\n                        \"dtstart\": null,\n                        \"dtend\": null,\n                        \"active\": null,\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 100000,\n                        \"credit_delivered\": 0,\n                        \"notes\": null,\n                        \"start_date\": \"2024-01-16\",\n                        \"end_date\": \"2024-01-16\",\n                        \"has_max_quantity\": false,\n                        \"has_extra_quantity\": false,\n                        \"inactive\": false,\n                        \"all_plants\": true,\n                        \"is_b_side\": false,\n                        \"version\": 2,\n                        \"spent_total_value\": 0,\n                        \"display_price\": true,\n                        \"created_at\": \"2024-01-16T10:52:07-03:00\",\n                        \"updated_at\": \"2024-01-16T11:50:24-03:00\",\n                        \"po_required\": false,\n                        \"pre_client_name\": null,\n                        \"pre_address\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"company\": 511,\n                        \"plan_customer\": 352165,\n                        \"tms_address\": 568735,\n                        \"billing_address\": 568735,\n                        \"seller\": 82941,\n                        \"status\": 1293,\n                        \"fav_plant\": 2249,\n                        \"payment_method\": 119,\n                        \"payment_condition\": 2854,\n                        \"price_table\": null\n                    }\n                ],\n                \"name\": \"Construção MRV\",\n                \"email\": \"MRV@contato.com\",\n                \"phone\": \"1980805252\",\n                \"notes\": null,\n                \"document\": \"90999900999099090\",\n                \"document2\": \"90999900999099090\",\n                \"document3\": \"90999900999099090\",\n                \"document4\": \"90999900999099090\",\n                \"person_type\": \"L\",\n                \"legal_name\": \"90999900999099090\",\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": null,\n                \"is_b_side\": false,\n                \"legal_address\": null\n            },\n            {\n                \"id\": 355201,\n                \"code\": \"C001\",\n                \"projects\": [],\n                \"name\": \"H&A Corporations\",\n                \"email\": \"customer@email.com\",\n                \"phone\": \"92830493\",\n                \"notes\": \"This is a very good customer\",\n                \"document\": \"13008090001/23\",\n                \"document2\": \"1300002\",\n                \"document3\": \"1300003\",\n                \"document4\": \"1300804\",\n                \"person_type\": \"L\",\n                \"legal_name\": \"H&A Corporations LLC\",\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": null,\n                \"is_b_side\": false,\n                \"legal_address\": 576369\n            },\n            {\n                \"id\": 355205,\n                \"code\": \"C02\",\n                \"projects\": [],\n                \"name\": \"H&A Corporations\",\n                \"email\": \"customer@email.com\",\n                \"phone\": \"92830493\",\n                \"notes\": \"This is a very good customer\",\n                \"document\": \"13008090001/23\",\n                \"document2\": \"1300002\",\n                \"document3\": \"1300003\",\n                \"document4\": \"1300804\",\n                \"person_type\": \"L\",\n                \"legal_name\": \"H&A Corporations LLC\",\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": null,\n                \"is_b_side\": false,\n                \"legal_address\": 576361\n            },\n            {\n                \"id\": 355210,\n                \"code\": \"C1\",\n                \"projects\": [],\n                \"name\": \"H&A Corporations\",\n                \"email\": \"customer@email.com\",\n                \"phone\": \"92830493\",\n                \"notes\": \"This is a very good customer\",\n                \"document\": \"13008090001/23\",\n                \"document2\": \"1300002\",\n                \"document3\": \"1300003\",\n                \"document4\": \"1300804\",\n                \"person_type\": \"L\",\n                \"legal_name\": \"H&A Corporations LLC\",\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": null,\n                \"is_b_side\": false,\n                \"legal_address\": 576369\n            },\n            {\n                \"id\": 352166,\n                \"code\": \"CL 02\",\n                \"projects\": [\n                    {\n                        \"id\": 547510167,\n                        \"codcontrato\": \"CONT 02\",\n                        \"clinome\": \"Construção  do seu josé\",\n                        \"cliendereco\": \"Av Lázaro Queiroz , 120, Sede , Itapevi, São Paulo\",\n                        \"codvendedor\": null,\n                        \"pincode\": null,\n                        \"lat\": null,\n                        \"lng\": null,\n                        \"polyg\": null,\n                        \"detached\": false,\n                        \"customer_key\": \"365898525\",\n                        \"dtstart\": null,\n                        \"dtend\": null,\n                        \"active\": null,\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 22500,\n                        \"credit_delivered\": 7500,\n                        \"notes\": null,\n                        \"start_date\": \"2024-01-16\",\n                        \"end_date\": \"2024-01-16\",\n                        \"has_max_quantity\": false,\n                        \"has_extra_quantity\": false,\n                        \"inactive\": false,\n                        \"all_plants\": true,\n                        \"is_b_side\": false,\n                        \"version\": 4,\n                        \"spent_total_value\": 7500,\n                        \"display_price\": true,\n                        \"created_at\": \"2024-01-16T10:56:11-03:00\",\n                        \"updated_at\": \"2024-01-16T12:05:45-03:00\",\n                        \"po_required\": false,\n                        \"pre_client_name\": null,\n                        \"pre_address\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"company\": 511,\n                        \"plan_customer\": 352166,\n                        \"tms_address\": 568739,\n                        \"billing_address\": 568739,\n                        \"seller\": 82942,\n                        \"status\": 1295,\n                        \"fav_plant\": 2248,\n                        \"payment_method\": 118,\n                        \"payment_condition\": 2854,\n                        \"price_table\": null\n                    }\n                ],\n                \"name\": \"José Alameda\",\n                \"email\": \"jose@gmail\",\n                \"phone\": \"1152566221\",\n                \"notes\": null,\n                \"document\": null,\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": null,\n                \"is_b_side\": false,\n                \"legal_address\": null\n            }\n        ]\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"692b2910-04f9-4d66-959b-cf6f636143c4"},{"name":"List Customers V2","id":"83a32c67-074c-4e09-a8df-572b011f6ac6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":"https://integration.loop4.io/api/company/customers","urlObject":{"path":["api","company","customers"],"host":["https://integration.loop4.io"],"query":[{"disabled":true,"key":"created_at_gt","value":"2025-12-01 00:00:00"},{"disabled":true,"key":"updated_at_gt","value":"2025-12-01 00:00:00"},{"disabled":true,"key":"customer_codes","value":"CC1,CC2,CC3"},{"disabled":true,"key":"filter_only_empty_codes","value":"false"}],"variable":[]}},"response":[],"_postman_id":"83a32c67-074c-4e09-a8df-572b011f6ac6"}],"id":"58eefe0d-1870-4bfe-8271-0be4d91084e3","_postman_id":"58eefe0d-1870-4bfe-8271-0be4d91084e3","description":""},{"name":"Tickets","item":[{"name":"Insert Tickets","id":"a99eddd3-b692-4d7e-86ab-9c12945d3466","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"deliverycode\": \"049290\",\n        \"plantcode\": \"P001\",\n        \"truckcode\": \"M23\",\n        \"volume\": 12,\n        \"start\": \"2022-04-19 07:07:00\",\n        \"endload\": \"2022-04-19 07:27:00\",\n        \"productcode\": \"204C30P\",\n        \"productname\": \"CONC - GRADE C25/30 PUMP MIX\",\n        \"drivercode\": \"T20\",\n        \"driverdoc\":\"39383293923923\",\n        \"drivername\": \"ABG 009\",\n        \"customercode\": \"F068\",\n        \"customername\": \"FBA YAPI SANAYI TICARET A.S.\",\n        \"projectcode\": \"F068-BLUE\",\n        \"projectname\": \"FBA YAPI SANAYI TICARET A.S.\",\n        \"addresscode\": \"A0001\",\n        \"deliveryaddress\": \"BLUE HARBOUR BUSINESS CENTRE 1027 MALTA\",\n        \"ticket\": \"2022-04-19 06:00:00\",\n        \"invoice\": \"032882\",\n        \"loadingpoint\": \"94\",\n        \"sellercode\": \"KSA\",\n        \"sellername\": \"KURT SAMMUT\",\n        \"ordercode\": \"049290\",\n        \"seal\": \"222111\",\n        \"pump_volume\": 5,\n        \"pump_product_code\": \"B03\",\n        \"pump_product_name\": \"Bomba Volume\",\n        \"pump_truck_code\": \"P01\",\n        \"pump_driver_code\": \"MM\"   \n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/tickets","description":"<p>Send tickets to ReadyMix Application. You can use this method to insert / update tickets.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>deliverycode</td>\n<td>Required</td>\n<td>string</td>\n<td>Unique code for the trip - Ticket number in batch system If you have multiple plants and ticket numer repeat you can concatenate it with plant id.  <br />  <br /><strong>Example</strong>: \"058-0000090684\"</td>\n</tr>\n<tr>\n<td>endload</td>\n<td>Required</td>\n<td>string</td>\n<td>Date/Time in customer timezone that load finish.  <br />  <br /><strong>Format</strong>: \"YYYY-MM-DD HH:MM:SS (24h)  <br />  <br /><strong>Example</strong>: \"2019-10-24 18:58:00\"</td>\n</tr>\n<tr>\n<td>invoice</td>\n<td>Required</td>\n<td>string</td>\n<td>Use this field to inform an INVOICE NUMBER to your customer. If you don't have you can send a DELIVERY NOTE or DELIVERY CODE.  <br />  <br /><strong>Example</strong>: \"0000103298\"</td>\n</tr>\n<tr>\n<td>plantcode</td>\n<td>Required</td>\n<td>string</td>\n<td>Plant code in batch software/erp.  <br />  <br /><strong>Example</strong>: \"P01\"</td>\n</tr>\n<tr>\n<td>truckcode</td>\n<td>Required</td>\n<td>string</td>\n<td>Same truck code used in READYMIX TRACKING software.  <br />  <br /><strong>Example</strong>: \"1068\"</td>\n</tr>\n<tr>\n<td>volume</td>\n<td>Required</td>\n<td>float</td>\n<td>Concrete volume to be deliveried in this trip in your measure system (m3 / cubic yard ...). * you don't need to convert it (if you work in yard send in yard if you work in m3 send in m3).  <br />  <br /><strong>Example</strong>: 6</td>\n</tr>\n<tr>\n<td>productcode</td>\n<td>Required</td>\n<td>string</td>\n<td>Product code in batch software/erp.  <br />  <br />Example: \"<strong>140</strong>\"</td>\n</tr>\n<tr>\n<td>productname</td>\n<td>Required</td>\n<td>string</td>\n<td>Product name in batch software/erp.  <br />  <br /><strong>Example</strong>: \"h30 cpc50\"</td>\n</tr>\n<tr>\n<td>projectcode</td>\n<td>Required</td>\n<td>string</td>\n<td>Project code or customer code.  <br />  <br /><strong>Example</strong>: \"00046890\"</td>\n</tr>\n<tr>\n<td>customercode</td>\n<td>Required</td>\n<td>string</td>\n<td>Project code or customer code.  <br />  <br /><strong>Example</strong>: \"00046890\"</td>\n</tr>\n<tr>\n<td>customername</td>\n<td>Required</td>\n<td>string</td>\n<td>Project description or Customer Name.  <br />  <br /><strong>Example</strong>: \"PANAM. SUR KM 60.8 LA CHUTANA -CHILCA\"</td>\n</tr>\n<tr>\n<td>drivercode</td>\n<td>Required</td>\n<td>string</td>\n<td>This value is used to identify each driver, must be unique per driver.</td>\n</tr>\n<tr>\n<td>start</td>\n<td>Required</td>\n<td>string</td>\n<td>Date/Time in customer timezone that load start.  <br />  <br /><strong>Format</strong>: YYYY-MM-DD HH:MM:SS (24h)  <br />  <br /><strong>Example</strong>: \"2019-10-24 17:58:00\"</td>\n</tr>\n<tr>\n<td>endload</td>\n<td>Required</td>\n<td>string</td>\n<td>Date/Time in customer timezone that load ends.  <br />  <br /><strong>Format</strong>: YYYY-MM-DD HH:MM:SS (24h)  <br />  <br /><strong>Example</strong>: \"2019-10-24 17:58:00\"</td>\n</tr>\n<tr>\n<td>deliveryaddress</td>\n<td>Required</td>\n<td>string</td>\n<td>Delivery (JOB SITE) addres.  <br />  <br /><strong>Example</strong>: \"PANAM. SUR KM 60.8 LA CHUTANA -CHILCA\"</td>\n</tr>\n<tr>\n<td>drivername</td>\n<td>Opcional</td>\n<td>string</td>\n<td>Name of the Driver.</td>\n</tr>\n<tr>\n<td>drivercode</td>\n<td>Optional</td>\n<td>string</td>\n<td>Document of the Driver</td>\n</tr>\n<tr>\n<td>loadingpoint</td>\n<td>Opcional</td>\n<td>string</td>\n<td>If in the same place you have 2 plants (Point to load a truck) you can send where the truck is beeing loaded.  <br />  <br /><strong>Example</strong>: \"01\" * If you have just 1 point in the same place send allways \"01\"</td>\n</tr>\n<tr>\n<td>ticket</td>\n<td>Optional</td>\n<td>string</td>\n<td>Date/Time in customer timezone that delivery is ticketed (created).  <br />  <br /><strong>Format</strong>: \"YYYY-MM-DD HH:MM:SS (24h)  <br />  <br /><strong>Example</strong>: \"2019-10-24 17:55:00\"</td>\n</tr>\n<tr>\n<td>projectname</td>\n<td>Optional</td>\n<td>string</td>\n<td>Project description or Customer Name.  <br />  <br /><strong>Example</strong>: \"PANAM. SUR KM 60.8 LA CHUTANA -CHILCA\"</td>\n</tr>\n<tr>\n<td>addresscode</td>\n<td>Optional</td>\n<td>string</td>\n<td>Delivery address Code If you don't have a code to addres you can send same PROJECTCODE.  <br />  <br /><strong>Example</strong>: \"PANAM. SUR KM 60.8 LA CHUTANA -CHILCA\"</td>\n</tr>\n<tr>\n<td>lat</td>\n<td>Optional</td>\n<td>float</td>\n<td>Use latitude to define the coordinates.</td>\n</tr>\n<tr>\n<td>lng</td>\n<td>Optional</td>\n<td>float</td>\n<td>Use longitude to define the coordinates.</td>\n</tr>\n<tr>\n<td>rad</td>\n<td>Optional</td>\n<td>float</td>\n<td>Use rad to define the coordinates.</td>\n</tr>\n<tr>\n<td>sellercode</td>\n<td>Optional</td>\n<td>string</td>\n<td>Seller code.</td>\n</tr>\n<tr>\n<td>sellername</td>\n<td>Optional</td>\n<td>string</td>\n<td>Seller name.</td>\n</tr>\n<tr>\n<td>seal</td>\n<td>Optional</td>\n<td>string</td>\n<td>Seal number</td>\n</tr>\n<tr>\n<td>slump</td>\n<td>Optional</td>\n<td>float</td>\n<td>concrete slump</td>\n</tr>\n<tr>\n<td>structure</td>\n<td>Optional</td>\n<td>string</td>\n<td>The structure for which the concrete will be destined.</td>\n</tr>\n<tr>\n<td>loaded_materials</td>\n<td>Optional</td>\n<td>array</td>\n<td>Used to describe the loaded materials.</td>\n</tr>\n<tr>\n<td>pump_volume</td>\n<td>Optional</td>\n<td>int</td>\n<td>Pumped Total Volume</td>\n</tr>\n<tr>\n<td>pump_product_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Code of the product pump code</td>\n</tr>\n<tr>\n<td>pump_product_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>Name of the product pump</td>\n</tr>\n<tr>\n<td>pump_truck_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Vehicle pump code</td>\n</tr>\n<tr>\n<td>pump_driver_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Driver code for the pump</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"loaded-materials\">Loaded Materials</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th><strong>Required</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Code of loaded materials</td>\n</tr>\n<tr>\n<td>humidity</td>\n<td>Optional</td>\n<td>float</td>\n<td>humidity of loaded materials</td>\n</tr>\n<tr>\n<td>clp_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Programmable Logic Controller Code</td>\n</tr>\n<tr>\n<td>desired</td>\n<td>Optional</td>\n<td>float</td>\n<td>Desired quantity to be loaded</td>\n</tr>\n<tr>\n<td>real</td>\n<td>Optional</td>\n<td>float</td>\n<td>Real quantity loaded</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","sync","tickets"],"host":["integration","loop4","io"],"query":[],"variable":[]}},"response":[{"id":"077e8054-9507-4bc0-b976-51a4afd7efe7","name":"Created Records","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"token","type":"text","value":"{{your-company-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"deliverycode\": \"049290\",\n        \"plantcode\": \"P001\",\n        \"truckcode\": \"M23\",\n        \"volume\": 12,\n        \"start\": \"2022-04-19 07:07:00\",\n        \"endload\": \"2022-04-19 07:27:00\",\n        \"productcode\": \"204C30P\",\n        \"productname\": \"CONC - GRADE C25/30 PUMP MIX\",\n        \"drivercode\": \"T20\",\n        \"drivername\": \"ABG 009\",\n        \"customercode\": \"F068\",\n        \"customername\": \"FBA YAPI SANAYI TICARET A.S.\",\n        \"projectcode\": \"F068-BLUE\",\n        \"projectname\": \"FBA YAPI SANAYI TICARET A.S.\",\n        \"addresscode\": \"A0001\",\n        \"deliveryaddress\": \"BLUE HARBOUR BUSINESS CENTRE 1027 MALTA\",\n        \"ticket\": \"2022-04-19 06:00:00\",\n        \"invoice\": \"032882\",\n        \"loadingpoint\": \"94\",\n        \"sellercode\": \"KSA\",\n        \"sellername\": \"KURT SAMMUT\",\n        \"ordercode\": \"049290\",\n        \"seal\": \"222111\",\n        \"loaded_materials\": [\n            {\n               \"code\":  \"CPC40\",\n               \"humidity\":  0.70,\n               \"clp_code\":  \"FCemento\",\n               \"desired\":  1.50,\n               \"real\":  1.70     \n            }\n        ], \n        \"pump_volume\": 5,\n        \"pump_product_code\": \"B03\",\n        \"pump_product_name\": \"Bomba Volume\",\n        \"pump_truck_code\": \"P01\",\n        \"pump_driver_code\": \"MM\"   \n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/tickets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 13:40:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"103"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, PUT, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"inserted-identifiers\": [\n            \"P002-151\"\n        ],\n        \"invalid-records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"69e87fa9-b5f9-4e65-a685-ac03f6a44751","name":"Error Records","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"token","type":"text","value":"{{your-company-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"deliverycode\": \"\",\n        \"internal_id\": \"049290\",\n        \"plantcode\": \"01\",\n        \"truckcode\": \"ABG 009\",\n        \"volume\": 12,\n        \"start\": \"2022-04-19 07:07:00\",\n        \"endload\": \"2022-04-19 07:27:00\",\n        \"productcode\": \"204C30P\",\n        \"productname\": \"CONC - GRADE C25/30 PUMP MIX\",\n        \"drivercode\": \"T20\",\n        \"drivername\": \"ABG 009\",\n        \"customercode\": \"F068\",\n        \"customername\": \"FBA YAPI SANAYI TICARET A.S.\",\n        \"projectcode\": \"F068-BLUE\",\n        \"projectname\": \"FBA YAPI SANAYI TICARET A.S.\",\n        \"addresscode\": \"A0001\",\n        \"deliveryaddress\": \"BLUE HARBOUR BUSINESS CENTRE 1027 MALTA\",\n        \"ticket\": \"2022-04-19 06:00:00\",\n        \"invoice\": \"032882\",\n        \"loadingpoint\": \"94\",\n        \"sellercode\": \"KSA\",\n        \"sellername\": \"KURT SAMMUT\",\n        \"ordercode\": \"049290\",\n        \"seal\": \"222111\",\n        \"slump\": 30,\n        \"structure\": \"Floors\",\n        \"loaded_materials\": [\n            {\n               \"code\":  \"CPC40\",\n               \"humidity\":  0.70,\n               \"clp_code\":  \"FCemento\",\n               \"desired\":  1.50,\n               \"real\":  1.70     \n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/tickets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 14:14:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"162"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, PUT, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"inserted-identifiers\": [],\n        \"invalid-records\": [\n            {\n                \"DELIVERYCODE\": \"\",\n                \"ERROR\": \"PLANTCODE does not exist\",\n                \"INDEX\": 0\n            }\n        ]\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"a99eddd3-b692-4d7e-86ab-9c12945d3466"},{"name":"Delete Tickets","id":"2dbcb49c-9d26-4102-b6c4-eb84ef8cf853","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"deliverycode\": \"P002-149\" \n  }\n]"},"url":"https://integration.loop4.io/api/sync/tickets","description":"<p>Use this request to delete some tickets</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>deliverycode</td>\n<td>Required</td>\n<td>string</td>\n<td>Unique code for the trip - Ticket number in batch system If you have multiple plants and ticket numer repeat you can concatenate it with plant code.  <br />  <br /><strong>Example</strong>: \"P002-149\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","tickets"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"6cb6d49d-d212-4bfe-8f78-83dc3644cf19","name":"Delete Records","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"deliverycode\": \"P002-149\" \n  }\n]"},"url":"https://integration.loop4.io/api/sync/tickets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 14:31:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"96"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, PUT, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"deleted-count\": [\n            \"P002-149\"\n        ],\n        \"invalid-records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"decea1a0-ff9d-4f2d-940f-3b750395f499","name":"Error Records","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"deliverycode\": \"\" \n  }\n]"},"url":"https://integration.loop4.io/api/sync/tickets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 14:32:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"140"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, PUT, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"deleted-count\": [],\n        \"invalid-records\": [\n            {\n                \"DELIVERYCODE\": \"\",\n                \"ERROR\": \"Record does not exist\"\n            }\n        ]\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"2dbcb49c-9d26-4102-b6c4-eb84ef8cf853"},{"name":"List Tickets","id":"b10c23be-3a0f-47b0-aed9-4de0bc5ab3ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":"https://integration.loop4.io/api/sync/tickets?from=2023-03-30&to=2023-03-30","description":"<p>List tickets to Loop 4 Readymix Application with some parameters.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td><strong>Required</strong></td>\n<td>yyyy-mm-dd</td>\n</tr>\n<tr>\n<td>to</td>\n<td><strong>Required</strong></td>\n<td>yyyy-mm-dd</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","tickets"],"host":["https://integration.loop4.io"],"query":[{"key":"from","value":"2023-03-30"},{"key":"to","value":"2023-03-30"}],"variable":[]}},"response":[{"id":"2980dcbf-aa03-4af4-8a0d-386361ae70df","name":"List Records","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":{"raw":"https://integration.loop4.io/api/sync/tickets?from=2024-02-06&to=2024-02-06","host":["https://integration.loop4.io"],"path":["api","sync","tickets"],"query":[{"key":"from","value":"2024-02-06"},{"key":"to","value":"2024-02-06"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 14:53:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"10052"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, PUT, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 3974496,\n            \"IDEMPRESA\": 447,\n            \"START\": \"2024-02-06 07:07:00\",\n            \"DELIVERYCODE\": \"P001-149\",\n            \"INVOICE\": \"P001-149\",\n            \"PROJECTCODE\": \"KAUE1\",\n            \"PLANTCODE\": \"P001\",\n            \"TRUCKCODE\": \"M23\",\n            \"PROJECTNAME\": \"KAUE1\",\n            \"DELIVERYADDRESS\": \"Rua São Brás do Suaçuí, Jardim Helena, São Paulo, São Paulo, 08090-290\",\n            \"BILLINGADDRESS\": \"Rua São Brás do Suaçuí, Jardim Helena, São Paulo, São Paulo, 08090-290\",\n            \"PRODUCTCODE\": \"204C30P\",\n            \"PRODUCTNAME\": \"CONC - GRADE C25/30 PUMP MIX\",\n            \"PRODUCTSLUMP\": null,\n            \"PRODUCTFCK\": null,\n            \"VOLUME\": 15,\n            \"PRODUCTION_VOLUME\": 15,\n            \"STRUCTURE\": null,\n            \"SELLERCODE\": \"V0001\",\n            \"SELLERNAME\": \"Paulo Azevedo Queiroz\",\n            \"DRIVERCODE\": \"T20\",\n            \"DRIVERNAME\": \"ABG 009\",\n            \"LOADINGPOINT\": \"2\",\n            \"LAT\": null,\n            \"LNG\": null,\n            \"STATUS\": null,\n            \"RAD\": null,\n            \"TICKET\": null,\n            \"ENDLOAD\": \"2024-02-06 07:27:00\",\n            \"BOOKCODE\": null,\n            \"CUSTOMERCODE\": \"00001\",\n            \"ORDERCODE\": null,\n            \"ORDERNUMBER\": \"218\",\n            \"TRIP_LAT\": null,\n            \"TRIP_LNG\": null,\n            \"SLUMP\": 30,\n            \"TRIP\": null,\n            \"vehicle\": {\n                \"id\": 867896,\n                \"unit\": null,\n                \"idgps\": null,\n                \"phone\": null,\n                \"name\": \"Betoneira-DLC8531\",\n                \"type\": 0,\n                \"icon\": \"M_16.png\",\n                \"capacity\": 8,\n                \"id_device\": -1,\n                \"codbt\": \"M23\",\n                \"codplanta\": null,\n                \"idgeofence\": null,\n                \"status\": null,\n                \"inoutplant\": null,\n                \"disabled\": 0,\n                \"auto_repair\": 0,\n                \"ignition\": null,\n                \"odometer\": null,\n                \"hourmeter\": null,\n                \"drum\": null,\n                \"pump\": null,\n                \"fuel_level\": null,\n                \"rpm\": null,\n                \"temperature\": null,\n                \"pto\": null,\n                \"engine\": null,\n                \"breakdown\": null,\n                \"fuel_level_table\": 0,\n                \"driver\": null,\n                \"flespi_cnt\": null,\n                \"brand\": null,\n                \"model\": null,\n                \"year\": null,\n                \"cost_idle\": null,\n                \"deleted\": null,\n                \"dev_storage\": null,\n                \"deactivated\": false,\n                \"plate\": \"DLC8531\",\n                \"id_flespi\": null,\n                \"capacity_2\": null,\n                \"capacity_3\": null,\n                \"capacity_4\": null,\n                \"capacity_5\": null,\n                \"capacity_6\": null,\n                \"n_engines\": null,\n                \"capacity_mass\": null,\n                \"capacity_vol\": null,\n                \"company\": 447,\n                \"fuel_type\": null,\n                \"category\": 177,\n                \"last_driver\": 100304\n            },\n            \"EDITED\": null,\n            \"last_updated\": \"2024-02-06 09:55:49\",\n            \"criado_em\": \"2024-02-06 09:48:36\",\n            \"SEAL\": \"222111\",\n            \"delivery_notes\": [\n                {\n                    \"id\": 24434837,\n                    \"code\": \"P001-149\",\n                    \"dn_number\": \"6\",\n                    \"serie\": \"00000\",\n                    \"total_price\": 3200,\n                    \"total_extended_price\": 3200,\n                    \"total_tax_price\": 0,\n                    \"arrival\": null,\n                    \"end\": null,\n                    \"date\": \"2024-02-06\",\n                    \"created_at\": \"2024-02-06T09:48:36-03:00\",\n                    \"updated_at\": \"2024-02-06T09:55:49-03:00\",\n                    \"manual_created\": false,\n                    \"inactive\": false,\n                    \"is_b_side\": false,\n                    \"company\": 447,\n                    \"order\": 1194768,\n                    \"delivery\": 3974496,\n                    \"project\": 547432276,\n                    \"address\": 460569,\n                    \"client\": 273859,\n                    \"geofence\": 1913,\n                    \"ticket\": null\n                }\n            ]\n        },\n        {\n            \"id\": 3974791,\n            \"IDEMPRESA\": 447,\n            \"START\": \"2024-02-06 08:00:00\",\n            \"DELIVERYCODE\": \"P002-110\",\n            \"INVOICE\": \"P002-151\",\n            \"PROJECTCODE\": \"F068-BLUE\",\n            \"PLANTCODE\": \"P002\",\n            \"TRUCKCODE\": \"M23\",\n            \"PROJECTNAME\": \"FBA YAPI SANAYI TICARET A.S.\",\n            \"DELIVERYADDRESS\": \"ANAM. SUR KM 60.8 LA CHUTANA -CHILCA\",\n            \"BILLINGADDRESS\": null,\n            \"PRODUCTCODE\": null,\n            \"PRODUCTNAME\": null,\n            \"PRODUCTSLUMP\": null,\n            \"PRODUCTFCK\": null,\n            \"VOLUME\": 15,\n            \"PRODUCTION_VOLUME\": 15,\n            \"STRUCTURE\": null,\n            \"SELLERCODE\": null,\n            \"SELLERNAME\": null,\n            \"DRIVERCODE\": null,\n            \"DRIVERNAME\": null,\n            \"LOADINGPOINT\": null,\n            \"LAT\": null,\n            \"LNG\": null,\n            \"STATUS\": null,\n            \"RAD\": null,\n            \"TICKET\": null,\n            \"ENDLOAD\": null,\n            \"BOOKCODE\": null,\n            \"CUSTOMERCODE\": \"291\",\n            \"ORDERCODE\": \"\",\n            \"ORDERNUMBER\": \"\",\n            \"TRIP_LAT\": null,\n            \"TRIP_LNG\": null,\n            \"SLUMP\": null,\n            \"TRIP\": null,\n            \"vehicle\": {\n                \"id\": 867896,\n                \"unit\": null,\n                \"idgps\": null,\n                \"phone\": null,\n                \"name\": \"Betoneira-DLC8531\",\n                \"type\": 0,\n                \"icon\": \"M_16.png\",\n                \"capacity\": 8,\n                \"id_device\": -1,\n                \"codbt\": \"M23\",\n                \"codplanta\": null,\n                \"idgeofence\": null,\n                \"status\": null,\n                \"inoutplant\": null,\n                \"disabled\": 0,\n                \"auto_repair\": 0,\n                \"ignition\": null,\n                \"odometer\": null,\n                \"hourmeter\": null,\n                \"drum\": null,\n                \"pump\": null,\n                \"fuel_level\": null,\n                \"rpm\": null,\n                \"temperature\": null,\n                \"pto\": null,\n                \"engine\": null,\n                \"breakdown\": null,\n                \"fuel_level_table\": 0,\n                \"driver\": null,\n                \"flespi_cnt\": null,\n                \"brand\": null,\n                \"model\": null,\n                \"year\": null,\n                \"cost_idle\": null,\n                \"deleted\": null,\n                \"dev_storage\": null,\n                \"deactivated\": false,\n                \"plate\": \"DLC8531\",\n                \"id_flespi\": null,\n                \"capacity_2\": null,\n                \"capacity_3\": null,\n                \"capacity_4\": null,\n                \"capacity_5\": null,\n                \"capacity_6\": null,\n                \"n_engines\": null,\n                \"capacity_mass\": null,\n                \"capacity_vol\": null,\n                \"company\": 447,\n                \"fuel_type\": null,\n                \"category\": 177,\n                \"last_driver\": 100304\n            },\n            \"EDITED\": null,\n            \"last_updated\": \"2024-02-06 10:49:24\",\n            \"criado_em\": \"2024-02-06 10:49:24\",\n            \"SEAL\": null,\n            \"delivery_notes\": []\n        },\n        {\n            \"id\": 3974793,\n            \"IDEMPRESA\": 447,\n            \"START\": \"2024-02-06 08:00:00\",\n            \"DELIVERYCODE\": \"P002-111\",\n            \"INVOICE\": \"P002-151\",\n            \"PROJECTCODE\": \"F068-BLUE\",\n            \"PLANTCODE\": \"P002\",\n            \"TRUCKCODE\": \"M23\",\n            \"PROJECTNAME\": \"FBA YAPI SANAYI TICARET A.S.\",\n            \"DELIVERYADDRESS\": \"ANAM. SUR KM 60.8 LA CHUTANA -CHILCA\",\n            \"BILLINGADDRESS\": null,\n            \"PRODUCTCODE\": null,\n            \"PRODUCTNAME\": null,\n            \"PRODUCTSLUMP\": null,\n            \"PRODUCTFCK\": null,\n            \"VOLUME\": 15,\n            \"PRODUCTION_VOLUME\": 15,\n            \"STRUCTURE\": null,\n            \"SELLERCODE\": null,\n            \"SELLERNAME\": null,\n            \"DRIVERCODE\": null,\n            \"DRIVERNAME\": null,\n            \"LOADINGPOINT\": null,\n            \"LAT\": null,\n            \"LNG\": null,\n            \"STATUS\": null,\n            \"RAD\": null,\n            \"TICKET\": null,\n            \"ENDLOAD\": null,\n            \"BOOKCODE\": null,\n            \"CUSTOMERCODE\": \"291\",\n            \"ORDERCODE\": \"\",\n            \"ORDERNUMBER\": \"\",\n            \"TRIP_LAT\": null,\n            \"TRIP_LNG\": null,\n            \"SLUMP\": null,\n            \"TRIP\": null,\n            \"vehicle\": {\n                \"id\": 867896,\n                \"unit\": null,\n                \"idgps\": null,\n                \"phone\": null,\n                \"name\": \"Betoneira-DLC8531\",\n                \"type\": 0,\n                \"icon\": \"M_16.png\",\n                \"capacity\": 8,\n                \"id_device\": -1,\n                \"codbt\": \"M23\",\n                \"codplanta\": null,\n                \"idgeofence\": null,\n                \"status\": null,\n                \"inoutplant\": null,\n                \"disabled\": 0,\n                \"auto_repair\": 0,\n                \"ignition\": null,\n                \"odometer\": null,\n                \"hourmeter\": null,\n                \"drum\": null,\n                \"pump\": null,\n                \"fuel_level\": null,\n                \"rpm\": null,\n                \"temperature\": null,\n                \"pto\": null,\n                \"engine\": null,\n                \"breakdown\": null,\n                \"fuel_level_table\": 0,\n                \"driver\": null,\n                \"flespi_cnt\": null,\n                \"brand\": null,\n                \"model\": null,\n                \"year\": null,\n                \"cost_idle\": null,\n                \"deleted\": null,\n                \"dev_storage\": null,\n                \"deactivated\": false,\n                \"plate\": \"DLC8531\",\n                \"id_flespi\": null,\n                \"capacity_2\": null,\n                \"capacity_3\": null,\n                \"capacity_4\": null,\n                \"capacity_5\": null,\n                \"capacity_6\": null,\n                \"n_engines\": null,\n                \"capacity_mass\": null,\n                \"capacity_vol\": null,\n                \"company\": 447,\n                \"fuel_type\": null,\n                \"category\": 177,\n                \"last_driver\": 100304\n            },\n            \"EDITED\": null,\n            \"last_updated\": \"2024-02-06 10:49:34\",\n            \"criado_em\": \"2024-02-06 10:49:34\",\n            \"SEAL\": null,\n            \"delivery_notes\": []\n        },\n        {\n            \"id\": 3974799,\n            \"IDEMPRESA\": 447,\n            \"START\": \"2024-02-06 08:00:00\",\n            \"DELIVERYCODE\": \"P002-112\",\n            \"INVOICE\": \"P002-112\",\n            \"PROJECTCODE\": \"F068-BLUE\",\n            \"PLANTCODE\": \"P002\",\n            \"TRUCKCODE\": \"M23\",\n            \"PROJECTNAME\": \"FBA YAPI SANAYI TICARET A.S.\",\n            \"DELIVERYADDRESS\": \"ANAM. SUR KM 60.8 LA CHUTANA -CHILCA\",\n            \"BILLINGADDRESS\": null,\n            \"PRODUCTCODE\": null,\n            \"PRODUCTNAME\": null,\n            \"PRODUCTSLUMP\": null,\n            \"PRODUCTFCK\": null,\n            \"VOLUME\": 15,\n            \"PRODUCTION_VOLUME\": 15,\n            \"STRUCTURE\": null,\n            \"SELLERCODE\": null,\n            \"SELLERNAME\": null,\n            \"DRIVERCODE\": null,\n            \"DRIVERNAME\": null,\n            \"LOADINGPOINT\": null,\n            \"LAT\": null,\n            \"LNG\": null,\n            \"STATUS\": null,\n            \"RAD\": null,\n            \"TICKET\": null,\n            \"ENDLOAD\": null,\n            \"BOOKCODE\": null,\n            \"CUSTOMERCODE\": \"291\",\n            \"ORDERCODE\": \"\",\n            \"ORDERNUMBER\": \"\",\n            \"TRIP_LAT\": null,\n            \"TRIP_LNG\": null,\n            \"SLUMP\": null,\n            \"TRIP\": null,\n            \"vehicle\": {\n                \"id\": 867896,\n                \"unit\": null,\n                \"idgps\": null,\n                \"phone\": null,\n                \"name\": \"Betoneira-DLC8531\",\n                \"type\": 0,\n                \"icon\": \"M_16.png\",\n                \"capacity\": 8,\n                \"id_device\": -1,\n                \"codbt\": \"M23\",\n                \"codplanta\": null,\n                \"idgeofence\": null,\n                \"status\": null,\n                \"inoutplant\": null,\n                \"disabled\": 0,\n                \"auto_repair\": 0,\n                \"ignition\": null,\n                \"odometer\": null,\n                \"hourmeter\": null,\n                \"drum\": null,\n                \"pump\": null,\n                \"fuel_level\": null,\n                \"rpm\": null,\n                \"temperature\": null,\n                \"pto\": null,\n                \"engine\": null,\n                \"breakdown\": null,\n                \"fuel_level_table\": 0,\n                \"driver\": null,\n                \"flespi_cnt\": null,\n                \"brand\": null,\n                \"model\": null,\n                \"year\": null,\n                \"cost_idle\": null,\n                \"deleted\": null,\n                \"dev_storage\": null,\n                \"deactivated\": false,\n                \"plate\": \"DLC8531\",\n                \"id_flespi\": null,\n                \"capacity_2\": null,\n                \"capacity_3\": null,\n                \"capacity_4\": null,\n                \"capacity_5\": null,\n                \"capacity_6\": null,\n                \"n_engines\": null,\n                \"capacity_mass\": null,\n                \"capacity_vol\": null,\n                \"company\": 447,\n                \"fuel_type\": null,\n                \"category\": 177,\n                \"last_driver\": 100304\n            },\n            \"EDITED\": null,\n            \"last_updated\": \"2024-02-06 10:55:24\",\n            \"criado_em\": \"2024-02-06 10:50:17\",\n            \"SEAL\": \"222111\",\n            \"delivery_notes\": []\n        },\n        {\n            \"id\": 3974830,\n            \"IDEMPRESA\": 447,\n            \"START\": \"2024-02-06 08:00:00\",\n            \"DELIVERYCODE\": \"P002-142\",\n            \"INVOICE\": \"P002-112\",\n            \"PROJECTCODE\": \"F068-BLUE\",\n            \"PLANTCODE\": \"P002\",\n            \"TRUCKCODE\": \"M23\",\n            \"PROJECTNAME\": \"FBA YAPI SANAYI TICARET A.S.\",\n            \"DELIVERYADDRESS\": \"ANAM. SUR KM 60.8 LA CHUTANA -CHILCA\",\n            \"BILLINGADDRESS\": null,\n            \"PRODUCTCODE\": null,\n            \"PRODUCTNAME\": null,\n            \"PRODUCTSLUMP\": null,\n            \"PRODUCTFCK\": null,\n            \"VOLUME\": 15,\n            \"PRODUCTION_VOLUME\": 15,\n            \"STRUCTURE\": null,\n            \"SELLERCODE\": null,\n            \"SELLERNAME\": null,\n            \"DRIVERCODE\": null,\n            \"DRIVERNAME\": null,\n            \"LOADINGPOINT\": null,\n            \"LAT\": null,\n            \"LNG\": null,\n            \"STATUS\": null,\n            \"RAD\": null,\n            \"TICKET\": null,\n            \"ENDLOAD\": null,\n            \"BOOKCODE\": null,\n            \"CUSTOMERCODE\": \"291\",\n            \"ORDERCODE\": \"\",\n            \"ORDERNUMBER\": \"\",\n            \"TRIP_LAT\": null,\n            \"TRIP_LNG\": null,\n            \"SLUMP\": null,\n            \"TRIP\": null,\n            \"vehicle\": {\n                \"id\": 867896,\n                \"unit\": null,\n                \"idgps\": null,\n                \"phone\": null,\n                \"name\": \"Betoneira-DLC8531\",\n                \"type\": 0,\n                \"icon\": \"M_16.png\",\n                \"capacity\": 8,\n                \"id_device\": -1,\n                \"codbt\": \"M23\",\n                \"codplanta\": null,\n                \"idgeofence\": null,\n                \"status\": null,\n                \"inoutplant\": null,\n                \"disabled\": 0,\n                \"auto_repair\": 0,\n                \"ignition\": null,\n                \"odometer\": null,\n                \"hourmeter\": null,\n                \"drum\": null,\n                \"pump\": null,\n                \"fuel_level\": null,\n                \"rpm\": null,\n                \"temperature\": null,\n                \"pto\": null,\n                \"engine\": null,\n                \"breakdown\": null,\n                \"fuel_level_table\": 0,\n                \"driver\": null,\n                \"flespi_cnt\": null,\n                \"brand\": null,\n                \"model\": null,\n                \"year\": null,\n                \"cost_idle\": null,\n                \"deleted\": null,\n                \"dev_storage\": null,\n                \"deactivated\": false,\n                \"plate\": \"DLC8531\",\n                \"id_flespi\": null,\n                \"capacity_2\": null,\n                \"capacity_3\": null,\n                \"capacity_4\": null,\n                \"capacity_5\": null,\n                \"capacity_6\": null,\n                \"n_engines\": null,\n                \"capacity_mass\": null,\n                \"capacity_vol\": null,\n                \"company\": 447,\n                \"fuel_type\": null,\n                \"category\": 177,\n                \"last_driver\": 100304\n            },\n            \"EDITED\": null,\n            \"last_updated\": \"2024-02-06 10:55:32\",\n            \"criado_em\": \"2024-02-06 10:55:32\",\n            \"SEAL\": \"222111\",\n            \"delivery_notes\": []\n        }\n    ],\n    \"message\": \"\"\n}"},{"id":"7b8a8794-4cd9-42ca-bc77-9f971c3fa843","name":"List Tickets","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":{"raw":"https://integration.loop4.io/api/sync/tickets?from=&to=","host":["https://integration.loop4.io"],"path":["api","sync","tickets"],"query":[{"key":"from","value":""},{"key":"to","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 14:55:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"95"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, PUT, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"reason\": \"time data ' 00:00:00' does not match format '%Y-%m-%d %H:%M:%S'\"\n}"}],"_postman_id":"b10c23be-3a0f-47b0-aed9-4de0bc5ab3ea"},{"name":"List Tickets V2","id":"7712f8d9-3f95-4b1f-9619-731e375600e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":"https://integration.loop4.io/api/company/deliveries?date_start=2025-12-01&date_end=2025-12-31","description":"<p>List tickets to Loop 4 Readymix Application with some parameters.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>date_start</td>\n<td><strong>Required</strong></td>\n<td>yyyy-mm-dd</td>\n</tr>\n<tr>\n<td>date_end</td>\n<td><strong>Required</strong></td>\n<td>yyyy-mm-dd</td>\n</tr>\n<tr>\n<td>deliveries_codes</td>\n<td><strong>Optional</strong></td>\n<td>DC1,DC2,DC2</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","company","deliveries"],"host":["https://integration.loop4.io"],"query":[{"key":"date_start","value":"2025-12-01"},{"key":"date_end","value":"2025-12-31"}],"variable":[]}},"response":[{"id":"40582c88-5705-4f23-bddd-2eb88d8cf0db","name":"List Tickets V2","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":{"raw":"{{syncapi_endpoint}}/api/company/deliveries?date_start=2024-03-27&date_end=2024-03-27","host":["{{syncapi_endpoint}}"],"path":["api","company","deliveries"],"query":[{"key":"date_start","value":"2024-03-27"},{"key":"date_end","value":"2024-03-27"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Apr 2024 20:15:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1920"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"start_at\": \"2024-03-27 12:53:00\",\n            \"code\": \"P001-164\",\n            \"volume\": 1,\n            \"product_code\": \"HN301035\",\n            \"loading_point_code\": \"2\",\n            \"loading_point_name\": \"Planta 2\",\n            \"plant_code\": \"P001\",\n            \"plant_name\": \"Planta 1\",\n            \"vehicle_code\": \"BT003\",\n            \"vehicle_name\": \"BT003\",\n            \"driver_code\": \"M002\",\n            \"driver_name\": \"João Motta\",\n            \"customer_code\": \"\",\n            \"project_code\": \"00026-01\",\n            \"order_code\": \"244\",\n            \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n            \"trip\": null,\n            \"formula\": {\n                \"code\": \"HN301035\",\n                \"description\": \"HORMIGON ELAB. H35\",\n                \"materials\": [\n                    {\n                        \"raw_material_code\": \"AR1\",\n                        \"raw_material_name\": \"AGUA\",\n                        \"quantity\": 150\n                    },\n                    {\n                        \"raw_material_code\": \"CE1\",\n                        \"raw_material_name\": \"CEMENTO CPC 40\",\n                        \"quantity\": 210\n                    },\n                    {\n                        \"raw_material_code\": \"MP0004\",\n                        \"raw_material_name\": \"ARENA FINA DE RIO\",\n                        \"quantity\": 200\n                    },\n                    {\n                        \"raw_material_code\": \"MP0005\",\n                        \"raw_material_name\": \"PIEDRA GRUESA\",\n                        \"quantity\": 300\n                    }\n                ]\n            },\n            \"loaded_materials\": [\n                                {\n                    \"raw_material_code\": \"1233\",\n                    \"raw_material_name\": \"PIEDRA\",\n                    \"formula_humidity\": null,\n                    \"formula_dry_desired_weight\": 800.0,\n                    \"formula_humid_desired_weight\": 2222.0,\n                    \"desired_weight\": 2222.6,\n                    \"real_weight\": 222.0,\n                    \"formula_max_deviation\": null,\n                    \"deviation\": 0.10,\n                    \"manually_loaded\": false\n                },\n                {\n                    \"raw_material_code\": \"CE1\",\n                    \"raw_material_name\": \"CEMENTO CPC 40\",\n                    \"formula_humidity\": null,\n                    \"formula_dry_desired_weight\": 210,\n                    \"formula_humid_desired_weight\": 210,\n                    \"formula_max_deviation\": null,\n                    \"manually_loaded\": false\n                },\n                {\n                    \"raw_material_code\": \"MP0004\",\n                    \"raw_material_name\": \"ARENA FINA DE RIO\",\n                    \"formula_humidity\": null,\n                    \"formula_dry_desired_weight\": 200,\n                    \"formula_humid_desired_weight\": 200,\n                    \"formula_max_deviation\": null,\n                    \"manually_loaded\": false\n                },\n                {\n                    \"raw_material_code\": \"MP0005\",\n                    \"raw_material_name\": \"PIEDRA GRUESA\",\n                    \"formula_humidity\": null,\n                    \"formula_dry_desired_weight\": 300,\n                    \"formula_humid_desired_weight\": 300,\n                    \"formula_max_deviation\": null,\n                    \"manually_loaded\": false\n                }\n            ]\n        }\n    ],\n    \"message\": \"\"\n}"}],"_postman_id":"7712f8d9-3f95-4b1f-9619-731e375600e8"}],"id":"8d1a3c63-4a92-4fd7-b968-3779db55c49f","description":"<p>Ticket Management</p>\n","event":[{"listen":"prerequest","script":{"id":"875ec6bb-2ce0-4535-a718-9106235e4c73","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"95d99b75-1ddf-44a0-a24c-ef41f0e1fe15","type":"text/javascript","exec":[""]}}],"_postman_id":"8d1a3c63-4a92-4fd7-b968-3779db55c49f"},{"name":"Orders","item":[{"name":"Insert Orders","id":"4d3228d9-77d8-465f-827e-08a127748a4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"project_code\": \"00016475-0000\",\n    \"last_updated_at\": 1769005293840,\n    \"sale_type\": 3,\n    \"project_po_required\": 1,\n    \"order_code\": 2189025,\n    \"custom_1\": \"FA\",\n    \"order_number\": \"0010-00003751-FA\",\n    \"project_name\": \"(02358) LOPEZ JULIO 341-6204795--\",\n    \"delivery_date\": \"2026-01-21 00:00:00\",\n    \"notes\": \"\",\n    \"plant_code\": null,\n    \"customer_code\": \"16475\",\n    \"customer_name\": \"(02358) LOPEZ JULIO 341-6204795\",\n    \"customer_document\": \"\",\n    \"customer_document1\": \"Consumidor Final\",\n    \"customer_document2\": null,\n    \"customer_document3\": null,\n    \"address_code\": \"00016475\",\n    \"address_street\": \"B° VILLA NATURALEZA\",\n    \"address_city\": \"VILLA RUMIPAL\",\n    \"address_state\": \"CORDOBA\",\n    \"status_code\": \"E\",\n    \"order_inactive\": 0,\n    \"seller_code\": \"45\",\n    \"seller_name\": \"MDL\",\n    \"product_code\": \"HEBAZ1E\",\n    \"product_type\": 99,\n    \"product_name\": \"HORMIGON ELABORADO BOMBA ARRASTRE PUNTO Z1E\",\n    \"price\": 61983.4711,\n    \"original_quantity\": 1.0,\n    \"quantity\": 1.0,\n    \"delivered_quantity\": 0.0,\n    \"balance\": 1.0,\n    \"esquema\": \"A\",\n    \"order_b\": 0,\n    \"cpr_clasif_id\": 0,\n    \"art_id\": 50194,\n    \"cond_vta_id\": 58,\n    \"pr_vta\": 61983.4711,\n    \"pr_final\": 75000.0,\n    \"porc_dto_rgo\": 0.0,\n    \"lista_id\": 2,\n    \"det_orig_id\": 6778210,\n    \"neto_base_impo\": 61983.47,\n    \"monto\": 75000.0,\n    \"impuesto\": 13016.53,\n    \"internal_notes\": \"                \",\n    \"customer_notes\": \"                \",\n    \"observacion\": null\n  },\n  {\n    \"project_code\": \"00016475-0000\",\n    \"last_updated_at\": 1769005293840,\n    \"sale_type\": 3,\n    \"project_po_required\": 1,\n    \"order_code\": 2189025,\n    \"custom_1\": \"FA\",\n    \"order_number\": \"0010-00003751-FA\",\n    \"project_name\": \"(02358) LOPEZ JULIO 341-6204795--\",\n    \"delivery_date\": \"2026-01-21 00:00:00\",\n    \"notes\": \"\",\n    \"plant_code\": null,\n    \"customer_code\": \"16475\",\n    \"customer_name\": \"(02358) LOPEZ JULIO 341-6204795\",\n    \"customer_document\": \"\",\n    \"customer_document1\": \"Consumidor Final\",\n    \"customer_document2\": null,\n    \"customer_document3\": null,\n    \"address_code\": \"00016475\",\n    \"address_street\": \"B° VILLA NATURALEZA\",\n    \"address_city\": \"VILLA RUMIPAL\",\n    \"address_state\": \"CORDOBA\",\n    \"status_code\": \"E\",\n    \"order_inactive\": 0,\n    \"seller_code\": \"45\",\n    \"seller_name\": \"MDL\",\n    \"product_code\": \"HEBPZ3S\",\n    \"product_type\": 2,\n    \"product_name\": \"HORMIGON ELABORADO BOMBA PLUMA SERVICIO (-8m3)\",\n    \"price\": 10330.5785,\n    \"original_quantity\": 1.0,\n    \"quantity\": 1.0,\n    \"delivered_quantity\": 0.0,\n    \"balance\": 1.0,\n    \"esquema\": \"A\",\n    \"order_b\": 0,\n    \"cpr_clasif_id\": 0,\n    \"art_id\": 50211,\n    \"cond_vta_id\": 58,\n    \"pr_vta\": 10330.5785,\n    \"pr_final\": 12500.0,\n    \"porc_dto_rgo\": 0.0,\n    \"lista_id\": 2,\n    \"det_orig_id\": 6778211,\n    \"neto_base_impo\": 10330.58,\n    \"monto\": 12500.0,\n    \"impuesto\": 2169.42,\n    \"internal_notes\": \"                \",\n    \"customer_notes\": \"                \",\n    \"observacion\": null\n  },\n  {\n    \"project_code\": \"00016475-0000\",\n    \"last_updated_at\": 1769005293840,\n    \"sale_type\": 3,\n    \"project_po_required\": 1,\n    \"order_code\": 2189025,\n    \"custom_1\": \"FA\",\n    \"order_number\": \"0010-00003751-FA\",\n    \"project_name\": \"(02358) LOPEZ JULIO 341-6204795--\",\n    \"delivery_date\": \"2026-01-21 00:00:00\",\n    \"notes\": \"\",\n    \"plant_code\": null,\n    \"customer_code\": \"16475\",\n    \"customer_name\": \"(02358) LOPEZ JULIO 341-6204795\",\n    \"customer_document\": \"\",\n    \"customer_document1\": \"Consumidor Final\",\n    \"customer_document2\": null,\n    \"customer_document3\": null,\n    \"address_code\": \"00016475\",\n    \"address_street\": \"B° VILLA NATURALEZA\",\n    \"address_city\": \"VILLA RUMIPAL\",\n    \"address_state\": \"CORDOBA\",\n    \"status_code\": \"E\",\n    \"order_inactive\": 0,\n    \"seller_code\": \"45\",\n    \"seller_name\": \"MDL\",\n    \"product_code\": \"VRUH21E\",\n    \"product_type\": 1,\n    \"product_name\": \"HORMIGON ELABORADO VILLA RUMIPAL H21 Z1 ESTANDAR\",\n    \"price\": 76446.281,\n    \"original_quantity\": 6.0,\n    \"quantity\": 6.0,\n    \"delivered_quantity\": 0.0,\n    \"balance\": 6.0,\n    \"esquema\": \"A\",\n    \"order_b\": 0,\n    \"cpr_clasif_id\": 0,\n    \"art_id\": 49895,\n    \"cond_vta_id\": 58,\n    \"pr_vta\": 76446.281,\n    \"pr_final\": 92500.0,\n    \"porc_dto_rgo\": 0.0,\n    \"lista_id\": 2,\n    \"det_orig_id\": 6778209,\n    \"neto_base_impo\": 76446.28,\n    \"monto\": 92500.0,\n    \"impuesto\": 16053.72,\n    \"internal_notes\": \"                \",\n    \"customer_notes\": \"                \",\n    \"observacion\": null\n  },\n  {\n    \"project_code\": \"00016475-0000\",\n    \"last_updated_at\": 1769005293840,\n    \"sale_type\": 3,\n    \"project_po_required\": 1,\n    \"order_code\": 2189025,\n    \"custom_1\": \"FA\",\n    \"order_number\": \"0010-00003751-FA\",\n    \"project_name\": \"(02358) LOPEZ JULIO 341-6204795--\",\n    \"delivery_date\": \"2026-01-21 00:00:00\",\n    \"notes\": \"\",\n    \"plant_code\": null,\n    \"customer_code\": \"16475\",\n    \"customer_name\": \"(02358) LOPEZ JULIO 341-6204795\",\n    \"customer_document\": \"\",\n    \"customer_document1\": \"Consumidor Final\",\n    \"customer_document2\": null,\n    \"customer_document3\": null,\n    \"address_code\": \"00016475\",\n    \"address_street\": \"B° VILLA NATURALEZA\",\n    \"address_city\": \"VILLA RUMIPAL\",\n    \"address_state\": \"CORDOBA\",\n    \"status_code\": \"E\",\n    \"order_inactive\": 0,\n    \"seller_code\": \"45\",\n    \"seller_name\": \"MDL\",\n    \"product_code\": \"VRUH21E\",\n    \"product_type\": 1,\n    \"product_name\": \"HORMIGON ELABORADO VILLA RUMIPAL H21 Z1 ESTANDAR\",\n    \"price\": 76446.281,\n    \"original_quantity\": 2.0,\n    \"quantity\": 2.0,\n    \"delivered_quantity\": 0.0,\n    \"balance\": 2.0,\n    \"esquema\": \"A\",\n    \"order_b\": 0,\n    \"cpr_clasif_id\": 0,\n    \"art_id\": 49895,\n    \"cond_vta_id\": 58,\n    \"pr_vta\": 76446.281,\n    \"pr_final\": 92500.0,\n    \"porc_dto_rgo\": 0.0,\n    \"lista_id\": 2,\n    \"det_orig_id\": 6778212,\n    \"neto_base_impo\": 76446.28,\n    \"monto\": 92500.0,\n    \"impuesto\": 16053.72,\n    \"internal_notes\": \"                \",\n    \"customer_notes\": \"                \",\n    \"observacion\": null\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/orders","description":"<p>Send orders to ReadyMix Application. You can use this method to insert / update orders.</p>\n<h2 id=\"order-object-description\"><strong>Order Object Description:</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>order_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Used to identify each order (must be unique per order)</td>\n</tr>\n<tr>\n<td>delivery_date</td>\n<td>Required</td>\n<td>string</td>\n<td>Date of the delivery</td>\n</tr>\n<tr>\n<td>customer_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Code of the customer (If it doesn't exist, it will create)</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>Required</td>\n<td>string</td>\n<td>Name of the customer (If it doesn't exist, it will create, if the CODE exists, it will update it)</td>\n</tr>\n<tr>\n<td>address_street</td>\n<td>Required</td>\n<td>string</td>\n<td>General Street line</td>\n</tr>\n<tr>\n<td>status_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Status code</td>\n</tr>\n<tr>\n<td>status_name</td>\n<td>Required</td>\n<td>string</td>\n<td>Status name</td>\n</tr>\n<tr>\n<td>order_products</td>\n<td>Required</td>\n<td>array</td>\n<td>Used to indicate the products in the order</td>\n</tr>\n<tr>\n<td>po_number</td>\n<td>Optional</td>\n<td>string</td>\n<td>Additional information about the order (max size = 50)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"optional-fields\"><strong>Optional Fields</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th><strong>Required</strong></th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>project_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>Project name of the orders (send if creating or updating project_code)</td>\n</tr>\n<tr>\n<td>project_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Project code of the orders</td>\n</tr>\n<tr>\n<td>customer_document</td>\n<td>Optional</td>\n<td>string</td>\n<td>Document of the customer</td>\n</tr>\n<tr>\n<td>customer_email</td>\n<td>Optional</td>\n<td>string</td>\n<td>E-mail of the customer</td>\n</tr>\n<tr>\n<td>customer_number</td>\n<td>Optional</td>\n<td>string</td>\n<td>Number of the customer</td>\n</tr>\n<tr>\n<td>customer_note</td>\n<td>Optional</td>\n<td>string</td>\n<td>Note of the customer</td>\n</tr>\n<tr>\n<td>address_number</td>\n<td>Optional</td>\n<td>string</td>\n<td>Number of the Address</td>\n</tr>\n<tr>\n<td>address_district</td>\n<td>Optional</td>\n<td>string</td>\n<td>District of the Address</td>\n</tr>\n<tr>\n<td>city_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>Name of the City</td>\n</tr>\n<tr>\n<td>city_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Code of the city</td>\n</tr>\n<tr>\n<td>address_full</td>\n<td>Optional</td>\n<td>string</td>\n<td>Address full</td>\n</tr>\n<tr>\n<td>address_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Unique code that identifies the Address</td>\n</tr>\n<tr>\n<td>address_complement</td>\n<td>Optional</td>\n<td>string</td>\n<td>Complement of the Address</td>\n</tr>\n<tr>\n<td>address_lat</td>\n<td>Optional</td>\n<td>float</td>\n<td>Latitude of the Address</td>\n</tr>\n<tr>\n<td>address_lng</td>\n<td>Optional</td>\n<td>float</td>\n<td>Longitude of the Address</td>\n</tr>\n<tr>\n<td>purchase_order</td>\n<td>Optional</td>\n<td>string</td>\n<td>Purchase order number</td>\n</tr>\n<tr>\n<td>usage_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Usage code</td>\n</tr>\n<tr>\n<td>usage_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>Usage name (send if creating or updating usage_code)</td>\n</tr>\n<tr>\n<td>status_blocked</td>\n<td>Optional</td>\n<td>bool</td>\n<td>Status blocked (true or false)</td>\n</tr>\n<tr>\n<td>status_color</td>\n<td>Optional</td>\n<td>string</td>\n<td>Shows color list in orders</td>\n</tr>\n<tr>\n<td>internal_notes</td>\n<td>Optional</td>\n<td>string</td>\n<td>Internal order comments</td>\n</tr>\n<tr>\n<td>customer_notes</td>\n<td>Optional</td>\n<td>string</td>\n<td>Customer order comments</td>\n</tr>\n<tr>\n<td>display_price</td>\n<td>Optional</td>\n<td>bool</td>\n<td>Show display price (true or false)</td>\n</tr>\n<tr>\n<td>tax_value</td>\n<td>Optional</td>\n<td>float</td>\n<td>Tax percentage</td>\n</tr>\n<tr>\n<td>tax_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Tax code</td>\n</tr>\n<tr>\n<td>tax_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>Tax name</td>\n</tr>\n<tr>\n<td>plant_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Plant Code of the Orders</td>\n</tr>\n<tr>\n<td>fav_plant_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Favorite Plant Code of the Project</td>\n</tr>\n<tr>\n<td>project_product_price</td>\n<td>Optional</td>\n<td>string</td>\n<td>Only send this if sending a \"project_code\"</td>\n</tr>\n<tr>\n<td>seller_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Seller code</td>\n</tr>\n<tr>\n<td>seller_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>Seller name</td>\n</tr>\n<tr>\n<td>project_pincode</td>\n<td>Optional</td>\n<td>string</td>\n<td>Client app key.</td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"order-products\">Order Products:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>quantity</td>\n<td>Required</td>\n<td>float</td>\n<td>Quantity of the products</td>\n</tr>\n<tr>\n<td>product_name</td>\n<td>Required</td>\n<td>string</td>\n<td>Name of the products (send if creating or updating product_code)</td>\n</tr>\n<tr>\n<td>product_list_price</td>\n<td>Required</td>\n<td>string</td>\n<td>List price default of the products</td>\n</tr>\n<tr>\n<td>item_number</td>\n<td>Required</td>\n<td>int</td>\n<td>number of products in the array, in order.</td>\n</tr>\n<tr>\n<td>product_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Code of the products</td>\n</tr>\n<tr>\n<td>product_type</td>\n<td>Required</td>\n<td>int</td>\n<td>Type of the products  <br />  <br /><strong>Types:</strong>  <br />1 - ReadyMix;  <br />2 - Pump Product;  <br />3 - Grout;  <br />4 - Service;  <br />5 - Additional;  <br />6 - Raw Material;  <br />7 - Minimum Pump Price;  <br />8 - Pump Complement (Add Database);  <br />99 - Others;</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Optional</td>\n<td>float</td>\n<td>price of the product</td>\n</tr>\n<tr>\n<td>pump_order_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Used to link the pump programming with the pump request</td>\n</tr>\n<tr>\n<td>product_description</td>\n<td>Optional</td>\n<td>string</td>\n<td>Only send those fields you want to create or update the product. Otherwise, you can simply just send the \"product_code\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","orders"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"b9f84e4f-718c-475a-a7f7-ec734ee3a115","name":"Created Records","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"order_code\": \"88888888\",\n        \"delivery_date\": \"2024-02-06 16:30:00\",\n        \"plant_code\": \"P001\",\n        \"project_code\": \"0001\",\n        \"project_name\": \"PROJECT TEST NAME\",\n        \"project_pincode\": \"1234\",\n        \"customer_code\": \"55555\",\n        \"customer_name\": \"JOSE TEST NAME\",\n        \"customer_document\": \"22955867802\",\n        \"customer_email\": \"XXXX@HOTMAIL.COM\",\n        \"customer_number\": \"12431241234\",\n        \"customer_note\": \"Good customer ... since 1999\",\n        \"address_code\": \"041162\",\n        \"address_street\": \"1243 STREET ONE\",\n        \"address_number\": \"1243\",\n        \"address_district\": \"WINDERMERE\",\n        \"address_complement\": \"248612\",\n        \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n        \"city_code\": \"ORLANDO\",\n        \"city_name\": \"ORLANDO\",\n        \"purchase_order\": \"purchase order\",\n        \"usage_code\": \"PILARS\",\n        \"usage_name\": \"PILARS\",\n        \"status_code\": \"0001\",\n        \"status_name\": \"Default Status\",\n        \"status_blocked\": false,\n        \"status_color\": \"#FF0000\",\n        \"internal_notes\": \"Some internal Notes you can add here\",\n        \"customer_notes\": \"Some customer Notes you can add here\",\n        \"display_price\": true,\n        \"tax_code\": \"01\",\n        \"tax_name\": \"Default Tax\",\n        \"tax_value\": 0,\n        \"seller_code\": \"001\",\n        \"seller_name\": \"SALES REP TEST\",\n        \"order_products\": [\n        { \n            \"item_number\":1,\n            \"product_code\": \"000\",\n            \"product_type\": 2,\n            \"product_name\": \"STATIONARY PUMP\",\n            \"product_list_price\": 0,\n            \"quantity\": 40,\n            \"price\": 10,\n            \"delivery_type\": 2,\n            \"pump_order_code\": \"88888888\"\n        },\n        {\n            \"item_number\":2,\n            \"product_code\": \"001\",\n            \"product_type\": 1,\n            \"product_name\": \"CONCRETE TEST 001\",\n            \"product_list_price\": 0,\n            \"quantity\": 40,\n            \"price\": 70,\n            \"delivery_type\": 2,\n            \"pump_code\": \"000\",\n            \"pump_order_code\": \"88888888\"\n        }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 18:45:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"137"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"order_code\": \"88888888\",\n                \"status\": \"Updated\"\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"e87513f2-0d2d-417d-8064-e86cc9a50d2d","name":"Error Records","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"order_code\": \"888888ss88\",\n        \"delivery_date\": \"\",\n        \"plant_code\": \"P001\",\n        \"project_code\": \"0001\",\n        \"project_name\": \"PROJECT TEST NAME\",\n        \"project_pincode\": \"1234\",\n        \"customer_code\": \"55555\",\n        \"customer_name\": \"JOSE TEST NAME\",\n        \"customer_document\": \"22955867802\",\n        \"customer_email\": \"XXXX@HOTMAIL.COM\",\n        \"customer_number\": \"12431241234\",\n        \"customer_note\": \"Good customer ... since 1999\",\n        \"address_code\": \"041162\",\n        \"address_street\": \"1243 STREET ONE\",\n        \"address_number\": \"1243\",\n        \"address_district\": \"WINDERMERE\",\n        \"address_complement\": \"248612\",\n        \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n        \"city_code\": \"ORLANDO\",\n        \"city_name\": \"ORLANDO\",\n        \"purchase_order\": \"purchase order\",\n        \"usage_code\": \"PILARS\",\n        \"usage_name\": \"PILARS\",\n        \"status_code\": \"0001\",\n        \"status_name\": \"Default Status\",\n        \"status_blocked\": false,\n        \"status_color\": \"#FF0000\",\n        \"internal_notes\": \"Some internal Notes you can add here\",\n        \"customer_notes\": \"Some customer Notes you can add here\",\n        \"display_price\": true,\n        \"tax_code\": \"01\",\n        \"tax_name\": \"Default Tax\",\n        \"tax_value\": 0,\n        \"seller_code\": \"001\",\n        \"seller_name\": \"SALES REP TEST\",\n        \"order_products\": [\n        { \n            \"item_number\":1,\n            \"product_code\": \"000\",\n            \"product_type\": 2,\n            \"product_name\": \"STATIONARY PUMP\",\n            \"product_list_price\": 0,\n            \"quantity\": 40,\n            \"price\": 10,\n            \"delivery_type\": 2,\n            \"pump_order_code\": \"88888888\"\n        },\n        {\n            \"item_number\":2,\n            \"product_code\": \"001\",\n            \"product_type\": 1,\n            \"product_name\": \"CONCRETE TEST 001\",\n            \"product_list_price\": 0,\n            \"quantity\": 40,\n            \"price\": 70,\n            \"delivery_type\": 2,\n            \"pump_code\": \"000\",\n            \"pump_order_code\": \"88888888\"\n        }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 18:46:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"471"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [],\n        \"failed_records\": [\n            {\n                \"order_code\": \"888888ss88\",\n                \"reason\": \"{'delivery_date': [ErrorDetail(string='Datetime has wrong format. Use one of these formats instead: YYYY-MM-DDThh:mm[:ss[.uuuuuu]][+HH:MM|-HH:MM|Z].', code='invalid')], 'first_arrival_at': [ErrorDetail(string='Datetime has wrong format. Use one of these formats instead: YYYY-MM-DDThh:mm[:ss[.uuuuuu]][+HH:MM|-HH:MM|Z].', code='invalid')]}\"\n            }\n        ]\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"4d3228d9-77d8-465f-827e-08a127748a4b"},{"name":"Delete Orders","id":"e75f747f-329a-476d-974a-4925fcdde8f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"order_code\": \"88888888\"    \n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/orders","description":"<p>Use this request to delete some orders</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>order_code</td>\n<td>Required</td>\n<td>string</td>\n<td>The order code, this value is used to identify each order, must be unique per order</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","orders"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"764c60ca-14d5-4b24-b0e8-b644324ae6b3","name":"Delete Records","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"order_code\": \"88888888\"    \n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 18:48:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"137"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"order_code\": \"88888888\",\n                \"status\": \"Deleted\"\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"7cbf2c2a-6aa9-4fb8-8248-ba678ba2d0b3","name":"Error Records","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"order_code\": \"\"    \n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 18:48:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"143"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [],\n        \"failed_records\": [\n            {\n                \"order_code\": \"\",\n                \"reason\": \"Record does not exist\"\n            }\n        ]\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"e75f747f-329a-476d-974a-4925fcdde8f6"},{"name":"List Orders","id":"96a8590d-014f-496c-bc04-22ab86741f08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"token","value":"{{your-company-token}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/orders?start=2024-02-03&end=2024-02-08","description":"<p>List orders to Loop 4 Readymix Application with some parameters.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Required</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>order_code</td>\n<td>Optional</td>\n<td>Order code</td>\n</tr>\n<tr>\n<td>start</td>\n<td><strong>Required</strong></td>\n<td>'YYYY-MM-DD'</td>\n</tr>\n<tr>\n<td>end</td>\n<td><strong>Required</strong></td>\n<td>'YYYY-MM-DD'</td>\n</tr>\n<tr>\n<td>plant_code</td>\n<td>Optional</td>\n<td>plant code</td>\n</tr>\n<tr>\n<td>client</td>\n<td>Optional</td>\n<td>Client name</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","orders"],"host":["https://integration.loop4.io"],"query":[{"description":{"content":"<p>Date from</p>\n","type":"text/plain"},"key":"start","value":"2024-02-03"},{"description":{"content":"<p>Date to</p>\n","type":"text/plain"},"key":"end","value":"2024-02-08"}],"variable":[]}},"response":[{"id":"31ffacd0-ab77-4dd9-b741-e2ea94ed73d4","name":"List Records","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://integration.readymix.io/api/sync/orders?start=2024-01-01&end=2024-02-06","protocol":"https","host":["integration","readymix","io"],"path":["api","sync","orders"],"query":[{"key":"start","value":"2024-01-01","description":"Date from"},{"key":"end","value":"2024-02-06","description":"Date to"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 18:52:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"190483"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 1155558,\n            \"order_date\": \"2024-01-04\",\n            \"delivery_date\": \"2024-01-04 22:00:00\",\n            \"first_arrival_at\": \"2024-01-04 22:00:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 327325,\n                \"name\": \"ALBERTO COUTO ALVES, S.A.\",\n                \"email\": null,\n                \"phone\": null,\n                \"erpkey\": \"2850\",\n                \"notes\": null,\n                \"document\": null,\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": null,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 10,\n            \"status\": {\n                \"id\": 1278,\n                \"status\": \"Cancelado\",\n                \"color\": \"#efe423\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Cancelado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1524183,\n                    \"order\": 1155558,\n                    \"product\": {\n                        \"id\": 71934,\n                        \"code\": \"121502X0410000\",\n                        \"name\": \"C12/15 S2 X0(P) CL0.4 D12 CORRENTE\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 10,\n                    \"price\": 10,\n                    \"extended_price\": 100,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 10\n                }\n            ],\n            \"project\": {\n                \"id\": 547488735,\n                \"tms_address\": {\n                    \"id\": 544265,\n                    \"address_erpkey\": \"2023-P7-234200\",\n                    \"address_street\": \"Rua São Paulo\",\n                    \"address_number\": null,\n                    \"address_district\": \"Centro\",\n                    \"address_complement\": null,\n                    \"postal_code\": null,\n                    \"lat\": -19.9199172769004,\n                    \"lng\": -43.9408132973867,\n                    \"polyg\": \"AAAAAAEDAAAAAQAAAAUAAADxNvExSfhFwNJRaWbe6jPAPKZttAX4RcBFnDMkmuszwPTGJySC+EXAKYUfVkfsM8DndOS8x/hFwBka1sxz6zPA8TbxMUn4RcDSUWlm3uozwA==\",\n                    \"radius\": null,\n                    \"address_full\": \"Rua São Paulo, Centro, Belo Horizonte, Minas Gerais\",\n                    \"state\": \"Minas Gerais\",\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"Belo Horizonte\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 327325\n                },\n                \"codcontrato\": \"A327325A544265\",\n                \"clinome\": \"ALBERTO COUTO ALVES, S.A.\",\n                \"cliendereco\": \"VILAMOURA\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": true,\n                \"customer_key\": null,\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 456300,\n                \"credit_delivered\": 0,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 0,\n                \"display_price\": true,\n                \"created_at\": \"2023-11-13T16:17:03-03:00\",\n                \"updated_at\": \"2024-01-30T12:59:03-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 327325,\n                \"billing_address\": null,\n                \"seller\": null,\n                \"status\": null,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 544265,\n                \"address_erpkey\": \"2023-P7-234200\",\n                \"address_street\": \"Rua São Paulo\",\n                \"address_number\": null,\n                \"address_district\": \"Centro\",\n                \"address_complement\": null,\n                \"postal_code\": null,\n                \"lat\": -19.9199172769004,\n                \"lng\": -43.9408132973867,\n                \"polyg\": \"AAAAAAEDAAAAAQAAAAUAAADxNvExSfhFwNJRaWbe6jPAPKZttAX4RcBFnDMkmuszwPTGJySC+EXAKYUfVkfsM8DndOS8x/hFwBka1sxz6zPA8TbxMUn4RcDSUWlm3uozwA==\",\n                \"radius\": null,\n                \"address_full\": \"Rua São Paulo, Centro, Belo Horizonte, Minas Gerais\",\n                \"state\": \"Minas Gerais\",\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"Belo Horizonte\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 327325\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": false,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": 30,\n            \"load_time\": 20,\n            \"go_time\": 20,\n            \"unload_time\": 8,\n            \"back_time\": 20,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"173\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 100,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-10T09:16:25-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                71934\n            ]\n        },\n        {\n            \"id\": 1160147,\n            \"order_date\": \"2024-01-09\",\n            \"delivery_date\": \"2024-01-09 10:00:00\",\n            \"first_arrival_at\": \"2024-01-09 10:00:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 266723,\n                \"name\": \"JOSE TEST NAME\",\n                \"email\": \"XXXX@HOTMAIL.COM\",\n                \"phone\": \"12431241234\",\n                \"erpkey\": \"55555\",\n                \"notes\": \"Good customer ... since 1999\",\n                \"document\": \"22955867802\",\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 999,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 1,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1531485,\n                    \"order\": 1160147,\n                    \"product\": {\n                        \"id\": 61790,\n                        \"code\": \"HN131520\",\n                        \"name\": \"HORMIGON ELAB. C/CPC40 H13 AS.15CM PP6-20\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 3,\n                        \"fck\": 30,\n                        \"coarse_agg\": \"PP50\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 1,\n                    \"price\": 1,\n                    \"extended_price\": 1,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 1\n                }\n            ],\n            \"project\": {\n                \"id\": 547429391,\n                \"tms_address\": {\n                    \"id\": 452591,\n                    \"address_erpkey\": \"041162\",\n                    \"address_street\": \"1243 STREET ONE\",\n                    \"address_number\": \"1243\",\n                    \"address_district\": \"WINDERMERE\",\n                    \"address_complement\": \"248612\",\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"ORLANDO\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 266723\n                },\n                \"codcontrato\": \"A266723A452591\",\n                \"clinome\": \"KAUE\",\n                \"cliendereco\": null,\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": true,\n                \"customer_key\": \"429759490\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 9993,\n                \"credit_delivered\": 8,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 8,\n                \"display_price\": true,\n                \"created_at\": \"2023-07-14T10:43:05-03:00\",\n                \"updated_at\": \"2024-01-18T14:44:13-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 266723,\n                \"billing_address\": null,\n                \"seller\": null,\n                \"status\": null,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 452591,\n                \"address_erpkey\": \"041162\",\n                \"address_street\": \"1243 STREET ONE\",\n                \"address_number\": \"1243\",\n                \"address_district\": \"WINDERMERE\",\n                \"address_complement\": \"248612\",\n                \"postal_code\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"state\": null,\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"ORLANDO\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 266723\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": false,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": 30,\n            \"load_time\": 20,\n            \"go_time\": 20,\n            \"unload_time\": 8,\n            \"back_time\": 20,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"174\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 1,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-17T08:55:56-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                61790\n            ]\n        },\n        {\n            \"id\": 1162055,\n            \"order_date\": \"2024-01-10\",\n            \"delivery_date\": \"2024-01-10 20:00:00\",\n            \"first_arrival_at\": \"2024-01-10 20:00:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 327325,\n                \"name\": \"ALBERTO COUTO ALVES, S.A.\",\n                \"email\": null,\n                \"phone\": null,\n                \"erpkey\": \"2850\",\n                \"notes\": null,\n                \"document\": null,\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": null,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 20,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1534613,\n                    \"order\": 1162055,\n                    \"product\": {\n                        \"id\": 71934,\n                        \"code\": \"121502X0410000\",\n                        \"name\": \"C12/15 S2 X0(P) CL0.4 D12 CORRENTE\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 20,\n                    \"price\": 100,\n                    \"extended_price\": 2000,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                }\n            ],\n            \"project\": {\n                \"id\": 547488735,\n                \"tms_address\": {\n                    \"id\": 544265,\n                    \"address_erpkey\": \"2023-P7-234200\",\n                    \"address_street\": \"Rua São Paulo\",\n                    \"address_number\": null,\n                    \"address_district\": \"Centro\",\n                    \"address_complement\": null,\n                    \"postal_code\": null,\n                    \"lat\": -19.9199172769004,\n                    \"lng\": -43.9408132973867,\n                    \"polyg\": \"AAAAAAEDAAAAAQAAAAUAAADxNvExSfhFwNJRaWbe6jPAPKZttAX4RcBFnDMkmuszwPTGJySC+EXAKYUfVkfsM8DndOS8x/hFwBka1sxz6zPA8TbxMUn4RcDSUWlm3uozwA==\",\n                    \"radius\": null,\n                    \"address_full\": \"Rua São Paulo, Centro, Belo Horizonte, Minas Gerais\",\n                    \"state\": \"Minas Gerais\",\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"Belo Horizonte\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 327325\n                },\n                \"codcontrato\": \"A327325A544265\",\n                \"clinome\": \"ALBERTO COUTO ALVES, S.A.\",\n                \"cliendereco\": \"VILAMOURA\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": true,\n                \"customer_key\": null,\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 456300,\n                \"credit_delivered\": 0,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 0,\n                \"display_price\": true,\n                \"created_at\": \"2023-11-13T16:17:03-03:00\",\n                \"updated_at\": \"2024-01-30T12:59:03-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 327325,\n                \"billing_address\": null,\n                \"seller\": null,\n                \"status\": null,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 544265,\n                \"address_erpkey\": \"2023-P7-234200\",\n                \"address_street\": \"Rua São Paulo\",\n                \"address_number\": null,\n                \"address_district\": \"Centro\",\n                \"address_complement\": null,\n                \"postal_code\": null,\n                \"lat\": -19.9199172769004,\n                \"lng\": -43.9408132973867,\n                \"polyg\": \"AAAAAAEDAAAAAQAAAAUAAADxNvExSfhFwNJRaWbe6jPAPKZttAX4RcBFnDMkmuszwPTGJySC+EXAKYUfVkfsM8DndOS8x/hFwBka1sxz6zPA8TbxMUn4RcDSUWlm3uozwA==\",\n                \"radius\": null,\n                \"address_full\": \"Rua São Paulo, Centro, Belo Horizonte, Minas Gerais\",\n                \"state\": \"Minas Gerais\",\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"Belo Horizonte\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 327325\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": false,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": 30,\n            \"load_time\": 20,\n            \"go_time\": 20,\n            \"unload_time\": 8,\n            \"back_time\": 20,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"175\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 2000,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-10T16:26:17-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                71934\n            ]\n        },\n        {\n            \"id\": 1162075,\n            \"order_date\": \"2024-01-10\",\n            \"delivery_date\": \"2024-01-10 20:00:00\",\n            \"first_arrival_at\": \"2024-01-10 20:00:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 327307,\n                \"name\": \"ALVES RIBEIRO, SA\",\n                \"email\": null,\n                \"phone\": null,\n                \"erpkey\": \"1631\",\n                \"notes\": null,\n                \"document\": null,\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": null,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 10,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1534648,\n                    \"order\": 1162075,\n                    \"product\": {\n                        \"id\": 69877,\n                        \"code\": \"H21F 6-20\",\n                        \"name\": \"HORMIGON H21 FILLER 6-20\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 3,\n                        \"fck\": 30,\n                        \"coarse_agg\": \"PP50\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 10,\n                    \"price\": 10,\n                    \"extended_price\": 100,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 10\n                }\n            ],\n            \"project\": {\n                \"id\": 547508669,\n                \"tms_address\": {\n                    \"id\": 544225,\n                    \"address_erpkey\": \"2023-EC13-99\",\n                    \"address_street\": \"TROIA\",\n                    \"address_number\": null,\n                    \"address_district\": null,\n                    \"address_complement\": null,\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"TROIA, TROIA, 7570-157\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"TROIA\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 327307\n                },\n                \"codcontrato\": \"A327307A544225\",\n                \"clinome\": \"ALVES RIBEIRO, SA\",\n                \"cliendereco\": null,\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": true,\n                \"customer_key\": \"105883760\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 0,\n                \"credit_delivered\": 100,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 100,\n                \"display_price\": true,\n                \"created_at\": \"2024-01-10T16:26:43-03:00\",\n                \"updated_at\": \"2024-01-10T17:41:48-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 327307,\n                \"billing_address\": null,\n                \"seller\": null,\n                \"status\": null,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 544225,\n                \"address_erpkey\": \"2023-EC13-99\",\n                \"address_street\": \"TROIA\",\n                \"address_number\": null,\n                \"address_district\": null,\n                \"address_complement\": null,\n                \"postal_code\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"TROIA, TROIA, 7570-157\",\n                \"state\": null,\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"TROIA\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 327307\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": false,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": 30,\n            \"load_time\": 20,\n            \"go_time\": 20,\n            \"unload_time\": 8,\n            \"back_time\": 20,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"180\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 100,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-10T16:36:51-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                69877\n            ]\n        },\n        {\n            \"id\": 1162078,\n            \"order_date\": \"2024-01-10\",\n            \"delivery_date\": \"2024-01-10 20:00:00\",\n            \"first_arrival_at\": \"2024-01-10 20:00:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 327323,\n                \"name\": \"ANIBAL OLIVEIRA CRISTINA LDA\",\n                \"email\": null,\n                \"phone\": null,\n                \"erpkey\": \"19\",\n                \"notes\": null,\n                \"document\": null,\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": null,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 1,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1534654,\n                    \"order\": 1162078,\n                    \"product\": {\n                        \"id\": 70167,\n                        \"code\": \"0000002\",\n                        \"name\": \"Argamassa Fina\",\n                        \"description\": null,\n                        \"list_price\": 100,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 3,\n                        \"fck\": 30,\n                        \"coarse_agg\": \"PP30\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 3,\n                        \"removed_by\": null,\n                        \"uom\": 122,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 1,\n                    \"price\": 1,\n                    \"extended_price\": 1,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 1\n                }\n            ],\n            \"project\": {\n                \"id\": 547488729,\n                \"tms_address\": {\n                    \"id\": 544258,\n                    \"address_erpkey\": \"2023-P7-234194\",\n                    \"address_street\": \"VILAMOURA\",\n                    \"address_number\": null,\n                    \"address_district\": null,\n                    \"address_complement\": null,\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"VILAMOURA\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": null,\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 327323\n                },\n                \"codcontrato\": \"A327323A544258\",\n                \"clinome\": \"ANIBAL OLIVEIRA CRISTINA LDA\",\n                \"cliendereco\": \"VILAMOURA\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": true,\n                \"customer_key\": null,\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 1,\n                \"credit_delivered\": 0,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 0,\n                \"display_price\": true,\n                \"created_at\": \"2023-11-13T16:16:37-03:00\",\n                \"updated_at\": \"2024-01-10T16:37:59-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 327323,\n                \"billing_address\": null,\n                \"seller\": null,\n                \"status\": null,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 544258,\n                \"address_erpkey\": \"2023-P7-234194\",\n                \"address_street\": \"VILAMOURA\",\n                \"address_number\": null,\n                \"address_district\": null,\n                \"address_complement\": null,\n                \"postal_code\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"VILAMOURA\",\n                \"state\": null,\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": null,\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 327323\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": false,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": 30,\n            \"load_time\": 20,\n            \"go_time\": 20,\n            \"unload_time\": 8,\n            \"back_time\": 20,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"181\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 1,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-10T16:37:59-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                70167\n            ]\n        },\n        {\n            \"id\": 1164634,\n            \"order_date\": \"2024-01-12\",\n            \"delivery_date\": \"2024-01-12 11:09:00\",\n            \"first_arrival_at\": \"2024-01-12 11:09:00\",\n            \"geofence\": null,\n            \"client\": {\n                \"id\": 351501,\n                \"name\": \"SOCRATES E RIVELINO\",\n                \"email\": null,\n                \"phone\": null,\n                \"erpkey\": \"01383\",\n                \"notes\": null,\n                \"document\": null,\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 0,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 10,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1538725,\n                    \"order\": 1164634,\n                    \"product\": {\n                        \"id\": 71458,\n                        \"code\": \"HN301040\",\n                        \"name\": \"HORMIGON ELAB. C/CPC40\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3.5,\n                        \"fck\": 30,\n                        \"coarse_agg\": \"PP20\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 123,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 10,\n                    \"price\": 1000,\n                    \"extended_price\": 10000,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                }\n            ],\n            \"project\": {\n                \"id\": 547509305,\n                \"tms_address\": {\n                    \"id\": 567771,\n                    \"address_erpkey\": null,\n                    \"address_street\": \"Rua Brasília\",\n                    \"address_number\": null,\n                    \"address_district\": \"Itaim Bibi\",\n                    \"address_complement\": null,\n                    \"postal_code\": \"04534-040\",\n                    \"lat\": -23.5831278,\n                    \"lng\": -46.6722748,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"Rua Brasília, Itaim Bibi, São Paulo, São Paulo, 04534-040\",\n                    \"state\": \"São Paulo\",\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"São Paulo\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 351501\n                },\n                \"codcontrato\": \"48309583\",\n                \"clinome\": \"SOCRATES E RIVELINO\",\n                \"cliendereco\": \"Rua Brasília, Itaim Bibi, São Paulo, São Paulo, 04534-040\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"344454632\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 10200,\n                \"credit_delivered\": 800,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 5,\n                \"spent_total_value\": 800,\n                \"display_price\": true,\n                \"created_at\": \"2024-01-12T11:09:31-03:00\",\n                \"updated_at\": \"2024-01-17T15:09:04-03:00\",\n                \"po_required\": true,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 351501,\n                \"billing_address\": 567771,\n                \"seller\": null,\n                \"status\": 976,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 567771,\n                \"address_erpkey\": null,\n                \"address_street\": \"Rua Brasília\",\n                \"address_number\": null,\n                \"address_district\": \"Itaim Bibi\",\n                \"address_complement\": null,\n                \"postal_code\": \"04534-040\",\n                \"lat\": -23.5831278,\n                \"lng\": -46.6722748,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"Rua Brasília, Itaim Bibi, São Paulo, São Paulo, 04534-040\",\n                \"state\": \"São Paulo\",\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"São Paulo\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 351501\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": false,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": 30,\n            \"load_time\": 20,\n            \"go_time\": 20,\n            \"unload_time\": 8,\n            \"back_time\": 20,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"182\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 10000,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-17T15:08:01-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 3,\n            \"project_b\": null,\n            \"products\": [\n                71458\n            ]\n        },\n        {\n            \"id\": 1164741,\n            \"order_date\": \"2024-01-12\",\n            \"delivery_date\": \"2024-01-12 20:00:00\",\n            \"first_arrival_at\": \"2024-01-12 20:00:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 351501,\n                \"name\": \"SOCRATES E RIVELINO\",\n                \"email\": null,\n                \"phone\": null,\n                \"erpkey\": \"01383\",\n                \"notes\": null,\n                \"document\": null,\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 0,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 10,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1538894,\n                    \"order\": 1164741,\n                    \"product\": {\n                        \"id\": 71458,\n                        \"code\": \"HN301040\",\n                        \"name\": \"HORMIGON ELAB. C/CPC40\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3.5,\n                        \"fck\": 30,\n                        \"coarse_agg\": \"PP20\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 123,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 10,\n                    \"price\": 100,\n                    \"extended_price\": 1000,\n                    \"planned\": true,\n                    \"pump\": null,\n                    \"planned_qtd\": 10\n                }\n            ],\n            \"project\": {\n                \"id\": 547509305,\n                \"tms_address\": {\n                    \"id\": 567771,\n                    \"address_erpkey\": null,\n                    \"address_street\": \"Rua Brasília\",\n                    \"address_number\": null,\n                    \"address_district\": \"Itaim Bibi\",\n                    \"address_complement\": null,\n                    \"postal_code\": \"04534-040\",\n                    \"lat\": -23.5831278,\n                    \"lng\": -46.6722748,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"Rua Brasília, Itaim Bibi, São Paulo, São Paulo, 04534-040\",\n                    \"state\": \"São Paulo\",\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"São Paulo\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 351501\n                },\n                \"codcontrato\": \"48309583\",\n                \"clinome\": \"SOCRATES E RIVELINO\",\n                \"cliendereco\": \"Rua Brasília, Itaim Bibi, São Paulo, São Paulo, 04534-040\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"344454632\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 10200,\n                \"credit_delivered\": 800,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 5,\n                \"spent_total_value\": 800,\n                \"display_price\": true,\n                \"created_at\": \"2024-01-12T11:09:31-03:00\",\n                \"updated_at\": \"2024-01-17T15:09:04-03:00\",\n                \"po_required\": true,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 351501,\n                \"billing_address\": 567771,\n                \"seller\": null,\n                \"status\": 976,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 567771,\n                \"address_erpkey\": null,\n                \"address_street\": \"Rua Brasília\",\n                \"address_number\": null,\n                \"address_district\": \"Itaim Bibi\",\n                \"address_complement\": null,\n                \"postal_code\": \"04534-040\",\n                \"lat\": -23.5831278,\n                \"lng\": -46.6722748,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"Rua Brasília, Itaim Bibi, São Paulo, São Paulo, 04534-040\",\n                \"state\": \"São Paulo\",\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"São Paulo\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 351501\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": true,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": null,\n            \"load_time\": null,\n            \"go_time\": null,\n            \"unload_time\": null,\n            \"back_time\": null,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"185\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 1000,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-12T11:55:26-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                71458\n            ]\n        },\n        {\n            \"id\": 1167316,\n            \"order_date\": \"2024-01-15\",\n            \"delivery_date\": \"2024-01-15 10:00:00\",\n            \"first_arrival_at\": \"2024-01-15 10:00:00\",\n            \"geofence\": {\n                \"id\": 2247,\n                \"idgeofence\": 0,\n                \"name\": \"Poli\",\n                \"description\": null,\n                \"lat\": -23.6428,\n                \"lng\": -46.6325,\n                \"poly\": \"[[-46.635174542164926,-23.643669145452055],[-46.634037869627534,-23.640818928033944],[-46.63047772545382,-23.64077961425628],[-46.631764524552764,-23.64589030633557],[-46.63556058189459,-23.6453006212812],[-46.635174542164926,-23.643669145452055]]\",\n                \"polypoints\": 6,\n                \"code\": \"Poli1\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 351774,\n                \"name\": \"Gustavo\",\n                \"email\": \"Asdas@asdasda\",\n                \"phone\": null,\n                \"erpkey\": \"002\",\n                \"notes\": null,\n                \"document\": \"205150\",\n                \"document2\": \"665065\",\n                \"document3\": \"5699987\",\n                \"document4\": \"99850\",\n                \"person_type\": \"N\",\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": null,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 21,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1543082,\n                    \"order\": 1167316,\n                    \"product\": {\n                        \"id\": 71935,\n                        \"code\": \"253002X0220000\",\n                        \"name\": \"C25/30 S2 X0(P) CL0.2 D22 CORRENTE\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 20,\n                    \"price\": 1000,\n                    \"extended_price\": 20000,\n                    \"planned\": true,\n                    \"pump\": {\n                        \"id\": 73090,\n                        \"code\": \"Pump 1\",\n                        \"name\": \"Serviço de Bomba Lança\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 2,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"planned_qtd\": 20\n                },\n                {\n                    \"id\": 1543083,\n                    \"order\": 1167316,\n                    \"product\": {\n                        \"id\": 61819,\n                        \"code\": \"0001\",\n                        \"name\": \"Entrega aos Sábados após 12h\",\n                        \"description\": \"As entregas feitas no Sábado após 12h serão cobrados um valor adicional\",\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": true,\n                        \"default_value\": 50,\n                        \"value_type\": \"P\",\n                        \"comparison_value\": 3,\n                        \"comparison_operator\": \">\",\n                        \"comparison_operator_value\": \"12.0\",\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": \"00000100\",\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 5,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 1,\n                    \"price\": null,\n                    \"extended_price\": null,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                }\n            ],\n            \"project\": {\n                \"id\": 547509847,\n                \"tms_address\": {\n                    \"id\": 568367,\n                    \"address_erpkey\": \"002\",\n                    \"address_street\": \"av sasdasd\",\n                    \"address_number\": \"25\",\n                    \"address_district\": \"aa\",\n                    \"address_complement\": null,\n                    \"postal_code\": \"aa\",\n                    \"lat\": -23.5323220968521,\n                    \"lng\": -46.7938721179962,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                    \"state\": \"São Paulo\",\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"Osasco\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 351774\n                },\n                \"codcontrato\": \"0888\",\n                \"clinome\": \"Gustavo\",\n                \"cliendereco\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"601621239\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 0,\n                \"credit_delivered\": 25000,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 3,\n                \"spent_total_value\": 25000,\n                \"display_price\": true,\n                \"created_at\": \"2024-01-15T14:24:40-03:00\",\n                \"updated_at\": \"2024-01-15T16:14:46-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 351774,\n                \"billing_address\": 568367,\n                \"seller\": null,\n                \"status\": 976,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 568367,\n                \"address_erpkey\": \"002\",\n                \"address_street\": \"av sasdasd\",\n                \"address_number\": \"25\",\n                \"address_district\": \"aa\",\n                \"address_complement\": null,\n                \"postal_code\": \"aa\",\n                \"lat\": -23.5323220968521,\n                \"lng\": -46.7938721179962,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                \"state\": \"São Paulo\",\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"Osasco\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 351774\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": true,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": null,\n            \"load_time\": null,\n            \"go_time\": null,\n            \"unload_time\": null,\n            \"back_time\": null,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"186\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 20000,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-15T14:41:34-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                71935,\n                61819\n            ]\n        },\n        {\n            \"id\": 1167406,\n            \"order_date\": \"2024-01-15\",\n            \"delivery_date\": \"2024-01-15 18:15:00\",\n            \"first_arrival_at\": \"2024-01-15 18:15:00\",\n            \"geofence\": {\n                \"id\": 2247,\n                \"idgeofence\": 0,\n                \"name\": \"Poli\",\n                \"description\": null,\n                \"lat\": -23.6428,\n                \"lng\": -46.6325,\n                \"poly\": \"[[-46.635174542164926,-23.643669145452055],[-46.634037869627534,-23.640818928033944],[-46.63047772545382,-23.64077961425628],[-46.631764524552764,-23.64589030633557],[-46.63556058189459,-23.6453006212812],[-46.635174542164926,-23.643669145452055]]\",\n                \"polypoints\": 6,\n                \"code\": \"Poli1\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 351791,\n                \"name\": \"Testando Loop\",\n                \"email\": \"loop@123\",\n                \"phone\": null,\n                \"erpkey\": \"139345\",\n                \"notes\": null,\n                \"document\": \"123456\",\n                \"document2\": \"123456\",\n                \"document3\": \"123456\",\n                \"document4\": \"123456\",\n                \"person_type\": \"L\",\n                \"legal_name\": \"123456\",\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": null,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 8,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1543219,\n                    \"order\": 1167406,\n                    \"product\": {\n                        \"id\": 71887,\n                        \"code\": \"162003X0410000\",\n                        \"name\": \"C16/20 S3 X0(P) CL0.4 D12 CORRENTE\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 8,\n                    \"price\": 5000,\n                    \"extended_price\": 40000,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 8\n                }\n            ],\n            \"project\": {\n                \"id\": 547509854,\n                \"tms_address\": {\n                    \"id\": 568386,\n                    \"address_erpkey\": null,\n                    \"address_street\": \"Rua de New York\",\n                    \"address_number\": \"123\",\n                    \"address_district\": null,\n                    \"address_complement\": \"ap 321\",\n                    \"postal_code\": null,\n                    \"lat\": 40.7140452803671,\n                    \"lng\": -74.0060091018677,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                    \"state\": \"Nova York\",\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"Nova Iorque\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 351791\n                },\n                \"codcontrato\": \"A351791A568386\",\n                \"clinome\": \"Testando Loop\",\n                \"cliendereco\": null,\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": true,\n                \"customer_key\": \"826248335\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 5000,\n                \"credit_delivered\": 25000,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 25000,\n                \"display_price\": true,\n                \"created_at\": \"2024-01-15T15:17:24-03:00\",\n                \"updated_at\": \"2024-01-15T16:04:21-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 351791,\n                \"billing_address\": null,\n                \"seller\": null,\n                \"status\": null,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 568386,\n                \"address_erpkey\": null,\n                \"address_street\": \"Rua de New York\",\n                \"address_number\": \"123\",\n                \"address_district\": null,\n                \"address_complement\": \"ap 321\",\n                \"postal_code\": null,\n                \"lat\": 40.7140452803671,\n                \"lng\": -74.0060091018677,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                \"state\": \"Nova York\",\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"Nova Iorque\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 351791\n            },\n            \"seller\": {\n                \"id\": 81608,\n                \"code\": \"V0001\",\n                \"name\": \"Paulo Azevedo Queiroz\",\n                \"erpkey\": \"V0001\",\n                \"company\": 447\n            },\n            \"city\": null,\n            \"zip\": null,\n            \"po\": \"Pedido adicional\",\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": false,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": 30,\n            \"load_time\": 20,\n            \"go_time\": 20,\n            \"unload_time\": 8,\n            \"back_time\": 20,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"187\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 40000,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-15T15:59:29-03:00\",\n            \"company\": 447,\n            \"usage\": 5235,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                71887\n            ]\n        },\n        {\n            \"id\": 1167507,\n            \"order_date\": \"2024-01-15\",\n            \"delivery_date\": \"2024-01-15 19:03:00\",\n            \"first_arrival_at\": \"2024-01-15 19:03:00\",\n            \"geofence\": {\n                \"id\": 2247,\n                \"idgeofence\": 0,\n                \"name\": \"Poli\",\n                \"description\": null,\n                \"lat\": -23.6428,\n                \"lng\": -46.6325,\n                \"poly\": \"[[-46.635174542164926,-23.643669145452055],[-46.634037869627534,-23.640818928033944],[-46.63047772545382,-23.64077961425628],[-46.631764524552764,-23.64589030633557],[-46.63556058189459,-23.6453006212812],[-46.635174542164926,-23.643669145452055]]\",\n                \"polypoints\": 6,\n                \"code\": \"Poli1\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 351791,\n                \"name\": \"Testando Loop\",\n                \"email\": \"loop@123\",\n                \"phone\": null,\n                \"erpkey\": \"139345\",\n                \"notes\": null,\n                \"document\": \"123456\",\n                \"document2\": \"123456\",\n                \"document3\": \"123456\",\n                \"document4\": \"123456\",\n                \"person_type\": \"L\",\n                \"legal_name\": \"123456\",\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": null,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": -2,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1543359,\n                    \"order\": 1167507,\n                    \"product\": {\n                        \"id\": 73090,\n                        \"code\": \"Pump 1\",\n                        \"name\": \"Serviço de Bomba Lança\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 2,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": -2,\n                    \"price\": 5000,\n                    \"extended_price\": 1,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                }\n            ],\n            \"project\": {\n                \"id\": 547509854,\n                \"tms_address\": {\n                    \"id\": 568386,\n                    \"address_erpkey\": null,\n                    \"address_street\": \"Rua de New York\",\n                    \"address_number\": \"123\",\n                    \"address_district\": null,\n                    \"address_complement\": \"ap 321\",\n                    \"postal_code\": null,\n                    \"lat\": 40.7140452803671,\n                    \"lng\": -74.0060091018677,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                    \"state\": \"Nova York\",\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"Nova Iorque\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 351791\n                },\n                \"codcontrato\": \"A351791A568386\",\n                \"clinome\": \"Testando Loop\",\n                \"cliendereco\": null,\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": true,\n                \"customer_key\": \"826248335\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 5000,\n                \"credit_delivered\": 25000,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 25000,\n                \"display_price\": true,\n                \"created_at\": \"2024-01-15T15:17:24-03:00\",\n                \"updated_at\": \"2024-01-15T16:04:21-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 351791,\n                \"billing_address\": null,\n                \"seller\": null,\n                \"status\": null,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 568386,\n                \"address_erpkey\": null,\n                \"address_street\": \"Rua de New York\",\n                \"address_number\": \"123\",\n                \"address_district\": null,\n                \"address_complement\": \"ap 321\",\n                \"postal_code\": null,\n                \"lat\": 40.7140452803671,\n                \"lng\": -74.0060091018677,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                \"state\": \"Nova York\",\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"Nova Iorque\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 351791\n            },\n            \"seller\": {\n                \"id\": 82237,\n                \"code\": \"02\",\n                \"name\": \"GENERAL ROCA\",\n                \"erpkey\": \"02\",\n                \"company\": 447\n            },\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": false,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": 30,\n            \"load_time\": 20,\n            \"go_time\": 20,\n            \"unload_time\": 8,\n            \"back_time\": 20,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"188\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": -10000,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-15T16:04:20-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                73090\n            ]\n        },\n        {\n            \"id\": 1167542,\n            \"order_date\": \"2024-01-15\",\n            \"delivery_date\": \"2024-01-15 19:25:00\",\n            \"first_arrival_at\": \"2024-01-15 19:25:00\",\n            \"geofence\": {\n                \"id\": 2247,\n                \"idgeofence\": 0,\n                \"name\": \"Poli\",\n                \"description\": null,\n                \"lat\": -23.6428,\n                \"lng\": -46.6325,\n                \"poly\": \"[[-46.635174542164926,-23.643669145452055],[-46.634037869627534,-23.640818928033944],[-46.63047772545382,-23.64077961425628],[-46.631764524552764,-23.64589030633557],[-46.63556058189459,-23.6453006212812],[-46.635174542164926,-23.643669145452055]]\",\n                \"polypoints\": 6,\n                \"code\": \"Poli1\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 351791,\n                \"name\": \"Testando Loop\",\n                \"email\": \"loop@123\",\n                \"phone\": null,\n                \"erpkey\": \"139345\",\n                \"notes\": null,\n                \"document\": \"123456\",\n                \"document2\": \"123456\",\n                \"document3\": \"123456\",\n                \"document4\": \"123456\",\n                \"person_type\": \"L\",\n                \"legal_name\": \"123456\",\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": null,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 20,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1543413,\n                    \"order\": 1167542,\n                    \"product\": {\n                        \"id\": 71732,\n                        \"code\": \"121503X0420000\",\n                        \"name\": \"C12/15 S3 X0(P) CL0.4 D22 CORRENTE\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 10,\n                    \"price\": 2000,\n                    \"extended_price\": 20000,\n                    \"planned\": true,\n                    \"pump\": {\n                        \"id\": 73090,\n                        \"code\": \"Pump 1\",\n                        \"name\": \"Serviço de Bomba Lança\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 2,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"planned_qtd\": 10\n                },\n                {\n                    \"id\": 1543414,\n                    \"order\": 1167542,\n                    \"product\": {\n                        \"id\": 73090,\n                        \"code\": \"Pump 1\",\n                        \"name\": \"Serviço de Bomba Lança\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 2,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 10,\n                    \"price\": 1000,\n                    \"extended_price\": 10000,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                }\n            ],\n            \"project\": {\n                \"id\": 547509871,\n                \"tms_address\": {\n                    \"id\": 568386,\n                    \"address_erpkey\": null,\n                    \"address_street\": \"Rua de New York\",\n                    \"address_number\": \"123\",\n                    \"address_district\": null,\n                    \"address_complement\": \"ap 321\",\n                    \"postal_code\": null,\n                    \"lat\": 40.7140452803671,\n                    \"lng\": -74.0060091018677,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                    \"state\": \"Nova York\",\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"Nova Iorque\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 351791\n                },\n                \"codcontrato\": \"57729\",\n                \"clinome\": \"Serviço de Bomba e Concreto\",\n                \"cliendereco\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"365355094\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 0,\n                \"credit_delivered\": 30000,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 2,\n                \"spent_total_value\": 30000,\n                \"display_price\": true,\n                \"created_at\": \"2024-01-15T16:18:27-03:00\",\n                \"updated_at\": \"2024-01-15T16:52:41-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 351791,\n                \"billing_address\": 568386,\n                \"seller\": null,\n                \"status\": 976,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 568386,\n                \"address_erpkey\": null,\n                \"address_street\": \"Rua de New York\",\n                \"address_number\": \"123\",\n                \"address_district\": null,\n                \"address_complement\": \"ap 321\",\n                \"postal_code\": null,\n                \"lat\": 40.7140452803671,\n                \"lng\": -74.0060091018677,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                \"state\": \"Nova York\",\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"Nova Iorque\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 351791\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": true,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": null,\n            \"load_time\": null,\n            \"go_time\": null,\n            \"unload_time\": null,\n            \"back_time\": null,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"189\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 20000,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-15T16:26:53-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                71732,\n                73090\n            ]\n        },\n        {\n            \"id\": 1170555,\n            \"order_date\": \"2024-01-17\",\n            \"delivery_date\": \"2024-01-17 15:02:00\",\n            \"first_arrival_at\": \"2024-01-17 15:02:00\",\n            \"geofence\": null,\n            \"client\": {\n                \"id\": 266723,\n                \"name\": \"JOSE TEST NAME\",\n                \"email\": \"XXXX@HOTMAIL.COM\",\n                \"phone\": \"12431241234\",\n                \"erpkey\": \"55555\",\n                \"notes\": \"Good customer ... since 1999\",\n                \"document\": \"22955867802\",\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 999,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 10,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1548400,\n                    \"order\": 1170555,\n                    \"product\": {\n                        \"id\": 71458,\n                        \"code\": \"HN301040\",\n                        \"name\": \"HORMIGON ELAB. C/CPC40\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3.5,\n                        \"fck\": 30,\n                        \"coarse_agg\": \"PP20\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 123,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 10,\n                    \"price\": 100,\n                    \"extended_price\": 1000,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                }\n            ],\n            \"project\": {\n                \"id\": 547429391,\n                \"tms_address\": {\n                    \"id\": 452591,\n                    \"address_erpkey\": \"041162\",\n                    \"address_street\": \"1243 STREET ONE\",\n                    \"address_number\": \"1243\",\n                    \"address_district\": \"WINDERMERE\",\n                    \"address_complement\": \"248612\",\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"ORLANDO\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 266723\n                },\n                \"codcontrato\": \"A266723A452591\",\n                \"clinome\": \"KAUE\",\n                \"cliendereco\": null,\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": true,\n                \"customer_key\": \"429759490\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 9993,\n                \"credit_delivered\": 8,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 8,\n                \"display_price\": true,\n                \"created_at\": \"2023-07-14T10:43:05-03:00\",\n                \"updated_at\": \"2024-01-18T14:44:13-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 266723,\n                \"billing_address\": null,\n                \"seller\": null,\n                \"status\": null,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 452591,\n                \"address_erpkey\": \"041162\",\n                \"address_street\": \"1243 STREET ONE\",\n                \"address_number\": \"1243\",\n                \"address_district\": \"WINDERMERE\",\n                \"address_complement\": \"248612\",\n                \"postal_code\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"state\": null,\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"ORLANDO\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 266723\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": false,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": 30,\n            \"load_time\": 20,\n            \"go_time\": 20,\n            \"unload_time\": 8,\n            \"back_time\": 20,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"190\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 1000,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-17T15:02:37-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 3,\n            \"project_b\": null,\n            \"products\": [\n                71458\n            ]\n        },\n        {\n            \"id\": 1172154,\n            \"order_date\": \"2024-01-18\",\n            \"delivery_date\": \"2024-01-18 11:33:00\",\n            \"first_arrival_at\": \"2024-01-18 11:33:00\",\n            \"geofence\": null,\n            \"client\": {\n                \"id\": 266723,\n                \"name\": \"JOSE TEST NAME\",\n                \"email\": \"XXXX@HOTMAIL.COM\",\n                \"phone\": \"12431241234\",\n                \"erpkey\": \"55555\",\n                \"notes\": \"Good customer ... since 1999\",\n                \"document\": \"22955867802\",\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 999,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 20,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1550723,\n                    \"order\": 1172154,\n                    \"product\": {\n                        \"id\": 70167,\n                        \"code\": \"0000002\",\n                        \"name\": \"Argamassa Fina\",\n                        \"description\": null,\n                        \"list_price\": 100,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 3,\n                        \"fck\": 30,\n                        \"coarse_agg\": \"PP30\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 3,\n                        \"removed_by\": null,\n                        \"uom\": 122,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 20,\n                    \"price\": 100,\n                    \"extended_price\": 2000,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                }\n            ],\n            \"project\": {\n                \"id\": 547429391,\n                \"tms_address\": {\n                    \"id\": 452591,\n                    \"address_erpkey\": \"041162\",\n                    \"address_street\": \"1243 STREET ONE\",\n                    \"address_number\": \"1243\",\n                    \"address_district\": \"WINDERMERE\",\n                    \"address_complement\": \"248612\",\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"ORLANDO\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 266723\n                },\n                \"codcontrato\": \"A266723A452591\",\n                \"clinome\": \"KAUE\",\n                \"cliendereco\": null,\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": true,\n                \"customer_key\": \"429759490\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 9993,\n                \"credit_delivered\": 8,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 8,\n                \"display_price\": true,\n                \"created_at\": \"2023-07-14T10:43:05-03:00\",\n                \"updated_at\": \"2024-01-18T14:44:13-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 266723,\n                \"billing_address\": null,\n                \"seller\": null,\n                \"status\": null,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 452591,\n                \"address_erpkey\": \"041162\",\n                \"address_street\": \"1243 STREET ONE\",\n                \"address_number\": \"1243\",\n                \"address_district\": \"WINDERMERE\",\n                \"address_complement\": \"248612\",\n                \"postal_code\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"state\": null,\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"ORLANDO\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 266723\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": false,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": 30,\n            \"load_time\": 20,\n            \"go_time\": 20,\n            \"unload_time\": 8,\n            \"back_time\": 20,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"193\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 2000,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-18T11:33:48-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 3,\n            \"project_b\": null,\n            \"products\": [\n                70167\n            ]\n        },\n        {\n            \"id\": 1172239,\n            \"order_date\": \"2024-01-18\",\n            \"delivery_date\": \"2024-01-18 12:10:00\",\n            \"first_arrival_at\": \"2024-01-18 12:10:00\",\n            \"geofence\": null,\n            \"client\": {\n                \"id\": 266723,\n                \"name\": \"JOSE TEST NAME\",\n                \"email\": \"XXXX@HOTMAIL.COM\",\n                \"phone\": \"12431241234\",\n                \"erpkey\": \"55555\",\n                \"notes\": \"Good customer ... since 1999\",\n                \"document\": \"22955867802\",\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 999,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 20,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1550856,\n                    \"order\": 1172239,\n                    \"product\": {\n                        \"id\": 70167,\n                        \"code\": \"0000002\",\n                        \"name\": \"Argamassa Fina\",\n                        \"description\": null,\n                        \"list_price\": 100,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 3,\n                        \"fck\": 30,\n                        \"coarse_agg\": \"PP30\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 3,\n                        \"removed_by\": null,\n                        \"uom\": 122,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 20,\n                    \"price\": 100,\n                    \"extended_price\": 2000,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                }\n            ],\n            \"project\": {\n                \"id\": 547429391,\n                \"tms_address\": {\n                    \"id\": 452591,\n                    \"address_erpkey\": \"041162\",\n                    \"address_street\": \"1243 STREET ONE\",\n                    \"address_number\": \"1243\",\n                    \"address_district\": \"WINDERMERE\",\n                    \"address_complement\": \"248612\",\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"ORLANDO\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 266723\n                },\n                \"codcontrato\": \"A266723A452591\",\n                \"clinome\": \"KAUE\",\n                \"cliendereco\": null,\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": true,\n                \"customer_key\": \"429759490\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 9993,\n                \"credit_delivered\": 8,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 8,\n                \"display_price\": true,\n                \"created_at\": \"2023-07-14T10:43:05-03:00\",\n                \"updated_at\": \"2024-01-18T14:44:13-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 266723,\n                \"billing_address\": null,\n                \"seller\": null,\n                \"status\": null,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 452591,\n                \"address_erpkey\": \"041162\",\n                \"address_street\": \"1243 STREET ONE\",\n                \"address_number\": \"1243\",\n                \"address_district\": \"WINDERMERE\",\n                \"address_complement\": \"248612\",\n                \"postal_code\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"state\": null,\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"ORLANDO\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 266723\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": false,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": 30,\n            \"load_time\": 20,\n            \"go_time\": 20,\n            \"unload_time\": 8,\n            \"back_time\": 20,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"195\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 2000,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-18T12:11:22-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 3,\n            \"project_b\": null,\n            \"products\": [\n                70167\n            ]\n        },\n        {\n            \"id\": 1172559,\n            \"order_date\": \"2024-01-18\",\n            \"delivery_date\": \"2024-01-18 14:38:00\",\n            \"first_arrival_at\": \"2024-01-18 14:38:00\",\n            \"geofence\": null,\n            \"client\": {\n                \"id\": 266723,\n                \"name\": \"JOSE TEST NAME\",\n                \"email\": \"XXXX@HOTMAIL.COM\",\n                \"phone\": \"12431241234\",\n                \"erpkey\": \"55555\",\n                \"notes\": \"Good customer ... since 1999\",\n                \"document\": \"22955867802\",\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 999,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 20,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1551431,\n                    \"order\": 1172559,\n                    \"product\": {\n                        \"id\": 70167,\n                        \"code\": \"0000002\",\n                        \"name\": \"Argamassa Fina\",\n                        \"description\": null,\n                        \"list_price\": 100,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 3,\n                        \"fck\": 30,\n                        \"coarse_agg\": \"PP30\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 3,\n                        \"removed_by\": null,\n                        \"uom\": 122,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 20,\n                    \"price\": 100,\n                    \"extended_price\": 2000,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                }\n            ],\n            \"project\": {\n                \"id\": 547429391,\n                \"tms_address\": {\n                    \"id\": 452591,\n                    \"address_erpkey\": \"041162\",\n                    \"address_street\": \"1243 STREET ONE\",\n                    \"address_number\": \"1243\",\n                    \"address_district\": \"WINDERMERE\",\n                    \"address_complement\": \"248612\",\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"ORLANDO\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 266723\n                },\n                \"codcontrato\": \"A266723A452591\",\n                \"clinome\": \"KAUE\",\n                \"cliendereco\": null,\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": true,\n                \"customer_key\": \"429759490\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 9993,\n                \"credit_delivered\": 8,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 8,\n                \"display_price\": true,\n                \"created_at\": \"2023-07-14T10:43:05-03:00\",\n                \"updated_at\": \"2024-01-18T14:44:13-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 266723,\n                \"billing_address\": null,\n                \"seller\": null,\n                \"status\": null,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 452591,\n                \"address_erpkey\": \"041162\",\n                \"address_street\": \"1243 STREET ONE\",\n                \"address_number\": \"1243\",\n                \"address_district\": \"WINDERMERE\",\n                \"address_complement\": \"248612\",\n                \"postal_code\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"state\": null,\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"ORLANDO\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 266723\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": false,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": 30,\n            \"load_time\": 20,\n            \"go_time\": 20,\n            \"unload_time\": 8,\n            \"back_time\": 20,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"197\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 2000,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-18T14:39:14-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 3,\n            \"project_b\": null,\n            \"products\": [\n                70167\n            ]\n        },\n        {\n            \"id\": 1172564,\n            \"order_date\": \"2024-01-18\",\n            \"delivery_date\": \"2024-01-18 16:43:00\",\n            \"first_arrival_at\": \"2024-01-18 16:43:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 266723,\n                \"name\": \"JOSE TEST NAME\",\n                \"email\": \"XXXX@HOTMAIL.COM\",\n                \"phone\": \"12431241234\",\n                \"erpkey\": \"55555\",\n                \"notes\": \"Good customer ... since 1999\",\n                \"document\": \"22955867802\",\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 999,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 20,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1551438,\n                    \"order\": 1172564,\n                    \"product\": {\n                        \"id\": 70167,\n                        \"code\": \"0000002\",\n                        \"name\": \"Argamassa Fina\",\n                        \"description\": null,\n                        \"list_price\": 100,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 3,\n                        \"fck\": 30,\n                        \"coarse_agg\": \"PP30\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 3,\n                        \"removed_by\": null,\n                        \"uom\": 122,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 20,\n                    \"price\": 100,\n                    \"extended_price\": 2000,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                },\n                {\n                    \"id\": 1551439,\n                    \"order\": 1172564,\n                    \"product\": {\n                        \"id\": 61819,\n                        \"code\": \"0001\",\n                        \"name\": \"Entrega aos Sábados após 12h\",\n                        \"description\": \"As entregas feitas no Sábado após 12h serão cobrados um valor adicional\",\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": true,\n                        \"default_value\": 50,\n                        \"value_type\": \"P\",\n                        \"comparison_value\": 3,\n                        \"comparison_operator\": \">\",\n                        \"comparison_operator_value\": \"12.0\",\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": \"00000100\",\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 5,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": null,\n                    \"price\": null,\n                    \"extended_price\": null,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                }\n            ],\n            \"project\": {\n                \"id\": 547429391,\n                \"tms_address\": {\n                    \"id\": 452591,\n                    \"address_erpkey\": \"041162\",\n                    \"address_street\": \"1243 STREET ONE\",\n                    \"address_number\": \"1243\",\n                    \"address_district\": \"WINDERMERE\",\n                    \"address_complement\": \"248612\",\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"ORLANDO\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 266723\n                },\n                \"codcontrato\": \"A266723A452591\",\n                \"clinome\": \"KAUE\",\n                \"cliendereco\": null,\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": true,\n                \"customer_key\": \"429759490\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 9993,\n                \"credit_delivered\": 8,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 8,\n                \"display_price\": true,\n                \"created_at\": \"2023-07-14T10:43:05-03:00\",\n                \"updated_at\": \"2024-01-18T14:44:13-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 266723,\n                \"billing_address\": null,\n                \"seller\": null,\n                \"status\": null,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 452591,\n                \"address_erpkey\": \"041162\",\n                \"address_street\": \"1243 STREET ONE\",\n                \"address_number\": \"1243\",\n                \"address_district\": \"WINDERMERE\",\n                \"address_complement\": \"248612\",\n                \"postal_code\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"state\": null,\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"ORLANDO\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 266723\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": false,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": 30,\n            \"load_time\": 20,\n            \"go_time\": 20,\n            \"unload_time\": 8,\n            \"back_time\": 20,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"198\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": null,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-18T14:43:20-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                70167,\n                61819\n            ]\n        },\n        {\n            \"id\": 1172565,\n            \"order_date\": \"2024-01-18\",\n            \"delivery_date\": \"2024-01-18 14:43:00\",\n            \"first_arrival_at\": \"2024-01-18 14:43:00\",\n            \"geofence\": null,\n            \"client\": {\n                \"id\": 266723,\n                \"name\": \"JOSE TEST NAME\",\n                \"email\": \"XXXX@HOTMAIL.COM\",\n                \"phone\": \"12431241234\",\n                \"erpkey\": \"55555\",\n                \"notes\": \"Good customer ... since 1999\",\n                \"document\": \"22955867802\",\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 999,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 20,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1551440,\n                    \"order\": 1172565,\n                    \"product\": {\n                        \"id\": 70167,\n                        \"code\": \"0000002\",\n                        \"name\": \"Argamassa Fina\",\n                        \"description\": null,\n                        \"list_price\": 100,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 3,\n                        \"fck\": 30,\n                        \"coarse_agg\": \"PP30\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 3,\n                        \"removed_by\": null,\n                        \"uom\": 122,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 20,\n                    \"price\": 100,\n                    \"extended_price\": 2000,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                }\n            ],\n            \"project\": {\n                \"id\": 547429391,\n                \"tms_address\": {\n                    \"id\": 452591,\n                    \"address_erpkey\": \"041162\",\n                    \"address_street\": \"1243 STREET ONE\",\n                    \"address_number\": \"1243\",\n                    \"address_district\": \"WINDERMERE\",\n                    \"address_complement\": \"248612\",\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"ORLANDO\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 266723\n                },\n                \"codcontrato\": \"A266723A452591\",\n                \"clinome\": \"KAUE\",\n                \"cliendereco\": null,\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": true,\n                \"customer_key\": \"429759490\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 9993,\n                \"credit_delivered\": 8,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 8,\n                \"display_price\": true,\n                \"created_at\": \"2023-07-14T10:43:05-03:00\",\n                \"updated_at\": \"2024-01-18T14:44:13-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 266723,\n                \"billing_address\": null,\n                \"seller\": null,\n                \"status\": null,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 452591,\n                \"address_erpkey\": \"041162\",\n                \"address_street\": \"1243 STREET ONE\",\n                \"address_number\": \"1243\",\n                \"address_district\": \"WINDERMERE\",\n                \"address_complement\": \"248612\",\n                \"postal_code\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"state\": null,\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"ORLANDO\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 266723\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": false,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": 30,\n            \"load_time\": 20,\n            \"go_time\": 20,\n            \"unload_time\": 8,\n            \"back_time\": 20,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"199\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 2000,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-18T14:44:13-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 3,\n            \"project_b\": null,\n            \"products\": [\n                70167\n            ]\n        },\n        {\n            \"id\": 1175825,\n            \"order_date\": \"2024-01-22\",\n            \"delivery_date\": \"2024-01-22 20:00:00\",\n            \"first_arrival_at\": \"2024-01-22 20:00:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 273859,\n                \"name\": \"KAUE RIBEIRO\",\n                \"email\": null,\n                \"phone\": null,\n                \"erpkey\": \"00001\",\n                \"notes\": null,\n                \"document\": null,\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 50000000,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 2,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1556596,\n                    \"order\": 1175825,\n                    \"product\": {\n                        \"id\": 61789,\n                        \"code\": \"HN131020\",\n                        \"name\": \"HORMIGON ELAB. C/CPC40 H13 AS.10CM PP6-20\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3,\n                        \"fck\": 13,\n                        \"coarse_agg\": \"PP20mm\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 2,\n                    \"price\": 200,\n                    \"extended_price\": 400,\n                    \"planned\": true,\n                    \"pump\": null,\n                    \"planned_qtd\": 2\n                }\n            ],\n            \"project\": {\n                \"id\": 547432276,\n                \"tms_address\": {\n                    \"id\": 576762,\n                    \"address_erpkey\": \"A0001\",\n                    \"address_street\": \"BLUE HARBOUR BUSINESS CENTRE 1027 MALTA\",\n                    \"address_number\": null,\n                    \"address_district\": null,\n                    \"address_complement\": null,\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"BLUE HARBOUR BUSINESS CENTRE 1027 MALTA\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": null,\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 355341\n                },\n                \"codcontrato\": \"KAUE1\",\n                \"clinome\": \"KAUE1\",\n                \"cliendereco\": \"Rua São Brás do Suaçuí, Jardim Helena, São Paulo, São Paulo, 08090-290\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"790743659\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": 2200,\n                \"credit_ordered\": 3000,\n                \"credit_delivered\": 2200,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 8,\n                \"spent_total_value\": 2200,\n                \"display_price\": true,\n                \"created_at\": \"2023-07-24T14:21:49-03:00\",\n                \"updated_at\": \"2024-02-06T09:55:49-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 273859,\n                \"billing_address\": 460569,\n                \"seller\": 81608,\n                \"status\": 976,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 460569,\n                \"address_erpkey\": null,\n                \"address_street\": \"Rua São Brás do Suaçuí\",\n                \"address_number\": null,\n                \"address_district\": \"Jardim Helena\",\n                \"address_complement\": null,\n                \"postal_code\": \"08090-290\",\n                \"lat\": -23.4779300689697,\n                \"lng\": -46.4263916015625,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"Rua São Brás do Suaçuí, Jardim Helena, São Paulo, São Paulo, 08090-290\",\n                \"state\": \"São Paulo\",\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"São Paulo\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 273859\n            },\n            \"seller\": {\n                \"id\": 81608,\n                \"code\": \"V0001\",\n                \"name\": \"Paulo Azevedo Queiroz\",\n                \"erpkey\": \"V0001\",\n                \"company\": 447\n            },\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": true,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": null,\n            \"load_time\": null,\n            \"go_time\": null,\n            \"unload_time\": null,\n            \"back_time\": null,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"200\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 400,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-22T10:00:43-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                61789\n            ]\n        },\n        {\n            \"id\": 1177531,\n            \"order_date\": \"2024-01-23\",\n            \"delivery_date\": \"2024-01-23 09:00:00\",\n            \"first_arrival_at\": \"2024-01-23 09:00:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 273859,\n                \"name\": \"KAUE RIBEIRO\",\n                \"email\": null,\n                \"phone\": null,\n                \"erpkey\": \"00001\",\n                \"notes\": null,\n                \"document\": null,\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 50000000,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 1,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1559436,\n                    \"order\": 1177531,\n                    \"product\": {\n                        \"id\": 61789,\n                        \"code\": \"HN131020\",\n                        \"name\": \"HORMIGON ELAB. C/CPC40 H13 AS.10CM PP6-20\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3,\n                        \"fck\": 13,\n                        \"coarse_agg\": \"PP20mm\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 1,\n                    \"price\": 200,\n                    \"extended_price\": 200,\n                    \"planned\": true,\n                    \"pump\": null,\n                    \"planned_qtd\": 1\n                }\n            ],\n            \"project\": {\n                \"id\": 547432276,\n                \"tms_address\": {\n                    \"id\": 576762,\n                    \"address_erpkey\": \"A0001\",\n                    \"address_street\": \"BLUE HARBOUR BUSINESS CENTRE 1027 MALTA\",\n                    \"address_number\": null,\n                    \"address_district\": null,\n                    \"address_complement\": null,\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"BLUE HARBOUR BUSINESS CENTRE 1027 MALTA\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": null,\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 355341\n                },\n                \"codcontrato\": \"KAUE1\",\n                \"clinome\": \"KAUE1\",\n                \"cliendereco\": \"Rua São Brás do Suaçuí, Jardim Helena, São Paulo, São Paulo, 08090-290\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"790743659\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": 2200,\n                \"credit_ordered\": 3000,\n                \"credit_delivered\": 2200,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 8,\n                \"spent_total_value\": 2200,\n                \"display_price\": true,\n                \"created_at\": \"2023-07-24T14:21:49-03:00\",\n                \"updated_at\": \"2024-02-06T09:55:49-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 273859,\n                \"billing_address\": 460569,\n                \"seller\": 81608,\n                \"status\": 976,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 460569,\n                \"address_erpkey\": null,\n                \"address_street\": \"Rua São Brás do Suaçuí\",\n                \"address_number\": null,\n                \"address_district\": \"Jardim Helena\",\n                \"address_complement\": null,\n                \"postal_code\": \"08090-290\",\n                \"lat\": -23.4779300689697,\n                \"lng\": -46.4263916015625,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"Rua São Brás do Suaçuí, Jardim Helena, São Paulo, São Paulo, 08090-290\",\n                \"state\": \"São Paulo\",\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"São Paulo\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 273859\n            },\n            \"seller\": {\n                \"id\": 81608,\n                \"code\": \"V0001\",\n                \"name\": \"Paulo Azevedo Queiroz\",\n                \"erpkey\": \"V0001\",\n                \"company\": 447\n            },\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": true,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": null,\n            \"load_time\": null,\n            \"go_time\": null,\n            \"unload_time\": null,\n            \"back_time\": null,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"201\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 200,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-23T10:28:11-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                61789\n            ]\n        },\n        {\n            \"id\": 1178972,\n            \"order_date\": \"2024-01-24\",\n            \"delivery_date\": \"2024-01-24 22:00:00\",\n            \"first_arrival_at\": \"2024-01-24 22:00:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 273859,\n                \"name\": \"KAUE RIBEIRO\",\n                \"email\": null,\n                \"phone\": null,\n                \"erpkey\": \"00001\",\n                \"notes\": null,\n                \"document\": null,\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 50000000,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 1,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1561691,\n                    \"order\": 1178972,\n                    \"product\": {\n                        \"id\": 61792,\n                        \"code\": \"HN171020\",\n                        \"name\": \"HORMIGON ELAB. C/CPC40 H17 AS.10CM PP6-20\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 3,\n                        \"fck\": 30,\n                        \"coarse_agg\": \"PP50\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 1,\n                    \"price\": 100,\n                    \"extended_price\": 100,\n                    \"planned\": true,\n                    \"pump\": {\n                        \"id\": 73093,\n                        \"code\": \"121121122121212\",\n                        \"name\": \"Kaue\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 2,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"planned_qtd\": 1\n                }\n            ],\n            \"project\": {\n                \"id\": 547432279,\n                \"tms_address\": {\n                    \"id\": 460569,\n                    \"address_erpkey\": null,\n                    \"address_street\": \"Rua São Brás do Suaçuí\",\n                    \"address_number\": null,\n                    \"address_district\": \"Jardim Helena\",\n                    \"address_complement\": null,\n                    \"postal_code\": \"08090-290\",\n                    \"lat\": -23.4779300689697,\n                    \"lng\": -46.4263916015625,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"Rua São Brás do Suaçuí, Jardim Helena, São Paulo, São Paulo, 08090-290\",\n                    \"state\": \"São Paulo\",\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"São Paulo\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 273859\n                },\n                \"codcontrato\": \"KAUE2\",\n                \"clinome\": \"KAUE2\",\n                \"cliendereco\": \"Rua São Brás do Suaçuí, Jardim Helena, São Paulo, São Paulo, 08090-290\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"560415136\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 45400,\n                \"credit_delivered\": 1600,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 2,\n                \"spent_total_value\": 1600,\n                \"display_price\": true,\n                \"created_at\": \"2023-07-24T14:23:56-03:00\",\n                \"updated_at\": \"2024-01-24T08:51:56-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 273859,\n                \"billing_address\": 460569,\n                \"seller\": 81608,\n                \"status\": 976,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 460569,\n                \"address_erpkey\": null,\n                \"address_street\": \"Rua São Brás do Suaçuí\",\n                \"address_number\": null,\n                \"address_district\": \"Jardim Helena\",\n                \"address_complement\": null,\n                \"postal_code\": \"08090-290\",\n                \"lat\": -23.4779300689697,\n                \"lng\": -46.4263916015625,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"Rua São Brás do Suaçuí, Jardim Helena, São Paulo, São Paulo, 08090-290\",\n                \"state\": \"São Paulo\",\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"São Paulo\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 273859\n            },\n            \"seller\": {\n                \"id\": 81608,\n                \"code\": \"V0001\",\n                \"name\": \"Paulo Azevedo Queiroz\",\n                \"erpkey\": \"V0001\",\n                \"company\": 447\n            },\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": true,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": null,\n            \"load_time\": null,\n            \"go_time\": null,\n            \"unload_time\": null,\n            \"back_time\": null,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"202\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 100,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-24T08:51:55-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                61792\n            ]\n        },\n        {\n            \"id\": 1181560,\n            \"order_date\": \"2024-01-25\",\n            \"delivery_date\": \"2024-01-25 16:03:00\",\n            \"first_arrival_at\": \"2024-01-25 16:03:00\",\n            \"geofence\": null,\n            \"client\": {\n                \"id\": 266723,\n                \"name\": \"JOSE TEST NAME\",\n                \"email\": \"XXXX@HOTMAIL.COM\",\n                \"phone\": \"12431241234\",\n                \"erpkey\": \"55555\",\n                \"notes\": \"Good customer ... since 1999\",\n                \"document\": \"22955867802\",\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 999,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 0,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1566007,\n                    \"order\": 1181560,\n                    \"product\": {\n                        \"id\": 61789,\n                        \"code\": \"HN131020\",\n                        \"name\": \"HORMIGON ELAB. C/CPC40 H13 AS.10CM PP6-20\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3,\n                        \"fck\": 13,\n                        \"coarse_agg\": \"PP20mm\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 0,\n                    \"price\": 60,\n                    \"extended_price\": null,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                }\n            ],\n            \"project\": {\n                \"id\": 547427996,\n                \"tms_address\": {\n                    \"id\": 452591,\n                    \"address_erpkey\": \"041162\",\n                    \"address_street\": \"1243 STREET ONE\",\n                    \"address_number\": \"1243\",\n                    \"address_district\": \"WINDERMERE\",\n                    \"address_complement\": \"248612\",\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"ORLANDO\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 266723\n                },\n                \"codcontrato\": \"0000001\",\n                \"clinome\": \"SHOPPING MALTA STONE\",\n                \"cliendereco\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"298758139\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 2876.45,\n                \"credit_delivered\": 600,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 6,\n                \"spent_total_value\": 600,\n                \"display_price\": true,\n                \"created_at\": \"2023-07-10T15:56:52-03:00\",\n                \"updated_at\": \"2024-01-30T13:00:18-03:00\",\n                \"po_required\": true,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 266723,\n                \"billing_address\": 452591,\n                \"seller\": null,\n                \"status\": 1212,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 452591,\n                \"address_erpkey\": \"041162\",\n                \"address_street\": \"1243 STREET ONE\",\n                \"address_number\": \"1243\",\n                \"address_district\": \"WINDERMERE\",\n                \"address_complement\": \"248612\",\n                \"postal_code\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"state\": null,\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"ORLANDO\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 266723\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": false,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": 30,\n            \"load_time\": 20,\n            \"go_time\": 20,\n            \"unload_time\": 8,\n            \"back_time\": 20,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"203\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 1000,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": true,\n            \"updated_at\": \"2024-01-25T16:04:40-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 4,\n            \"project_b\": null,\n            \"products\": [\n                61789\n            ]\n        },\n        {\n            \"id\": 1181568,\n            \"order_date\": \"2024-01-25\",\n            \"delivery_date\": \"2024-01-25 20:00:00\",\n            \"first_arrival_at\": \"2024-01-25 20:00:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 266723,\n                \"name\": \"JOSE TEST NAME\",\n                \"email\": \"XXXX@HOTMAIL.COM\",\n                \"phone\": \"12431241234\",\n                \"erpkey\": \"55555\",\n                \"notes\": \"Good customer ... since 1999\",\n                \"document\": \"22955867802\",\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 999,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 11,\n            \"status\": {\n                \"id\": 1212,\n                \"status\": \"Aprovado\",\n                \"color\": \"#000\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"A\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1566023,\n                    \"order\": 1181568,\n                    \"product\": {\n                        \"id\": 61789,\n                        \"code\": \"HN131020\",\n                        \"name\": \"HORMIGON ELAB. C/CPC40 H13 AS.10CM PP6-20\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3,\n                        \"fck\": 13,\n                        \"coarse_agg\": \"PP20mm\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 10,\n                    \"price\": 1,\n                    \"extended_price\": 10,\n                    \"planned\": true,\n                    \"pump\": null,\n                    \"planned_qtd\": 10\n                },\n                {\n                    \"id\": 1566024,\n                    \"order\": 1181568,\n                    \"product\": {\n                        \"id\": 61819,\n                        \"code\": \"0001\",\n                        \"name\": \"Entrega aos Sábados após 12h\",\n                        \"description\": \"As entregas feitas no Sábado após 12h serão cobrados um valor adicional\",\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": true,\n                        \"default_value\": 50,\n                        \"value_type\": \"P\",\n                        \"comparison_value\": 3,\n                        \"comparison_operator\": \">\",\n                        \"comparison_operator_value\": \"12.0\",\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": \"00000100\",\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 5,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 1,\n                    \"price\": null,\n                    \"extended_price\": null,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                }\n            ],\n            \"project\": {\n                \"id\": 547427996,\n                \"tms_address\": {\n                    \"id\": 452591,\n                    \"address_erpkey\": \"041162\",\n                    \"address_street\": \"1243 STREET ONE\",\n                    \"address_number\": \"1243\",\n                    \"address_district\": \"WINDERMERE\",\n                    \"address_complement\": \"248612\",\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"ORLANDO\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 266723\n                },\n                \"codcontrato\": \"0000001\",\n                \"clinome\": \"SHOPPING MALTA STONE\",\n                \"cliendereco\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"298758139\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 2876.45,\n                \"credit_delivered\": 600,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 6,\n                \"spent_total_value\": 600,\n                \"display_price\": true,\n                \"created_at\": \"2023-07-10T15:56:52-03:00\",\n                \"updated_at\": \"2024-01-30T13:00:18-03:00\",\n                \"po_required\": true,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 266723,\n                \"billing_address\": 452591,\n                \"seller\": null,\n                \"status\": 1212,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 452591,\n                \"address_erpkey\": \"041162\",\n                \"address_street\": \"1243 STREET ONE\",\n                \"address_number\": \"1243\",\n                \"address_district\": \"WINDERMERE\",\n                \"address_complement\": \"248612\",\n                \"postal_code\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"state\": null,\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"ORLANDO\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 266723\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": true,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": null,\n            \"load_time\": null,\n            \"go_time\": null,\n            \"unload_time\": null,\n            \"back_time\": null,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"204\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 10,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-25T16:25:56-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                61789,\n                61819\n            ]\n        },\n        {\n            \"id\": 1186595,\n            \"order_date\": \"2024-01-30\",\n            \"delivery_date\": \"2024-01-30 20:00:00\",\n            \"first_arrival_at\": \"2024-01-30 20:00:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 266723,\n                \"name\": \"JOSE TEST NAME\",\n                \"email\": \"XXXX@HOTMAIL.COM\",\n                \"phone\": \"12431241234\",\n                \"erpkey\": \"55555\",\n                \"notes\": \"Good customer ... since 1999\",\n                \"document\": \"22955867802\",\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 999,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 11,\n            \"status\": {\n                \"id\": 1212,\n                \"status\": \"Aprovado\",\n                \"color\": \"#000\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"A\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1574333,\n                    \"order\": 1186595,\n                    \"product\": {\n                        \"id\": 70167,\n                        \"code\": \"0000002\",\n                        \"name\": \"Argamassa Fina\",\n                        \"description\": null,\n                        \"list_price\": 100,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 3,\n                        \"fck\": 30,\n                        \"coarse_agg\": \"PP30\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 3,\n                        \"removed_by\": null,\n                        \"uom\": 122,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 10,\n                    \"price\": 1,\n                    \"extended_price\": 10,\n                    \"planned\": true,\n                    \"pump\": null,\n                    \"planned_qtd\": 10\n                },\n                {\n                    \"id\": 1574334,\n                    \"order\": 1186595,\n                    \"product\": {\n                        \"id\": 61819,\n                        \"code\": \"0001\",\n                        \"name\": \"Entrega aos Sábados após 12h\",\n                        \"description\": \"As entregas feitas no Sábado após 12h serão cobrados um valor adicional\",\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": true,\n                        \"default_value\": 50,\n                        \"value_type\": \"P\",\n                        \"comparison_value\": 3,\n                        \"comparison_operator\": \">\",\n                        \"comparison_operator_value\": \"12.0\",\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": \"00000100\",\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 5,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 1,\n                    \"price\": null,\n                    \"extended_price\": null,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                }\n            ],\n            \"project\": {\n                \"id\": 547427996,\n                \"tms_address\": {\n                    \"id\": 452591,\n                    \"address_erpkey\": \"041162\",\n                    \"address_street\": \"1243 STREET ONE\",\n                    \"address_number\": \"1243\",\n                    \"address_district\": \"WINDERMERE\",\n                    \"address_complement\": \"248612\",\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"ORLANDO\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 266723\n                },\n                \"codcontrato\": \"0000001\",\n                \"clinome\": \"SHOPPING MALTA STONE\",\n                \"cliendereco\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"298758139\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 2876.45,\n                \"credit_delivered\": 600,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 6,\n                \"spent_total_value\": 600,\n                \"display_price\": true,\n                \"created_at\": \"2023-07-10T15:56:52-03:00\",\n                \"updated_at\": \"2024-01-30T13:00:18-03:00\",\n                \"po_required\": true,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 266723,\n                \"billing_address\": 452591,\n                \"seller\": null,\n                \"status\": 1212,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 452591,\n                \"address_erpkey\": \"041162\",\n                \"address_street\": \"1243 STREET ONE\",\n                \"address_number\": \"1243\",\n                \"address_district\": \"WINDERMERE\",\n                \"address_complement\": \"248612\",\n                \"postal_code\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"state\": null,\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"ORLANDO\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 266723\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": true,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": null,\n            \"load_time\": null,\n            \"go_time\": null,\n            \"unload_time\": null,\n            \"back_time\": null,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"205\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 10,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-30T10:36:51-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                70167,\n                61819\n            ]\n        },\n        {\n            \"id\": 1186609,\n            \"order_date\": \"2024-01-30\",\n            \"delivery_date\": \"2024-01-30 22:00:00\",\n            \"first_arrival_at\": \"2024-01-30 22:00:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 146454,\n                \"name\": \"Gabriel Marins Toledo\",\n                \"email\": \"gabriel@gmail.com\",\n                \"phone\": \"23389378938349\",\n                \"erpkey\": \"C0002\",\n                \"notes\": null,\n                \"document\": \"3434683225\",\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": \"N\",\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 100000000000,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 20,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1574364,\n                    \"order\": 1186609,\n                    \"product\": {\n                        \"id\": 71459,\n                        \"code\": \"HN301035\",\n                        \"name\": \"HORMIGON ELAB. H35\",\n                        \"description\": null,\n                        \"list_price\": 200,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"PP10\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 123,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 20,\n                    \"price\": 500,\n                    \"extended_price\": 10000,\n                    \"planned\": true,\n                    \"pump\": null,\n                    \"planned_qtd\": 20\n                }\n            ],\n            \"project\": {\n                \"id\": 547482040,\n                \"tms_address\": {\n                    \"id\": 533772,\n                    \"address_erpkey\": null,\n                    \"address_street\": \"Avenida dos Trabalhadores\",\n                    \"address_number\": \"1212\",\n                    \"address_district\": \"Vila Castelo Branco\",\n                    \"address_complement\": null,\n                    \"postal_code\": \"13338-048\",\n                    \"lat\": -23.0879879,\n                    \"lng\": -47.1987668,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                    \"state\": \"São Paulo\",\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"Indaiatuba\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 146454\n                },\n                \"codcontrato\": \"1234\",\n                \"clinome\": \"Contrato teste\",\n                \"cliendereco\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"228194719\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 9000,\n                \"credit_delivered\": 9500,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 9500,\n                \"display_price\": true,\n                \"created_at\": \"2023-10-30T12:19:56-03:00\",\n                \"updated_at\": \"2024-01-31T10:20:21-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 146454,\n                \"billing_address\": null,\n                \"seller\": null,\n                \"status\": 976,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 533772,\n                \"address_erpkey\": null,\n                \"address_street\": \"Avenida dos Trabalhadores\",\n                \"address_number\": \"1212\",\n                \"address_district\": \"Vila Castelo Branco\",\n                \"address_complement\": null,\n                \"postal_code\": \"13338-048\",\n                \"lat\": -23.0879879,\n                \"lng\": -47.1987668,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                \"state\": \"São Paulo\",\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"Indaiatuba\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 146454\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": true,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": null,\n            \"load_time\": null,\n            \"go_time\": null,\n            \"unload_time\": null,\n            \"back_time\": null,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"206\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 10000,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-30T10:44:08-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                71459\n            ]\n        },\n        {\n            \"id\": 1186951,\n            \"order_date\": \"2024-01-30\",\n            \"delivery_date\": \"2024-01-30 21:00:00\",\n            \"first_arrival_at\": \"2024-01-30 21:00:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 146454,\n                \"name\": \"Gabriel Marins Toledo\",\n                \"email\": \"gabriel@gmail.com\",\n                \"phone\": \"23389378938349\",\n                \"erpkey\": \"C0002\",\n                \"notes\": null,\n                \"document\": \"3434683225\",\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": \"N\",\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 100000000000,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 10,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1575008,\n                    \"order\": 1186951,\n                    \"product\": {\n                        \"id\": 71459,\n                        \"code\": \"HN301035\",\n                        \"name\": \"HORMIGON ELAB. H35\",\n                        \"description\": null,\n                        \"list_price\": 200,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"PP10\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 123,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 10,\n                    \"price\": 500,\n                    \"extended_price\": 5000,\n                    \"planned\": true,\n                    \"pump\": null,\n                    \"planned_qtd\": 10\n                }\n            ],\n            \"project\": {\n                \"id\": 547482040,\n                \"tms_address\": {\n                    \"id\": 533772,\n                    \"address_erpkey\": null,\n                    \"address_street\": \"Avenida dos Trabalhadores\",\n                    \"address_number\": \"1212\",\n                    \"address_district\": \"Vila Castelo Branco\",\n                    \"address_complement\": null,\n                    \"postal_code\": \"13338-048\",\n                    \"lat\": -23.0879879,\n                    \"lng\": -47.1987668,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                    \"state\": \"São Paulo\",\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"Indaiatuba\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 146454\n                },\n                \"codcontrato\": \"1234\",\n                \"clinome\": \"Contrato teste\",\n                \"cliendereco\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"228194719\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 9000,\n                \"credit_delivered\": 9500,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 9500,\n                \"display_price\": true,\n                \"created_at\": \"2023-10-30T12:19:56-03:00\",\n                \"updated_at\": \"2024-01-31T10:20:21-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 146454,\n                \"billing_address\": null,\n                \"seller\": null,\n                \"status\": 976,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 533772,\n                \"address_erpkey\": null,\n                \"address_street\": \"Avenida dos Trabalhadores\",\n                \"address_number\": \"1212\",\n                \"address_district\": \"Vila Castelo Branco\",\n                \"address_complement\": null,\n                \"postal_code\": \"13338-048\",\n                \"lat\": -23.0879879,\n                \"lng\": -47.1987668,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                \"state\": \"São Paulo\",\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"Indaiatuba\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 146454\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": true,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": null,\n            \"load_time\": null,\n            \"go_time\": null,\n            \"unload_time\": null,\n            \"back_time\": null,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"207\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 5000,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-30T12:46:17-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                71459\n            ]\n        },\n        {\n            \"id\": 1186955,\n            \"order_date\": \"2024-01-30\",\n            \"delivery_date\": \"2024-01-30 00:00:00\",\n            \"first_arrival_at\": \"2024-01-30 00:00:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 273859,\n                \"name\": \"KAUE RIBEIRO\",\n                \"email\": null,\n                \"phone\": null,\n                \"erpkey\": \"00001\",\n                \"notes\": null,\n                \"document\": null,\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 50000000,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 20,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1575017,\n                    \"order\": 1186955,\n                    \"product\": {\n                        \"id\": 71459,\n                        \"code\": \"HN301035\",\n                        \"name\": \"HORMIGON ELAB. H35\",\n                        \"description\": null,\n                        \"list_price\": 200,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"PP10\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 123,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 20,\n                    \"price\": null,\n                    \"extended_price\": null,\n                    \"planned\": true,\n                    \"pump\": null,\n                    \"planned_qtd\": 20\n                }\n            ],\n            \"project\": {\n                \"id\": 547432276,\n                \"tms_address\": {\n                    \"id\": 576762,\n                    \"address_erpkey\": \"A0001\",\n                    \"address_street\": \"BLUE HARBOUR BUSINESS CENTRE 1027 MALTA\",\n                    \"address_number\": null,\n                    \"address_district\": null,\n                    \"address_complement\": null,\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"BLUE HARBOUR BUSINESS CENTRE 1027 MALTA\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": null,\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 355341\n                },\n                \"codcontrato\": \"KAUE1\",\n                \"clinome\": \"KAUE1\",\n                \"cliendereco\": \"Rua São Brás do Suaçuí, Jardim Helena, São Paulo, São Paulo, 08090-290\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"790743659\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": 2200,\n                \"credit_ordered\": 3000,\n                \"credit_delivered\": 2200,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 8,\n                \"spent_total_value\": 2200,\n                \"display_price\": true,\n                \"created_at\": \"2023-07-24T14:21:49-03:00\",\n                \"updated_at\": \"2024-02-06T09:55:49-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 273859,\n                \"billing_address\": 460569,\n                \"seller\": 81608,\n                \"status\": 976,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 460569,\n                \"address_erpkey\": null,\n                \"address_street\": \"Rua São Brás do Suaçuí\",\n                \"address_number\": null,\n                \"address_district\": \"Jardim Helena\",\n                \"address_complement\": null,\n                \"postal_code\": \"08090-290\",\n                \"lat\": -23.4779300689697,\n                \"lng\": -46.4263916015625,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"Rua São Brás do Suaçuí, Jardim Helena, São Paulo, São Paulo, 08090-290\",\n                \"state\": \"São Paulo\",\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"São Paulo\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 273859\n            },\n            \"seller\": {\n                \"id\": 81608,\n                \"code\": \"V0001\",\n                \"name\": \"Paulo Azevedo Queiroz\",\n                \"erpkey\": \"V0001\",\n                \"company\": 447\n            },\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": true,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": null,\n            \"load_time\": null,\n            \"go_time\": null,\n            \"unload_time\": null,\n            \"back_time\": null,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"208\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": null,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-30T12:51:20-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                71459\n            ]\n        },\n        {\n            \"id\": 1186976,\n            \"order_date\": \"2024-01-30\",\n            \"delivery_date\": \"2024-01-30 22:02:00\",\n            \"first_arrival_at\": \"2024-01-30 22:02:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 266723,\n                \"name\": \"JOSE TEST NAME\",\n                \"email\": \"XXXX@HOTMAIL.COM\",\n                \"phone\": \"12431241234\",\n                \"erpkey\": \"55555\",\n                \"notes\": \"Good customer ... since 1999\",\n                \"document\": \"22955867802\",\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 999,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 2,\n            \"status\": {\n                \"id\": 1212,\n                \"status\": \"Aprovado\",\n                \"color\": \"#000\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"A\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1575051,\n                    \"order\": 1186976,\n                    \"product\": {\n                        \"id\": 71459,\n                        \"code\": \"HN301035\",\n                        \"name\": \"HORMIGON ELAB. H35\",\n                        \"description\": null,\n                        \"list_price\": 200,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"PP10\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 123,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 1,\n                    \"price\": null,\n                    \"extended_price\": null,\n                    \"planned\": true,\n                    \"pump\": null,\n                    \"planned_qtd\": 1\n                },\n                {\n                    \"id\": 1575052,\n                    \"order\": 1186976,\n                    \"product\": {\n                        \"id\": 61819,\n                        \"code\": \"0001\",\n                        \"name\": \"Entrega aos Sábados após 12h\",\n                        \"description\": \"As entregas feitas no Sábado após 12h serão cobrados um valor adicional\",\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": true,\n                        \"default_value\": 50,\n                        \"value_type\": \"P\",\n                        \"comparison_value\": 3,\n                        \"comparison_operator\": \">\",\n                        \"comparison_operator_value\": \"12.0\",\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": \"00000100\",\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 5,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 1,\n                    \"price\": null,\n                    \"extended_price\": null,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                }\n            ],\n            \"project\": {\n                \"id\": 547427996,\n                \"tms_address\": {\n                    \"id\": 452591,\n                    \"address_erpkey\": \"041162\",\n                    \"address_street\": \"1243 STREET ONE\",\n                    \"address_number\": \"1243\",\n                    \"address_district\": \"WINDERMERE\",\n                    \"address_complement\": \"248612\",\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"ORLANDO\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 266723\n                },\n                \"codcontrato\": \"0000001\",\n                \"clinome\": \"SHOPPING MALTA STONE\",\n                \"cliendereco\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"298758139\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 2876.45,\n                \"credit_delivered\": 600,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 6,\n                \"spent_total_value\": 600,\n                \"display_price\": true,\n                \"created_at\": \"2023-07-10T15:56:52-03:00\",\n                \"updated_at\": \"2024-01-30T13:00:18-03:00\",\n                \"po_required\": true,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 266723,\n                \"billing_address\": 452591,\n                \"seller\": null,\n                \"status\": 1212,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 452591,\n                \"address_erpkey\": \"041162\",\n                \"address_street\": \"1243 STREET ONE\",\n                \"address_number\": \"1243\",\n                \"address_district\": \"WINDERMERE\",\n                \"address_complement\": \"248612\",\n                \"postal_code\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"state\": null,\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"ORLANDO\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 266723\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": true,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": null,\n            \"load_time\": null,\n            \"go_time\": null,\n            \"unload_time\": null,\n            \"back_time\": null,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"210\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": null,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-30T13:00:18-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                71459,\n                61819\n            ]\n        },\n        {\n            \"id\": 1187533,\n            \"order_date\": \"2024-01-30\",\n            \"delivery_date\": \"2024-01-30 17:00:00\",\n            \"first_arrival_at\": \"2024-01-30 17:00:00\",\n            \"geofence\": null,\n            \"client\": {\n                \"id\": 266723,\n                \"name\": \"JOSE TEST NAME\",\n                \"email\": \"XXXX@HOTMAIL.COM\",\n                \"phone\": \"12431241234\",\n                \"erpkey\": \"55555\",\n                \"notes\": \"Good customer ... since 1999\",\n                \"document\": \"22955867802\",\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 999,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 10,\n            \"status\": {\n                \"id\": 1212,\n                \"status\": \"Aprovado\",\n                \"color\": \"#000\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"A\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1576136,\n                    \"order\": 1187533,\n                    \"product\": {\n                        \"id\": 61790,\n                        \"code\": \"HN131520\",\n                        \"name\": \"HORMIGON ELAB. C/CPC40 H13 AS.15CM PP6-20\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 3,\n                        \"fck\": 30,\n                        \"coarse_agg\": \"PP50\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 10,\n                    \"price\": 100,\n                    \"extended_price\": 1000,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                }\n            ],\n            \"project\": {\n                \"id\": 547514593,\n                \"tms_address\": {\n                    \"id\": 452591,\n                    \"address_erpkey\": \"041162\",\n                    \"address_street\": \"1243 STREET ONE\",\n                    \"address_number\": \"1243\",\n                    \"address_district\": \"WINDERMERE\",\n                    \"address_complement\": \"248612\",\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"ORLANDO\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 266723\n                },\n                \"codcontrato\": \"NAHUEL\",\n                \"clinome\": \"COTIZACION NAHUEL\",\n                \"cliendereco\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"768198829\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 1300,\n                \"credit_delivered\": 1000,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 2,\n                \"spent_total_value\": 1000,\n                \"display_price\": false,\n                \"created_at\": \"2024-01-30T16:45:58-03:00\",\n                \"updated_at\": \"2024-01-30T17:45:12-03:00\",\n                \"po_required\": true,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 266723,\n                \"billing_address\": 452591,\n                \"seller\": 81608,\n                \"status\": 977,\n                \"fav_plant\": null,\n                \"payment_method\": 56,\n                \"payment_condition\": 21,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 452591,\n                \"address_erpkey\": \"041162\",\n                \"address_street\": \"1243 STREET ONE\",\n                \"address_number\": \"1243\",\n                \"address_district\": \"WINDERMERE\",\n                \"address_complement\": \"248612\",\n                \"postal_code\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"state\": null,\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"ORLANDO\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 266723\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": false,\n            \"planned\": false,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": 30,\n            \"load_time\": 20,\n            \"go_time\": 20,\n            \"unload_time\": 8,\n            \"back_time\": 20,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"211\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 1000,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-30T17:44:44-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 3,\n            \"project_b\": null,\n            \"products\": [\n                61790\n            ]\n        },\n        {\n            \"id\": 1187536,\n            \"order_date\": \"2024-01-30\",\n            \"delivery_date\": \"2024-01-30 17:07:00\",\n            \"first_arrival_at\": \"2024-01-30 17:07:00\",\n            \"geofence\": null,\n            \"client\": {\n                \"id\": 266723,\n                \"name\": \"JOSE TEST NAME\",\n                \"email\": \"XXXX@HOTMAIL.COM\",\n                \"phone\": \"12431241234\",\n                \"erpkey\": \"55555\",\n                \"notes\": \"Good customer ... since 1999\",\n                \"document\": \"22955867802\",\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 999,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 5,\n            \"status\": {\n                \"id\": 977,\n                \"status\": \"BLOQUEADO\",\n                \"color\": \"#f42d0a\",\n                \"blocked\": false,\n                \"is_default\": true,\n                \"erpkey\": \"BLOQUEADO\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1576141,\n                    \"order\": 1187536,\n                    \"product\": {\n                        \"id\": 61790,\n                        \"code\": \"HN131520\",\n                        \"name\": \"HORMIGON ELAB. C/CPC40 H13 AS.15CM PP6-20\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 3,\n                        \"fck\": 30,\n                        \"coarse_agg\": \"PP50\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 5,\n                    \"price\": 100,\n                    \"extended_price\": 500,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                }\n            ],\n            \"project\": {\n                \"id\": 547514593,\n                \"tms_address\": {\n                    \"id\": 452591,\n                    \"address_erpkey\": \"041162\",\n                    \"address_street\": \"1243 STREET ONE\",\n                    \"address_number\": \"1243\",\n                    \"address_district\": \"WINDERMERE\",\n                    \"address_complement\": \"248612\",\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"ORLANDO\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 266723\n                },\n                \"codcontrato\": \"NAHUEL\",\n                \"clinome\": \"COTIZACION NAHUEL\",\n                \"cliendereco\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"768198829\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 1300,\n                \"credit_delivered\": 1000,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 2,\n                \"spent_total_value\": 1000,\n                \"display_price\": false,\n                \"created_at\": \"2024-01-30T16:45:58-03:00\",\n                \"updated_at\": \"2024-01-30T17:45:12-03:00\",\n                \"po_required\": true,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 266723,\n                \"billing_address\": 452591,\n                \"seller\": 81608,\n                \"status\": 977,\n                \"fav_plant\": null,\n                \"payment_method\": 56,\n                \"payment_condition\": 21,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 452591,\n                \"address_erpkey\": \"041162\",\n                \"address_street\": \"1243 STREET ONE\",\n                \"address_number\": \"1243\",\n                \"address_district\": \"WINDERMERE\",\n                \"address_complement\": \"248612\",\n                \"postal_code\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"state\": null,\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"ORLANDO\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 266723\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": false,\n            \"planned\": false,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": 30,\n            \"load_time\": 20,\n            \"go_time\": 20,\n            \"unload_time\": 8,\n            \"back_time\": 20,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"212\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 500,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-31T13:06:30-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 4,\n            \"project_b\": null,\n            \"products\": [\n                61790\n            ]\n        },\n        {\n            \"id\": 1187565,\n            \"order_date\": \"2024-01-30\",\n            \"delivery_date\": \"2024-01-30 20:00:00\",\n            \"first_arrival_at\": \"2024-01-30 20:00:00\",\n            \"geofence\": {\n                \"id\": 2179,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 7\",\n                \"description\": null,\n                \"lat\": -23.4357,\n                \"lng\": -46.5758,\n                \"poly\": \"[[-46.57533716731301,-23.434820357789405],[-46.574800680280134,-23.436336301627684],[-46.57643160086011,-23.436749737838802],[-46.577075385299565,-23.4353519244913],[-46.57533716731301,-23.434820357789405]]\",\n                \"polypoints\": 5,\n                \"code\": \"EC7\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 266723,\n                \"name\": \"JOSE TEST NAME\",\n                \"email\": \"XXXX@HOTMAIL.COM\",\n                \"phone\": \"12431241234\",\n                \"erpkey\": \"55555\",\n                \"notes\": \"Good customer ... since 1999\",\n                \"document\": \"22955867802\",\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 999,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 8,\n            \"status\": {\n                \"id\": 1212,\n                \"status\": \"Aprovado\",\n                \"color\": \"#000\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"A\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1576196,\n                    \"order\": 1187565,\n                    \"product\": {\n                        \"id\": 61790,\n                        \"code\": \"HN131520\",\n                        \"name\": \"HORMIGON ELAB. C/CPC40 H13 AS.15CM PP6-20\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 3,\n                        \"fck\": 30,\n                        \"coarse_agg\": \"PP50\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 8,\n                    \"price\": 100,\n                    \"extended_price\": 800,\n                    \"planned\": true,\n                    \"pump\": null,\n                    \"planned_qtd\": 8\n                },\n                {\n                    \"id\": 1576197,\n                    \"order\": 1187565,\n                    \"product\": {\n                        \"id\": 61819,\n                        \"code\": \"0001\",\n                        \"name\": \"Entrega aos Sábados após 12h\",\n                        \"description\": \"As entregas feitas no Sábado após 12h serão cobrados um valor adicional\",\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": true,\n                        \"default_value\": 50,\n                        \"value_type\": \"P\",\n                        \"comparison_value\": 3,\n                        \"comparison_operator\": \">\",\n                        \"comparison_operator_value\": \"12.0\",\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": \"00000100\",\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 5,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 0,\n                    \"price\": null,\n                    \"extended_price\": null,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                }\n            ],\n            \"project\": {\n                \"id\": 547514593,\n                \"tms_address\": {\n                    \"id\": 452591,\n                    \"address_erpkey\": \"041162\",\n                    \"address_street\": \"1243 STREET ONE\",\n                    \"address_number\": \"1243\",\n                    \"address_district\": \"WINDERMERE\",\n                    \"address_complement\": \"248612\",\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"ORLANDO\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 266723\n                },\n                \"codcontrato\": \"NAHUEL\",\n                \"clinome\": \"COTIZACION NAHUEL\",\n                \"cliendereco\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"768198829\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 1300,\n                \"credit_delivered\": 1000,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 2,\n                \"spent_total_value\": 1000,\n                \"display_price\": false,\n                \"created_at\": \"2024-01-30T16:45:58-03:00\",\n                \"updated_at\": \"2024-01-30T17:45:12-03:00\",\n                \"po_required\": true,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 266723,\n                \"billing_address\": 452591,\n                \"seller\": 81608,\n                \"status\": 977,\n                \"fav_plant\": null,\n                \"payment_method\": 56,\n                \"payment_condition\": 21,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 452591,\n                \"address_erpkey\": \"041162\",\n                \"address_street\": \"1243 STREET ONE\",\n                \"address_number\": \"1243\",\n                \"address_district\": \"WINDERMERE\",\n                \"address_complement\": \"248612\",\n                \"postal_code\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                \"state\": null,\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"ORLANDO\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 266723\n            },\n            \"seller\": {\n                \"id\": 81608,\n                \"code\": \"V0001\",\n                \"name\": \"Paulo Azevedo Queiroz\",\n                \"erpkey\": \"V0001\",\n                \"company\": 447\n            },\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": true,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": null,\n            \"load_time\": null,\n            \"go_time\": null,\n            \"unload_time\": null,\n            \"back_time\": null,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"213\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 800,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-30T17:41:48-03:00\",\n            \"company\": 447,\n            \"usage\": 3045,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                61790,\n                61819\n            ]\n        },\n        {\n            \"id\": 1188559,\n            \"order_date\": \"2024-01-31\",\n            \"delivery_date\": \"2024-01-31 13:00:00\",\n            \"first_arrival_at\": \"2024-01-31 13:00:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 146454,\n                \"name\": \"Gabriel Marins Toledo\",\n                \"email\": \"gabriel@gmail.com\",\n                \"phone\": \"23389378938349\",\n                \"erpkey\": \"C0002\",\n                \"notes\": null,\n                \"document\": \"3434683225\",\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": \"N\",\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 100000000000,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 1,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1577758,\n                    \"order\": 1188559,\n                    \"product\": {\n                        \"id\": 71459,\n                        \"code\": \"HN301035\",\n                        \"name\": \"HORMIGON ELAB. H35\",\n                        \"description\": null,\n                        \"list_price\": 200,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"PP10\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 123,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 1,\n                    \"price\": 500,\n                    \"extended_price\": 500,\n                    \"planned\": true,\n                    \"pump\": null,\n                    \"planned_qtd\": 1\n                }\n            ],\n            \"project\": {\n                \"id\": 547482040,\n                \"tms_address\": {\n                    \"id\": 533772,\n                    \"address_erpkey\": null,\n                    \"address_street\": \"Avenida dos Trabalhadores\",\n                    \"address_number\": \"1212\",\n                    \"address_district\": \"Vila Castelo Branco\",\n                    \"address_complement\": null,\n                    \"postal_code\": \"13338-048\",\n                    \"lat\": -23.0879879,\n                    \"lng\": -47.1987668,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                    \"state\": \"São Paulo\",\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"Indaiatuba\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 146454\n                },\n                \"codcontrato\": \"1234\",\n                \"clinome\": \"Contrato teste\",\n                \"cliendereco\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"228194719\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 9000,\n                \"credit_delivered\": 9500,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 9500,\n                \"display_price\": true,\n                \"created_at\": \"2023-10-30T12:19:56-03:00\",\n                \"updated_at\": \"2024-01-31T10:20:21-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 146454,\n                \"billing_address\": null,\n                \"seller\": null,\n                \"status\": 976,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 533772,\n                \"address_erpkey\": null,\n                \"address_street\": \"Avenida dos Trabalhadores\",\n                \"address_number\": \"1212\",\n                \"address_district\": \"Vila Castelo Branco\",\n                \"address_complement\": null,\n                \"postal_code\": \"13338-048\",\n                \"lat\": -23.0879879,\n                \"lng\": -47.1987668,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                \"state\": \"São Paulo\",\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"Indaiatuba\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 146454\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": true,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": null,\n            \"load_time\": null,\n            \"go_time\": null,\n            \"unload_time\": null,\n            \"back_time\": null,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"214\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 500,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-01-31T10:19:39-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                71459\n            ]\n        },\n        {\n            \"id\": 1190372,\n            \"order_date\": \"2024-02-01\",\n            \"delivery_date\": \"2024-02-01 22:02:00\",\n            \"first_arrival_at\": \"2024-02-01 22:02:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 146454,\n                \"name\": \"Gabriel Marins Toledo\",\n                \"email\": \"gabriel@gmail.com\",\n                \"phone\": \"23389378938349\",\n                \"erpkey\": \"C0002\",\n                \"notes\": null,\n                \"document\": \"3434683225\",\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": \"N\",\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 100000000000,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 32,\n            \"status\": {\n                \"id\": 1212,\n                \"status\": \"Aprovado\",\n                \"color\": \"#000\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"A\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1580695,\n                    \"order\": 1190372,\n                    \"product\": {\n                        \"id\": 67687,\n                        \"code\": \"PRT000004\",\n                        \"name\": \"H180\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 3,\n                        \"fck\": 30,\n                        \"coarse_agg\": \"PP50\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 12,\n                    \"price\": 1,\n                    \"extended_price\": 12,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 12\n                },\n                {\n                    \"id\": 1580696,\n                    \"order\": 1190372,\n                    \"product\": {\n                        \"id\": 73090,\n                        \"code\": \"Pump 1\",\n                        \"name\": \"Serviço de Bomba Lança\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 2,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 20,\n                    \"price\": 200,\n                    \"extended_price\": 4000,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                },\n                {\n                    \"id\": 1580697,\n                    \"order\": 1190372,\n                    \"product\": {\n                        \"id\": 61819,\n                        \"code\": \"0001\",\n                        \"name\": \"Entrega aos Sábados após 12h\",\n                        \"description\": \"As entregas feitas no Sábado após 12h serão cobrados um valor adicional\",\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": true,\n                        \"default_value\": 50,\n                        \"value_type\": \"P\",\n                        \"comparison_value\": 3,\n                        \"comparison_operator\": \">\",\n                        \"comparison_operator_value\": \"12.0\",\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": \"00000100\",\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 5,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": null,\n                    \"price\": null,\n                    \"extended_price\": null,\n                    \"planned\": false,\n                    \"pump\": null,\n                    \"planned_qtd\": 0\n                }\n            ],\n            \"project\": {\n                \"id\": 547296584,\n                \"tms_address\": {\n                    \"id\": 238861,\n                    \"address_erpkey\": \"AD0002\",\n                    \"address_street\": \"Rua Itapiru\",\n                    \"address_number\": null,\n                    \"address_district\": \"Rio Comprido\",\n                    \"address_complement\": null,\n                    \"postal_code\": null,\n                    \"lat\": -22.9229055,\n                    \"lng\": -43.1975721,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"Rua Itapiru, Rio Comprido, Rio de Janeiro, Rio de Janeiro\",\n                    \"state\": \"Rio de Janeiro\",\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"Rio de Janeiro\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 146454\n                },\n                \"codcontrato\": \"A146454A238861\",\n                \"clinome\": \"Gabriel Marins Toledo\",\n                \"cliendereco\": null,\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": true,\n                \"customer_key\": \"204033079\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 4952,\n                \"credit_delivered\": 46764,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 49964,\n                \"display_price\": true,\n                \"created_at\": \"2022-10-21T17:46:18-03:00\",\n                \"updated_at\": \"2024-02-01T12:42:06-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 146454,\n                \"billing_address\": null,\n                \"seller\": null,\n                \"status\": null,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 238861,\n                \"address_erpkey\": \"AD0002\",\n                \"address_street\": \"Rua Itapiru\",\n                \"address_number\": null,\n                \"address_district\": \"Rio Comprido\",\n                \"address_complement\": null,\n                \"postal_code\": null,\n                \"lat\": -22.9229055,\n                \"lng\": -43.1975721,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"Rua Itapiru, Rio Comprido, Rio de Janeiro, Rio de Janeiro\",\n                \"state\": \"Rio de Janeiro\",\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"Rio de Janeiro\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 146454\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": false,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": 30,\n            \"load_time\": 20,\n            \"go_time\": 20,\n            \"unload_time\": 8,\n            \"back_time\": 20,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"215\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": null,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-02-01T10:48:57-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                67687,\n                73090,\n                61819\n            ]\n        },\n        {\n            \"id\": 1191267,\n            \"order_date\": \"2024-02-01\",\n            \"delivery_date\": \"2024-02-01 12:17:00\",\n            \"first_arrival_at\": \"2024-02-01 12:17:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 146454,\n                \"name\": \"Gabriel Marins Toledo\",\n                \"email\": \"gabriel@gmail.com\",\n                \"phone\": \"23389378938349\",\n                \"erpkey\": \"C0002\",\n                \"notes\": null,\n                \"document\": \"3434683225\",\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": \"N\",\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 100000000000,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 1,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1582549,\n                    \"order\": 1191267,\n                    \"product\": {\n                        \"id\": 61789,\n                        \"code\": \"HN131020\",\n                        \"name\": \"HORMIGON ELAB. C/CPC40 H13 AS.10CM PP6-20\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3,\n                        \"fck\": 13,\n                        \"coarse_agg\": \"PP20mm\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 1,\n                    \"price\": 12121,\n                    \"extended_price\": 12121,\n                    \"planned\": true,\n                    \"pump\": null,\n                    \"planned_qtd\": 1\n                }\n            ],\n            \"project\": {\n                \"id\": 547480588,\n                \"tms_address\": {\n                    \"id\": 533772,\n                    \"address_erpkey\": null,\n                    \"address_street\": \"Avenida dos Trabalhadores\",\n                    \"address_number\": \"1212\",\n                    \"address_district\": \"Vila Castelo Branco\",\n                    \"address_complement\": null,\n                    \"postal_code\": \"13338-048\",\n                    \"lat\": -23.0879879,\n                    \"lng\": -47.1987668,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                    \"state\": \"São Paulo\",\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"Indaiatuba\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 146454\n                },\n                \"codcontrato\": \"5656\",\n                \"clinome\": \"teste gabriel\",\n                \"cliendereco\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"372483255\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 109089,\n                \"credit_delivered\": 0,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 0,\n                \"display_price\": true,\n                \"created_at\": \"2023-10-25T16:33:25-03:00\",\n                \"updated_at\": \"2024-02-01T17:17:02-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 146454,\n                \"billing_address\": null,\n                \"seller\": null,\n                \"status\": 976,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 533772,\n                \"address_erpkey\": null,\n                \"address_street\": \"Avenida dos Trabalhadores\",\n                \"address_number\": \"1212\",\n                \"address_district\": \"Vila Castelo Branco\",\n                \"address_complement\": null,\n                \"postal_code\": \"13338-048\",\n                \"lat\": -23.0879879,\n                \"lng\": -47.1987668,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                \"state\": \"São Paulo\",\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"Indaiatuba\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 146454\n            },\n            \"seller\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": true,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": null,\n            \"load_time\": null,\n            \"go_time\": null,\n            \"unload_time\": null,\n            \"back_time\": null,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"216\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 12121,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-02-01T17:17:01-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                61789\n            ]\n        },\n        {\n            \"id\": 1192187,\n            \"order_date\": \"2024-02-02\",\n            \"delivery_date\": \"2024-02-02 23:33:00\",\n            \"first_arrival_at\": \"2024-02-02 23:33:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 273859,\n                \"name\": \"KAUE RIBEIRO\",\n                \"email\": null,\n                \"phone\": null,\n                \"erpkey\": \"00001\",\n                \"notes\": null,\n                \"document\": null,\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 50000000,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 2,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1583911,\n                    \"order\": 1192187,\n                    \"product\": {\n                        \"id\": 61789,\n                        \"code\": \"HN131020\",\n                        \"name\": \"HORMIGON ELAB. C/CPC40 H13 AS.10CM PP6-20\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3,\n                        \"fck\": 13,\n                        \"coarse_agg\": \"PP20mm\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 1,\n                    \"price\": 200,\n                    \"extended_price\": 200,\n                    \"planned\": true,\n                    \"pump\": {\n                        \"id\": 61818,\n                        \"code\": \"SRVBOMB\",\n                        \"name\": \"SERVIÇO DE BOMBEAMENTO\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": 200,\n                        \"value_type\": \"C\",\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 2,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"planned_qtd\": 1\n                },\n                {\n                    \"id\": 1583912,\n                    \"order\": 1192187,\n                    \"product\": {\n                        \"id\": 61818,\n                        \"code\": \"SRVBOMB\",\n                        \"name\": \"SERVIÇO DE BOMBEAMENTO\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": 200,\n                        \"value_type\": \"C\",\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 2,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 1,\n                    \"price\": 200,\n                    \"extended_price\": 200,\n                    \"planned\": true,\n                    \"pump\": null,\n                    \"planned_qtd\": 1\n                }\n            ],\n            \"project\": {\n                \"id\": 547432276,\n                \"tms_address\": {\n                    \"id\": 576762,\n                    \"address_erpkey\": \"A0001\",\n                    \"address_street\": \"BLUE HARBOUR BUSINESS CENTRE 1027 MALTA\",\n                    \"address_number\": null,\n                    \"address_district\": null,\n                    \"address_complement\": null,\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"BLUE HARBOUR BUSINESS CENTRE 1027 MALTA\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": null,\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 355341\n                },\n                \"codcontrato\": \"KAUE1\",\n                \"clinome\": \"KAUE1\",\n                \"cliendereco\": \"Rua São Brás do Suaçuí, Jardim Helena, São Paulo, São Paulo, 08090-290\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"790743659\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": 2200,\n                \"credit_ordered\": 3000,\n                \"credit_delivered\": 2200,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 8,\n                \"spent_total_value\": 2200,\n                \"display_price\": true,\n                \"created_at\": \"2023-07-24T14:21:49-03:00\",\n                \"updated_at\": \"2024-02-06T09:55:49-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 273859,\n                \"billing_address\": 460569,\n                \"seller\": 81608,\n                \"status\": 976,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 460569,\n                \"address_erpkey\": null,\n                \"address_street\": \"Rua São Brás do Suaçuí\",\n                \"address_number\": null,\n                \"address_district\": \"Jardim Helena\",\n                \"address_complement\": null,\n                \"postal_code\": \"08090-290\",\n                \"lat\": -23.4779300689697,\n                \"lng\": -46.4263916015625,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"Rua São Brás do Suaçuí, Jardim Helena, São Paulo, São Paulo, 08090-290\",\n                \"state\": \"São Paulo\",\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"São Paulo\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 273859\n            },\n            \"seller\": {\n                \"id\": 81608,\n                \"code\": \"V0001\",\n                \"name\": \"Paulo Azevedo Queiroz\",\n                \"erpkey\": \"V0001\",\n                \"company\": 447\n            },\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": true,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": null,\n            \"load_time\": null,\n            \"go_time\": null,\n            \"unload_time\": null,\n            \"back_time\": null,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"217\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 200,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-02-02T12:05:22-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                61789,\n                61818\n            ]\n        },\n        {\n            \"id\": 1194768,\n            \"order_date\": \"2024-02-05\",\n            \"delivery_date\": \"2024-02-05 20:00:00\",\n            \"first_arrival_at\": \"2024-02-05 20:00:00\",\n            \"geofence\": {\n                \"id\": 1913,\n                \"idgeofence\": 0,\n                \"name\": \"Planta 1\",\n                \"description\": null,\n                \"lat\": -23.0875,\n                \"lng\": -47.199,\n                \"poly\": \"[[-47.19971179962158,-23.087213067466713],[-47.19842433929444,-23.087015608506004],[-47.19780206680298,-23.088713746088196],[-47.19947576522828,-23.088713746088196],[-47.19971179962158,-23.087213067466713]]\",\n                \"polypoints\": 5,\n                \"code\": \"P001\",\n                \"id_device\": null,\n                \"timezone\": null,\n                \"company\": 447,\n                \"type\": 0\n            },\n            \"client\": {\n                \"id\": 273859,\n                \"name\": \"KAUE RIBEIRO\",\n                \"email\": null,\n                \"phone\": null,\n                \"erpkey\": \"00001\",\n                \"notes\": null,\n                \"document\": null,\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": 50000000,\n                \"is_b_side\": false,\n                \"company\": 447,\n                \"legal_address\": null\n            },\n            \"total_quantity\": 2,\n            \"status\": {\n                \"id\": 976,\n                \"status\": \"Aprovado\",\n                \"color\": \"#46d745\",\n                \"blocked\": false,\n                \"is_default\": false,\n                \"erpkey\": \"Aprovado\",\n                \"company\": 447\n            },\n            \"order_products\": [\n                {\n                    \"id\": 1587966,\n                    \"order\": 1194768,\n                    \"product\": {\n                        \"id\": 61789,\n                        \"code\": \"HN131020\",\n                        \"name\": \"HORMIGON ELAB. C/CPC40 H13 AS.10CM PP6-20\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3,\n                        \"fck\": 13,\n                        \"coarse_agg\": \"PP20mm\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 1,\n                    \"price\": 200,\n                    \"extended_price\": 200,\n                    \"planned\": true,\n                    \"pump\": {\n                        \"id\": 61818,\n                        \"code\": \"SRVBOMB\",\n                        \"name\": \"SERVIÇO DE BOMBEAMENTO\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": 200,\n                        \"value_type\": \"C\",\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 2,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"planned_qtd\": 1\n                },\n                {\n                    \"id\": 1587967,\n                    \"order\": 1194768,\n                    \"product\": {\n                        \"id\": 61818,\n                        \"code\": \"SRVBOMB\",\n                        \"name\": \"SERVIÇO DE BOMBEAMENTO\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": 200,\n                        \"value_type\": \"C\",\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"company\": 447,\n                        \"product_type\": 2,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"qtd\": 1,\n                    \"price\": 200,\n                    \"extended_price\": 200,\n                    \"planned\": true,\n                    \"pump\": null,\n                    \"planned_qtd\": 1\n                }\n            ],\n            \"project\": {\n                \"id\": 547432276,\n                \"tms_address\": {\n                    \"id\": 576762,\n                    \"address_erpkey\": \"A0001\",\n                    \"address_street\": \"BLUE HARBOUR BUSINESS CENTRE 1027 MALTA\",\n                    \"address_number\": null,\n                    \"address_district\": null,\n                    \"address_complement\": null,\n                    \"postal_code\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"polyg\": null,\n                    \"radius\": null,\n                    \"address_full\": \"BLUE HARBOUR BUSINESS CENTRE 1027 MALTA\",\n                    \"state\": null,\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": null,\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 447,\n                    \"city\": null,\n                    \"person\": null,\n                    \"plan_customer\": 355341\n                },\n                \"codcontrato\": \"KAUE1\",\n                \"clinome\": \"KAUE1\",\n                \"cliendereco\": \"Rua São Brás do Suaçuí, Jardim Helena, São Paulo, São Paulo, 08090-290\",\n                \"codvendedor\": null,\n                \"pincode\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"polyg\": null,\n                \"detached\": false,\n                \"customer_key\": \"790743659\",\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"credit_limit\": 2200,\n                \"credit_ordered\": 3000,\n                \"credit_delivered\": 2200,\n                \"notes\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 8,\n                \"spent_total_value\": 2200,\n                \"display_price\": true,\n                \"created_at\": \"2023-07-24T14:21:49-03:00\",\n                \"updated_at\": \"2024-02-06T09:55:49-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"company\": 447,\n                \"plan_customer\": 273859,\n                \"billing_address\": 460569,\n                \"seller\": 81608,\n                \"status\": 976,\n                \"fav_plant\": null,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            \"tms_address\": {\n                \"id\": 460569,\n                \"address_erpkey\": null,\n                \"address_street\": \"Rua São Brás do Suaçuí\",\n                \"address_number\": null,\n                \"address_district\": \"Jardim Helena\",\n                \"address_complement\": null,\n                \"postal_code\": \"08090-290\",\n                \"lat\": -23.4779300689697,\n                \"lng\": -46.4263916015625,\n                \"polyg\": null,\n                \"radius\": null,\n                \"address_full\": \"Rua São Brás do Suaçuí, Jardim Helena, São Paulo, São Paulo, 08090-290\",\n                \"state\": \"São Paulo\",\n                \"note\": null,\n                \"name\": null,\n                \"erpkey_2\": null,\n                \"city_name\": \"São Paulo\",\n                \"read_only\": false,\n                \"auto_location\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 447,\n                \"city\": null,\n                \"person\": null,\n                \"plan_customer\": 273859\n            },\n            \"seller\": {\n                \"id\": 81608,\n                \"code\": \"V0001\",\n                \"name\": \"Paulo Azevedo Queiroz\",\n                \"erpkey\": \"V0001\",\n                \"company\": 447\n            },\n            \"city\": null,\n            \"zip\": null,\n            \"po\": null,\n            \"job\": null,\n            \"notes\": null,\n            \"tms_sync\": null,\n            \"display_price\": true,\n            \"planned\": true,\n            \"max_trip_quantity\": 8,\n            \"truck_interval\": null,\n            \"load_time\": null,\n            \"go_time\": null,\n            \"unload_time\": null,\n            \"back_time\": null,\n            \"plan_notes\": null,\n            \"erpkey\": null,\n            \"order_number\": \"218\",\n            \"cancelled\": false,\n            \"debtor_code\": null,\n            \"vat_code\": null,\n            \"haulage_depot_code\": null,\n            \"haulage_zone_code\": null,\n            \"sales_account_code\": null,\n            \"location\": null,\n            \"hzcs_name\": null,\n            \"total_price\": 200,\n            \"custom_1\": null,\n            \"custom_2\": null,\n            \"custom_3\": null,\n            \"custom_4\": null,\n            \"custom_5\": null,\n            \"custom_6\": null,\n            \"custom_7\": null,\n            \"custom_8\": null,\n            \"custom_9\": null,\n            \"custom_10\": null,\n            \"is_b_side\": false,\n            \"po_product_value\": false,\n            \"updated_at\": \"2024-02-05T14:27:13-03:00\",\n            \"company\": 447,\n            \"usage\": null,\n            \"order_type\": 1,\n            \"tax\": null,\n            \"sale_type\": 1,\n            \"project_b\": null,\n            \"products\": [\n                61789,\n                61818\n            ]\n        }\n    ],\n    \"message\": \"\"\n}"},{"id":"fb8d8fdf-2969-442b-a645-3a0ba11c053e","name":"Error Records","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://integration.readymix.io/api/sync/orders?start=2024-01-01&end=","protocol":"https","host":["integration","readymix","io"],"path":["api","sync","orders"],"query":[{"key":"start","value":"2024-01-01","description":"Date from"},{"key":"end","value":"","description":"Date to"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 18:52:39 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"95"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"reason\": \"time data ' 23:59:59' does not match format '%Y-%m-%d %H:%M:%S'\"\n}"}],"_postman_id":"96a8590d-014f-496c-bc04-22ab86741f08"},{"name":"List Orders V2","id":"1eec9971-cd8b-45fa-ac61-4097f850669d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"token","value":"{{your-company-token}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/company/orders?date_start=2024-02-03&date_end=2024-02-08","description":"<p>List orders to Loop 4 Readymix Application with some parameters.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Required</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>date_start</td>\n<td><strong>Required</strong></td>\n<td>'YYYY-MM-DD'</td>\n</tr>\n<tr>\n<td>date_end</td>\n<td><strong>Required</strong></td>\n<td>'YYYY-MM-DD'</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","company","orders"],"host":["https://integration.loop4.io"],"query":[{"description":{"content":"<p>Date from</p>\n","type":"text/plain"},"key":"date_start","value":"2024-02-03"},{"description":{"content":"<p>Date to</p>\n","type":"text/plain"},"key":"date_end","value":"2024-02-08"}],"variable":[]}},"response":[],"_postman_id":"1eec9971-cd8b-45fa-ac61-4097f850669d"}],"id":"56f7201c-e9bd-4d2f-a149-693c323204c5","description":"<p>Orders Integration</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"order_code\": \"0001\",\n    \"delivery_date\": \"2020-12-10 23:23:34\",\n    \"purchase_order\": \"purchase order\",\n    \"customer_notes\": \"customer notes\",\n    \"internal_notes\": \"internal notes\",\n    \"display_price\": false,\n    \"plant_code\": \"01\",\n    \"status_code\": \"0001\",\n    \"status_name\": \"Sync Status Text\",\n    \"status_blocked\": false,\n    \"status_color\": \"#FF0000\",\n    \"usage_code\": \"0001\",\n    \"usage_name\": \"Pavimento\",\n    \"tax_code\": \"0001\",\n    \"tax_name\": \"Sync Tax\",\n    \"tax_value\": 10,\n    \"customer_code\": \"0001\",\n    \"customer_name\": \"Customer name\",\n    \"customer_document\": \"402.448.284-12\",\n    \"customer_email\": \"customer@gmail.com\",\n    \"customer_number\": \"11993844758\",\n    \"customer_note\": \"Loyal customer!\",\n    \"city_code\": \"0001\",\n    \"city_name\": \"Sync City\",\n    \"address_code\": \"0001\",\n    \"address_street\": \"Sesame Street\",\n    \"address_number\": \"102\",\n    \"address_lat\": 12.34323,\n    \"address_lng\": 10.24122,\n    \"address_district\": \"SP\",\n    \"address_complement\": \"Bairro Butu\",\n    \"address_full\": \"Street Name, 1231 - TX, USA\",\n    \"seller_code\": \"0001\",\n    \"seller_name\": \"Vendedor Sync\",\n    \"project_code\": \"0001\",\n    \"project_name\": \"Projeto 1 Sync\",\n    \"project_pincode\": \"1234\",\n    \"first_arrival_at\": \"2020-12-10 23:23:34\",\n    \"max_trip_quantity\": 10,\n    \"truck_interval\": 10,\n    \"load_time\": 10,\n    \"go_time\": 10,\n    \"unload_time\": 10,\n    \"back_time\": 10,\n    \"order_products\": [\n        {\n            \"item_number\": 1,\n            \"product_code\": \"0001\",\n            \"product_type\": 1,\n            \"product_name\": \"Product Sync\",\n            \"product_description\": \"Prod descrip.\",\n            \"product_list_price\": 12,\n            \"project_product_price\": 10,\n            \"quantity\": 10,\n            \"price\": 12,\n            \"pump_code\": \"0002\",\n            \"pump_type\": 2,\n            \"pump_name\": \"Pump Sync\",\n            \"pump_description\": \"Pump descrip.\",\n            \"pump_list_price\": 12\n        }\n    ]\n  }\n]\n\n</code></pre>\n","event":[{"listen":"prerequest","script":{"id":"1519bd99-9e03-4a3a-a6c1-392fe89c58b3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6122e278-a025-486f-9a20-6e8d3ca978c5","type":"text/javascript","exec":[""]}}],"_postman_id":"56f7201c-e9bd-4d2f-a149-693c323204c5"},{"name":"Purchase Orders","item":[{"name":"Insert Purchase Orders","id":"62c96fe2-183b-40ff-a007-6863917e010d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"order_code\": \"#B0999900000176\",\n        \"customer_code\": \"110012\",\n        \"customer_name\": \"FERRANDO JUAN 11111\",\n        \"address_code\": \"#110012\",\n        \"address_street\": \"Avenida dos Trabalhadores, 728\",\n        \"status_code\": \"A\",\n        \"status_name\": \"Aprobado\",\n        \"total_price\": 1210000.0,\n        \"product_code\": \"H131020\",\n        \"quantity\": 1.0,\n        \"internal_notes\": \"TESTE KAUE\",\n        \"secondary\": true,\n        \"price\": 1000000.0,\n        \"annulled\": false,\n        \"updated_at\": \"2023-07-10 15:59:10\",\n        \"order_products\": [\n            {\n                \"price\": 1000000.0,\n                \"item_number\": 1,\n                \"quantity\": 1.0,\n                \"product_code\": \"H131020\",\n                \"product_name\": \"H131020\",\n                \"product_type\": 1,\n                \"pump_code\": \"BB001\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/po","description":"<p>Send purchase orders to Loop 4 Readymix Application. You can use this method to insert / update purchase orders.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>order_code</td>\n<td>Required</td>\n<td>string</td>\n<td>The order code, this value is used to identify each order, must be unique per order</td>\n</tr>\n<tr>\n<td>customer_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Unique code that identifies the Customer</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>Required</td>\n<td>string</td>\n<td>Name of the customer</td>\n</tr>\n<tr>\n<td>address_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Unique code that identifies the Address</td>\n</tr>\n<tr>\n<td>address_street</td>\n<td>Required</td>\n<td>string</td>\n<td>General Street line -&gt; Send this field if you want to create or update the address_code</td>\n</tr>\n<tr>\n<td>status_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Status code</td>\n</tr>\n<tr>\n<td>status_name</td>\n<td>Required</td>\n<td>string</td>\n<td>Status name -&gt; Send this field if you want to create or update the status_code</td>\n</tr>\n<tr>\n<td>seller_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Seller code. if it doesn't exist it will create</td>\n</tr>\n<tr>\n<td>seller_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>Seller name -&gt; Send this field if you want to create or update the seller_code</td>\n</tr>\n<tr>\n<td>product_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Unique code that identifies the Product Code existing</td>\n</tr>\n<tr>\n<td>product_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>name of the project</td>\n</tr>\n<tr>\n<td>product_type</td>\n<td>Optional</td>\n<td>int</td>\n<td>The product type can be:  <br />1 - ReadyMix;  <br />2 - Pump Product;  <br />3 - Grout;  <br />4 - Service;  <br />5 - Additional;  <br />6 - Raw Material;  <br />7 - Minimum Pump Price;  <br />8 - Pump Complement (Add Database);  <br />99 - Others;</td>\n</tr>\n<tr>\n<td>project_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Project / Contract code of the purchase order</td>\n</tr>\n<tr>\n<td>project_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>Project / Contract name of the purchase order</td>\n</tr>\n<tr>\n<td>pre_paid</td>\n<td>Optional</td>\n<td>boolean</td>\n<td>We send \"true \"when the purchase order has a prepayment or \"false\" when we don't have a prepayment</td>\n</tr>\n<tr>\n<td>total_price</td>\n<td>Optional</td>\n<td>float</td>\n<td>We use this field to inform that the Purchase Order will only have value and not a specific product</td>\n</tr>\n<tr>\n<td>item_number</td>\n<td>Optional</td>\n<td>int</td>\n<td>The number that identifies the purchase order in which the item shows up in the purchase order's list of product's</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Optional</td>\n<td>float</td>\n<td>Quantity of the product</td>\n</tr>\n<tr>\n<td>internal_notes</td>\n<td>Optional</td>\n<td>string</td>\n<td>Notes of the product (If necessary)</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Optional</td>\n<td>float</td>\n<td>Unit price of the product in this order (you can send 0 if you don't have this information)</td>\n</tr>\n<tr>\n<td>annulled</td>\n<td>Optional</td>\n<td>boolean</td>\n<td>Send True if the purchase order is cancelled/annulled</td>\n</tr>\n<tr>\n<td>secondary</td>\n<td>Optional</td>\n<td>boolean</td>\n<td>Send True if the purchase order is secondary</td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td>Optional</td>\n<td>string</td>\n<td>YYYY-DD-MM</td>\n</tr>\n<tr>\n<td>order_products</td>\n<td>Optional</td>\n<td>array</td>\n<td>Description of the Products.  <br />Inside Order Products there are Required filds, but order project NOT is required</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"order-products\">Order Products:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>price</td>\n<td>Required</td>\n<td>float</td>\n<td>Price of the products</td>\n</tr>\n<tr>\n<td>item_number</td>\n<td>Required</td>\n<td>int</td>\n<td>Item number of the product</td>\n</tr>\n<tr>\n<td>product_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Internal Code of the product that already exists internally</td>\n</tr>\n<tr>\n<td>product_type</td>\n<td>Required</td>\n<td>int</td>\n<td>The product type can be:  <br />1 - ReadyMix;  <br />2 - Pump Product;  <br />3 - Grout;  <br />4 - Service;  <br />5 - Additional;  <br />6 - Raw Material;  <br />7 - Minimum Pump Price;  <br />8 - Pump Complement (Add Database);  <br />99 - Others;</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Optional</td>\n<td>float</td>\n<td>Quantity of the product</td>\n</tr>\n<tr>\n<td>product_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>Internal Product Name</td>\n</tr>\n<tr>\n<td>pump_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Internal code of The Pump</td>\n</tr>\n<tr>\n<td>balance</td>\n<td>Optional</td>\n<td>float</td>\n<td>Remaining quantity to be dispatched</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","po"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"368073b0-f9b4-4e3b-a87b-fb620ec9ea68","name":"Created Records","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n{\n        \"order_code\": \"#B0999900000173\",\n        \"customer_code\": \"110012\",\n        \"customer_name\": \"FERRANDO JUAN 11111\",\n        \"address_code\": \"#110012\",\n        \"address_street\": \"R. PE\\u00d1A\",\n        \"status_code\": \"A\",\n        \"status_name\": \"Aprobado\",\n        \"total_price\": 1210000.0,\n        \"product_code\": \"AC\",\n        \"quantity\": 1.0,\n        \"internal_notes\": \"TESTE KAUE\",\n        \"secondary\": true,\n        \"price\": 1000000.0,\n        \"updated_at\": \"2023-07-10 15:59:10\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://integration.readymix.io/api/sync/po?start=2024-16-01&end=2024-16-01","protocol":"https","host":["integration","readymix","io"],"path":["api","sync","po"],"query":[{"key":"start","value":"2024-16-01"},{"key":"end","value":"2024-16-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 18:08:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"144"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"order_code\": \"#B0999900000173\",\n                \"status\": \"Created\"\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"1be9276b-2ef4-438e-a3aa-c5de01961b6e","name":"Updated Records","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n{\n        \"order_code\": \"#B0999900000173\",\n        \"customer_code\": \"110012\",\n        \"customer_name\": \"FERRANDO JUAN 11111\",\n        \"address_code\": \"#110012\",\n        \"address_street\": \"R. PE\\u00d1A\",\n        \"status_code\": \"A\",\n        \"status_name\": \"Aprobado\",\n        \"total_price\": 1210000.0,\n        \"product_code\": \"AC\",\n        \"quantity\": 1.0,\n        \"internal_notes\": \"TESTE KAUE\",\n        \"secondary\": true,\n        \"price\": 1000000.0,\n        \"updated_at\": \"2023-07-10 15:59:10\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://integration.readymix.io/api/sync/po?start=2024-16-01&end=2024-16-01","protocol":"https","host":["integration","readymix","io"],"path":["api","sync","po"],"query":[{"key":"start","value":"2024-16-01"},{"key":"end","value":"2024-16-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 18:09:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"144"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"order_code\": \"#B0999900000173\",\n                \"status\": \"Updated\"\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"d14fcc09-6f78-4f4b-a878-5b4f641c509e","name":"Error Records","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n{\n        \"customer_code\": \"110012\",\n        \"customer_name\": \"FERRANDO JUAN 11111\",\n        \"address_code\": \"#110012\",\n        \"address_street\": \"R. PE\\u00d1A\",\n        \"status_code\": \"A\",\n        \"status_name\": \"Aprobado\",\n        \"total_price\": 1210000.0,\n        \"product_code\": \"AC\",\n        \"quantity\": 1.0,\n        \"internal_notes\": \"TESTE KAUE\",\n        \"secondary\": true,\n        \"price\": 1000000.0,\n        \"updated_at\": \"2023-07-10 15:59:10\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://integration.readymix.io/api/sync/po?start=2024-16-01&end=2024-16-01","protocol":"https","host":["integration","readymix","io"],"path":["api","sync","po"],"query":[{"key":"start","value":"2024-16-01"},{"key":"end","value":"2024-16-01"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 18:09:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"44"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"reason\": \"'order_code'\"\n}"}],"_postman_id":"62c96fe2-183b-40ff-a007-6863917e010d"},{"name":"List Purchase Orders","id":"d6626b0a-6acb-453b-8b26-0246e4199c40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/po?status_code=02&start_date=2024-07-18&end_date=2024-07-18","description":"<p>Send purchase orders to Loop 4 Readymix Application. You can use this method to insert / update purchase orders.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>order_code</td>\n<td>Required</td>\n<td>string</td>\n<td>The order code, this value is used to identify each order, must be unique per order</td>\n</tr>\n<tr>\n<td>customer_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Unique code that identifies the Customer</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>Required</td>\n<td>string</td>\n<td>Name of the customer</td>\n</tr>\n<tr>\n<td>address_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Unique code that identifies the Address</td>\n</tr>\n<tr>\n<td>address_street</td>\n<td>Required</td>\n<td>string</td>\n<td>General Street line -&gt; Send this field if you want to create or update the address_code</td>\n</tr>\n<tr>\n<td>status_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Status code</td>\n</tr>\n<tr>\n<td>status_name</td>\n<td>Required</td>\n<td>string</td>\n<td>Status name -&gt; Send this field if you want to create or update the status_code</td>\n</tr>\n<tr>\n<td>seller_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Seller code. if it doesn't exist it will create</td>\n</tr>\n<tr>\n<td>seller_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>Seller name -&gt; Send this field if you want to create or update the seller_code</td>\n</tr>\n<tr>\n<td>product_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Unique code that identifies the Product Code existing</td>\n</tr>\n<tr>\n<td>product_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>name of the project</td>\n</tr>\n<tr>\n<td>product_type</td>\n<td>Optional</td>\n<td>int</td>\n<td>The product type can be:  <br />1 - ReadyMix;  <br />2 - Pump Product;  <br />3 - Grout;  <br />4 - Service;  <br />5 - Additional;  <br />6 - Raw Material;  <br />7 - Minimum Pump Price;  <br />8 - Pump Complement (Add Database);  <br />99 - Others;</td>\n</tr>\n<tr>\n<td>project_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Project / Contract code of the purchase order</td>\n</tr>\n<tr>\n<td>project_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>Project / Contract name of the purchase order</td>\n</tr>\n<tr>\n<td>pre_paid</td>\n<td>Optional</td>\n<td>boolean</td>\n<td>We send \"true \"when the purchase order has a prepayment or \"false\" when we don't have a prepayment</td>\n</tr>\n<tr>\n<td>total_price</td>\n<td>Optional</td>\n<td>float</td>\n<td>We use this field to inform that the Purchase Order will only have value and not a specific product</td>\n</tr>\n<tr>\n<td>item_number</td>\n<td>Optional</td>\n<td>int</td>\n<td>The number that identifies the purchase order in which the item shows up in the purchase order's list of product's</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Optional</td>\n<td>float</td>\n<td>Quantity of the product</td>\n</tr>\n<tr>\n<td>Internal_notes</td>\n<td>Optional</td>\n<td>string</td>\n<td>Notes of the product (If necessary)</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Optional</td>\n<td>float</td>\n<td>Unit price of the product in this order (you can send 0 if you don't have this information)</td>\n</tr>\n<tr>\n<td>secondary</td>\n<td>Optional</td>\n<td>boolean</td>\n<td>Send True if the purchase order is secondary</td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td>Optional</td>\n<td>string</td>\n<td>YYYY-DD-MM</td>\n</tr>\n<tr>\n<td>order_products</td>\n<td>Optional</td>\n<td>array</td>\n<td>Description of the Products.  <br />Inside Order Products there are Required filds, but order project NOT is required</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"order-products\">Order Products:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>price</td>\n<td>Required</td>\n<td>float</td>\n<td>Price of the products</td>\n</tr>\n<tr>\n<td>item_number</td>\n<td>Required</td>\n<td>int</td>\n<td>Item number of the product</td>\n</tr>\n<tr>\n<td>product_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Internal Code of the product that already exists internally</td>\n</tr>\n<tr>\n<td>product_type</td>\n<td>Required</td>\n<td>int</td>\n<td>The product type can be:  <br />1 - ReadyMix;  <br />2 - Pump Product;  <br />3 - Grout;  <br />4 - Service;  <br />5 - Additional;  <br />6 - Raw Material;  <br />7 - Minimum Pump Price;  <br />8 - Pump Complement (Add Database);  <br />99 - Others;</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Optional</td>\n<td>float</td>\n<td>Quantity of the product</td>\n</tr>\n<tr>\n<td>product_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>Internal Product Name</td>\n</tr>\n<tr>\n<td>pump_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Internal code of The Pump</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","po"],"host":["https://integration.loop4.io"],"query":[{"key":"status_code","value":"02"},{"key":"start_date","value":"2024-07-18"},{"key":"end_date","value":"2024-07-18"}],"variable":[]}},"response":[],"_postman_id":"d6626b0a-6acb-453b-8b26-0246e4199c40"}],"id":"89084bac-106a-40fd-b777-0c80b03f4155","description":"<p>Purchase Orders Integration</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"order_code\": \"14329485\",\n        \"customer_code\": \"55555\",\n        \"customer_name\": \"JOSE TEST NAME\",\n        \"address_code\": \"041162\",\n        \"address_street\": \"1243 STREET ONE, WINDERMERE FL\",\n        \"status_code\": \"0001\",\n        \"status_name\": \"Default Status\",\n        \"project_code\": \"0000001\",\n        \"project_name\": \"SHOPPING MALTA STONE\",\n        \"prepaid\": false,\n        \"order_products\": [\n            { \n                \"item_number\":1,\n                \"product_code\": \"0001\",\n                \"product_type\": 1,\n                \"product_name\": \"READYMIX CONCRETE 1\",\n                \"quantity\": 40,\n                \"price\": 10\n            }\n        ]\n    }\n]\n\n</code></pre>\n","event":[{"listen":"prerequest","script":{"id":"1519bd99-9e03-4a3a-a6c1-392fe89c58b3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6122e278-a025-486f-9a20-6e8d3ca978c5","type":"text/javascript","exec":[""]}}],"_postman_id":"89084bac-106a-40fd-b777-0c80b03f4155"},{"name":"Fuel","item":[{"name":"Insert Fuel","id":"fa3a1ad0-cf24-4080-ac29-e61cf0bf7bb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"ERPKEY\": \"1911031919\",\n        \"TRUCKCODE\": \"B01\",\n        \"DATE_TIME\": \"2024-02-05 08:50:45\",\n        \"LITERS\": 90,\n        \"ODOMETER\": 587593,\n        \"HOURMETER\": 6857334\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/fuel","description":"<p>Send refuelling data to ReadyMix Application.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ERPKEY</td>\n<td>Required</td>\n<td>string</td>\n<td>This value is used to identify each vehicle, it must be unique per Fuel</td>\n</tr>\n<tr>\n<td>TRUCKCODE</td>\n<td>Required</td>\n<td>string</td>\n<td>Code of the truck</td>\n</tr>\n<tr>\n<td>DATE_TIME</td>\n<td>Required</td>\n<td>string</td>\n<td>Select date</td>\n</tr>\n<tr>\n<td>LITERS</td>\n<td>Required</td>\n<td>float</td>\n<td>Liters of the truck</td>\n</tr>\n<tr>\n<td>ODOMETER</td>\n<td>Optional</td>\n<td>float</td>\n<td>Odometer of the truck</td>\n</tr>\n<tr>\n<td>HOURMETER</td>\n<td>Optional</td>\n<td>float</td>\n<td>Hourmeter of the truck</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","fuel"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"33dd316f-8f73-496e-b460-f8f04aa1a789","name":"Created Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"ERPKEY\": \"1911031919\",\n        \"TRUCKCODE\": \"B01\",\n        \"DATE_TIME\": \"2024-02-05 08:50:45\",\n        \"LITERS\": \"5\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/fuel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 19:18:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"117"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"inserted-identifiers\": [\n            {\n                \"ERPKEY\": \"1911031919\"\n            }\n        ],\n        \"invalid-records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"424c021b-dded-4e32-986e-e435519ba4a4","name":"Update Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"ERPKEY\": \"1911031919\",\n        \"TRUCKCODE\": \"B01\",\n        \"DATE_TIME\": \"2024-02-05 09:50:45\",\n        \"LITERS\": \"5\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/fuel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 19:21:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"117"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"inserted-identifiers\": [\n            {\n                \"ERPKEY\": \"1911031919\"\n            }\n        ],\n        \"invalid-records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"37af10ee-5b61-461e-984c-f57095d6b43d","name":"Error Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"ERPKEY\": \"1911031919\",\n        \"TRUCKCODE\": \"B01\",\n        \"DATE_TIME\": \"2024-02-05 09:50:45\",\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/fuel"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 19:23:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"128"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"reason\": \"JSON parse error - Expecting property name enclosed in double quotes: line 6 column 5 (char 116)\"\n}"}],"_postman_id":"fa3a1ad0-cf24-4080-ac29-e61cf0bf7bb1"},{"name":"Delete Fuel","id":"5d2dd4f1-d1de-429e-875e-a5db2ed7a659","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"warning":"This is a duplicate header and will be overridden by the token header generated by Postman.","key":"token","value":"{{your-company-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"ERPKEY\": \"000000001\"\n  }\n]"},"url":"https://integration.loop4.io/api/sync/fuel","description":"<p>Delete refuelling data to ReadyMix Application.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ERPKEY</td>\n<td>Required</td>\n<td>string</td>\n<td>The erpkey, this value is used to identify each vehicle, must be unique per vehicle</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","fuel"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"9f6c9a53-68f0-42ab-abda-2f98029412db","name":"Delete Records","originalRequest":{"method":"DELETE","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"ERPKEY\": \"1911031919\"\n  }\n]"},"url":"https://integration.loop4.io/api/sync/fuel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 07 Feb 2024 14:20:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"98"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"deleted-count\": [\n            \"1911031919\"\n        ],\n        \"invalid-records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"1ae2fa3b-953b-4016-a584-352101009364","name":"Error Records","originalRequest":{"method":"DELETE","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"ERPKEY\": \"\"\n  }\n]"},"url":"https://integration.loop4.io/api/sync/fuel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 07 Feb 2024 14:21:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"134"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"deleted-count\": [],\n        \"invalid-records\": [\n            {\n                \"ERPKEY\": \"\",\n                \"ERROR\": \"Record does not exist\"\n            }\n        ]\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"5d2dd4f1-d1de-429e-875e-a5db2ed7a659"},{"name":"List Fuel","id":"650b3b7d-0904-4a52-acc9-246819a8c216","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://integration.loop4.io/api/sync/fuel","description":"<p>List refuelling data to ReadyMix Application with some parameters.</p>\n","urlObject":{"path":["api","sync","fuel"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"25531ef6-ce5c-48aa-9090-e79f00579b6b","name":"List Fuel example","originalRequest":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","disabled":true},{"key":"Content-Type","value":"application/json"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295"}],"body":{"mode":"raw","raw":""},"url":"https://integration.loop4.io/api/sync/fuel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 Jun 2024 12:02:25 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1005"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 2578432,\n            \"ERPKEY\": \"\",\n            \"TRUCKCODE\": \"EM-84\",\n            \"DATE_TIME\": \"2024-02-05T08:50:45-03:00\",\n            \"ODOMETER\": 587593,\n            \"HOURMETER\": 6857330,\n            \"LITERS\": 90,\n            \"tsfuelprev\": null,\n            \"codmotorista\": null,\n            \"codplanta\": null,\n            \"volume\": null,\n            \"trips\": null,\n            \"time\": null,\n            \"km\": null,\n            \"kmlt\": null,\n            \"kmgps\": null,\n            \"timegps\": null,\n            \"lthr\": null,\n            \"ltm3\": null,\n            \"metalm3\": null,\n            \"lttn\": null,\n            \"tsupdated\": \"2024-06-19T09:00:41-03:00\",\n            \"IDEMPRESA\": 511,\n            \"id_veiculo\": 868885,\n            \"idgeofence\": null\n        },\n        {\n            \"id\": 2564010,\n            \"ERPKEY\": null,\n            \"TRUCKCODE\": \"EM-84\",\n            \"DATE_TIME\": \"2024-04-05T13:57:28-03:00\",\n            \"ODOMETER\": 12761.4,\n            \"HOURMETER\": null,\n            \"LITERS\": 120.011,\n            \"tsfuelprev\": null,\n            \"codmotorista\": null,\n            \"codplanta\": null,\n            \"volume\": null,\n            \"trips\": null,\n            \"time\": null,\n            \"km\": null,\n            \"kmlt\": null,\n            \"kmgps\": null,\n            \"timegps\": null,\n            \"lthr\": null,\n            \"ltm3\": null,\n            \"metalm3\": null,\n            \"lttn\": null,\n            \"tsupdated\": \"2024-04-18T10:59:23-03:00\",\n            \"IDEMPRESA\": 511,\n            \"id_veiculo\": 868885,\n            \"idgeofence\": null\n        }\n    ],\n    \"message\": \"\"\n}"}],"_postman_id":"650b3b7d-0904-4a52-acc9-246819a8c216"}],"id":"71aa6528-5384-40cf-a5d2-88c02e6383d0","description":"<p>Fuel Management</p>\n","event":[{"listen":"prerequest","script":{"id":"a82318dc-9543-42ee-90db-fecf93c62b86","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2464ff72-4439-44fd-beee-46155c2fb282","type":"text/javascript","exec":[""]}}],"_postman_id":"71aa6528-5384-40cf-a5d2-88c02e6383d0"},{"name":"Drivers Work Time","item":[{"name":"Insert Drivers Work Time","id":"d5c5ed9e-6353-47f8-9756-08d7f307897d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"    [\n        {\n            \"DRIVERCODE\": \"J23\",\n            \"START\": \"2024-02-05 03:00:04\",\n            \"END\": \"2024-02-05 13:00:04\",\n            \"DATE\": \"2024-02-05\",\n            \"LUNCH_DURATION\": 60,\n            \"DRIVER_BIOMETRIC_CODE\": \"1234578\"\n        },\n        {\n            \"DRIVERCODE\": \"M001\",\n            \"START\": \"2024-02-05 03:00:04\",\n            \"END\": \"2024-02-05 13:00:04\",\n            \"DATE\": \"2024-02-05\",\n            \"LUNCH_DURATION\": 60\n        }\n    ]"},"url":"https://integration.loop4.io/api/sync/worktime","description":"<p>Send Driver Work Time data to ReadyMix Application.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DRIVERCODE</td>\n<td>Required/Optional</td>\n<td>string</td>\n<td>This value is used to identify each driver, it must be unique per driver. Remembering that if you do not enter the DRIVERCODE, the DRIVER_BIOMETRIC_CODE must be entered.</td>\n</tr>\n<tr>\n<td>START</td>\n<td>Required</td>\n<td>string</td>\n<td>Start of the driver's work day</td>\n</tr>\n<tr>\n<td>END</td>\n<td>Required</td>\n<td>string</td>\n<td>End of the driver's work day</td>\n</tr>\n<tr>\n<td>DATE</td>\n<td>Required</td>\n<td>string</td>\n<td>Workday</td>\n</tr>\n<tr>\n<td>LUNCH_DURATION</td>\n<td>Required</td>\n<td>int</td>\n<td>Drivers' lunch break</td>\n</tr>\n<tr>\n<td>DRIVER_BIOMETRIC_CODE</td>\n<td>Optional</td>\n<td>string</td>\n<td>Field used for integration when not DRIVERCODE does not have standardization in all systems.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","worktime"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"5db728b4-c92e-4f2c-8d14-18a63e93e3ac","name":"Created Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"    [\n        {\n            \"DRIVERCODE\": \"J23\",\n            \"START\": \"2024-02-05 03:00:04\",\n            \"END\": \"2024-02-05 13:00:04\",\n            \"DATE\": \"2024-02-05\",\n            \"LUNCH_DURATION\": 60\n        },\n        {\n            \"DRIVERCODE\": \"M001\",\n            \"START\": \"2024-02-05 03:00:04\",\n            \"END\": \"2024-02-05 13:00:04\",\n            \"DATE\": \"2024-02-05\",\n            \"LUNCH_DURATION\": 60\n        }\n    ]"},"url":"https://integration.loop4.io/api/sync/worktime"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 19:31:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"182"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"inserted-identifiers\": [\n            {\n                \"DRIVERCODE\": \"J23\",\n                \"DATE\": \"2024-02-05\"\n            },\n            {\n                \"DRIVERCODE\": \"M001\",\n                \"DATE\": \"2024-02-05\"\n            }\n        ],\n        \"invalid-records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"aba32a3c-dd3a-4f11-bc97-c44cc215f575","name":"Error Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"    [\n        {\n            \"DRIVERCODE\": \"J23\",\n            \"START\": \"2024-02-05 03:00:04\",\n            \"END\": \"2024-02-05 13:00:04\",\n            \"LUNCH_DURATION\": 60\n        },\n        {\n            \"DRIVERCODE\": \"M001\",\n            \"START\": \"2024-02-05 03:00:04\",\n            \"END\": \"2024-02-05 13:00:04\",\n            \"DATE\": \"2024-02-05\"\n        }\n    ]"},"url":"https://integration.loop4.io/api/sync/worktime"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 19:33:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"38"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"reason\": \"'DATE'\"\n}"}],"_postman_id":"d5c5ed9e-6353-47f8-9756-08d7f307897d"},{"name":"Delete Drivers Work Time","id":"553e1350-a999-4aa2-a678-3865150823dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"DRIVERCODE\": \"J23\",\n    \"DATE\": \"2024-02-05\"\n  },\n  {\n    \"DRIVERCODE\": \"M001\",\n    \"DATE\": \"2024-02-05\"\n  }\n]"},"url":"https://integration.loop4.io/api/sync/worktime","description":"<p>Delete Driver Work Time data to ReadyMix Application.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DRIVERCODE</td>\n<td>Required</td>\n<td>string</td>\n<td>This value is used to identify each driver, must be unique per driver</td>\n</tr>\n<tr>\n<td>DATE</td>\n<td>Required</td>\n<td>string</td>\n<td>Workday</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","worktime"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"9745de65-eed0-4216-8854-836edee2df62","name":"Delete Records","originalRequest":{"method":"DELETE","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"DRIVERCODE\": \"J23\",\n    \"DATE\": \"2024-02-05\"\n  },\n  {\n    \"DRIVERCODE\": \"M001\",\n    \"DATE\": \"2024-02-05\"\n  }\n]"},"url":"https://integration.loop4.io/api/sync/worktime"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 20:23:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"175"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"deleted_count\": [\n            {\n                \"DATE\": \"2024-02-05\",\n                \"DRIVERCODE\": \"J23\"\n            },\n            {\n                \"DATE\": \"2024-02-05\",\n                \"DRIVERCODE\": \"M001\"\n            }\n        ],\n        \"invalid-records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"82e76b08-1cab-4c3b-8c9d-324c303e8d40","name":"Error Records","originalRequest":{"method":"DELETE","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"DRIVERCODE\": \"\",\n    \"DATE\": \"2024-02-05\"\n  },\n  {\n    \"DRIVERCODE\": \"\",\n    \"DATE\": \"2024-02-05\"\n  }\n]"},"url":"https://integration.loop4.io/api/sync/worktime"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 20:24:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"236"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"deleted_count\": [],\n        \"invalid-records\": [\n            {\n                \"DATE\": \"2024-02-05\",\n                \"DRIVERCODE\": \"\",\n                \"ERROR\": \"Record does not exist\"\n            },\n            {\n                \"DATE\": \"2024-02-05\",\n                \"DRIVERCODE\": \"\",\n                \"ERROR\": \"Record does not exist\"\n            }\n        ]\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"553e1350-a999-4aa2-a678-3865150823dc"},{"name":"List Drivers Work Time","id":"5c07b7e7-9d30-4359-a60f-4d93d89e2a0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://integration.loop4.io/api/sync/worktime","description":"<p>List Driver Work Time data to ReadyMix Application.</p>\n","urlObject":{"path":["api","sync","worktime"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"3f119bf4-c863-48d4-bac9-380be9738d15","name":"List Drivers Work Time","originalRequest":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://integration.loop4.io/api/sync/worktime"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 20:45:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"514"},{"key":"Connection","value":"close"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 504651,\n            \"DRIVERCODE\": \"M001\",\n            \"DATE\": \"2024-02-05\",\n            \"START\": \"2024-02-05 03:00:04\",\n            \"END\": \"2024-02-05 13:00:04\",\n            \"LUNCH_DURATION\": 60,\n            \"TOTAL_TIME\": 540,\n            \"USER_START\": null,\n            \"USER_END\": null,\n            \"IDEMPRESA\": 447,\n            \"driver\": 96576\n        },\n        {\n            \"id\": 504650,\n            \"DRIVERCODE\": \"J23\",\n            \"DATE\": \"2024-02-05\",\n            \"START\": \"2024-02-05 03:00:04\",\n            \"END\": \"2024-02-05 13:00:04\",\n            \"LUNCH_DURATION\": 60,\n            \"TOTAL_TIME\": 540,\n            \"USER_START\": null,\n            \"USER_END\": null,\n            \"IDEMPRESA\": 447,\n            \"driver\": 100173\n        }\n    ],\n    \"message\": \"\"\n}"}],"_postman_id":"5c07b7e7-9d30-4359-a60f-4d93d89e2a0b"}],"id":"1c0433f6-2cfc-49d2-87f1-f00150856d88","description":"<p>Drivers Work Time  Management</p>\n","event":[{"listen":"prerequest","script":{"id":"faea4f7e-9ef6-4ec8-940f-521ba3d794ae","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"67b058cf-b096-4b34-8542-b22c13509ad5","type":"text/javascript","exec":[""]}}],"_postman_id":"1c0433f6-2cfc-49d2-87f1-f00150856d88"},{"name":"Products","item":[{"name":"Insert Products","id":"9f474487-deb6-41e4-ad2a-fecf57cb021f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"token","value":"{{your-company-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"product_code\": \"PKXD\",\n        \"product_name\": \"PKXD\",\n        \"product_type\": 1,\n        \"product_uom\": \"UN\",\n        \"product_description\": \"UN\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/products","description":"<p>Creates / Updates products</p>\n<p>The products will be created or updated on each request.<br />If the product code exists, it will be updated, if it does not exist it will be created.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>product_code</td>\n<td>Required</td>\n<td>string</td>\n<td>The product code, this value is used to identify each product, must be unique per product</td>\n</tr>\n<tr>\n<td>product_name</td>\n<td>Required</td>\n<td>string</td>\n<td>Name of the Product</td>\n</tr>\n<tr>\n<td>product_type</td>\n<td>Required</td>\n<td>int</td>\n<td>The product type can be:  <br />1 - ReadyMix;  <br />2 - Pump Product;  <br />3 - Grout;  <br />4 - Service;  <br />5 - Additional;  <br />6 - Raw Material;  <br />7 - Minimum Pump Price;  <br />8 - Pump Complement (Add Database);  <br />99 - Others;</td>\n</tr>\n<tr>\n<td>product_raw_material_type</td>\n<td>Optional</td>\n<td>int</td>\n<td>When 'product_type' is equal to 6, this field becomes mandatory.  <br />1 - Cement;  <br />2 - Sand;  <br />3 - Gravel;  <br />4 - Admixture;  <br />5 - Water;</td>\n</tr>\n<tr>\n<td>product_uom_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>When 'product_type' is equal to 6, this field becomes mandatory. Therefore, this field shows the code of which unit of measurement will be used to weigh</td>\n</tr>\n<tr>\n<td>product_uom_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>When 'product_type' is equal to 6, this field becomes mandatory. Therefore, this field shows the name of which unit of measurement will be used to weigh</td>\n</tr>\n<tr>\n<td>product_price</td>\n<td>Optional</td>\n<td>float</td>\n<td>Product List price (float)</td>\n</tr>\n<tr>\n<td>product_description</td>\n<td>Optional</td>\n<td>string</td>\n<td>Product Description</td>\n</tr>\n<tr>\n<td>product_fck_class</td>\n<td>Optional</td>\n<td>string</td>\n<td>The product_fck_class you define the FCK class of the product</td>\n</tr>\n<tr>\n<td>product_slump_class</td>\n<td>Optional</td>\n<td>string</td>\n<td>The product_slump_class you define the Slump class of the product</td>\n</tr>\n<tr>\n<td>product_coarse_agg</td>\n<td>Optional</td>\n<td>string</td>\n<td>In the product_coarse_agg you define the aggragates includ in the product</td>\n</tr>\n<tr>\n<td>product_chloride_class</td>\n<td>Optional</td>\n<td>string</td>\n<td>In the product_chloride_class you can define the class which defines the maximum chloride teor</td>\n</tr>\n<tr>\n<td>product_exposure_class</td>\n<td>Optional</td>\n<td>string</td>\n<td>In the product_chloride_class you can define the exposure class of the product</td>\n</tr>\n<tr>\n<td>product_custom_1</td>\n<td>Optional</td>\n<td>string</td>\n<td>Custom value of the product</td>\n</tr>\n<tr>\n<td>product_custom_2</td>\n<td>Optional</td>\n<td>string</td>\n<td>Custom value of the product</td>\n</tr>\n<tr>\n<td>product_inactive</td>\n<td>Optional</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>product_related_to</td>\n<td>Optional</td>\n<td>string</td>\n<td>Tells what this product is related to. It can be related to Concrete (C), Pump (P) or Laboratory (L)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","products"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"9ecf152a-139a-4ffa-8e0d-b595df124f66","name":"Created Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"product_code\": \"97\",\n        \"product_name\": \"2500 PSI CONCRETE (REG)\",\n        \"product_price\": 20,\n        \"product_description\": \"Optional product description\",\n        \"product_type\": 1\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/products"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 18:24:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"product_code\": \"97\",\n                \"status\": \"Created\"\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"b288413a-4f31-4dec-9e92-2af474bb2d09","name":"Update Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"product_code\": \"05\",\n        \"product_name\": \"2500 PSI CONCRETE (REG)\",\n        \"product_price\": 20,\n        \"product_description\": \"Optional product description\",\n        \"product_type\": 1\n    },\n    {\n        \"product_code\": \"06\",\n        \"product_name\": \"4000 PSI CONCRETE NEW NAME\",\n        \"product_price\": 5.3,\n        \"product_description\": \"Optional product description\",\n        \"product_type\": 2\n    },\n    {\n        \"product_code\": \"89\",\n        \"product_name\": \"#3 X 14' REBAR\",\n        \"product_price\": 3,\n        \"product_description\": \"Optional product description\",\n        \"product_type\": 99\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/products"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 18:08:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"223"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"product_code\": \"05\",\n                \"status\": \"Updated\"\n            },\n            {\n                \"product_code\": \"06\",\n                \"status\": \"Updated\"\n            },\n            {\n                \"product_code\": \"89\",\n                \"status\": \"Updated\"\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"761a9bc4-b39b-4607-b832-5e456fcfc21f","name":"Error Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"product_code\": \"05\",\n        \"product_name\": \"2500 PSI CONCRETE (REG)\",\n        \"product_price\": 20,\n        \"product_description\": \"Optional product description\",\n        \"product_type\": 1\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/products"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 18:12:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"166"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [],\n        \"failed_records\": [\n            {\n                \"product_code\": \"9090\",\n                \"reason\": \"Missing field 'product_type' from json\"\n            }\n        ]\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"9f474487-deb6-41e4-ad2a-fecf57cb021f"},{"name":"List Products","id":"9195a3a2-40ff-469d-992e-ef309fd71485","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{syncapi_endpoint}}/api/sync/products","description":"<p>List Costumers to Loop 4 Readymix Application your company token.</p>\n","urlObject":{"path":["api","sync","products"],"host":["{{syncapi_endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"cd00c7c0-cb9b-409b-9350-49a880cfa854","name":"List Customers","originalRequest":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":"https://integration.loop4.io/api/sync/customers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 19:30:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"4526"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"total_pages\": 1,\n        \"total_items\": 5,\n        \"page_index\": 1,\n        \"page_total_items\": 5,\n        \"page_items\": [\n            {\n                \"id\": 352165,\n                \"code\": \"CL 01\",\n                \"projects\": [\n                    {\n                        \"id\": 547510165,\n                        \"codcontrato\": \"CONT 01\",\n                        \"clinome\": \"MRV - Brasilia\",\n                        \"cliendereco\": \"Rua Sria , 33, Guará, Brasília, Distrito Federal, 71065-330\",\n                        \"codvendedor\": null,\n                        \"pincode\": null,\n                        \"lat\": null,\n                        \"lng\": null,\n                        \"polyg\": null,\n                        \"detached\": false,\n                        \"customer_key\": \"406538217\",\n                        \"dtstart\": null,\n                        \"dtend\": null,\n                        \"active\": null,\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 100000,\n                        \"credit_delivered\": 0,\n                        \"notes\": null,\n                        \"start_date\": \"2024-01-16\",\n                        \"end_date\": \"2024-01-16\",\n                        \"has_max_quantity\": false,\n                        \"has_extra_quantity\": false,\n                        \"inactive\": false,\n                        \"all_plants\": true,\n                        \"is_b_side\": false,\n                        \"version\": 2,\n                        \"spent_total_value\": 0,\n                        \"display_price\": true,\n                        \"created_at\": \"2024-01-16T10:52:07-03:00\",\n                        \"updated_at\": \"2024-01-16T11:50:24-03:00\",\n                        \"po_required\": false,\n                        \"pre_client_name\": null,\n                        \"pre_address\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"company\": 511,\n                        \"plan_customer\": 352165,\n                        \"tms_address\": 568735,\n                        \"billing_address\": 568735,\n                        \"seller\": 82941,\n                        \"status\": 1293,\n                        \"fav_plant\": 2249,\n                        \"payment_method\": 119,\n                        \"payment_condition\": 2854,\n                        \"price_table\": null\n                    }\n                ],\n                \"name\": \"Construção MRV\",\n                \"email\": \"MRV@contato.com\",\n                \"phone\": \"1980805252\",\n                \"notes\": null,\n                \"document\": \"90999900999099090\",\n                \"document2\": \"90999900999099090\",\n                \"document3\": \"90999900999099090\",\n                \"document4\": \"90999900999099090\",\n                \"person_type\": \"L\",\n                \"legal_name\": \"90999900999099090\",\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": null,\n                \"is_b_side\": false,\n                \"legal_address\": null\n            },\n            {\n                \"id\": 355201,\n                \"code\": \"C001\",\n                \"projects\": [],\n                \"name\": \"H&A Corporations\",\n                \"email\": \"customer@email.com\",\n                \"phone\": \"92830493\",\n                \"notes\": \"This is a very good customer\",\n                \"document\": \"13008090001/23\",\n                \"document2\": \"1300002\",\n                \"document3\": \"1300003\",\n                \"document4\": \"1300804\",\n                \"person_type\": \"L\",\n                \"legal_name\": \"H&A Corporations LLC\",\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": null,\n                \"is_b_side\": false,\n                \"legal_address\": 576369\n            },\n            {\n                \"id\": 355205,\n                \"code\": \"C02\",\n                \"projects\": [],\n                \"name\": \"H&A Corporations\",\n                \"email\": \"customer@email.com\",\n                \"phone\": \"92830493\",\n                \"notes\": \"This is a very good customer\",\n                \"document\": \"13008090001/23\",\n                \"document2\": \"1300002\",\n                \"document3\": \"1300003\",\n                \"document4\": \"1300804\",\n                \"person_type\": \"L\",\n                \"legal_name\": \"H&A Corporations LLC\",\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": null,\n                \"is_b_side\": false,\n                \"legal_address\": 576361\n            },\n            {\n                \"id\": 355210,\n                \"code\": \"C1\",\n                \"projects\": [],\n                \"name\": \"H&A Corporations\",\n                \"email\": \"customer@email.com\",\n                \"phone\": \"92830493\",\n                \"notes\": \"This is a very good customer\",\n                \"document\": \"13008090001/23\",\n                \"document2\": \"1300002\",\n                \"document3\": \"1300003\",\n                \"document4\": \"1300804\",\n                \"person_type\": \"L\",\n                \"legal_name\": \"H&A Corporations LLC\",\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": null,\n                \"is_b_side\": false,\n                \"legal_address\": 576369\n            },\n            {\n                \"id\": 352166,\n                \"code\": \"CL 02\",\n                \"projects\": [\n                    {\n                        \"id\": 547510167,\n                        \"codcontrato\": \"CONT 02\",\n                        \"clinome\": \"Construção  do seu josé\",\n                        \"cliendereco\": \"Av Lázaro Queiroz , 120, Sede , Itapevi, São Paulo\",\n                        \"codvendedor\": null,\n                        \"pincode\": null,\n                        \"lat\": null,\n                        \"lng\": null,\n                        \"polyg\": null,\n                        \"detached\": false,\n                        \"customer_key\": \"365898525\",\n                        \"dtstart\": null,\n                        \"dtend\": null,\n                        \"active\": null,\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 22500,\n                        \"credit_delivered\": 7500,\n                        \"notes\": null,\n                        \"start_date\": \"2024-01-16\",\n                        \"end_date\": \"2024-01-16\",\n                        \"has_max_quantity\": false,\n                        \"has_extra_quantity\": false,\n                        \"inactive\": false,\n                        \"all_plants\": true,\n                        \"is_b_side\": false,\n                        \"version\": 4,\n                        \"spent_total_value\": 7500,\n                        \"display_price\": true,\n                        \"created_at\": \"2024-01-16T10:56:11-03:00\",\n                        \"updated_at\": \"2024-01-16T12:05:45-03:00\",\n                        \"po_required\": false,\n                        \"pre_client_name\": null,\n                        \"pre_address\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"company\": 511,\n                        \"plan_customer\": 352166,\n                        \"tms_address\": 568739,\n                        \"billing_address\": 568739,\n                        \"seller\": 82942,\n                        \"status\": 1295,\n                        \"fav_plant\": 2248,\n                        \"payment_method\": 118,\n                        \"payment_condition\": 2854,\n                        \"price_table\": null\n                    }\n                ],\n                \"name\": \"José Alameda\",\n                \"email\": \"jose@gmail\",\n                \"phone\": \"1152566221\",\n                \"notes\": null,\n                \"document\": null,\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": null,\n                \"is_b_side\": false,\n                \"legal_address\": null\n            }\n        ]\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"9195a3a2-40ff-469d-992e-ef309fd71485"}],"id":"77404b60-b2da-4c03-a95f-2836f0445c2f","_postman_id":"77404b60-b2da-4c03-a95f-2836f0445c2f","description":""},{"name":"Drivers","item":[{"name":"Insert Drivers","id":"69006e5f-329b-4c8c-a6d9-98b1b56837cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"driver_code\": \"01\",\n        \"driver_name\": \"VIDAL, GUSTAVO\",\n        \"driver_phone\": \"3624562332\",\n        \"biometric_code\": \"172345\"\n    },\n    {\n        \"driver_code\": \"02\",\n        \"driver_name\": \"GOMEZ DIEGO\",\n        \"driver_phone\": \"3624562332\",\n        \"biometric_code\": \"172256\"\n    }\n]\n","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/drivers","description":"<p>Creates / Updates Drivers</p>\n<p>The drivers will be created or updated on each request.<br />If the driver code exists, it will be updated, if it does not exist it will be created.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>driver_code</td>\n<td>Required</td>\n<td>string</td>\n<td>The driver code, this value is used to identify each driver, must be unique per driver</td>\n</tr>\n<tr>\n<td>driver_name</td>\n<td>Required</td>\n<td>string</td>\n<td>Name of the Driver</td>\n</tr>\n<tr>\n<td>driver_phone</td>\n<td>Optional</td>\n<td>string</td>\n<td>Phone of the Driver</td>\n</tr>\n<tr>\n<td>biometric_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Field used for integration when not driver_code does not have standardization in all systems.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","drivers"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"5482290f-fea2-43fb-aee7-963bfd7ef30a","name":"Created Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"driver_code\": \"01\",\r\n        \"driver_name\": \"VIDAL RAMON\",\r\n        \"driver_phone\": \"3624039237\"\r\n    },\r\n    {\r\n        \"driver_code\": \"02\",\r\n        \"driver_name\": \"GOMEZ DIEGO\",\r\n        \"driver_phone\": \"3624562332\"\r\n    }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"https://integration.readymix.io/api/sync/drivers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 14:04:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"132"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"driver_code\": \"15\",\n                \"status\": \"created\"\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"d2d86d73-5283-47f5-ad9b-089586a0c33d","name":"Updated Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"driver_code\": \"01\",\r\n        \"driver_name\": \"VIDAL RAMON\",\r\n        \"driver_phone\": \"3624039237\"\r\n    },\r\n    {\r\n        \"driver_code\": \"02\",\r\n        \"driver_name\": \"GOMEZ DIEGO\",\r\n        \"driver_phone\": \"3624562332\"\r\n    }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"https://integration.readymix.io/api/sync/drivers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 14:03:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"174"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"driver_code\": \"01\",\n                \"status\": \"update\"\n            },\n            {\n                \"driver_code\": \"02\",\n                \"status\": \"update\"\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"67495d3b-e5d4-47ee-a40d-c1c134f71e6f","name":"Error Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n    {\n        \"driver_code\": \"01\",\n        \"driver_phone\": \"3624039237\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.readymix.io/api/sync/drivers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 14:06:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"138"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [],\n        \"failed_records\": [\n            {\n                \"driver_code\": \"01\",\n                \"reason\": \"'driver_name'\"\n            }\n        ]\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"69006e5f-329b-4c8c-a6d9-98b1b56837cc"},{"name":"List Drivers","id":"d63e175b-fb9b-4268-a0c6-63db17660bfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/drivers?updated_at_gt=2025-01-11 00:00:00","description":"<p>List Drivers to Loop 4 Readymix Application your company token.</p>\n","urlObject":{"path":["api","sync","drivers"],"host":["https://integration.loop4.io"],"query":[{"key":"updated_at_gt","value":"2025-01-11 00:00:00"}],"variable":[]}},"response":[{"id":"f24a0911-d865-4a0c-ab97-9805a2b00060","name":"List Drivers","originalRequest":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://integration.readymix.io/api/sync/drivers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 14:27:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2975"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 100298,\n            \"code\": \"01\",\n            \"name\": \"VIDAL RAMON\",\n            \"phone\": \"3624039237\",\n            \"pushid\": null,\n            \"push_id_rm_app\": null,\n            \"last_login\": null,\n            \"token\": null,\n            \"password\": \"---\",\n            \"document\": null,\n            \"address_full\": null,\n            \"company\": 511\n        },\n        {\n            \"id\": 100299,\n            \"code\": \"02\",\n            \"name\": \"GOMEZ DIEGO\",\n            \"phone\": \"3624562332\",\n            \"pushid\": null,\n            \"push_id_rm_app\": null,\n            \"last_login\": null,\n            \"token\": null,\n            \"password\": \"---\",\n            \"document\": null,\n            \"address_full\": null,\n            \"company\": 511\n        },\n        {\n            \"id\": 100300,\n            \"code\": \"08\",\n            \"name\": \"VIDAL RAMON\",\n            \"phone\": null,\n            \"pushid\": null,\n            \"push_id_rm_app\": null,\n            \"last_login\": null,\n            \"token\": null,\n            \"password\": \"---\",\n            \"document\": null,\n            \"address_full\": null,\n            \"company\": 511\n        },\n        {\n            \"id\": 100301,\n            \"code\": \"09\",\n            \"name\": \"GOMEZ DIEGO\",\n            \"phone\": null,\n            \"pushid\": null,\n            \"push_id_rm_app\": null,\n            \"last_login\": null,\n            \"token\": null,\n            \"password\": \"---\",\n            \"document\": null,\n            \"address_full\": null,\n            \"company\": 511\n        },\n        {\n            \"id\": 100302,\n            \"code\": \"15\",\n            \"name\": \"PABLO, EMILIO\",\n            \"phone\": \"3624039237\",\n            \"pushid\": null,\n            \"push_id_rm_app\": null,\n            \"last_login\": null,\n            \"token\": null,\n            \"password\": \"---\",\n            \"document\": null,\n            \"address_full\": null,\n            \"company\": 511\n        },\n        {\n            \"id\": 100198,\n            \"code\": \"M07\",\n            \"name\": \"VIDAL RAMO vitas\",\n            \"phone\": \"3624039237\",\n            \"pushid\": null,\n            \"push_id_rm_app\": null,\n            \"last_login\": null,\n            \"token\": null,\n            \"password\": \"---\",\n            \"document\": null,\n            \"address_full\": null,\n            \"company\": 511\n        },\n        {\n            \"id\": 100184,\n            \"code\": \"MOT01\",\n            \"name\": \"Jefferson Nunes\",\n            \"phone\": \"11 4002 8922\",\n            \"pushid\": null,\n            \"push_id_rm_app\": null,\n            \"last_login\": null,\n            \"token\": null,\n            \"password\": null,\n            \"document\": null,\n            \"address_full\": \"Rua da Casa Do Motorisa\",\n            \"company\": 511\n        },\n        {\n            \"id\": 100185,\n            \"code\": \"MOT02\",\n            \"name\": \"Kleber Alves\",\n            \"phone\": \"11 7070 8080\",\n            \"pushid\": null,\n            \"push_id_rm_app\": null,\n            \"last_login\": null,\n            \"token\": null,\n            \"password\": null,\n            \"document\": \"Documento dele\",\n            \"address_full\": \"Rua da Casa do Motorista\",\n            \"company\": 511\n        },\n        {\n            \"id\": 100186,\n            \"code\": \"MOT03\",\n            \"name\": \"Alfredo Dias\",\n            \"phone\": \"19 8080 7070\",\n            \"pushid\": null,\n            \"push_id_rm_app\": null,\n            \"last_login\": null,\n            \"token\": null,\n            \"password\": null,\n            \"document\": \"Documento Do Motorista\",\n            \"address_full\": \"Rua Da casa do Motorista\",\n            \"company\": 511\n        },\n        {\n            \"id\": 100187,\n            \"code\": \"MOT04\",\n            \"name\": \"Neemias Carlos\",\n            \"phone\": \"19 9090 8080\",\n            \"pushid\": null,\n            \"push_id_rm_app\": null,\n            \"last_login\": null,\n            \"token\": null,\n            \"password\": null,\n            \"document\": \"Documento Dele\",\n            \"address_full\": \"Rua Da Casa Dele\",\n            \"company\": 511\n        },\n        {\n            \"id\": 100188,\n            \"code\": \"MOT05\",\n            \"name\": \"Estácio Gomes\",\n            \"phone\": \"11 8520 9631\",\n            \"pushid\": null,\n            \"push_id_rm_app\": null,\n            \"last_login\": null,\n            \"token\": null,\n            \"password\": null,\n            \"document\": \"Documento dele\",\n            \"address_full\": \"Rua da casa do Motorista\",\n            \"company\": 511\n        },\n        {\n            \"id\": 100189,\n            \"code\": \"MOT06\",\n            \"name\": \"Paulo Enéias\",\n            \"phone\": \"19 8745 2523\",\n            \"pushid\": null,\n            \"push_id_rm_app\": null,\n            \"last_login\": null,\n            \"token\": null,\n            \"password\": null,\n            \"document\": \"Documento dele\",\n            \"address_full\": \"Rua da casa dele\",\n            \"company\": 511\n        }\n    ],\n    \"message\": \"\"\n}"}],"_postman_id":"d63e175b-fb9b-4268-a0c6-63db17660bfa"}],"id":"d0f68d73-312f-4411-864b-89c88fa13d2b","description":"<p>Use the below methods to manage the drivers</p>\n","_postman_id":"d0f68d73-312f-4411-864b-89c88fa13d2b"},{"name":"Sellers","item":[{"name":"Insert Sellers","id":"a13738a1-0f12-47be-8dec-aa19f0aa1d93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"erpkey\": \"0001\",\n        \"name\": \"PETER MARK\",\n        \"phone\": \"19 991235678\",\n        \"email\": \"petermark@gmail.com\",\n        \"country_code\": \"+55\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/seller","description":"<p>Creates / Updates Seller</p>\n<p>The sellers will be created or updated on each request.<br />If the seller code exists, it will be updated, if it does not exist it will be created.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>erpkey</td>\n<td>Required</td>\n<td>string</td>\n<td>The seller code, this value is used to identify each seller, must be unique per seller</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Required</td>\n<td>string</td>\n<td>Name of the Seller</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>Optional</td>\n<td>string</td>\n<td>Phone of the Seller</td>\n</tr>\n<tr>\n<td>email</td>\n<td>Optional</td>\n<td>string</td>\n<td>Email of the Seller</td>\n</tr>\n<tr>\n<td>country_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Country code of the Seller</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","seller"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"28ed027a-c857-422e-8888-1638c864769a","name":"Added Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}} ","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n    {\n        \"erpkey\": \"0001\",\n        \"name\": \"PETER MARK\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.readymix.io/api/sync/seller"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 13:28:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"104"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"added_records\": 1,\n        \"updated_records\": 0,\n        \"error_records\": 0\n    },\n    \"message\": \"\"\n}"},{"id":"c0d943a3-1832-46df-a7c4-2da6d42507c2","name":"Update Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}} ","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n    {\n        \"erpkey\": \"0001\",\n        \"name\": \"PETER MARK\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.readymix.io/api/sync/seller"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 13:33:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"104"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"added_records\": 0,\n        \"updated_records\": 1,\n        \"error_records\": 0\n    },\n    \"message\": \"\"\n}"},{"id":"56a869bb-ee13-46e6-be50-a9bb5ecb0591","name":"Error Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}} ","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n    {\n        \"erpkey\": \"0001\",\n        \"name\": \"PETER MARK\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.readymix.io/api/sync/seller"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 13:35:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"104"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"added_records\": 0,\n        \"updated_records\": 0,\n        \"error_records\": 1\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"a13738a1-0f12-47be-8dec-aa19f0aa1d93"},{"name":"List Sellers","id":"001078d0-f00e-4eae-97d7-94371936789f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/seller","description":"<p>List Drivers to Loop 4 Readymix Application your company token. It is not necessary to pass any parameters or body.</p>\n","urlObject":{"path":["api","sync","seller"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"58f04cf2-c8af-4461-91e9-0fae2614f214","name":"List Sellers","originalRequest":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"57969617-401b-4470-8ee3-2ee6635e","type":"text","disabled":true}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/seller"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 23 Feb 2024 11:47:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"270"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"erpkey\": \"001\",\n            \"name\": \"SALES REP TEST\"\n        },\n        {\n            \"erpkey\": \"02\",\n            \"name\": \"GENERAL ROCA\"\n        },\n        {\n            \"erpkey\": \"333\",\n            \"name\": \"SALES REP TEST\"\n        },\n        {\n            \"erpkey\": \"KSA\",\n            \"name\": \"KURT SAMMUT\"\n        },\n        {\n            \"erpkey\": \"V0001\",\n            \"name\": \"Paulo Azevedo Queiroz\"\n        }\n    ],\n    \"message\": \"\"\n}"}],"_postman_id":"001078d0-f00e-4eae-97d7-94371936789f"}],"id":"163f2622-c7bd-4230-8a6f-53b3bcb333c3","description":"<p>Use the below methods to manage the drivers</p>\n","_postman_id":"163f2622-c7bd-4230-8a6f-53b3bcb333c3"},{"name":"Payments Condition","item":[{"name":"Insert Payment Condition","id":"1c6db5bc-729f-42cd-af0e-6e7262e9d33e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"payment_condition_code\": \"01\",\r\n        \"payment_condition_name\": \"Á vista\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/payment-conditions","description":"<p>Creates / Updates Payment Condition</p>\n<p>The payment condition will be created or updated on each request.<br />If the payment code exists, it will be updated, if it does not exist it will be created.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>payment_condition_name</td>\n<td>Required</td>\n<td>string</td>\n<td>Name of the Payment Condition</td>\n</tr>\n<tr>\n<td>payment_condition_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>The payment condition code, this value is used to identify each condition, it must be unique per payment condition</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","payment-conditions"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"e7726f5d-8b9e-4d36-b587-208adeba61c1","name":"Created Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"payment_condition_code\": \"01\",\r\n        \"payment_condition_name\": \"Á vista\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/payment-conditions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"payment_condition_code\": \"03\",\n                \"status\": \"Created\",\n                \"body\": null\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"66068e70-bdc1-4482-9677-d1daf92aea1d","name":"Updated Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"payment_condition_code\": \"01\",\r\n        \"payment_condition_name\": \"Á vista\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/payment-conditions"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"payment_condition_code\": \"01\",\n                \"status\": \"Updated\",\n                \"body\": null\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"6a734958-a9cc-4eef-af3d-c058d517b23a","name":"Error Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"payment_condition_name\": \"Á vista\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/payment-conditions"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [],\n        \"failed_records\": [\n            {\n                \"payment_condition_code\": null,\n                \"reason\": \"'payment_condition_code'\",\n                \"body\": null\n            }\n        ]\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"1c6db5bc-729f-42cd-af0e-6e7262e9d33e"}],"id":"06b2e3c5-8396-4c85-9814-15125d8415f9","_postman_id":"06b2e3c5-8396-4c85-9814-15125d8415f9","description":""},{"name":"Vehicles","item":[{"name":"Insert Vehicles","id":"be50e4d1-0adc-4b5a-99dd-c84eabd3b434","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"vehicle_code\": \"TM412\",\n        \"vehicle_name\": \"TM412\",\n        \"vehicle_type\": 1,\n        \"vehicle_status\": 1,\n        \"vehicle_idgps\": 1234567890,\n        \"vehicle_plate\": \"LCD-9909\",\n        \"vehicle_model\": \"F-1000\",\n        \"vehicle_brand\": \"Ford\",\n        \"vehicle_year\": \"1990\",\n        \"vehicle_capacity\": 8,\n        \"vehicle_capacity_vol\": 8,\n        \"vehicle_capacity_mass\": 1\n    },\n    {\n        \"vehicle_code\": \"TM413\",\n        \"vehicle_name\": \"TM413\",\n        \"vehicle_type\": 1,\n        \"vehicle_status\": 1,\n        \"vehicle_idgps\": 987654321,\n        \"vehicle_plate\": \"XYZ-5678\",\n        \"vehicle_model\": \"Transit\",\n        \"vehicle_brand\": \"Ford\",\n        \"vehicle_year\": 2015,\n        \"vehicle_capacity\": 10,\n        \"vehicle_capacity_vol\": 12,\n        \"vehicle_capacity_mass\": 2\n    }\n]\n","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/vehicles","description":"<p>Creates / Updates Vehicles</p>\n<p>The vehicles will be created or updated on each request.<br />If the vehicles code exists, it will be updated, if it does not exist it will be created.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>vehicle_code</td>\n<td>Required</td>\n<td>string</td>\n<td>The erpkey, this value is used to identify each vehicle, must be unique per vehicle</td>\n</tr>\n<tr>\n<td>vehicle_name</td>\n<td>Required</td>\n<td>string</td>\n<td>Name of the vehicle</td>\n</tr>\n<tr>\n<td>vehicle_type</td>\n<td>Required</td>\n<td>int</td>\n<td>The vehicle type can be:  <br />0 - Mixer Truck;  <br />1 - Pump;  <br />5 - Mixer Pump</td>\n</tr>\n<tr>\n<td>vehicle_plate</td>\n<td>Optional</td>\n<td>string</td>\n<td>Plate of the vehicle</td>\n</tr>\n<tr>\n<td>vehicle_idgps</td>\n<td>Optional</td>\n<td>string</td>\n<td>ID GPS of the vehicle</td>\n</tr>\n<tr>\n<td>vehicle_status</td>\n<td>Optional</td>\n<td>number</td>\n<td>The vehicle status can be:  <br />0 - Available;  <br />1 - Backup;  <br />2 - Maintenance</td>\n</tr>\n<tr>\n<td>vehicle_model</td>\n<td>Optional</td>\n<td>string</td>\n<td>Model of the vehicle</td>\n</tr>\n<tr>\n<td>vehicle_brand</td>\n<td>Optional</td>\n<td>string</td>\n<td>Brand of the vehicle</td>\n</tr>\n<tr>\n<td>vehicle_year</td>\n<td>Optional</td>\n<td>string</td>\n<td>Year of the vehicle</td>\n</tr>\n<tr>\n<td>vehicle_capacity</td>\n<td>Optional</td>\n<td>float</td>\n<td>Capacity Volume of the vehicle in cubic meters (m3)</td>\n</tr>\n<tr>\n<td>vehicle_capacity_vol</td>\n<td>Optional</td>\n<td>number</td>\n<td>Capacity Volume of the vehicle in liters (L)</td>\n</tr>\n<tr>\n<td>vehicle_capacity_mass</td>\n<td>Optional</td>\n<td>number</td>\n<td>Capacity Volume of the vehicle in tonne (T)</td>\n</tr>\n<tr>\n<td>vehicle_inactive</td>\n<td>Optional</td>\n<td>boolean</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","vehicles"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"be50e4d1-0adc-4b5a-99dd-c84eabd3b434"},{"name":"List Vehicles","id":"0024f291-f049-4625-9dfb-b04b07f9d25c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/vehicles","description":"<p>List Drivers to Loop 4 Readymix Application your company token. It is not necessary to pass any parameters or body.</p>\n","urlObject":{"path":["api","sync","vehicles"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"0966f4e5-0425-48bf-9b94-889cd683e5c9","name":"List Vehicles","originalRequest":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":"https://integration.loop4.io/api/sync/vehicles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 23 Feb 2024 11:47:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"270"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 868094,\n            \"unit\": null,\n            \"idgps\": \"2330485133073\",\n            \"phone\": null,\n            \"name\": \"1090\",\n            \"type\": 0,\n            \"icon\": \"M_16.png\",\n            \"capacity\": 20.5,\n            \"id_device\": -1,\n            \"codbt\": \"109\",\n            \"codplanta\": null,\n            \"idgeofence\": null,\n            \"status\": null,\n            \"inoutplant\": null,\n            \"disabled\": 0,\n            \"auto_repair\": 0,\n            \"ignition\": null,\n            \"odometer\": null,\n            \"hourmeter\": null,\n            \"drum\": null,\n            \"pump\": null,\n            \"fuel_level\": null,\n            \"rpm\": null,\n            \"temperature\": null,\n            \"pto\": null,\n            \"engine\": null,\n            \"breakdown\": null,\n            \"fuel_level_table\": 0,\n            \"driver\": null,\n            \"flespi_cnt\": null,\n            \"brand\": null,\n            \"model\": null,\n            \"year\": null,\n            \"cost_idle\": null,\n            \"deleted\": null,\n            \"dev_storage\": null,\n            \"deactivated\": false,\n            \"plate\": \"JZG 073\",\n            \"id_flespi\": 5551129,\n            \"capacity_2\": null,\n            \"capacity_3\": null,\n            \"capacity_4\": null,\n            \"capacity_5\": null,\n            \"capacity_6\": null,\n            \"n_engines\": null,\n            \"capacity_mass\": null,\n            \"capacity_vol\": 20.5,\n            \"company\": 447,\n            \"fuel_type\": null,\n            \"category\": null,\n            \"last_driver\": null\n        },\n        {\n            \"id\": 868095,\n            \"unit\": null,\n            \"idgps\": \"2130283133052\",\n            \"phone\": null,\n            \"name\": \"1100\",\n            \"type\": 0,\n            \"icon\": \"M_16.png\",\n            \"capacity\": 10.0,\n            \"id_device\": -1,\n            \"codbt\": \"110\",\n            \"codplanta\": null,\n            \"idgeofence\": null,\n            \"status\": null,\n            \"inoutplant\": null,\n            \"disabled\": null,\n            \"auto_repair\": 0,\n            \"ignition\": null,\n            \"odometer\": null,\n            \"hourmeter\": null,\n            \"drum\": null,\n            \"pump\": null,\n            \"fuel_level\": null,\n            \"rpm\": null,\n            \"temperature\": null,\n            \"pto\": null,\n            \"engine\": null,\n            \"breakdown\": null,\n            \"fuel_level_table\": 0,\n            \"driver\": null,\n            \"flespi_cnt\": null,\n            \"brand\": null,\n            \"model\": null,\n            \"year\": null,\n            \"cost_idle\": null,\n            \"deleted\": null,\n            \"dev_storage\": null,\n            \"deactivated\": false,\n            \"plate\": \"JZY 889\",\n            \"id_flespi\": 5551130,\n            \"capacity_2\": null,\n            \"capacity_3\": null,\n            \"capacity_4\": null,\n            \"capacity_5\": null,\n            \"capacity_6\": null,\n            \"n_engines\": null,\n            \"capacity_mass\": null,\n            \"capacity_vol\": 10.0,\n            \"company\": 447,\n            \"fuel_type\": null,\n            \"category\": null,\n            \"last_driver\": null\n        }\n    ],\n    \"message\": \"\"\n}"}],"_postman_id":"0024f291-f049-4625-9dfb-b04b07f9d25c"},{"name":"List Vehicles Plate","id":"9201b8a7-9309-4d00-82e8-33e62d5c054b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/vehicles","description":"<p>List Drivers to Loop 4 Readymix Application your company token. It is not necessary to pass any parameters or body.</p>\n","urlObject":{"path":["api","sync","vehicles"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"608a836c-51cc-4beb-b052-3daffb87ab1f","name":"List Vehicles","originalRequest":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":"https://integration.loop4.io/api/sync/vehicles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 23 Feb 2024 11:47:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"270"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 868094,\n            \"unit\": null,\n            \"idgps\": \"2330485133073\",\n            \"phone\": null,\n            \"name\": \"1090\",\n            \"type\": 0,\n            \"icon\": \"M_16.png\",\n            \"capacity\": 20.5,\n            \"id_device\": -1,\n            \"codbt\": \"109\",\n            \"codplanta\": null,\n            \"idgeofence\": null,\n            \"status\": null,\n            \"inoutplant\": null,\n            \"disabled\": 0,\n            \"auto_repair\": 0,\n            \"ignition\": null,\n            \"odometer\": null,\n            \"hourmeter\": null,\n            \"drum\": null,\n            \"pump\": null,\n            \"fuel_level\": null,\n            \"rpm\": null,\n            \"temperature\": null,\n            \"pto\": null,\n            \"engine\": null,\n            \"breakdown\": null,\n            \"fuel_level_table\": 0,\n            \"driver\": null,\n            \"flespi_cnt\": null,\n            \"brand\": null,\n            \"model\": null,\n            \"year\": null,\n            \"cost_idle\": null,\n            \"deleted\": null,\n            \"dev_storage\": null,\n            \"deactivated\": false,\n            \"plate\": \"JZG 073\",\n            \"id_flespi\": 5551129,\n            \"capacity_2\": null,\n            \"capacity_3\": null,\n            \"capacity_4\": null,\n            \"capacity_5\": null,\n            \"capacity_6\": null,\n            \"n_engines\": null,\n            \"capacity_mass\": null,\n            \"capacity_vol\": 20.5,\n            \"company\": 447,\n            \"fuel_type\": null,\n            \"category\": null,\n            \"last_driver\": null\n        },\n        {\n            \"id\": 868095,\n            \"unit\": null,\n            \"idgps\": \"2130283133052\",\n            \"phone\": null,\n            \"name\": \"1100\",\n            \"type\": 0,\n            \"icon\": \"M_16.png\",\n            \"capacity\": 10.0,\n            \"id_device\": -1,\n            \"codbt\": \"110\",\n            \"codplanta\": null,\n            \"idgeofence\": null,\n            \"status\": null,\n            \"inoutplant\": null,\n            \"disabled\": null,\n            \"auto_repair\": 0,\n            \"ignition\": null,\n            \"odometer\": null,\n            \"hourmeter\": null,\n            \"drum\": null,\n            \"pump\": null,\n            \"fuel_level\": null,\n            \"rpm\": null,\n            \"temperature\": null,\n            \"pto\": null,\n            \"engine\": null,\n            \"breakdown\": null,\n            \"fuel_level_table\": 0,\n            \"driver\": null,\n            \"flespi_cnt\": null,\n            \"brand\": null,\n            \"model\": null,\n            \"year\": null,\n            \"cost_idle\": null,\n            \"deleted\": null,\n            \"dev_storage\": null,\n            \"deactivated\": false,\n            \"plate\": \"JZY 889\",\n            \"id_flespi\": 5551130,\n            \"capacity_2\": null,\n            \"capacity_3\": null,\n            \"capacity_4\": null,\n            \"capacity_5\": null,\n            \"capacity_6\": null,\n            \"n_engines\": null,\n            \"capacity_mass\": null,\n            \"capacity_vol\": 10.0,\n            \"company\": 447,\n            \"fuel_type\": null,\n            \"category\": null,\n            \"last_driver\": null\n        }\n    ],\n    \"message\": \"\"\n}"}],"_postman_id":"9201b8a7-9309-4d00-82e8-33e62d5c054b"}],"id":"df2dc7df-4c02-4719-89ae-eeb1d5f49faa","description":"<p>Use the below methods to manage the vehicles</p>\n","_postman_id":"df2dc7df-4c02-4719-89ae-eeb1d5f49faa"},{"name":"Projects","item":[{"name":"Insert Projects","id":"99fa8276-986b-4d6b-b8f6-da52af83e544","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"token","value":"{{your_company_token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"project_code\": \"P12345\", \n        \"customer_code\": \"CPS\", \n        \"customer_name\": \"John Doe\", \n        \"customer_document\": \"12345678901\",\n        \"customer_email\": \"johndoe@example.com\",\n        \"customer_number\": \"1234\",\n        \"customer_note\": \"Important client\",\n        \"customer_is_b_side\": false,\n        \"seller_code\": \"SELL001\",\n        \"seller_name\": \"Salesperson Name\",\n        \"status_code\": \"STATUS001\",\n        \"status_name\": \"In Progress\",\n        \"status_color\": \"#FF5733\",\n        \"status_blocked\": false,\n        \"delete\": false,\n        \"plant_code\": \"01\",\n        \"project_name\": \"Example Project\", \n        \"project_notes\": \"Some additional notes about the project\",\n        \"credit_limit\": 10000,\n        \"has_max_quantity\": true,\n        \"has_extra_quantity\": false,\n        \"project_b\": false,\n        \"start_date\": \"2024-01-01\",\n        \"end_date\": \"2024-12-31\",\n        \"project_po_required\": true,\n        \"project_inactive\": false,\n        \"address\": {\n            \"address_code\": \"ADDR001\",  \n            \"address_street\": \"Rua Exemplo\",\n            \"address_city\": \"São Paulo\",\n            \"address_full\": \"Rua Exemplo, 123, São Paulo, SP\", \n            \"address_number\": \"123\", \n            \"address_district\": \"Centro\", \n            \"address_complement\": \"Apto 101\", \n            \"address_lat\": -23.5505, \n            \"address_lng\": -46.6333, \n            \"address_notes\": \"Nota sobre o endereço\", \n            \"address_read_only\": false, \n            \"address_erpkey_2\": \"ERPADDR001\" \n        },\n        \"billing_address\": {\n            \"address_code\": \"ADDR001\",  \n            \"address_street\": \"Rua Exemplo\",\n            \"address_city\": \"São Paulo\", \n            \"address_full\": \"Rua Exemplo, 123, São Paulo, SP\", \n            \"address_number\": \"123\", \n            \"address_district\": \"Centro\", \n            \"address_complement\": \"Apto 101\", \n            \"address_lat\": -23.5505, \n            \"address_lng\": -46.6333, \n            \"address_notes\": \"Nota sobre o endereço\", \n            \"address_read_only\": false, \n            \"address_erpkey_2\": \"ERPADDR001\" \n        },\n        \"project_products\": [\n            {\n                \"product_code\": \"P00123\",\n                \"product_erpid\": \"ERP001\",\n                \"product_name\": \"Concrete Mix\",\n                \"product_type\": 1,\n                \"product_description\": \"High quality concrete\",\n                \"product_list_price\": 120.50,\n                \"product_list_slump\": 10,\n                \"product_slump\": 9.5,\n                \"price\": 300,\n                \"quantity\": 30,\n                \"product_list_slump2\": 11,\n                \"product_slump2\": 10.5,\n                \"product_fck\": 25,\n                \"product_list_fck\": 30,\n                \"product_recipe_code\": \"RCP123\",\n                \"product_raw_material_type\": 1\n            }\n        ],\n        \"price_table_code\": \"PT001\",\n        \"price_table_sync\": true,\n        \"update_pending_orders\": true\n    }\n]\n","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/project","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>project_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Code of the project to be created</td>\n</tr>\n<tr>\n<td>project_name</td>\n<td>Required</td>\n<td>string</td>\n<td>Name of the project to be created</td>\n</tr>\n<tr>\n<td>customer_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Customer code that already exists</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>Required</td>\n<td>string</td>\n<td>Customer Name that already exists</td>\n</tr>\n<tr>\n<td>address</td>\n<td>Required</td>\n<td>Object[Address]</td>\n<td>Inside <strong>address</strong> there are optional fields, but <strong>address is</strong> required</td>\n</tr>\n<tr>\n<td>billing_address</td>\n<td>Optional</td>\n<td>Object[BillingAddress]</td>\n<td>Inside <strong>Billing</strong> <strong>address</strong> there are optional fields, but <strong>Billing</strong> <strong>address</strong> is required</td>\n</tr>\n<tr>\n<td>project_products</td>\n<td>Optional</td>\n<td>Array[ProjectProduct]</td>\n<td></td>\n</tr>\n<tr>\n<td>seller_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Existing seller Code, or it will create a new</td>\n</tr>\n<tr>\n<td>seller_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>Existing seller Code, or it will Update an existing</td>\n</tr>\n<tr>\n<td>plant_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>plant code that will provide materials for the project</td>\n</tr>\n<tr>\n<td>project_notes</td>\n<td>Optional</td>\n<td>string</td>\n<td>This is a project from Sync Project API</td>\n</tr>\n<tr>\n<td>credit_limit</td>\n<td>Optional</td>\n<td>float</td>\n<td>Credit limit for the project</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td>Optional</td>\n<td>string</td>\n<td>date the project will start  <br />YYYY-DD-MM</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>Optional</td>\n<td>string</td>\n<td>date the project will be completed  <br />YYYY-DD-MM</td>\n</tr>\n<tr>\n<td>project_inactive</td>\n<td>Optional</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>update_pending_orders</td>\n<td>Optional</td>\n<td>boolean</td>\n<td>Updates pending project orders  <br />  <br />True - active  <br />False - disabled</td>\n</tr>\n<tr>\n<td>customer_note</td>\n<td>Optional</td>\n<td>string</td>\n<td>Synchronize project with API</td>\n</tr>\n<tr>\n<td>customer_document</td>\n<td>Optional</td>\n<td>string</td>\n<td>Customer document</td>\n</tr>\n<tr>\n<td>customer_email</td>\n<td>Optional</td>\n<td>string</td>\n<td>Customer Email</td>\n</tr>\n<tr>\n<td>customer_phone_number</td>\n<td>Optional</td>\n<td>string</td>\n<td>Customer Phone Number</td>\n</tr>\n<tr>\n<td>status_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Existing status code</td>\n</tr>\n<tr>\n<td>status_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>Existing status name</td>\n</tr>\n<tr>\n<td>status_blocked</td>\n<td>Optional</td>\n<td>boolean</td>\n<td>False - Unlock  <br />True - Blocked</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"address\">Address:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>address_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Addres code of the Project</td>\n</tr>\n<tr>\n<td>address_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>Address name of the project</td>\n</tr>\n<tr>\n<td>address_street</td>\n<td>Optional</td>\n<td>string</td>\n<td>Address number of the project</td>\n</tr>\n<tr>\n<td>address_number</td>\n<td>Optional</td>\n<td>string</td>\n<td>Number of the project</td>\n</tr>\n<tr>\n<td>address_city</td>\n<td>Optional</td>\n<td>string</td>\n<td>City of the project</td>\n</tr>\n<tr>\n<td>address_state</td>\n<td>Optional</td>\n<td>string</td>\n<td>State of the project</td>\n</tr>\n<tr>\n<td>address_zip</td>\n<td>Optional</td>\n<td>string</td>\n<td>ZIP Code of the project</td>\n</tr>\n<tr>\n<td>address_complement</td>\n<td>Optional</td>\n<td>string</td>\n<td>Complement (if necessary)</td>\n</tr>\n<tr>\n<td>address_notes</td>\n<td>Optional</td>\n<td>string</td>\n<td>Notes of the project address</td>\n</tr>\n<tr>\n<td>address_read_only</td>\n<td>Optional</td>\n<td>int</td>\n<td>ever 0</td>\n</tr>\n<tr>\n<td>address_lat</td>\n<td>Optional</td>\n<td>float</td>\n<td>Latitud of the project</td>\n</tr>\n<tr>\n<td>address_lng</td>\n<td>Optional</td>\n<td>float</td>\n<td>Longitud of the project</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"billingaddress\">BillingAddress:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>address_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Internal Code of the Billing Address</td>\n</tr>\n<tr>\n<td>address_name</td>\n<td>Optional</td>\n<td>string</td>\n<td>Internal Name of the Billing Address</td>\n</tr>\n<tr>\n<td>address_street</td>\n<td>Optional</td>\n<td>string</td>\n<td>Street of the Billing Addrees</td>\n</tr>\n<tr>\n<td>address_number</td>\n<td>Optional</td>\n<td>string</td>\n<td>Number of the Billing address</td>\n</tr>\n<tr>\n<td>address_city</td>\n<td>Optional</td>\n<td>string</td>\n<td>City of the Billing Address</td>\n</tr>\n<tr>\n<td>address_state</td>\n<td>Optional</td>\n<td>string</td>\n<td>State of the billing address</td>\n</tr>\n<tr>\n<td>address_zip</td>\n<td>Optional</td>\n<td>string</td>\n<td>ZIP Code of The Billing address</td>\n</tr>\n<tr>\n<td>address_complement</td>\n<td>Optional</td>\n<td>string</td>\n<td>Complement (if necessary)</td>\n</tr>\n<tr>\n<td>address_notes</td>\n<td>Optional</td>\n<td>string</td>\n<td>Notes of the project address</td>\n</tr>\n<tr>\n<td>address_read_only</td>\n<td>Optional</td>\n<td>int</td>\n<td>ever 0</td>\n</tr>\n<tr>\n<td>address_lat</td>\n<td>Optional</td>\n<td>float</td>\n<td>Latitud of the project</td>\n</tr>\n<tr>\n<td>address_lng</td>\n<td>Longitud of the project</td>\n<td>float</td>\n<td>Longitud of the project</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"projectproduct\">ProjectProduct:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>product_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Internal Product Code</td>\n</tr>\n<tr>\n<td>product_name</td>\n<td>Required</td>\n<td>string</td>\n<td>Internal Product Name</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Required</td>\n<td>float</td>\n<td>Price of the product</td>\n</tr>\n<tr>\n<td>product_type</td>\n<td>Optional</td>\n<td>int</td>\n<td>The product type can be:  <br />1 - ReadyMix;  <br />2 - Pump Product;  <br />3 - Grout;  <br />4 - Service;  <br />5 - Additional;  <br />6 - Raw Material;  <br />7 - Minimum Pump Price;  <br />8 - Pump Complement (Add Database);  <br />99 - Others;</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Optional</td>\n<td>float</td>\n<td>Quantity of the product</td>\n</tr>\n<tr>\n<td>extra_quantity</td>\n<td>Optional</td>\n<td>float</td>\n<td>Quantity of the Product Extra if necessary</td>\n</tr>\n<tr>\n<td>inactive</td>\n<td>Optional</td>\n<td>boolean</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","project"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"35c913bb-80e9-4a46-98db-99d3b77b6653","name":"Complete Required","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n    {\n        \"project_code\": \"PS-001\",\n        \"project_name\": \"Project Sync\",\n        \"project_notes\": \"This is a project from Sync Project API\",\n        \"credit_limit\": 10000,\n        \"start_date\": \"2021-11-01\",\n        \"end_date\": \"2022-11-01\",\n        \"project_inactive\": 0,\n        \"update_pending_orders\": true,\n        \n        \"customer_code\": \"CPS\",\n        \"customer_name\": \"Customer CPS\",\n        \"customer_note\": \"Customer from Sync Project API\",\n        \"customer_document\": \"12414122\",\n        \"customer_email\": \"customer@api.com\",\n        \"customer_phone_number\": \"+5511032934302\",\n \n        \"address\":{\n            \"address_code\": \"APS\",\n            \"address_name\": \"SOME NAME\",\n            \"address_street\": \"ROYAL STREET BOULEVARD\",\n            \"address_number\": \"234\",\n            \"address_city\": \"NEW YORK\",\n            \"address_state\": \"NY\",\n            \"address_zip\": \"134324\",\n            \"address_complement\": \"ROOM 333\",\n            \"address_notes\": \"\",\n            \"ready_only\": 0,\n            \"address_lat\": 0,\n            \"address_lng\": 0\n        },\n        \n        \"billing_address\":{\n            \"address_code\": \"FRT\",\n            \"address_name\": \"NAME SOME\",\n            \"address_street\": \"STREET LONDON CITY\",\n            \"address_number\": \"1054\",\n            \"address_city\": \"LONDON\",\n            \"address_state\": \"LON\",\n            \"address_zip\": \"3332455\",\n            \"address_complement\": \"ROOM 123\",\n            \"address_notes\": \"\",\n            \"ready_only\": 0,\n            \"address_lat\": 0,\n            \"address_lng\": 0\n        },\n        \n        \"seller_code\": \"SPS\",\n        \"seller_name\": \"Seller SPS\",\n        \n        \"status_code\": \"A\",\n        \"status_name\": \"Approved\",\n        \"status_blocked\": false,\n\n        \"plant_code\": \"01\",\n        \n        \"project_products\": [\n            {\n                \"product_code\": \"PPS1\",\n                \"product_name\": \"Product PPS 1\",\n                \"product_type\": 1,\n                \"price\": 10.5,\n                \"quantity\": 100,\n                \"extra_quantity\": 50\n            }\n        ],\n        \"project_phones\":{\n                \"name\": \"First Contact\",\n                \"country_code\": \"+11\",\n                \"phone_number\": \"111928739235\"\n        }\n    }   \n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/project"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 15:21:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"137"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"project_code\": \"PS-003\",\n                \"status\": \"Created\"\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"0c6ad452-9b48-414f-bf0e-4cb85b5c9475","name":"Created Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n    {\n        \"project_code\": \"PS-003\",\n        \"project_name\": \"Project Sync\",\n        \"project_notes\": \"This is a project from Sync Project API\",\n        \"credit_limit\": 10000,\n        \"start_date\": \"2021-11-01\",\n        \"end_date\": \"2022-11-01\",\n        \"project_inactive\": 0,\n        \"update_pending_orders\": true,\n        \n        \"customer_code\": \"CPS\",\n        \"customer_name\": \"Customer CPS\",\n        \"customer_note\": \"Customer from Sync Project API\",\n        \"customer_document\": \"12414122\",\n        \"customer_email\": \"customer@api.com\",\n        \"customer_phone_number\": \"+5511032934302\",\n \n        \"address\":{\n            \"address_code\": \"APS\",\n            \"address_name\": \"SOME NAME\",\n            \"address_street\": \"ROYAL STREET BOULEVARD\",\n            \"address_number\": \"234\",\n            \"address_city\": \"NEW YORK\",\n            \"address_state\": \"NY\",\n            \"address_zip\": \"134324\",\n            \"address_complement\": \"ROOM 333\",\n            \"address_notes\": \"asa\",\n            \"ready_only\": 0,\n            \"address_lat\": 0,\n            \"address_lng\": 0\n        },\n        \n        \"billing_address\":{\n            \"address_code\": \"FRT\",\n            \"address_name\": \"NAME SOME\",\n            \"address_street\": \"STREET LONDON CITY\",\n            \"address_number\": \"1054\",\n            \"address_city\": \"LONDON\",\n            \"address_state\": \"LON\",\n            \"address_zip\": \"3332455\",\n            \"address_complement\": \"ROOM 123\",\n            \"address_notes\": \"asas\",\n            \"ready_only\": 0,\n            \"address_lat\": 0,\n            \"address_lng\": 0\n        },\n        \n        \"seller_code\": \"SPS\",\n        \"seller_name\": \"Seller SPS\",\n        \n        \"status_code\": \"A\",\n        \"status_name\": \"Approved\",\n        \"status_blocked\": false,\n\n        \"plant_code\": \"DIST01\",\n        \n        \"project_products\": [\n            {\n                \"product_code\": \"PPS1\",\n                \"product_name\": \"Product PPS 1\",\n                \"product_type\": 1,\n                \"price\": 10.5,\n                \"quantity\": 100,\n                \"extra_quantity\": 50\n            }\n        ],\n        \"project_phones\":{\n                \"name\": \"First Contact\",\n                \"country_code\": \"+11\",\n                \"phone_number\": \"111928739235\"\n        }\n    }   \n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/project"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 15:21:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"137"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"project_code\": \"PS-003\",\n                \"status\": \"Created\"\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"49e58212-d53e-43bb-8c66-30d045153575","name":"Update Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n    {\n        \"project_code\": \"PS-001\",\n        \"project_name\": \"Project Sync\",\n        \"project_notes\": \"This is a project from Sync Project API\",\n        \"credit_limit\": 10000,\n        \"start_date\": \"2021-11-01\",\n        \"end_date\": \"2022-11-01\",\n        \"project_inactive\": 0,\n        \"update_pending_orders\": true,\n        \n        \"customer_code\": \"CPS\",\n        \"customer_name\": \"Customer CPS\",\n        \"customer_note\": \"Customer from Sync Project API\",\n        \"customer_document\": \"12414122\",\n        \"customer_email\": \"customer@api.com\",\n        \"customer_phone_number\": \"+5511032934302\",\n \n        \"address\":{\n            \"address_code\": \"APS\",\n            \"address_name\": \"SOME NAME\",\n            \"address_street\": \"ROYAL STREET BOULEVARD\",\n            \"address_number\": \"234\",\n            \"address_city\": \"NEW YORK\",\n            \"address_state\": \"NY\",\n            \"address_zip\": \"134324\",\n            \"address_complement\": \"ROOM 333\",\n            \"address_notes\": \"asa\",\n            \"ready_only\": 0,\n            \"address_lat\": 0,\n            \"address_lng\": 0\n        },\n        \n        \"billing_address\":{\n            \"address_code\": \"FRT\",\n            \"address_name\": \"NAME SOME\",\n            \"address_street\": \"STREET LONDON CITY\",\n            \"address_number\": \"1054\",\n            \"address_city\": \"LONDON\",\n            \"address_state\": \"LON\",\n            \"address_zip\": \"3332455\",\n            \"address_complement\": \"ROOM 123\",\n            \"address_notes\": \"asas\",\n            \"ready_only\": 0,\n            \"address_lat\": 0,\n            \"address_lng\": 0\n        },\n        \n        \"seller_code\": \"SPS\",\n        \"seller_name\": \"Seller SPS\",\n        \n        \"status_code\": \"A\",\n        \"status_name\": \"Approved\",\n        \"status_blocked\": false,\n\n        \"plant_code\": \"DIST01\",\n        \n        \"project_products\": [\n            {\n                \"product_code\": \"PPS1\",\n                \"product_name\": \"Product PPS 1\",\n                \"product_type\": 1,\n                \"price\": 10.5,\n                \"quantity\": 100,\n                \"extra_quantity\": 50\n            }\n        ],\n        \"project_phones\":{\n                \"name\": \"First Contact\",\n                \"country_code\": \"+11\",\n                \"phone_number\": \"111928739235\"\n        }\n    }   \n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/project"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 15:21:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"137"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"project_code\": \"PS-001\",\n                \"status\": \"Updated\"\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"c46a111e-c44d-46d7-b665-134ca85759cc","name":"Error Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n    {\n        \"project_name\": \"Project Sync\",\n        \"project_notes\": \"This is a project from Sync Project API\",\n        \"credit_limit\": 10000,\n        \"start_date\": \"2021-11-01\",\n        \"end_date\": \"2022-11-01\",\n        \"project_inactive\": 0,\n        \"update_pending_orders\": true,\n        \n        \"customer_code\": \"CPS\",\n        \"customer_name\": \"Customer CPS\",\n        \"customer_note\": \"Customer from Sync Project API\",\n        \"customer_document\": \"12414122\",\n        \"customer_email\": \"customer@api.com\",\n        \"customer_phone_number\": \"+5511032934302\",\n \n        \"address\":{\n            \"address_code\": \"APS\",\n            \"address_name\": \"SOME NAME\",\n            \"address_street\": \"ROYAL STREET BOULEVARD\",\n            \"address_number\": \"234\",\n            \"address_city\": \"NEW YORK\",\n            \"address_state\": \"NY\",\n            \"address_zip\": \"134324\",\n            \"address_complement\": \"ROOM 333\",\n            \"address_notes\": \"asa\",\n            \"ready_only\": 0,\n            \"address_lat\": 0,\n            \"address_lng\": 0\n        },\n        \n        \"billing_address\":{\n            \"address_code\": \"FRT\",\n            \"address_name\": \"NAME SOME\",\n            \"address_street\": \"STREET LONDON CITY\",\n            \"address_number\": \"1054\",\n            \"address_city\": \"LONDON\",\n            \"address_state\": \"LON\",\n            \"address_zip\": \"3332455\",\n            \"address_complement\": \"ROOM 123\",\n            \"address_notes\": \"asas\",\n            \"ready_only\": 0,\n            \"address_lat\": 0,\n            \"address_lng\": 0\n        },\n        \n        \"seller_code\": \"SPS\",\n        \"seller_name\": \"Seller SPS\",\n        \n        \"status_code\": \"A\",\n        \"status_name\": \"Approved\",\n        \"status_blocked\": false,\n\n        \"plant_code\": \"DIST01\",\n        \n        \"project_products\": [\n            {\n                \"product_code\": \"PPS1\",\n                \"product_name\": \"Product PPS 1\",\n                \"product_type\": 1,\n                \"price\": 10.5,\n                \"quantity\": 100,\n                \"extra_quantity\": 50\n            }\n        ],\n        \"project_phones\":{\n                \"name\": \"First Contact\",\n                \"country_code\": \"+11\",\n                \"phone_number\": \"111928739235\"\n        }\n    }   \n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/project"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 15:22:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"46"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"reason\": \"'project_code'\"\n}"}],"_postman_id":"99fa8276-986b-4d6b-b8f6-da52af83e544"},{"name":"List Projects","id":"85572100-b31a-46e8-93e1-833a4e5f0fc5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the token header generated by Postman.","key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/project","description":"<p>List all projects</p>\n","urlObject":{"path":["api","sync","project"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"76e78318-55ad-4c6c-ab99-72e666fd5f53","name":"List Projects","originalRequest":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/project"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 15:24:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"17771"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"total_pages\": 1,\n        \"total_items\": 5,\n        \"page_index\": 1,\n        \"page_total_items\": 5,\n        \"page_items\": [\n            {\n                \"id\": 547510167,\n                \"seller\": {\n                    \"id\": 82942,\n                    \"code\": \"RV 02\",\n                    \"name\": \"Roberta\"\n                },\n                \"address\": {\n                    \"id\": 568739,\n                    \"code\": \"End 02\",\n                    \"address_street\": \"Av Lázaro Queiroz\",\n                    \"address_number\": \"120\",\n                    \"address_district\": \"Sede\",\n                    \"address_complement\": null,\n                    \"postal_code\": null,\n                    \"lat\": -23.5526920604659,\n                    \"lng\": -46.9398593902588,\n                    \"address_full\": \"Av Lázaro Queiroz , 120, Sede , Itapevi, São Paulo\",\n                    \"state\": \"São Paulo\",\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"Itapevi\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null\n                },\n                \"customer\": {\n                    \"id\": 352166,\n                    \"code\": \"CL 02\",\n                    \"name\": \"José Alameda\",\n                    \"email\": \"jose@gmail\",\n                    \"phone\": \"1152566221\",\n                    \"notes\": null,\n                    \"document\": null,\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": null,\n                    \"legal_name\": null,\n                    \"inactive\": false,\n                    \"is_system\": false,\n                    \"credit_limit\": null,\n                    \"is_b_side\": false,\n                    \"legal_address\": null\n                },\n                \"code\": \"CONT 02\",\n                \"name\": \"Construção  do seu josé\",\n                \"project_product\": [\n                    {\n                        \"product\": {\n                            \"id\": 73142,\n                            \"code\": \"CONQ 01\",\n                            \"name\": \"Concreto Premium\",\n                            \"description\": \"O melhor concreto do mercado\",\n                            \"list_price\": 1500,\n                            \"list_slump\": null,\n                            \"list_slump2\": null,\n                            \"fck\": null,\n                            \"coarse_agg\": null,\n                            \"color\": \"#DCDCDC\",\n                            \"removed\": false,\n                            \"removed_at\": null,\n                            \"dim_volume\": 0,\n                            \"dim_mass\": 1,\n                            \"project_required\": false,\n                            \"project_suggestion\": false,\n                            \"default_value\": null,\n                            \"value_type\": null,\n                            \"comparison_value\": null,\n                            \"comparison_operator\": null,\n                            \"comparison_operator_value\": null,\n                            \"comparison_operator2\": null,\n                            \"comparison_operator_value2\": null,\n                            \"week_days\": null,\n                            \"recipe_code\": null,\n                            \"removed_by\": null,\n                            \"raw_material_type\": null\n                        },\n                        \"quantity\": 10,\n                        \"extra_quantity\": null,\n                        \"delivered_quantity\": 5,\n                        \"ordered_quantity\": 15,\n                        \"cancelled_quantity\": 0,\n                        \"price\": 1500,\n                        \"min_price\": null,\n                        \"min_quantity\": null,\n                        \"value\": null,\n                        \"value_type\": null,\n                        \"order_balance\": -10,\n                        \"plan_balance\": -10,\n                        \"delivery_balance\": 5,\n                        \"spent_total_value\": 7500,\n                        \"inactive\": false,\n                        \"product_price_table\": null,\n                        \"min_tax_product\": null\n                    },\n                    {\n                        \"product\": {\n                            \"id\": 73143,\n                            \"code\": \"ARGM 01\",\n                            \"name\": \"Argamassa Premium\",\n                            \"description\": \"Produto pode ser usado em diversas superfícies e sempre proporciona o melhor acabamento\",\n                            \"list_price\": 200,\n                            \"list_slump\": null,\n                            \"list_slump2\": null,\n                            \"fck\": null,\n                            \"coarse_agg\": null,\n                            \"color\": \"#DCDCDC\",\n                            \"removed\": false,\n                            \"removed_at\": null,\n                            \"dim_volume\": 0,\n                            \"dim_mass\": 1,\n                            \"project_required\": false,\n                            \"project_suggestion\": false,\n                            \"default_value\": null,\n                            \"value_type\": null,\n                            \"comparison_value\": null,\n                            \"comparison_operator\": null,\n                            \"comparison_operator_value\": null,\n                            \"comparison_operator2\": null,\n                            \"comparison_operator_value2\": null,\n                            \"week_days\": null,\n                            \"recipe_code\": null,\n                            \"removed_by\": null,\n                            \"raw_material_type\": null\n                        },\n                        \"quantity\": 80,\n                        \"extra_quantity\": null,\n                        \"delivered_quantity\": 0,\n                        \"ordered_quantity\": 0,\n                        \"cancelled_quantity\": 0,\n                        \"price\": 200,\n                        \"min_price\": null,\n                        \"min_quantity\": null,\n                        \"value\": null,\n                        \"value_type\": null,\n                        \"order_balance\": 80,\n                        \"plan_balance\": 80,\n                        \"delivery_balance\": 80,\n                        \"spent_total_value\": 0,\n                        \"inactive\": false,\n                        \"product_price_table\": null,\n                        \"min_tax_product\": null\n                    }\n                ],\n                \"project_phones\": [],\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"customer_key\": \"365898525\",\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 22500,\n                \"credit_delivered\": 7500,\n                \"notes\": null,\n                \"start_date\": \"2024-01-16\",\n                \"end_date\": \"2024-01-16\",\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 4,\n                \"spent_total_value\": 7500,\n                \"display_price\": true,\n                \"created_at\": \"2024-01-16T10:56:11-03:00\",\n                \"updated_at\": \"2024-01-16T12:05:45-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"billing_address\": 568739,\n                \"status\": 1295,\n                \"fav_plant\": 2248,\n                \"payment_method\": 118,\n                \"payment_condition\": 2854,\n                \"price_table\": null\n            },\n            {\n                \"id\": 547510165,\n                \"seller\": {\n                    \"id\": 82941,\n                    \"code\": \"RV 01\",\n                    \"name\": \"Leandro\"\n                },\n                \"address\": {\n                    \"id\": 568735,\n                    \"code\": \"Endereço MRV\",\n                    \"address_street\": \"Rua Sria\",\n                    \"address_number\": \"33\",\n                    \"address_district\": \"Guará\",\n                    \"address_complement\": \"QI\",\n                    \"postal_code\": \"71065-330\",\n                    \"lat\": -15.8403674268085,\n                    \"lng\": -47.9687762260437,\n                    \"address_full\": \"Rua Sria , 33, Guará, Brasília, Distrito Federal, 71065-330\",\n                    \"state\": \"Distrito Federal\",\n                    \"note\": null,\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"Brasília\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null\n                },\n                \"customer\": {\n                    \"id\": 352165,\n                    \"code\": \"CL 01\",\n                    \"name\": \"Construção MRV\",\n                    \"email\": \"MRV@contato.com\",\n                    \"phone\": \"1980805252\",\n                    \"notes\": null,\n                    \"document\": \"90999900999099090\",\n                    \"document2\": \"90999900999099090\",\n                    \"document3\": \"90999900999099090\",\n                    \"document4\": \"90999900999099090\",\n                    \"person_type\": \"L\",\n                    \"legal_name\": \"90999900999099090\",\n                    \"inactive\": false,\n                    \"is_system\": false,\n                    \"credit_limit\": null,\n                    \"is_b_side\": false,\n                    \"legal_address\": null\n                },\n                \"code\": \"CONT 01\",\n                \"name\": \"MRV - Brasilia\",\n                \"project_product\": [\n                    {\n                        \"product\": {\n                            \"id\": 73140,\n                            \"code\": \"CONQ 02\",\n                            \"name\": \"Concreto Médio\",\n                            \"description\": \"Concreto De Qualidade média que atende necessidades comuns de clientes\",\n                            \"list_price\": 1000,\n                            \"list_slump\": null,\n                            \"list_slump2\": null,\n                            \"fck\": null,\n                            \"coarse_agg\": null,\n                            \"color\": \"#DCDCDC\",\n                            \"removed\": false,\n                            \"removed_at\": null,\n                            \"dim_volume\": 0,\n                            \"dim_mass\": 1,\n                            \"project_required\": false,\n                            \"project_suggestion\": false,\n                            \"default_value\": null,\n                            \"value_type\": null,\n                            \"comparison_value\": null,\n                            \"comparison_operator\": null,\n                            \"comparison_operator_value\": null,\n                            \"comparison_operator2\": null,\n                            \"comparison_operator_value2\": null,\n                            \"week_days\": null,\n                            \"recipe_code\": null,\n                            \"removed_by\": null,\n                            \"raw_material_type\": null\n                        },\n                        \"quantity\": 80,\n                        \"extra_quantity\": null,\n                        \"delivered_quantity\": 0,\n                        \"ordered_quantity\": 100,\n                        \"cancelled_quantity\": 0,\n                        \"price\": 1000,\n                        \"min_price\": null,\n                        \"min_quantity\": null,\n                        \"value\": null,\n                        \"value_type\": null,\n                        \"order_balance\": -20,\n                        \"plan_balance\": -20,\n                        \"delivery_balance\": 80,\n                        \"spent_total_value\": 0,\n                        \"inactive\": false,\n                        \"product_price_table\": null,\n                        \"min_tax_product\": null\n                    },\n                    {\n                        \"product\": {\n                            \"id\": 73143,\n                            \"code\": \"ARGM 01\",\n                            \"name\": \"Argamassa Premium\",\n                            \"description\": \"Produto pode ser usado em diversas superfícies e sempre proporciona o melhor acabamento\",\n                            \"list_price\": 200,\n                            \"list_slump\": null,\n                            \"list_slump2\": null,\n                            \"fck\": null,\n                            \"coarse_agg\": null,\n                            \"color\": \"#DCDCDC\",\n                            \"removed\": false,\n                            \"removed_at\": null,\n                            \"dim_volume\": 0,\n                            \"dim_mass\": 1,\n                            \"project_required\": false,\n                            \"project_suggestion\": false,\n                            \"default_value\": null,\n                            \"value_type\": null,\n                            \"comparison_value\": null,\n                            \"comparison_operator\": null,\n                            \"comparison_operator_value\": null,\n                            \"comparison_operator2\": null,\n                            \"comparison_operator_value2\": null,\n                            \"week_days\": null,\n                            \"recipe_code\": null,\n                            \"removed_by\": null,\n                            \"raw_material_type\": null\n                        },\n                        \"quantity\": 120,\n                        \"extra_quantity\": null,\n                        \"delivered_quantity\": 0,\n                        \"ordered_quantity\": 0,\n                        \"cancelled_quantity\": 0,\n                        \"price\": 200,\n                        \"min_price\": null,\n                        \"min_quantity\": null,\n                        \"value\": null,\n                        \"value_type\": null,\n                        \"order_balance\": 120,\n                        \"plan_balance\": 120,\n                        \"delivery_balance\": 120,\n                        \"spent_total_value\": 0,\n                        \"inactive\": false,\n                        \"product_price_table\": null,\n                        \"min_tax_product\": null\n                    },\n                    {\n                        \"product\": {\n                            \"id\": 73146,\n                            \"code\": \"SR BOM\",\n                            \"name\": \"Serviço de bomba\",\n                            \"description\": \"Bomba para de acordo com as necessidades do cliente\",\n                            \"list_price\": null,\n                            \"list_slump\": null,\n                            \"list_slump2\": null,\n                            \"fck\": null,\n                            \"coarse_agg\": null,\n                            \"color\": \"#DCDCDC\",\n                            \"removed\": false,\n                            \"removed_at\": null,\n                            \"dim_volume\": 1,\n                            \"dim_mass\": 1,\n                            \"project_required\": false,\n                            \"project_suggestion\": false,\n                            \"default_value\": 10000,\n                            \"value_type\": null,\n                            \"comparison_value\": null,\n                            \"comparison_operator\": null,\n                            \"comparison_operator_value\": null,\n                            \"comparison_operator2\": null,\n                            \"comparison_operator_value2\": null,\n                            \"week_days\": null,\n                            \"recipe_code\": null,\n                            \"removed_by\": null,\n                            \"raw_material_type\": null\n                        },\n                        \"quantity\": 40,\n                        \"extra_quantity\": null,\n                        \"delivered_quantity\": 0,\n                        \"ordered_quantity\": 80,\n                        \"cancelled_quantity\": 0,\n                        \"price\": 10000,\n                        \"min_price\": 100000,\n                        \"min_quantity\": 10,\n                        \"value\": null,\n                        \"value_type\": null,\n                        \"order_balance\": -40,\n                        \"plan_balance\": 40,\n                        \"delivery_balance\": 40,\n                        \"spent_total_value\": 0,\n                        \"inactive\": false,\n                        \"product_price_table\": null,\n                        \"min_tax_product\": null\n                    }\n                ],\n                \"project_phones\": [],\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"customer_key\": \"406538217\",\n                \"active\": null,\n                \"credit_limit\": null,\n                \"credit_ordered\": 100000,\n                \"credit_delivered\": 0,\n                \"notes\": null,\n                \"start_date\": \"2024-01-16\",\n                \"end_date\": \"2024-01-16\",\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 2,\n                \"spent_total_value\": 0,\n                \"display_price\": true,\n                \"created_at\": \"2024-01-16T10:52:07-03:00\",\n                \"updated_at\": \"2024-01-16T11:50:24-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"billing_address\": 568735,\n                \"status\": 1293,\n                \"fav_plant\": 2249,\n                \"payment_method\": 119,\n                \"payment_condition\": 2854,\n                \"price_table\": null\n            },\n            {\n                \"id\": 547516843,\n                \"seller\": {\n                    \"id\": 83067,\n                    \"code\": \"SPS\",\n                    \"name\": \"Seller SPS\"\n                },\n                \"address\": {\n                    \"id\": 576839,\n                    \"code\": \"APS\",\n                    \"address_street\": \"ROYAL STREET BOULEVARD\",\n                    \"address_number\": \"234\",\n                    \"address_district\": null,\n                    \"address_complement\": \"ROOM 333\",\n                    \"postal_code\": null,\n                    \"lat\": 0,\n                    \"lng\": 0,\n                    \"address_full\": \"ROYAL STREET BOULEVARD, 234, NEW YORK, NY, 134324\",\n                    \"state\": null,\n                    \"note\": \"asa\",\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"NEW YORK\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null\n                },\n                \"customer\": {\n                    \"id\": 355365,\n                    \"code\": \"CPS\",\n                    \"name\": \"Customer CPS\",\n                    \"email\": \"customer@api.com\",\n                    \"phone\": null,\n                    \"notes\": \"Customer from Sync Project API\",\n                    \"document\": \"12414122\",\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": null,\n                    \"legal_name\": null,\n                    \"inactive\": false,\n                    \"is_system\": false,\n                    \"credit_limit\": null,\n                    \"is_b_side\": false,\n                    \"legal_address\": null\n                },\n                \"code\": \"PS-001\",\n                \"name\": \"Project Sync\",\n                \"project_product\": [\n                    {\n                        \"product\": {\n                            \"id\": 73386,\n                            \"code\": \"PPS1\",\n                            \"name\": \"Product PPS 1\",\n                            \"description\": null,\n                            \"list_price\": null,\n                            \"list_slump\": null,\n                            \"list_slump2\": null,\n                            \"fck\": null,\n                            \"coarse_agg\": null,\n                            \"color\": null,\n                            \"removed\": false,\n                            \"removed_at\": null,\n                            \"dim_volume\": 1,\n                            \"dim_mass\": 1,\n                            \"project_required\": false,\n                            \"project_suggestion\": false,\n                            \"default_value\": null,\n                            \"value_type\": null,\n                            \"comparison_value\": null,\n                            \"comparison_operator\": null,\n                            \"comparison_operator_value\": null,\n                            \"comparison_operator2\": null,\n                            \"comparison_operator_value2\": null,\n                            \"week_days\": null,\n                            \"recipe_code\": null,\n                            \"removed_by\": null,\n                            \"raw_material_type\": null\n                        },\n                        \"quantity\": null,\n                        \"extra_quantity\": null,\n                        \"delivered_quantity\": 0,\n                        \"ordered_quantity\": 0,\n                        \"cancelled_quantity\": 0,\n                        \"price\": 10.5,\n                        \"min_price\": null,\n                        \"min_quantity\": null,\n                        \"value\": null,\n                        \"value_type\": null,\n                        \"order_balance\": null,\n                        \"plan_balance\": null,\n                        \"delivery_balance\": null,\n                        \"spent_total_value\": 0,\n                        \"inactive\": false,\n                        \"product_price_table\": null,\n                        \"min_tax_product\": null\n                    }\n                ],\n                \"project_phones\": [],\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"customer_key\": null,\n                \"active\": null,\n                \"credit_limit\": 10000,\n                \"credit_ordered\": 0,\n                \"credit_delivered\": 0,\n                \"notes\": \"This is a project from Sync Project API\",\n                \"start_date\": \"2021-11-01\",\n                \"end_date\": \"2022-11-01\",\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 0,\n                \"display_price\": true,\n                \"created_at\": \"2024-02-06T09:23:44-03:00\",\n                \"updated_at\": \"2024-02-06T12:21:30-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"billing_address\": 576755,\n                \"status\": 1307,\n                \"fav_plant\": 2248,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            {\n                \"id\": 547516916,\n                \"seller\": {\n                    \"id\": 83067,\n                    \"code\": \"SPS\",\n                    \"name\": \"Seller SPS\"\n                },\n                \"address\": {\n                    \"id\": 576839,\n                    \"code\": \"APS\",\n                    \"address_street\": \"ROYAL STREET BOULEVARD\",\n                    \"address_number\": \"234\",\n                    \"address_district\": null,\n                    \"address_complement\": \"ROOM 333\",\n                    \"postal_code\": null,\n                    \"lat\": 0,\n                    \"lng\": 0,\n                    \"address_full\": \"ROYAL STREET BOULEVARD, 234, NEW YORK, NY, 134324\",\n                    \"state\": null,\n                    \"note\": \"asa\",\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"NEW YORK\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null\n                },\n                \"customer\": {\n                    \"id\": 355365,\n                    \"code\": \"CPS\",\n                    \"name\": \"Customer CPS\",\n                    \"email\": \"customer@api.com\",\n                    \"phone\": null,\n                    \"notes\": \"Customer from Sync Project API\",\n                    \"document\": \"12414122\",\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": null,\n                    \"legal_name\": null,\n                    \"inactive\": false,\n                    \"is_system\": false,\n                    \"credit_limit\": null,\n                    \"is_b_side\": false,\n                    \"legal_address\": null\n                },\n                \"code\": \"PS-003\",\n                \"name\": \"Project Sync\",\n                \"project_product\": [\n                    {\n                        \"product\": {\n                            \"id\": 73386,\n                            \"code\": \"PPS1\",\n                            \"name\": \"Product PPS 1\",\n                            \"description\": null,\n                            \"list_price\": null,\n                            \"list_slump\": null,\n                            \"list_slump2\": null,\n                            \"fck\": null,\n                            \"coarse_agg\": null,\n                            \"color\": null,\n                            \"removed\": false,\n                            \"removed_at\": null,\n                            \"dim_volume\": 1,\n                            \"dim_mass\": 1,\n                            \"project_required\": false,\n                            \"project_suggestion\": false,\n                            \"default_value\": null,\n                            \"value_type\": null,\n                            \"comparison_value\": null,\n                            \"comparison_operator\": null,\n                            \"comparison_operator_value\": null,\n                            \"comparison_operator2\": null,\n                            \"comparison_operator_value2\": null,\n                            \"week_days\": null,\n                            \"recipe_code\": null,\n                            \"removed_by\": null,\n                            \"raw_material_type\": null\n                        },\n                        \"quantity\": null,\n                        \"extra_quantity\": null,\n                        \"delivered_quantity\": 0,\n                        \"ordered_quantity\": 0,\n                        \"cancelled_quantity\": 0,\n                        \"price\": 10.5,\n                        \"min_price\": null,\n                        \"min_quantity\": null,\n                        \"value\": null,\n                        \"value_type\": null,\n                        \"order_balance\": null,\n                        \"plan_balance\": null,\n                        \"delivery_balance\": null,\n                        \"spent_total_value\": 0,\n                        \"inactive\": false,\n                        \"product_price_table\": null,\n                        \"min_tax_product\": null\n                    }\n                ],\n                \"project_phones\": [],\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"customer_key\": null,\n                \"active\": null,\n                \"credit_limit\": 10000,\n                \"credit_ordered\": 0,\n                \"credit_delivered\": 0,\n                \"notes\": \"This is a project from Sync Project API\",\n                \"start_date\": \"2021-11-01\",\n                \"end_date\": \"2022-11-01\",\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 0,\n                \"display_price\": true,\n                \"created_at\": \"2024-02-06T12:21:53-03:00\",\n                \"updated_at\": \"2024-02-06T12:21:53-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"billing_address\": 576755,\n                \"status\": 1307,\n                \"fav_plant\": 2248,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            },\n            {\n                \"id\": 547516918,\n                \"seller\": {\n                    \"id\": 83067,\n                    \"code\": \"SPS\",\n                    \"name\": \"Seller SPS\"\n                },\n                \"address\": {\n                    \"id\": 576839,\n                    \"code\": \"APS\",\n                    \"address_street\": \"ROYAL STREET BOULEVARD\",\n                    \"address_number\": \"234\",\n                    \"address_district\": null,\n                    \"address_complement\": \"ROOM 333\",\n                    \"postal_code\": null,\n                    \"lat\": 0,\n                    \"lng\": 0,\n                    \"address_full\": \"ROYAL STREET BOULEVARD, 234, NEW YORK, NY, 134324\",\n                    \"state\": null,\n                    \"note\": \"asa\",\n                    \"name\": null,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"NEW YORK\",\n                    \"read_only\": false,\n                    \"auto_location\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null\n                },\n                \"customer\": {\n                    \"id\": 355365,\n                    \"code\": \"CPS\",\n                    \"name\": \"Customer CPS\",\n                    \"email\": \"customer@api.com\",\n                    \"phone\": null,\n                    \"notes\": \"Customer from Sync Project API\",\n                    \"document\": \"12414122\",\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": null,\n                    \"legal_name\": null,\n                    \"inactive\": false,\n                    \"is_system\": false,\n                    \"credit_limit\": null,\n                    \"is_b_side\": false,\n                    \"legal_address\": null\n                },\n                \"code\": \"\",\n                \"name\": \"Project Sync\",\n                \"project_product\": [\n                    {\n                        \"product\": {\n                            \"id\": 73386,\n                            \"code\": \"PPS1\",\n                            \"name\": \"Product PPS 1\",\n                            \"description\": null,\n                            \"list_price\": null,\n                            \"list_slump\": null,\n                            \"list_slump2\": null,\n                            \"fck\": null,\n                            \"coarse_agg\": null,\n                            \"color\": null,\n                            \"removed\": false,\n                            \"removed_at\": null,\n                            \"dim_volume\": 1,\n                            \"dim_mass\": 1,\n                            \"project_required\": false,\n                            \"project_suggestion\": false,\n                            \"default_value\": null,\n                            \"value_type\": null,\n                            \"comparison_value\": null,\n                            \"comparison_operator\": null,\n                            \"comparison_operator_value\": null,\n                            \"comparison_operator2\": null,\n                            \"comparison_operator_value2\": null,\n                            \"week_days\": null,\n                            \"recipe_code\": null,\n                            \"removed_by\": null,\n                            \"raw_material_type\": null\n                        },\n                        \"quantity\": null,\n                        \"extra_quantity\": null,\n                        \"delivered_quantity\": 0,\n                        \"ordered_quantity\": 0,\n                        \"cancelled_quantity\": 0,\n                        \"price\": 10.5,\n                        \"min_price\": null,\n                        \"min_quantity\": null,\n                        \"value\": null,\n                        \"value_type\": null,\n                        \"order_balance\": null,\n                        \"plan_balance\": null,\n                        \"delivery_balance\": null,\n                        \"spent_total_value\": 0,\n                        \"inactive\": false,\n                        \"product_price_table\": null,\n                        \"min_tax_product\": null\n                    }\n                ],\n                \"project_phones\": [],\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"customer_key\": null,\n                \"active\": null,\n                \"credit_limit\": 10000,\n                \"credit_ordered\": 0,\n                \"credit_delivered\": 0,\n                \"notes\": \"This is a project from Sync Project API\",\n                \"start_date\": \"2021-11-01\",\n                \"end_date\": \"2022-11-01\",\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 1,\n                \"spent_total_value\": 0,\n                \"display_price\": true,\n                \"created_at\": \"2024-02-06T12:22:19-03:00\",\n                \"updated_at\": \"2024-02-06T12:22:19-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"billing_address\": 576755,\n                \"status\": 1307,\n                \"fav_plant\": 2248,\n                \"payment_method\": null,\n                \"payment_condition\": null,\n                \"price_table\": null\n            }\n        ]\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"85572100-b31a-46e8-93e1-833a4e5f0fc5"},{"name":"List Project Phones","id":"e04e1371-bcba-4527-b9a4-6a287c8927f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://integration.readymix.io/api/sync/projects?contact_phone_number={{project_id}}","description":"<p>List Project Phones</p>\n","urlObject":{"protocol":"https","path":["api","sync","projects"],"host":["integration","readymix","io"],"query":[{"key":"contact_phone_number","value":"{{project_id}}"}],"variable":[]}},"response":[{"id":"53c823f6-f122-4789-8e68-83a55d9c446c","name":"List Project Phones","originalRequest":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.360kpi.io/planning/project-phone?project\"CONT 01\"","protocol":"https","host":["api","360kpi","io"],"path":["planning","project-phone"],"query":[{"key":"project\"CONT 01\"","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 15:27:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"101"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, PUT, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [],\n    \"extra_data\": null,\n    \"message\": \"\",\n    \"translate\": true,\n    \"warning\": false\n}"}],"_postman_id":"e04e1371-bcba-4527-b9a4-6a287c8927f4"},{"name":"List Projects by Phone","id":"aab9bbc3-39a6-45e5-b9c3-4e17fddfdc2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"success\": true,\n  \"data\": [\n    {\n      \"id\": 111111,\n      \"project_code\": \"0001\",\n      \"client_name\": \"Exemple 1\",\n      \"address_full\": \"STREET, NEIGHBORHOOD, CITY\" \n    },\n    {\n      \"id\": 222222,\n      \"project_code\": \"0002\",\n      \"client_name\": \"Exemple 2\",\n      \"address_full\": \"STREET, NEIGHBORHOOD, CITY\"\n    },\n    {\n      \"id\": 333333,\n      \"project_code\": \"0003\",\n      \"client_name\": \"Exemple 3\",\n      \"address_full\": \"STREET, NEIGHBORHOOD, CITY\"\n    },\n    {\n      \"id\": 444444,\n      \"project_code\": \"00004\",\n      \"client_name\": \"Exemple 4\",\n      \"address_full\": \"STREET, NEIGHBORHOOD, CITY\"\n    }\n  ],\n  \"message\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/project_phones?phone=111111","urlObject":{"protocol":"https","path":["api","sync","project_phones"],"host":["integration","loop4","io"],"query":[{"key":"phone","value":"111111"},{"disabled":true,"key":"is_client","value":"true"},{"disabled":true,"key":"is_billing","value":"true"},{"disabled":true,"key":"is_charge","value":"true"},{"disabled":true,"key":"is_job","value":"true"},{"disabled":true,"key":"is_survey","value":"true"},{"disabled":true,"key":"is_buyer","value":"true"},{"disabled":true,"key":"is_prog","value":"true"},{"disabled":true,"key":"is_tech","value":"true"}],"variable":[]}},"response":[],"_postman_id":"aab9bbc3-39a6-45e5-b9c3-4e17fddfdc2d"}],"id":"b006e340-6a71-4171-ac89-116de3988bb8","_postman_id":"b006e340-6a71-4171-ac89-116de3988bb8","description":""},{"name":"Tickets Load Data","item":[{"name":"List Load Data","id":"ac44c99a-0a7c-45d9-aaed-47691e4a8ac4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\"loading_point_id\": 778,\n\"id_delivery\": null,\n\"last_created_at\": \"2023-10-30 12:28:00\",\n\"last\": true\n}"},"url":"https://integration.loop4.io/api/integration/tickets-load-data","description":"<p>List tickets to ReadyMix Application with some parameters.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>loading_point_id</td>\n<td>Required</td>\n<td>int</td>\n<td>Indicates the Loading Point ID, unique for each Loading Point.</td>\n</tr>\n<tr>\n<td>last_created_at</td>\n<td>Required</td>\n<td>string</td>\n<td>Indicates the date of the last ticket Loading data Created.  <br />  <br />Format Date:  <br />  <br /><strong>\"yyyy-mm-dd hh:mm:ss\"</strong></td>\n</tr>\n<tr>\n<td>id_delivery</td>\n<td>Optional</td>\n<td>int</td>\n<td>Indicates the delivery ID, unique for each delivery.</td>\n</tr>\n<tr>\n<td>last</td>\n<td>Optional</td>\n<td>bool</td>\n<td>Indicates whether the last Ticket Loading Data will be fetched or not.  <br />  <br /><strong>True or False</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","integration","tickets-load-data"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"8817202a-0608-4500-895e-a507a93bf8d4","name":"Created Records","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\"loading_point_id\": 778,\n\"id_delivery\": null,\n\"last_created_at\": \"2023-10-30 12:28:00\",\n\"last\": true\n}"},"url":"https://integration.loop4.io/api/integration/tickets-load-data"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 20:07:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2484"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 3727736,\n            \"IDEMPRESA\": 447,\n            \"START\": \"2023-10-30 12:28:00\",\n            \"DELIVERYCODE\": \"P002-7\",\n            \"DELIVERY_NUMBER\": 7,\n            \"DELIVERYNOTES\": null,\n            \"PLANNOTES\": \"\",\n            \"INVOICE\": null,\n            \"PROJECTCODE\": \"1234\",\n            \"PLANTCODE\": \"P002\",\n            \"TRUCKCODE\": \"BT004\",\n            \"TRUCKNAME\": \"BT004\",\n            \"TRUCKPLATE\": \"FF4D333\",\n            \"PROJECTNAME\": \"Contrato teste\",\n            \"DELIVERYADDRESS\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n            \"BILLINGADDRESS\": null,\n            \"BILLINGADDRESSFULL\": null,\n            \"BILLINGADDRESSCITY\": null,\n            \"BILLINGADDRESSSTATE\": null,\n            \"PRODUCTID\": 71459,\n            \"PRODUCTCODE\": \"HN301035\",\n            \"PRODUCTNAME\": \"HORMIGON ELAB. H35\",\n            \"PRODUCTSLUMP\": 10,\n            \"PRODUCTSLUMP2\": 3,\n            \"PRODUCTFCK\": 20,\n            \"PRODUCTAGG\": \"PP10\",\n            \"VOLUME\": 6,\n            \"PRODUCTION_VOLUME\": 6,\n            \"SEAL\": null,\n            \"STRUCTURE\": null,\n            \"SELLERCODE\": null,\n            \"SELLERNAME\": null,\n            \"DRIVERCODE\": \"M001\",\n            \"DRIVERNAME\": \"Claudio José\",\n            \"DRIVERDOCUMENT\": null,\n            \"DRIVERADDRESSFULL\": null,\n            \"LOADINGPOINT\": \"P2\",\n            \"LAT\": null,\n            \"LNG\": null,\n            \"STATUS\": null,\n            \"RAD\": null,\n            \"TICKET\": \"2023-10-30 12:30:49\",\n            \"ENDLOAD\": null,\n            \"BOOKCODE\": null,\n            \"ORDERCODE\": null,\n            \"ORDERNUMBER\": \"133\",\n            \"TRIP_LAT\": null,\n            \"TRIP_LNG\": null,\n            \"SLUMP\": null,\n            \"TRIP\": null,\n            \"EDITED\": null,\n            \"last_updated\": \"2023-10-30 12:30:49\",\n            \"criado_em\": \"2023-10-30 12:30:49\",\n            \"id_loading_point\": 778,\n            \"customer_name\": \"Gabriel Marins Toledo\",\n            \"customer_code\": \"C0002\",\n            \"customer_document\": \"3434683225\",\n            \"formula\": {\n                \"id\": 194442,\n                \"created_at\": \"2023-10-30 12:08:08\",\n                \"description\": \"HORMIGON ELAB. H35\",\n                \"code\": \"HN301035\",\n                \"total_cost\": 0,\n                \"inactive\": false,\n                \"manual_input\": false,\n                \"volume_per_cycle\": 2.9,\n                \"company\": 447,\n                \"formula_table\": 965,\n                \"product\": 71459,\n                \"user\": null\n            },\n            \"batch_status\": null,\n            \"TICKET_NOTES\": null,\n            \"recipe\": [\n                {\n                    \"material_code\": \"MP0004\",\n                    \"material_name\": \"ARENA FINA DE RIO\",\n                    \"material_uom\": \"KG\",\n                    \"quantity\": 200,\n                    \"humidity\": null,\n                    \"clp_code\": \"1\",\n                    \"box_type\": \"AGGREGATE\",\n                    \"box_number\": 1\n                },\n                {\n                    \"material_code\": \"AR1\",\n                    \"material_name\": \"AGUA\",\n                    \"material_uom\": \"L\",\n                    \"quantity\": 150,\n                    \"humidity\": null,\n                    \"clp_code\": \"1\",\n                    \"box_type\": \"WATER\",\n                    \"box_number\": 1\n                },\n                {\n                    \"material_code\": \"CE1\",\n                    \"material_name\": \"CEMENTO CPC 40\",\n                    \"material_uom\": \"KG\",\n                    \"quantity\": 210,\n                    \"humidity\": null,\n                    \"clp_code\": \"1\",\n                    \"box_type\": \"CEMENT\",\n                    \"box_number\": 1\n                },\n                {\n                    \"material_code\": \"MP0005\",\n                    \"material_name\": \"PIEDRA GRUESA\",\n                    \"material_uom\": \"KG\",\n                    \"quantity\": 300,\n                    \"humidity\": null,\n                    \"clp_code\": \"1\",\n                    \"box_type\": \"AGGREGATE\",\n                    \"box_number\": 2\n                }\n            ]\n        }\n    ],\n    \"message\": \"\"\n}"},{"id":"d23c6709-cbe5-4293-903b-208874258e4a","name":"Error Records","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\"loading_point_id\": 778,\n\"id_delivery\": null,\n\"last_created_at\": true\n}"},"url":"https://integration.loop4.io/api/integration/tickets-load-data"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 20:11:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"reason\": \"strptime() argument 1 must be str, not bool\"\n}"}],"_postman_id":"ac44c99a-0a7c-45d9-aaed-47691e4a8ac4"}],"id":"f2d74c41-7fe1-4203-99f8-2db456cc2dfa","_postman_id":"f2d74c41-7fe1-4203-99f8-2db456cc2dfa","description":""},{"name":"Tickets Notes","item":[{"name":"List Ticket Notes","id":"cce002bf-c4d2-4e53-823f-e9648408c422","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":"https://integration.loop4.io/api/integration/ticket-notes?from_date=2024-01-01&to_date=2024-02-06","description":"<p>List tickets to ReadyMix Application with some parameters.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from_date</td>\n<td>Required</td>\n<td>yyyy-mm-dd</td>\n</tr>\n<tr>\n<td>to_date</td>\n<td>Required</td>\n<td>yyyy-mm-dd</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","integration","ticket-notes"],"host":["https://integration.loop4.io"],"query":[{"key":"from_date","value":"2024-01-01"},{"key":"to_date","value":"2024-02-06"}],"variable":[]}},"response":[{"id":"177b4ec7-8f44-43cc-bd03-64a344aa694f","name":"Listed Records","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":{"raw":"https://integration.loop4.io/api/integration/ticket-notes?from_date=2024-01-01&to_date=2024-02-06","host":["https://integration.loop4.io"],"path":["api","integration","ticket-notes"],"query":[{"key":"from_date","value":"2024-01-01"},{"key":"to_date","value":"2024-02-06"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 11:50:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"100135"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"start\": \"2024-01-10 16:42:00\",\n            \"ticket\": \"2024-01-10 16:42:28\",\n            \"endload\": null,\n            \"vehicle\": {\n                \"name\": \"BT003\",\n                \"code\": \"BT003\",\n                \"plate\": \"KFJ4029\"\n            },\n            \"order\": {\n                \"order_number\": \"180\",\n                \"order_code\": null,\n                \"order_date\": \"2024-01-10 16:36:51\",\n                \"delivery_date\": \"2024-01-10 20:00:00\",\n                \"client\": {\n                    \"name\": \"ALVES RIBEIRO, SA\",\n                    \"code\": \"1631\",\n                    \"legal_address\": null,\n                    \"document\": null,\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": null,\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"2023-EC13-99\",\n                    \"street\": \"TROIA\",\n                    \"district\": null,\n                    \"address_full\": \"TROIA, TROIA, 7570-157\",\n                    \"city_name\": \"TROIA\"\n                },\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"project\": {\n                    \"client\": {\n                        \"name\": \"ALVES RIBEIRO, SA\",\n                        \"code\": \"1631\",\n                        \"legal_address\": null,\n                        \"document\": null,\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": null,\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"2023-EC13-99\",\n                        \"street\": \"TROIA\",\n                        \"district\": null,\n                        \"address_full\": \"TROIA, TROIA, 7570-157\",\n                        \"city_name\": \"TROIA\"\n                    },\n                    \"billing_address\": null,\n                    \"name\": \"ALVES RIBEIRO, SA\",\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 0,\n                    \"credit_delivered\": 100,\n                    \"seller\": null,\n                    \"code\": \"A327307A544225\",\n                    \"contacts\": [],\n                    \"notes\": null\n                },\n                \"seller\": null\n            },\n            \"driver\": {\n                \"name\": \"João Motta\",\n                \"code\": \"M002\",\n                \"document\": null\n            },\n            \"loading_point\": {\n                \"name\": \"Planta 2\",\n                \"code\": \"2\",\n                \"custom_1\": null,\n                \"custom_2\": null\n            },\n            \"plant\": {\n                \"name\": \"Planta 1\",\n                \"code\": \"P001\"\n            },\n            \"project\": {\n                \"client\": {\n                    \"name\": \"ALVES RIBEIRO, SA\",\n                    \"code\": \"1631\",\n                    \"legal_address\": null,\n                    \"document\": null,\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": null,\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"2023-EC13-99\",\n                    \"street\": \"TROIA\",\n                    \"district\": null,\n                    \"address_full\": \"TROIA, TROIA, 7570-157\",\n                    \"city_name\": \"TROIA\"\n                },\n                \"billing_address\": null,\n                \"name\": \"ALVES RIBEIRO, SA\",\n                \"credit_limit\": null,\n                \"credit_ordered\": 0,\n                \"credit_delivered\": 100,\n                \"seller\": null,\n                \"code\": \"A327307A544225\",\n                \"contacts\": [],\n                \"notes\": null\n            },\n            \"delivery_note\": [\n                {\n                    \"total_price\": 80,\n                    \"total_extended_price\": 80,\n                    \"total_tax_price\": 0,\n                    \"project\": {\n                        \"client\": {\n                            \"name\": \"ALVES RIBEIRO, SA\",\n                            \"code\": \"1631\",\n                            \"legal_address\": null,\n                            \"document\": null,\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": null,\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"2023-EC13-99\",\n                            \"street\": \"TROIA\",\n                            \"district\": null,\n                            \"address_full\": \"TROIA, TROIA, 7570-157\",\n                            \"city_name\": \"TROIA\"\n                        },\n                        \"billing_address\": null,\n                        \"name\": \"ALVES RIBEIRO, SA\",\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 0,\n                        \"credit_delivered\": 100,\n                        \"seller\": null,\n                        \"code\": \"A327307A544225\",\n                        \"contacts\": [],\n                        \"notes\": null\n                    },\n                    \"client\": {\n                        \"name\": \"ALVES RIBEIRO, SA\",\n                        \"code\": \"1631\",\n                        \"legal_address\": null,\n                        \"document\": null,\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": null,\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"2023-EC13-99\",\n                        \"street\": \"TROIA\",\n                        \"district\": null,\n                        \"address_full\": \"TROIA, TROIA, 7570-157\",\n                        \"city_name\": \"TROIA\"\n                    },\n                    \"created_at\": \"2024-01-10 16:42:28\",\n                    \"product_notes\": [\n                        {\n                            \"product\": {\n                                \"name\": \"HORMIGON H21 FILLER 6-20\",\n                                \"code\": \"H21F 6-20\"\n                            },\n                            \"quantity\": 8,\n                            \"price\": 10,\n                            \"extended_price\": 80,\n                            \"total_price\": 80,\n                            \"total_tax_price\": 0\n                        }\n                    ],\n                    \"order\": {\n                        \"order_number\": \"180\",\n                        \"order_code\": null,\n                        \"order_date\": \"2024-01-10 16:36:51\",\n                        \"delivery_date\": \"2024-01-10 20:00:00\",\n                        \"client\": {\n                            \"name\": \"ALVES RIBEIRO, SA\",\n                            \"code\": \"1631\",\n                            \"legal_address\": null,\n                            \"document\": null,\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": null,\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"2023-EC13-99\",\n                            \"street\": \"TROIA\",\n                            \"district\": null,\n                            \"address_full\": \"TROIA, TROIA, 7570-157\",\n                            \"city_name\": \"TROIA\"\n                        },\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"project\": {\n                            \"client\": {\n                                \"name\": \"ALVES RIBEIRO, SA\",\n                                \"code\": \"1631\",\n                                \"legal_address\": null,\n                                \"document\": null,\n                                \"document2\": null,\n                                \"document3\": null,\n                                \"document4\": null,\n                                \"person_type\": null,\n                                \"legal_name\": null\n                            },\n                            \"address\": {\n                                \"code\": \"2023-EC13-99\",\n                                \"street\": \"TROIA\",\n                                \"district\": null,\n                                \"address_full\": \"TROIA, TROIA, 7570-157\",\n                                \"city_name\": \"TROIA\"\n                            },\n                            \"billing_address\": null,\n                            \"name\": \"ALVES RIBEIRO, SA\",\n                            \"credit_limit\": null,\n                            \"credit_ordered\": 0,\n                            \"credit_delivered\": 100,\n                            \"seller\": null,\n                            \"code\": \"A327307A544225\",\n                            \"contacts\": [],\n                            \"notes\": null\n                        },\n                        \"seller\": null\n                    }\n                }\n            ],\n            \"delivery_code\": \"P001-132\",\n            \"delivery_number\": 132,\n            \"volume\": 8,\n            \"created_at\": \"2024-01-10 16:42:28\",\n            \"updated_at\": \"2024-01-10 16:42:28\",\n            \"seal\": null,\n            \"slump\": null\n        },\n        {\n            \"start\": \"2024-01-10 17:41:00\",\n            \"ticket\": \"2024-01-10 17:41:46\",\n            \"endload\": null,\n            \"vehicle\": {\n                \"name\": \"BT004\",\n                \"code\": \"BT004\",\n                \"plate\": \"FF4D333\"\n            },\n            \"order\": {\n                \"order_number\": \"180\",\n                \"order_code\": null,\n                \"order_date\": \"2024-01-10 16:36:51\",\n                \"delivery_date\": \"2024-01-10 20:00:00\",\n                \"client\": {\n                    \"name\": \"ALVES RIBEIRO, SA\",\n                    \"code\": \"1631\",\n                    \"legal_address\": null,\n                    \"document\": null,\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": null,\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"2023-EC13-99\",\n                    \"street\": \"TROIA\",\n                    \"district\": null,\n                    \"address_full\": \"TROIA, TROIA, 7570-157\",\n                    \"city_name\": \"TROIA\"\n                },\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"project\": {\n                    \"client\": {\n                        \"name\": \"ALVES RIBEIRO, SA\",\n                        \"code\": \"1631\",\n                        \"legal_address\": null,\n                        \"document\": null,\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": null,\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"2023-EC13-99\",\n                        \"street\": \"TROIA\",\n                        \"district\": null,\n                        \"address_full\": \"TROIA, TROIA, 7570-157\",\n                        \"city_name\": \"TROIA\"\n                    },\n                    \"billing_address\": null,\n                    \"name\": \"ALVES RIBEIRO, SA\",\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 0,\n                    \"credit_delivered\": 100,\n                    \"seller\": null,\n                    \"code\": \"A327307A544225\",\n                    \"contacts\": [],\n                    \"notes\": null\n                },\n                \"seller\": null\n            },\n            \"driver\": {\n                \"name\": \"Claudio José\",\n                \"code\": \"M001\",\n                \"document\": null\n            },\n            \"loading_point\": {\n                \"name\": \"Planta 2\",\n                \"code\": \"2\",\n                \"custom_1\": null,\n                \"custom_2\": null\n            },\n            \"plant\": {\n                \"name\": \"Planta 1\",\n                \"code\": \"P001\"\n            },\n            \"project\": {\n                \"client\": {\n                    \"name\": \"ALVES RIBEIRO, SA\",\n                    \"code\": \"1631\",\n                    \"legal_address\": null,\n                    \"document\": null,\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": null,\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"2023-EC13-99\",\n                    \"street\": \"TROIA\",\n                    \"district\": null,\n                    \"address_full\": \"TROIA, TROIA, 7570-157\",\n                    \"city_name\": \"TROIA\"\n                },\n                \"billing_address\": null,\n                \"name\": \"ALVES RIBEIRO, SA\",\n                \"credit_limit\": null,\n                \"credit_ordered\": 0,\n                \"credit_delivered\": 100,\n                \"seller\": null,\n                \"code\": \"A327307A544225\",\n                \"contacts\": [],\n                \"notes\": null\n            },\n            \"delivery_note\": [\n                {\n                    \"total_price\": 20,\n                    \"total_extended_price\": 20,\n                    \"total_tax_price\": 0,\n                    \"project\": {\n                        \"client\": {\n                            \"name\": \"ALVES RIBEIRO, SA\",\n                            \"code\": \"1631\",\n                            \"legal_address\": null,\n                            \"document\": null,\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": null,\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"2023-EC13-99\",\n                            \"street\": \"TROIA\",\n                            \"district\": null,\n                            \"address_full\": \"TROIA, TROIA, 7570-157\",\n                            \"city_name\": \"TROIA\"\n                        },\n                        \"billing_address\": null,\n                        \"name\": \"ALVES RIBEIRO, SA\",\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 0,\n                        \"credit_delivered\": 100,\n                        \"seller\": null,\n                        \"code\": \"A327307A544225\",\n                        \"contacts\": [],\n                        \"notes\": null\n                    },\n                    \"client\": {\n                        \"name\": \"ALVES RIBEIRO, SA\",\n                        \"code\": \"1631\",\n                        \"legal_address\": null,\n                        \"document\": null,\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": null,\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"2023-EC13-99\",\n                        \"street\": \"TROIA\",\n                        \"district\": null,\n                        \"address_full\": \"TROIA, TROIA, 7570-157\",\n                        \"city_name\": \"TROIA\"\n                    },\n                    \"created_at\": \"2024-01-10 17:41:47\",\n                    \"product_notes\": [\n                        {\n                            \"product\": {\n                                \"name\": \"HORMIGON H21 FILLER 6-20\",\n                                \"code\": \"H21F 6-20\"\n                            },\n                            \"quantity\": 2,\n                            \"price\": 10,\n                            \"extended_price\": 20,\n                            \"total_price\": 20,\n                            \"total_tax_price\": 0\n                        }\n                    ],\n                    \"order\": {\n                        \"order_number\": \"180\",\n                        \"order_code\": null,\n                        \"order_date\": \"2024-01-10 16:36:51\",\n                        \"delivery_date\": \"2024-01-10 20:00:00\",\n                        \"client\": {\n                            \"name\": \"ALVES RIBEIRO, SA\",\n                            \"code\": \"1631\",\n                            \"legal_address\": null,\n                            \"document\": null,\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": null,\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"2023-EC13-99\",\n                            \"street\": \"TROIA\",\n                            \"district\": null,\n                            \"address_full\": \"TROIA, TROIA, 7570-157\",\n                            \"city_name\": \"TROIA\"\n                        },\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"project\": {\n                            \"client\": {\n                                \"name\": \"ALVES RIBEIRO, SA\",\n                                \"code\": \"1631\",\n                                \"legal_address\": null,\n                                \"document\": null,\n                                \"document2\": null,\n                                \"document3\": null,\n                                \"document4\": null,\n                                \"person_type\": null,\n                                \"legal_name\": null\n                            },\n                            \"address\": {\n                                \"code\": \"2023-EC13-99\",\n                                \"street\": \"TROIA\",\n                                \"district\": null,\n                                \"address_full\": \"TROIA, TROIA, 7570-157\",\n                                \"city_name\": \"TROIA\"\n                            },\n                            \"billing_address\": null,\n                            \"name\": \"ALVES RIBEIRO, SA\",\n                            \"credit_limit\": null,\n                            \"credit_ordered\": 0,\n                            \"credit_delivered\": 100,\n                            \"seller\": null,\n                            \"code\": \"A327307A544225\",\n                            \"contacts\": [],\n                            \"notes\": null\n                        },\n                        \"seller\": null\n                    }\n                }\n            ],\n            \"delivery_code\": \"P001-135\",\n            \"delivery_number\": 135,\n            \"volume\": 2,\n            \"created_at\": \"2024-01-10 17:41:47\",\n            \"updated_at\": \"2024-01-10 17:41:47\",\n            \"seal\": null,\n            \"slump\": null\n        },\n        {\n            \"start\": \"2024-01-12 11:55:00\",\n            \"ticket\": \"2024-01-12 11:57:16\",\n            \"endload\": null,\n            \"vehicle\": {\n                \"name\": \"BT003\",\n                \"code\": \"BT003\",\n                \"plate\": \"KFJ4029\"\n            },\n            \"order\": {\n                \"order_number\": \"185\",\n                \"order_code\": null,\n                \"order_date\": \"2024-01-12 11:55:26\",\n                \"delivery_date\": \"2024-01-12 20:00:00\",\n                \"client\": {\n                    \"name\": \"SOCRATES E RIVELINO\",\n                    \"code\": \"01383\",\n                    \"legal_address\": null,\n                    \"document\": null,\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": null,\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": null,\n                    \"street\": \"Rua Brasília\",\n                    \"district\": \"Itaim Bibi\",\n                    \"address_full\": \"Rua Brasília, Itaim Bibi, São Paulo, São Paulo, 04534-040\",\n                    \"city_name\": \"São Paulo\"\n                },\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"project\": {\n                    \"client\": {\n                        \"name\": \"SOCRATES E RIVELINO\",\n                        \"code\": \"01383\",\n                        \"legal_address\": null,\n                        \"document\": null,\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": null,\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": null,\n                        \"street\": \"Rua Brasília\",\n                        \"district\": \"Itaim Bibi\",\n                        \"address_full\": \"Rua Brasília, Itaim Bibi, São Paulo, São Paulo, 04534-040\",\n                        \"city_name\": \"São Paulo\"\n                    },\n                    \"billing_address\": {\n                        \"code\": null,\n                        \"street\": \"Rua Brasília\",\n                        \"district\": \"Itaim Bibi\",\n                        \"address_full\": \"Rua Brasília, Itaim Bibi, São Paulo, São Paulo, 04534-040\",\n                        \"city_name\": \"São Paulo\"\n                    },\n                    \"name\": \"SOCRATES E RIVELINO\",\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 10200,\n                    \"credit_delivered\": 800,\n                    \"seller\": null,\n                    \"code\": \"48309583\",\n                    \"contacts\": [],\n                    \"notes\": null\n                },\n                \"seller\": null\n            },\n            \"driver\": {\n                \"name\": \"João Motta\",\n                \"code\": \"M002\",\n                \"document\": null\n            },\n            \"loading_point\": {\n                \"name\": \"Planta 2\",\n                \"code\": \"2\",\n                \"custom_1\": null,\n                \"custom_2\": null\n            },\n            \"plant\": {\n                \"name\": \"Planta 1\",\n                \"code\": \"P001\"\n            },\n            \"project\": {\n                \"client\": {\n                    \"name\": \"SOCRATES E RIVELINO\",\n                    \"code\": \"01383\",\n                    \"legal_address\": null,\n                    \"document\": null,\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": null,\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": null,\n                    \"street\": \"Rua Brasília\",\n                    \"district\": \"Itaim Bibi\",\n                    \"address_full\": \"Rua Brasília, Itaim Bibi, São Paulo, São Paulo, 04534-040\",\n                    \"city_name\": \"São Paulo\"\n                },\n                \"billing_address\": {\n                    \"code\": null,\n                    \"street\": \"Rua Brasília\",\n                    \"district\": \"Itaim Bibi\",\n                    \"address_full\": \"Rua Brasília, Itaim Bibi, São Paulo, São Paulo, 04534-040\",\n                    \"city_name\": \"São Paulo\"\n                },\n                \"name\": \"SOCRATES E RIVELINO\",\n                \"credit_limit\": null,\n                \"credit_ordered\": 10200,\n                \"credit_delivered\": 800,\n                \"seller\": null,\n                \"code\": \"48309583\",\n                \"contacts\": [],\n                \"notes\": null\n            },\n            \"delivery_note\": [\n                {\n                    \"total_price\": 800,\n                    \"total_extended_price\": 800,\n                    \"total_tax_price\": 0,\n                    \"project\": {\n                        \"client\": {\n                            \"name\": \"SOCRATES E RIVELINO\",\n                            \"code\": \"01383\",\n                            \"legal_address\": null,\n                            \"document\": null,\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": null,\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": null,\n                            \"street\": \"Rua Brasília\",\n                            \"district\": \"Itaim Bibi\",\n                            \"address_full\": \"Rua Brasília, Itaim Bibi, São Paulo, São Paulo, 04534-040\",\n                            \"city_name\": \"São Paulo\"\n                        },\n                        \"billing_address\": {\n                            \"code\": null,\n                            \"street\": \"Rua Brasília\",\n                            \"district\": \"Itaim Bibi\",\n                            \"address_full\": \"Rua Brasília, Itaim Bibi, São Paulo, São Paulo, 04534-040\",\n                            \"city_name\": \"São Paulo\"\n                        },\n                        \"name\": \"SOCRATES E RIVELINO\",\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 10200,\n                        \"credit_delivered\": 800,\n                        \"seller\": null,\n                        \"code\": \"48309583\",\n                        \"contacts\": [],\n                        \"notes\": null\n                    },\n                    \"client\": {\n                        \"name\": \"SOCRATES E RIVELINO\",\n                        \"code\": \"01383\",\n                        \"legal_address\": null,\n                        \"document\": null,\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": null,\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": null,\n                        \"street\": \"Rua Brasília\",\n                        \"district\": \"Itaim Bibi\",\n                        \"address_full\": \"Rua Brasília, Itaim Bibi, São Paulo, São Paulo, 04534-040\",\n                        \"city_name\": \"São Paulo\"\n                    },\n                    \"created_at\": \"2024-01-12 11:57:16\",\n                    \"product_notes\": [\n                        {\n                            \"product\": {\n                                \"name\": \"HORMIGON ELAB. C/CPC40\",\n                                \"code\": \"HN301040\"\n                            },\n                            \"quantity\": 8,\n                            \"price\": 100,\n                            \"extended_price\": 800,\n                            \"total_price\": 800,\n                            \"total_tax_price\": 0\n                        }\n                    ],\n                    \"order\": {\n                        \"order_number\": \"185\",\n                        \"order_code\": null,\n                        \"order_date\": \"2024-01-12 11:55:26\",\n                        \"delivery_date\": \"2024-01-12 20:00:00\",\n                        \"client\": {\n                            \"name\": \"SOCRATES E RIVELINO\",\n                            \"code\": \"01383\",\n                            \"legal_address\": null,\n                            \"document\": null,\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": null,\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": null,\n                            \"street\": \"Rua Brasília\",\n                            \"district\": \"Itaim Bibi\",\n                            \"address_full\": \"Rua Brasília, Itaim Bibi, São Paulo, São Paulo, 04534-040\",\n                            \"city_name\": \"São Paulo\"\n                        },\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"project\": {\n                            \"client\": {\n                                \"name\": \"SOCRATES E RIVELINO\",\n                                \"code\": \"01383\",\n                                \"legal_address\": null,\n                                \"document\": null,\n                                \"document2\": null,\n                                \"document3\": null,\n                                \"document4\": null,\n                                \"person_type\": null,\n                                \"legal_name\": null\n                            },\n                            \"address\": {\n                                \"code\": null,\n                                \"street\": \"Rua Brasília\",\n                                \"district\": \"Itaim Bibi\",\n                                \"address_full\": \"Rua Brasília, Itaim Bibi, São Paulo, São Paulo, 04534-040\",\n                                \"city_name\": \"São Paulo\"\n                            },\n                            \"billing_address\": {\n                                \"code\": null,\n                                \"street\": \"Rua Brasília\",\n                                \"district\": \"Itaim Bibi\",\n                                \"address_full\": \"Rua Brasília, Itaim Bibi, São Paulo, São Paulo, 04534-040\",\n                                \"city_name\": \"São Paulo\"\n                            },\n                            \"name\": \"SOCRATES E RIVELINO\",\n                            \"credit_limit\": null,\n                            \"credit_ordered\": 10200,\n                            \"credit_delivered\": 800,\n                            \"seller\": null,\n                            \"code\": \"48309583\",\n                            \"contacts\": [],\n                            \"notes\": null\n                        },\n                        \"seller\": null\n                    }\n                }\n            ],\n            \"delivery_code\": \"P001-136\",\n            \"delivery_number\": 136,\n            \"volume\": 8,\n            \"created_at\": \"2024-01-12 11:57:16\",\n            \"updated_at\": \"2024-01-12 11:57:16\",\n            \"seal\": null,\n            \"slump\": null\n        },\n        {\n            \"start\": \"2024-01-15 14:49:00\",\n            \"ticket\": \"2024-01-15 14:49:25\",\n            \"endload\": null,\n            \"vehicle\": {\n                \"name\": \"BT004\",\n                \"code\": \"BT004\",\n                \"plate\": \"FF4D333\"\n            },\n            \"order\": {\n                \"order_number\": \"186\",\n                \"order_code\": null,\n                \"order_date\": \"2024-01-15 14:41:34\",\n                \"delivery_date\": \"2024-01-15 10:00:00\",\n                \"client\": {\n                    \"name\": \"Gustavo\",\n                    \"code\": \"002\",\n                    \"legal_address\": null,\n                    \"document\": \"205150\",\n                    \"document2\": \"665065\",\n                    \"document3\": \"5699987\",\n                    \"document4\": \"99850\",\n                    \"person_type\": \"N\",\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"002\",\n                    \"street\": \"av sasdasd\",\n                    \"district\": \"aa\",\n                    \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                    \"city_name\": \"Osasco\"\n                },\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"project\": {\n                    \"client\": {\n                        \"name\": \"Gustavo\",\n                        \"code\": \"002\",\n                        \"legal_address\": null,\n                        \"document\": \"205150\",\n                        \"document2\": \"665065\",\n                        \"document3\": \"5699987\",\n                        \"document4\": \"99850\",\n                        \"person_type\": \"N\",\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"002\",\n                        \"street\": \"av sasdasd\",\n                        \"district\": \"aa\",\n                        \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                        \"city_name\": \"Osasco\"\n                    },\n                    \"billing_address\": {\n                        \"code\": \"002\",\n                        \"street\": \"av sasdasd\",\n                        \"district\": \"aa\",\n                        \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                        \"city_name\": \"Osasco\"\n                    },\n                    \"name\": \"Gustavo\",\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 0,\n                    \"credit_delivered\": 25000,\n                    \"seller\": null,\n                    \"code\": \"0888\",\n                    \"contacts\": [\n                        \"11964066689\"\n                    ],\n                    \"notes\": null\n                },\n                \"seller\": null\n            },\n            \"driver\": {\n                \"name\": \"Claudio José\",\n                \"code\": \"M001\",\n                \"document\": null\n            },\n            \"loading_point\": {\n                \"name\": \"Poli\",\n                \"code\": \"Poli1\",\n                \"custom_1\": null,\n                \"custom_2\": null\n            },\n            \"plant\": {\n                \"name\": \"Poli\",\n                \"code\": \"Poli1\"\n            },\n            \"project\": {\n                \"client\": {\n                    \"name\": \"Gustavo\",\n                    \"code\": \"002\",\n                    \"legal_address\": null,\n                    \"document\": \"205150\",\n                    \"document2\": \"665065\",\n                    \"document3\": \"5699987\",\n                    \"document4\": \"99850\",\n                    \"person_type\": \"N\",\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"002\",\n                    \"street\": \"av sasdasd\",\n                    \"district\": \"aa\",\n                    \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                    \"city_name\": \"Osasco\"\n                },\n                \"billing_address\": {\n                    \"code\": \"002\",\n                    \"street\": \"av sasdasd\",\n                    \"district\": \"aa\",\n                    \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                    \"city_name\": \"Osasco\"\n                },\n                \"name\": \"Gustavo\",\n                \"credit_limit\": null,\n                \"credit_ordered\": 0,\n                \"credit_delivered\": 25000,\n                \"seller\": null,\n                \"code\": \"0888\",\n                \"contacts\": [\n                    \"11964066689\"\n                ],\n                \"notes\": null\n            },\n            \"delivery_note\": [\n                {\n                    \"total_price\": 8000,\n                    \"total_extended_price\": 8000,\n                    \"total_tax_price\": 0,\n                    \"project\": {\n                        \"client\": {\n                            \"name\": \"Gustavo\",\n                            \"code\": \"002\",\n                            \"legal_address\": null,\n                            \"document\": \"205150\",\n                            \"document2\": \"665065\",\n                            \"document3\": \"5699987\",\n                            \"document4\": \"99850\",\n                            \"person_type\": \"N\",\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"002\",\n                            \"street\": \"av sasdasd\",\n                            \"district\": \"aa\",\n                            \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                            \"city_name\": \"Osasco\"\n                        },\n                        \"billing_address\": {\n                            \"code\": \"002\",\n                            \"street\": \"av sasdasd\",\n                            \"district\": \"aa\",\n                            \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                            \"city_name\": \"Osasco\"\n                        },\n                        \"name\": \"Gustavo\",\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 0,\n                        \"credit_delivered\": 25000,\n                        \"seller\": null,\n                        \"code\": \"0888\",\n                        \"contacts\": [\n                            \"11964066689\"\n                        ],\n                        \"notes\": null\n                    },\n                    \"client\": {\n                        \"name\": \"Gustavo\",\n                        \"code\": \"002\",\n                        \"legal_address\": null,\n                        \"document\": \"205150\",\n                        \"document2\": \"665065\",\n                        \"document3\": \"5699987\",\n                        \"document4\": \"99850\",\n                        \"person_type\": \"N\",\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"002\",\n                        \"street\": \"av sasdasd\",\n                        \"district\": \"aa\",\n                        \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                        \"city_name\": \"Osasco\"\n                    },\n                    \"created_at\": \"2024-01-15 14:49:25\",\n                    \"product_notes\": [\n                        {\n                            \"product\": {\n                                \"name\": \"C25/30 S2 X0(P) CL0.2 D22 CORRENTE\",\n                                \"code\": \"253002X0220000\"\n                            },\n                            \"quantity\": 8,\n                            \"price\": 1000,\n                            \"extended_price\": 8000,\n                            \"total_price\": 8000,\n                            \"total_tax_price\": 0\n                        }\n                    ],\n                    \"order\": {\n                        \"order_number\": \"186\",\n                        \"order_code\": null,\n                        \"order_date\": \"2024-01-15 14:41:34\",\n                        \"delivery_date\": \"2024-01-15 10:00:00\",\n                        \"client\": {\n                            \"name\": \"Gustavo\",\n                            \"code\": \"002\",\n                            \"legal_address\": null,\n                            \"document\": \"205150\",\n                            \"document2\": \"665065\",\n                            \"document3\": \"5699987\",\n                            \"document4\": \"99850\",\n                            \"person_type\": \"N\",\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"002\",\n                            \"street\": \"av sasdasd\",\n                            \"district\": \"aa\",\n                            \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                            \"city_name\": \"Osasco\"\n                        },\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"project\": {\n                            \"client\": {\n                                \"name\": \"Gustavo\",\n                                \"code\": \"002\",\n                                \"legal_address\": null,\n                                \"document\": \"205150\",\n                                \"document2\": \"665065\",\n                                \"document3\": \"5699987\",\n                                \"document4\": \"99850\",\n                                \"person_type\": \"N\",\n                                \"legal_name\": null\n                            },\n                            \"address\": {\n                                \"code\": \"002\",\n                                \"street\": \"av sasdasd\",\n                                \"district\": \"aa\",\n                                \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                                \"city_name\": \"Osasco\"\n                            },\n                            \"billing_address\": {\n                                \"code\": \"002\",\n                                \"street\": \"av sasdasd\",\n                                \"district\": \"aa\",\n                                \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                                \"city_name\": \"Osasco\"\n                            },\n                            \"name\": \"Gustavo\",\n                            \"credit_limit\": null,\n                            \"credit_ordered\": 0,\n                            \"credit_delivered\": 25000,\n                            \"seller\": null,\n                            \"code\": \"0888\",\n                            \"contacts\": [\n                                \"11964066689\"\n                            ],\n                            \"notes\": null\n                        },\n                        \"seller\": null\n                    }\n                }\n            ],\n            \"delivery_code\": \"Poli1-1\",\n            \"delivery_number\": 1,\n            \"volume\": 8,\n            \"created_at\": \"2024-01-15 14:49:25\",\n            \"updated_at\": \"2024-01-15 14:49:25\",\n            \"seal\": null,\n            \"slump\": null\n        },\n        {\n            \"start\": \"2024-01-15 14:52:00\",\n            \"ticket\": \"2024-01-15 14:52:55\",\n            \"endload\": null,\n            \"vehicle\": {\n                \"name\": \"BT003\",\n                \"code\": \"BT003\",\n                \"plate\": \"KFJ4029\"\n            },\n            \"order\": {\n                \"order_number\": \"186\",\n                \"order_code\": null,\n                \"order_date\": \"2024-01-15 14:41:34\",\n                \"delivery_date\": \"2024-01-15 10:00:00\",\n                \"client\": {\n                    \"name\": \"Gustavo\",\n                    \"code\": \"002\",\n                    \"legal_address\": null,\n                    \"document\": \"205150\",\n                    \"document2\": \"665065\",\n                    \"document3\": \"5699987\",\n                    \"document4\": \"99850\",\n                    \"person_type\": \"N\",\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"002\",\n                    \"street\": \"av sasdasd\",\n                    \"district\": \"aa\",\n                    \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                    \"city_name\": \"Osasco\"\n                },\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"project\": {\n                    \"client\": {\n                        \"name\": \"Gustavo\",\n                        \"code\": \"002\",\n                        \"legal_address\": null,\n                        \"document\": \"205150\",\n                        \"document2\": \"665065\",\n                        \"document3\": \"5699987\",\n                        \"document4\": \"99850\",\n                        \"person_type\": \"N\",\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"002\",\n                        \"street\": \"av sasdasd\",\n                        \"district\": \"aa\",\n                        \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                        \"city_name\": \"Osasco\"\n                    },\n                    \"billing_address\": {\n                        \"code\": \"002\",\n                        \"street\": \"av sasdasd\",\n                        \"district\": \"aa\",\n                        \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                        \"city_name\": \"Osasco\"\n                    },\n                    \"name\": \"Gustavo\",\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 0,\n                    \"credit_delivered\": 25000,\n                    \"seller\": null,\n                    \"code\": \"0888\",\n                    \"contacts\": [\n                        \"11964066689\"\n                    ],\n                    \"notes\": null\n                },\n                \"seller\": null\n            },\n            \"driver\": {\n                \"name\": \"João Motta\",\n                \"code\": \"M002\",\n                \"document\": null\n            },\n            \"loading_point\": {\n                \"name\": \"Poli\",\n                \"code\": \"Poli1\",\n                \"custom_1\": null,\n                \"custom_2\": null\n            },\n            \"plant\": {\n                \"name\": \"Poli\",\n                \"code\": \"Poli1\"\n            },\n            \"project\": {\n                \"client\": {\n                    \"name\": \"Gustavo\",\n                    \"code\": \"002\",\n                    \"legal_address\": null,\n                    \"document\": \"205150\",\n                    \"document2\": \"665065\",\n                    \"document3\": \"5699987\",\n                    \"document4\": \"99850\",\n                    \"person_type\": \"N\",\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"002\",\n                    \"street\": \"av sasdasd\",\n                    \"district\": \"aa\",\n                    \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                    \"city_name\": \"Osasco\"\n                },\n                \"billing_address\": {\n                    \"code\": \"002\",\n                    \"street\": \"av sasdasd\",\n                    \"district\": \"aa\",\n                    \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                    \"city_name\": \"Osasco\"\n                },\n                \"name\": \"Gustavo\",\n                \"credit_limit\": null,\n                \"credit_ordered\": 0,\n                \"credit_delivered\": 25000,\n                \"seller\": null,\n                \"code\": \"0888\",\n                \"contacts\": [\n                    \"11964066689\"\n                ],\n                \"notes\": null\n            },\n            \"delivery_note\": [\n                {\n                    \"total_price\": 8000,\n                    \"total_extended_price\": 8000,\n                    \"total_tax_price\": 0,\n                    \"project\": {\n                        \"client\": {\n                            \"name\": \"Gustavo\",\n                            \"code\": \"002\",\n                            \"legal_address\": null,\n                            \"document\": \"205150\",\n                            \"document2\": \"665065\",\n                            \"document3\": \"5699987\",\n                            \"document4\": \"99850\",\n                            \"person_type\": \"N\",\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"002\",\n                            \"street\": \"av sasdasd\",\n                            \"district\": \"aa\",\n                            \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                            \"city_name\": \"Osasco\"\n                        },\n                        \"billing_address\": {\n                            \"code\": \"002\",\n                            \"street\": \"av sasdasd\",\n                            \"district\": \"aa\",\n                            \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                            \"city_name\": \"Osasco\"\n                        },\n                        \"name\": \"Gustavo\",\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 0,\n                        \"credit_delivered\": 25000,\n                        \"seller\": null,\n                        \"code\": \"0888\",\n                        \"contacts\": [\n                            \"11964066689\"\n                        ],\n                        \"notes\": null\n                    },\n                    \"client\": {\n                        \"name\": \"Gustavo\",\n                        \"code\": \"002\",\n                        \"legal_address\": null,\n                        \"document\": \"205150\",\n                        \"document2\": \"665065\",\n                        \"document3\": \"5699987\",\n                        \"document4\": \"99850\",\n                        \"person_type\": \"N\",\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"002\",\n                        \"street\": \"av sasdasd\",\n                        \"district\": \"aa\",\n                        \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                        \"city_name\": \"Osasco\"\n                    },\n                    \"created_at\": \"2024-01-15 14:52:55\",\n                    \"product_notes\": [\n                        {\n                            \"product\": {\n                                \"name\": \"C25/30 S2 X0(P) CL0.2 D22 CORRENTE\",\n                                \"code\": \"253002X0220000\"\n                            },\n                            \"quantity\": 8,\n                            \"price\": 1000,\n                            \"extended_price\": 8000,\n                            \"total_price\": 8000,\n                            \"total_tax_price\": 0\n                        }\n                    ],\n                    \"order\": {\n                        \"order_number\": \"186\",\n                        \"order_code\": null,\n                        \"order_date\": \"2024-01-15 14:41:34\",\n                        \"delivery_date\": \"2024-01-15 10:00:00\",\n                        \"client\": {\n                            \"name\": \"Gustavo\",\n                            \"code\": \"002\",\n                            \"legal_address\": null,\n                            \"document\": \"205150\",\n                            \"document2\": \"665065\",\n                            \"document3\": \"5699987\",\n                            \"document4\": \"99850\",\n                            \"person_type\": \"N\",\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"002\",\n                            \"street\": \"av sasdasd\",\n                            \"district\": \"aa\",\n                            \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                            \"city_name\": \"Osasco\"\n                        },\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"project\": {\n                            \"client\": {\n                                \"name\": \"Gustavo\",\n                                \"code\": \"002\",\n                                \"legal_address\": null,\n                                \"document\": \"205150\",\n                                \"document2\": \"665065\",\n                                \"document3\": \"5699987\",\n                                \"document4\": \"99850\",\n                                \"person_type\": \"N\",\n                                \"legal_name\": null\n                            },\n                            \"address\": {\n                                \"code\": \"002\",\n                                \"street\": \"av sasdasd\",\n                                \"district\": \"aa\",\n                                \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                                \"city_name\": \"Osasco\"\n                            },\n                            \"billing_address\": {\n                                \"code\": \"002\",\n                                \"street\": \"av sasdasd\",\n                                \"district\": \"aa\",\n                                \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                                \"city_name\": \"Osasco\"\n                            },\n                            \"name\": \"Gustavo\",\n                            \"credit_limit\": null,\n                            \"credit_ordered\": 0,\n                            \"credit_delivered\": 25000,\n                            \"seller\": null,\n                            \"code\": \"0888\",\n                            \"contacts\": [\n                                \"11964066689\"\n                            ],\n                            \"notes\": null\n                        },\n                        \"seller\": null\n                    }\n                }\n            ],\n            \"delivery_code\": \"Poli1-2\",\n            \"delivery_number\": 2,\n            \"volume\": 8,\n            \"created_at\": \"2024-01-15 14:52:55\",\n            \"updated_at\": \"2024-01-15 14:52:55\",\n            \"seal\": null,\n            \"slump\": null\n        },\n        {\n            \"start\": \"2024-01-15 14:52:00\",\n            \"ticket\": \"2024-01-15 14:53:02\",\n            \"endload\": null,\n            \"vehicle\": {\n                \"name\": \"BT002\",\n                \"code\": \"BT002\",\n                \"plate\": \"SDL103N\"\n            },\n            \"order\": {\n                \"order_number\": \"186\",\n                \"order_code\": null,\n                \"order_date\": \"2024-01-15 14:41:34\",\n                \"delivery_date\": \"2024-01-15 10:00:00\",\n                \"client\": {\n                    \"name\": \"Gustavo\",\n                    \"code\": \"002\",\n                    \"legal_address\": null,\n                    \"document\": \"205150\",\n                    \"document2\": \"665065\",\n                    \"document3\": \"5699987\",\n                    \"document4\": \"99850\",\n                    \"person_type\": \"N\",\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"002\",\n                    \"street\": \"av sasdasd\",\n                    \"district\": \"aa\",\n                    \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                    \"city_name\": \"Osasco\"\n                },\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"project\": {\n                    \"client\": {\n                        \"name\": \"Gustavo\",\n                        \"code\": \"002\",\n                        \"legal_address\": null,\n                        \"document\": \"205150\",\n                        \"document2\": \"665065\",\n                        \"document3\": \"5699987\",\n                        \"document4\": \"99850\",\n                        \"person_type\": \"N\",\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"002\",\n                        \"street\": \"av sasdasd\",\n                        \"district\": \"aa\",\n                        \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                        \"city_name\": \"Osasco\"\n                    },\n                    \"billing_address\": {\n                        \"code\": \"002\",\n                        \"street\": \"av sasdasd\",\n                        \"district\": \"aa\",\n                        \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                        \"city_name\": \"Osasco\"\n                    },\n                    \"name\": \"Gustavo\",\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 0,\n                    \"credit_delivered\": 25000,\n                    \"seller\": null,\n                    \"code\": \"0888\",\n                    \"contacts\": [\n                        \"11964066689\"\n                    ],\n                    \"notes\": null\n                },\n                \"seller\": null\n            },\n            \"driver\": {\n                \"name\": \"João Motta\",\n                \"code\": \"M002\",\n                \"document\": null\n            },\n            \"loading_point\": {\n                \"name\": \"Poli\",\n                \"code\": \"Poli1\",\n                \"custom_1\": null,\n                \"custom_2\": null\n            },\n            \"plant\": {\n                \"name\": \"Poli\",\n                \"code\": \"Poli1\"\n            },\n            \"project\": {\n                \"client\": {\n                    \"name\": \"Gustavo\",\n                    \"code\": \"002\",\n                    \"legal_address\": null,\n                    \"document\": \"205150\",\n                    \"document2\": \"665065\",\n                    \"document3\": \"5699987\",\n                    \"document4\": \"99850\",\n                    \"person_type\": \"N\",\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"002\",\n                    \"street\": \"av sasdasd\",\n                    \"district\": \"aa\",\n                    \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                    \"city_name\": \"Osasco\"\n                },\n                \"billing_address\": {\n                    \"code\": \"002\",\n                    \"street\": \"av sasdasd\",\n                    \"district\": \"aa\",\n                    \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                    \"city_name\": \"Osasco\"\n                },\n                \"name\": \"Gustavo\",\n                \"credit_limit\": null,\n                \"credit_ordered\": 0,\n                \"credit_delivered\": 25000,\n                \"seller\": null,\n                \"code\": \"0888\",\n                \"contacts\": [\n                    \"11964066689\"\n                ],\n                \"notes\": null\n            },\n            \"delivery_note\": [\n                {\n                    \"total_price\": 0,\n                    \"total_extended_price\": 0,\n                    \"total_tax_price\": null,\n                    \"project\": {\n                        \"client\": {\n                            \"name\": \"Gustavo\",\n                            \"code\": \"002\",\n                            \"legal_address\": null,\n                            \"document\": \"205150\",\n                            \"document2\": \"665065\",\n                            \"document3\": \"5699987\",\n                            \"document4\": \"99850\",\n                            \"person_type\": \"N\",\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"002\",\n                            \"street\": \"av sasdasd\",\n                            \"district\": \"aa\",\n                            \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                            \"city_name\": \"Osasco\"\n                        },\n                        \"billing_address\": {\n                            \"code\": \"002\",\n                            \"street\": \"av sasdasd\",\n                            \"district\": \"aa\",\n                            \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                            \"city_name\": \"Osasco\"\n                        },\n                        \"name\": \"Gustavo\",\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 0,\n                        \"credit_delivered\": 25000,\n                        \"seller\": null,\n                        \"code\": \"0888\",\n                        \"contacts\": [\n                            \"11964066689\"\n                        ],\n                        \"notes\": null\n                    },\n                    \"client\": {\n                        \"name\": \"Gustavo\",\n                        \"code\": \"002\",\n                        \"legal_address\": null,\n                        \"document\": \"205150\",\n                        \"document2\": \"665065\",\n                        \"document3\": \"5699987\",\n                        \"document4\": \"99850\",\n                        \"person_type\": \"N\",\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"002\",\n                        \"street\": \"av sasdasd\",\n                        \"district\": \"aa\",\n                        \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                        \"city_name\": \"Osasco\"\n                    },\n                    \"created_at\": \"2024-01-15 14:53:02\",\n                    \"product_notes\": [\n                        {\n                            \"product\": {\n                                \"name\": \"C25/30 S2 X0(P) CL0.2 D22 CORRENTE\",\n                                \"code\": \"253002X0220000\"\n                            },\n                            \"quantity\": 4,\n                            \"price\": 1000,\n                            \"extended_price\": 4000,\n                            \"total_price\": 4000,\n                            \"total_tax_price\": 0\n                        }\n                    ],\n                    \"order\": {\n                        \"order_number\": \"186\",\n                        \"order_code\": null,\n                        \"order_date\": \"2024-01-15 14:41:34\",\n                        \"delivery_date\": \"2024-01-15 10:00:00\",\n                        \"client\": {\n                            \"name\": \"Gustavo\",\n                            \"code\": \"002\",\n                            \"legal_address\": null,\n                            \"document\": \"205150\",\n                            \"document2\": \"665065\",\n                            \"document3\": \"5699987\",\n                            \"document4\": \"99850\",\n                            \"person_type\": \"N\",\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"002\",\n                            \"street\": \"av sasdasd\",\n                            \"district\": \"aa\",\n                            \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                            \"city_name\": \"Osasco\"\n                        },\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"project\": {\n                            \"client\": {\n                                \"name\": \"Gustavo\",\n                                \"code\": \"002\",\n                                \"legal_address\": null,\n                                \"document\": \"205150\",\n                                \"document2\": \"665065\",\n                                \"document3\": \"5699987\",\n                                \"document4\": \"99850\",\n                                \"person_type\": \"N\",\n                                \"legal_name\": null\n                            },\n                            \"address\": {\n                                \"code\": \"002\",\n                                \"street\": \"av sasdasd\",\n                                \"district\": \"aa\",\n                                \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                                \"city_name\": \"Osasco\"\n                            },\n                            \"billing_address\": {\n                                \"code\": \"002\",\n                                \"street\": \"av sasdasd\",\n                                \"district\": \"aa\",\n                                \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                                \"city_name\": \"Osasco\"\n                            },\n                            \"name\": \"Gustavo\",\n                            \"credit_limit\": null,\n                            \"credit_ordered\": 0,\n                            \"credit_delivered\": 25000,\n                            \"seller\": null,\n                            \"code\": \"0888\",\n                            \"contacts\": [\n                                \"11964066689\"\n                            ],\n                            \"notes\": null\n                        },\n                        \"seller\": null\n                    }\n                }\n            ],\n            \"delivery_code\": \"Poli1-3\",\n            \"delivery_number\": 3,\n            \"volume\": 4,\n            \"created_at\": \"2024-01-15 14:53:02\",\n            \"updated_at\": \"2024-01-15 14:53:02\",\n            \"seal\": null,\n            \"slump\": null\n        },\n        {\n            \"start\": \"2024-01-15 14:54:00\",\n            \"ticket\": \"2024-01-15 14:54:23\",\n            \"endload\": null,\n            \"vehicle\": {\n                \"name\": \"BT001\",\n                \"code\": \"BT001\",\n                \"plate\": \"FGJ4003\"\n            },\n            \"order\": {\n                \"order_number\": \"186\",\n                \"order_code\": null,\n                \"order_date\": \"2024-01-15 14:41:34\",\n                \"delivery_date\": \"2024-01-15 10:00:00\",\n                \"client\": {\n                    \"name\": \"Gustavo\",\n                    \"code\": \"002\",\n                    \"legal_address\": null,\n                    \"document\": \"205150\",\n                    \"document2\": \"665065\",\n                    \"document3\": \"5699987\",\n                    \"document4\": \"99850\",\n                    \"person_type\": \"N\",\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"002\",\n                    \"street\": \"av sasdasd\",\n                    \"district\": \"aa\",\n                    \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                    \"city_name\": \"Osasco\"\n                },\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"project\": {\n                    \"client\": {\n                        \"name\": \"Gustavo\",\n                        \"code\": \"002\",\n                        \"legal_address\": null,\n                        \"document\": \"205150\",\n                        \"document2\": \"665065\",\n                        \"document3\": \"5699987\",\n                        \"document4\": \"99850\",\n                        \"person_type\": \"N\",\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"002\",\n                        \"street\": \"av sasdasd\",\n                        \"district\": \"aa\",\n                        \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                        \"city_name\": \"Osasco\"\n                    },\n                    \"billing_address\": {\n                        \"code\": \"002\",\n                        \"street\": \"av sasdasd\",\n                        \"district\": \"aa\",\n                        \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                        \"city_name\": \"Osasco\"\n                    },\n                    \"name\": \"Gustavo\",\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 0,\n                    \"credit_delivered\": 25000,\n                    \"seller\": null,\n                    \"code\": \"0888\",\n                    \"contacts\": [\n                        \"11964066689\"\n                    ],\n                    \"notes\": null\n                },\n                \"seller\": null\n            },\n            \"driver\": {\n                \"name\": \"Claudio José\",\n                \"code\": \"M001\",\n                \"document\": null\n            },\n            \"loading_point\": {\n                \"name\": \"Poli\",\n                \"code\": \"Poli1\",\n                \"custom_1\": null,\n                \"custom_2\": null\n            },\n            \"plant\": {\n                \"name\": \"Poli\",\n                \"code\": \"Poli1\"\n            },\n            \"project\": {\n                \"client\": {\n                    \"name\": \"Gustavo\",\n                    \"code\": \"002\",\n                    \"legal_address\": null,\n                    \"document\": \"205150\",\n                    \"document2\": \"665065\",\n                    \"document3\": \"5699987\",\n                    \"document4\": \"99850\",\n                    \"person_type\": \"N\",\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"002\",\n                    \"street\": \"av sasdasd\",\n                    \"district\": \"aa\",\n                    \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                    \"city_name\": \"Osasco\"\n                },\n                \"billing_address\": {\n                    \"code\": \"002\",\n                    \"street\": \"av sasdasd\",\n                    \"district\": \"aa\",\n                    \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                    \"city_name\": \"Osasco\"\n                },\n                \"name\": \"Gustavo\",\n                \"credit_limit\": null,\n                \"credit_ordered\": 0,\n                \"credit_delivered\": 25000,\n                \"seller\": null,\n                \"code\": \"0888\",\n                \"contacts\": [\n                    \"11964066689\"\n                ],\n                \"notes\": null\n            },\n            \"delivery_note\": [\n                {\n                    \"total_price\": 5000,\n                    \"total_extended_price\": 5000,\n                    \"total_tax_price\": 0,\n                    \"project\": {\n                        \"client\": {\n                            \"name\": \"Gustavo\",\n                            \"code\": \"002\",\n                            \"legal_address\": null,\n                            \"document\": \"205150\",\n                            \"document2\": \"665065\",\n                            \"document3\": \"5699987\",\n                            \"document4\": \"99850\",\n                            \"person_type\": \"N\",\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"002\",\n                            \"street\": \"av sasdasd\",\n                            \"district\": \"aa\",\n                            \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                            \"city_name\": \"Osasco\"\n                        },\n                        \"billing_address\": {\n                            \"code\": \"002\",\n                            \"street\": \"av sasdasd\",\n                            \"district\": \"aa\",\n                            \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                            \"city_name\": \"Osasco\"\n                        },\n                        \"name\": \"Gustavo\",\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 0,\n                        \"credit_delivered\": 25000,\n                        \"seller\": null,\n                        \"code\": \"0888\",\n                        \"contacts\": [\n                            \"11964066689\"\n                        ],\n                        \"notes\": null\n                    },\n                    \"client\": {\n                        \"name\": \"Gustavo\",\n                        \"code\": \"002\",\n                        \"legal_address\": null,\n                        \"document\": \"205150\",\n                        \"document2\": \"665065\",\n                        \"document3\": \"5699987\",\n                        \"document4\": \"99850\",\n                        \"person_type\": \"N\",\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"002\",\n                        \"street\": \"av sasdasd\",\n                        \"district\": \"aa\",\n                        \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                        \"city_name\": \"Osasco\"\n                    },\n                    \"created_at\": \"2024-01-15 14:54:24\",\n                    \"product_notes\": [\n                        {\n                            \"product\": {\n                                \"name\": \"C25/30 S2 X0(P) CL0.2 D22 CORRENTE\",\n                                \"code\": \"253002X0220000\"\n                            },\n                            \"quantity\": 5,\n                            \"price\": 1000,\n                            \"extended_price\": 5000,\n                            \"total_price\": 5000,\n                            \"total_tax_price\": 0\n                        }\n                    ],\n                    \"order\": {\n                        \"order_number\": \"186\",\n                        \"order_code\": null,\n                        \"order_date\": \"2024-01-15 14:41:34\",\n                        \"delivery_date\": \"2024-01-15 10:00:00\",\n                        \"client\": {\n                            \"name\": \"Gustavo\",\n                            \"code\": \"002\",\n                            \"legal_address\": null,\n                            \"document\": \"205150\",\n                            \"document2\": \"665065\",\n                            \"document3\": \"5699987\",\n                            \"document4\": \"99850\",\n                            \"person_type\": \"N\",\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"002\",\n                            \"street\": \"av sasdasd\",\n                            \"district\": \"aa\",\n                            \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                            \"city_name\": \"Osasco\"\n                        },\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"project\": {\n                            \"client\": {\n                                \"name\": \"Gustavo\",\n                                \"code\": \"002\",\n                                \"legal_address\": null,\n                                \"document\": \"205150\",\n                                \"document2\": \"665065\",\n                                \"document3\": \"5699987\",\n                                \"document4\": \"99850\",\n                                \"person_type\": \"N\",\n                                \"legal_name\": null\n                            },\n                            \"address\": {\n                                \"code\": \"002\",\n                                \"street\": \"av sasdasd\",\n                                \"district\": \"aa\",\n                                \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                                \"city_name\": \"Osasco\"\n                            },\n                            \"billing_address\": {\n                                \"code\": \"002\",\n                                \"street\": \"av sasdasd\",\n                                \"district\": \"aa\",\n                                \"address_full\": \"av sasdasd, 25, aa, Osasco, São Paulo, aa\",\n                                \"city_name\": \"Osasco\"\n                            },\n                            \"name\": \"Gustavo\",\n                            \"credit_limit\": null,\n                            \"credit_ordered\": 0,\n                            \"credit_delivered\": 25000,\n                            \"seller\": null,\n                            \"code\": \"0888\",\n                            \"contacts\": [\n                                \"11964066689\"\n                            ],\n                            \"notes\": null\n                        },\n                        \"seller\": null\n                    }\n                }\n            ],\n            \"delivery_code\": \"Poli1-4\",\n            \"delivery_number\": 4,\n            \"volume\": 5,\n            \"created_at\": \"2024-01-15 14:54:24\",\n            \"updated_at\": \"2024-01-15 14:54:24\",\n            \"seal\": null,\n            \"slump\": null\n        },\n        {\n            \"start\": \"2024-01-15 15:59:00\",\n            \"ticket\": \"2024-01-15 16:00:26\",\n            \"endload\": null,\n            \"vehicle\": {\n                \"name\": \"Betoneira-DLC8531\",\n                \"code\": \"M23\",\n                \"plate\": \"DLC8531\"\n            },\n            \"order\": {\n                \"order_number\": \"187\",\n                \"order_code\": null,\n                \"order_date\": \"2024-01-15 15:17:24\",\n                \"delivery_date\": \"2024-01-15 18:15:00\",\n                \"client\": {\n                    \"name\": \"Testando Loop\",\n                    \"code\": \"139345\",\n                    \"legal_address\": null,\n                    \"document\": \"123456\",\n                    \"document2\": \"123456\",\n                    \"document3\": \"123456\",\n                    \"document4\": \"123456\",\n                    \"person_type\": \"L\",\n                    \"legal_name\": \"123456\"\n                },\n                \"address\": {\n                    \"code\": null,\n                    \"street\": \"Rua de New York\",\n                    \"district\": null,\n                    \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                    \"city_name\": \"Nova Iorque\"\n                },\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"project\": {\n                    \"client\": {\n                        \"name\": \"Testando Loop\",\n                        \"code\": \"139345\",\n                        \"legal_address\": null,\n                        \"document\": \"123456\",\n                        \"document2\": \"123456\",\n                        \"document3\": \"123456\",\n                        \"document4\": \"123456\",\n                        \"person_type\": \"L\",\n                        \"legal_name\": \"123456\"\n                    },\n                    \"address\": {\n                        \"code\": null,\n                        \"street\": \"Rua de New York\",\n                        \"district\": null,\n                        \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                        \"city_name\": \"Nova Iorque\"\n                    },\n                    \"billing_address\": null,\n                    \"name\": \"Testando Loop\",\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 5000,\n                    \"credit_delivered\": 25000,\n                    \"seller\": null,\n                    \"code\": \"A351791A568386\",\n                    \"contacts\": [],\n                    \"notes\": null\n                },\n                \"seller\": {\n                    \"code\": \"V0001\",\n                    \"name\": \"Paulo Azevedo Queiroz\"\n                }\n            },\n            \"driver\": {\n                \"name\": \"José Maria\",\n                \"code\": \"J23\",\n                \"document\": null\n            },\n            \"loading_point\": {\n                \"name\": \"Poli\",\n                \"code\": \"Poli1\",\n                \"custom_1\": null,\n                \"custom_2\": null\n            },\n            \"plant\": {\n                \"name\": \"Poli\",\n                \"code\": \"Poli1\"\n            },\n            \"project\": {\n                \"client\": {\n                    \"name\": \"Testando Loop\",\n                    \"code\": \"139345\",\n                    \"legal_address\": null,\n                    \"document\": \"123456\",\n                    \"document2\": \"123456\",\n                    \"document3\": \"123456\",\n                    \"document4\": \"123456\",\n                    \"person_type\": \"L\",\n                    \"legal_name\": \"123456\"\n                },\n                \"address\": {\n                    \"code\": null,\n                    \"street\": \"Rua de New York\",\n                    \"district\": null,\n                    \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                    \"city_name\": \"Nova Iorque\"\n                },\n                \"billing_address\": null,\n                \"name\": \"Testando Loop\",\n                \"credit_limit\": null,\n                \"credit_ordered\": 5000,\n                \"credit_delivered\": 25000,\n                \"seller\": null,\n                \"code\": \"A351791A568386\",\n                \"contacts\": [],\n                \"notes\": null\n            },\n            \"delivery_note\": [\n                {\n                    \"total_price\": 25000,\n                    \"total_extended_price\": 25000,\n                    \"total_tax_price\": 0,\n                    \"project\": {\n                        \"client\": {\n                            \"name\": \"Testando Loop\",\n                            \"code\": \"139345\",\n                            \"legal_address\": null,\n                            \"document\": \"123456\",\n                            \"document2\": \"123456\",\n                            \"document3\": \"123456\",\n                            \"document4\": \"123456\",\n                            \"person_type\": \"L\",\n                            \"legal_name\": \"123456\"\n                        },\n                        \"address\": {\n                            \"code\": null,\n                            \"street\": \"Rua de New York\",\n                            \"district\": null,\n                            \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                            \"city_name\": \"Nova Iorque\"\n                        },\n                        \"billing_address\": null,\n                        \"name\": \"Testando Loop\",\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 5000,\n                        \"credit_delivered\": 25000,\n                        \"seller\": null,\n                        \"code\": \"A351791A568386\",\n                        \"contacts\": [],\n                        \"notes\": null\n                    },\n                    \"client\": {\n                        \"name\": \"Testando Loop\",\n                        \"code\": \"139345\",\n                        \"legal_address\": null,\n                        \"document\": \"123456\",\n                        \"document2\": \"123456\",\n                        \"document3\": \"123456\",\n                        \"document4\": \"123456\",\n                        \"person_type\": \"L\",\n                        \"legal_name\": \"123456\"\n                    },\n                    \"address\": {\n                        \"code\": null,\n                        \"street\": \"Rua de New York\",\n                        \"district\": null,\n                        \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                        \"city_name\": \"Nova Iorque\"\n                    },\n                    \"created_at\": \"2024-01-15 16:00:27\",\n                    \"product_notes\": [\n                        {\n                            \"product\": {\n                                \"name\": \"C16/20 S3 X0(P) CL0.4 D12 CORRENTE\",\n                                \"code\": \"162003X0410000\"\n                            },\n                            \"quantity\": 5,\n                            \"price\": 5000,\n                            \"extended_price\": 25000,\n                            \"total_price\": 25000,\n                            \"total_tax_price\": 0\n                        }\n                    ],\n                    \"order\": {\n                        \"order_number\": \"187\",\n                        \"order_code\": null,\n                        \"order_date\": \"2024-01-15 15:17:24\",\n                        \"delivery_date\": \"2024-01-15 18:15:00\",\n                        \"client\": {\n                            \"name\": \"Testando Loop\",\n                            \"code\": \"139345\",\n                            \"legal_address\": null,\n                            \"document\": \"123456\",\n                            \"document2\": \"123456\",\n                            \"document3\": \"123456\",\n                            \"document4\": \"123456\",\n                            \"person_type\": \"L\",\n                            \"legal_name\": \"123456\"\n                        },\n                        \"address\": {\n                            \"code\": null,\n                            \"street\": \"Rua de New York\",\n                            \"district\": null,\n                            \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                            \"city_name\": \"Nova Iorque\"\n                        },\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"project\": {\n                            \"client\": {\n                                \"name\": \"Testando Loop\",\n                                \"code\": \"139345\",\n                                \"legal_address\": null,\n                                \"document\": \"123456\",\n                                \"document2\": \"123456\",\n                                \"document3\": \"123456\",\n                                \"document4\": \"123456\",\n                                \"person_type\": \"L\",\n                                \"legal_name\": \"123456\"\n                            },\n                            \"address\": {\n                                \"code\": null,\n                                \"street\": \"Rua de New York\",\n                                \"district\": null,\n                                \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                                \"city_name\": \"Nova Iorque\"\n                            },\n                            \"billing_address\": null,\n                            \"name\": \"Testando Loop\",\n                            \"credit_limit\": null,\n                            \"credit_ordered\": 5000,\n                            \"credit_delivered\": 25000,\n                            \"seller\": null,\n                            \"code\": \"A351791A568386\",\n                            \"contacts\": [],\n                            \"notes\": null\n                        },\n                        \"seller\": {\n                            \"code\": \"V0001\",\n                            \"name\": \"Paulo Azevedo Queiroz\"\n                        }\n                    }\n                }\n            ],\n            \"delivery_code\": \"Poli1-5\",\n            \"delivery_number\": 5,\n            \"volume\": 5,\n            \"created_at\": \"2024-01-15 16:00:26\",\n            \"updated_at\": \"2024-01-15 16:00:26\",\n            \"seal\": null,\n            \"slump\": null\n        },\n        {\n            \"start\": \"2024-01-15 16:29:00\",\n            \"ticket\": \"2024-01-15 16:29:36\",\n            \"endload\": null,\n            \"vehicle\": {\n                \"name\": \"BT004\",\n                \"code\": \"BT004\",\n                \"plate\": \"FF4D333\"\n            },\n            \"order\": {\n                \"order_number\": \"189\",\n                \"order_code\": null,\n                \"order_date\": \"2024-01-15 16:26:53\",\n                \"delivery_date\": \"2024-01-15 19:25:00\",\n                \"client\": {\n                    \"name\": \"Testando Loop\",\n                    \"code\": \"139345\",\n                    \"legal_address\": null,\n                    \"document\": \"123456\",\n                    \"document2\": \"123456\",\n                    \"document3\": \"123456\",\n                    \"document4\": \"123456\",\n                    \"person_type\": \"L\",\n                    \"legal_name\": \"123456\"\n                },\n                \"address\": {\n                    \"code\": null,\n                    \"street\": \"Rua de New York\",\n                    \"district\": null,\n                    \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                    \"city_name\": \"Nova Iorque\"\n                },\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"project\": {\n                    \"client\": {\n                        \"name\": \"Testando Loop\",\n                        \"code\": \"139345\",\n                        \"legal_address\": null,\n                        \"document\": \"123456\",\n                        \"document2\": \"123456\",\n                        \"document3\": \"123456\",\n                        \"document4\": \"123456\",\n                        \"person_type\": \"L\",\n                        \"legal_name\": \"123456\"\n                    },\n                    \"address\": {\n                        \"code\": null,\n                        \"street\": \"Rua de New York\",\n                        \"district\": null,\n                        \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                        \"city_name\": \"Nova Iorque\"\n                    },\n                    \"billing_address\": {\n                        \"code\": null,\n                        \"street\": \"Rua de New York\",\n                        \"district\": null,\n                        \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                        \"city_name\": \"Nova Iorque\"\n                    },\n                    \"name\": \"Serviço de Bomba e Concreto\",\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 0,\n                    \"credit_delivered\": 30000,\n                    \"seller\": null,\n                    \"code\": \"57729\",\n                    \"contacts\": [],\n                    \"notes\": null\n                },\n                \"seller\": null\n            },\n            \"driver\": {\n                \"name\": \"Claudio José\",\n                \"code\": \"M001\",\n                \"document\": null\n            },\n            \"loading_point\": {\n                \"name\": \"Poli\",\n                \"code\": \"Poli1\",\n                \"custom_1\": null,\n                \"custom_2\": null\n            },\n            \"plant\": {\n                \"name\": \"Poli\",\n                \"code\": \"Poli1\"\n            },\n            \"project\": {\n                \"client\": {\n                    \"name\": \"Testando Loop\",\n                    \"code\": \"139345\",\n                    \"legal_address\": null,\n                    \"document\": \"123456\",\n                    \"document2\": \"123456\",\n                    \"document3\": \"123456\",\n                    \"document4\": \"123456\",\n                    \"person_type\": \"L\",\n                    \"legal_name\": \"123456\"\n                },\n                \"address\": {\n                    \"code\": null,\n                    \"street\": \"Rua de New York\",\n                    \"district\": null,\n                    \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                    \"city_name\": \"Nova Iorque\"\n                },\n                \"billing_address\": {\n                    \"code\": null,\n                    \"street\": \"Rua de New York\",\n                    \"district\": null,\n                    \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                    \"city_name\": \"Nova Iorque\"\n                },\n                \"name\": \"Serviço de Bomba e Concreto\",\n                \"credit_limit\": null,\n                \"credit_ordered\": 0,\n                \"credit_delivered\": 30000,\n                \"seller\": null,\n                \"code\": \"57729\",\n                \"contacts\": [],\n                \"notes\": null\n            },\n            \"delivery_note\": [\n                {\n                    \"total_price\": 24000,\n                    \"total_extended_price\": 24000,\n                    \"total_tax_price\": 0,\n                    \"project\": {\n                        \"client\": {\n                            \"name\": \"Testando Loop\",\n                            \"code\": \"139345\",\n                            \"legal_address\": null,\n                            \"document\": \"123456\",\n                            \"document2\": \"123456\",\n                            \"document3\": \"123456\",\n                            \"document4\": \"123456\",\n                            \"person_type\": \"L\",\n                            \"legal_name\": \"123456\"\n                        },\n                        \"address\": {\n                            \"code\": null,\n                            \"street\": \"Rua de New York\",\n                            \"district\": null,\n                            \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                            \"city_name\": \"Nova Iorque\"\n                        },\n                        \"billing_address\": {\n                            \"code\": null,\n                            \"street\": \"Rua de New York\",\n                            \"district\": null,\n                            \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                            \"city_name\": \"Nova Iorque\"\n                        },\n                        \"name\": \"Serviço de Bomba e Concreto\",\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 0,\n                        \"credit_delivered\": 30000,\n                        \"seller\": null,\n                        \"code\": \"57729\",\n                        \"contacts\": [],\n                        \"notes\": null\n                    },\n                    \"client\": {\n                        \"name\": \"Testando Loop\",\n                        \"code\": \"139345\",\n                        \"legal_address\": null,\n                        \"document\": \"123456\",\n                        \"document2\": \"123456\",\n                        \"document3\": \"123456\",\n                        \"document4\": \"123456\",\n                        \"person_type\": \"L\",\n                        \"legal_name\": \"123456\"\n                    },\n                    \"address\": {\n                        \"code\": null,\n                        \"street\": \"Rua de New York\",\n                        \"district\": null,\n                        \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                        \"city_name\": \"Nova Iorque\"\n                    },\n                    \"created_at\": \"2024-01-15 16:29:37\",\n                    \"product_notes\": [\n                        {\n                            \"product\": {\n                                \"name\": \"C12/15 S3 X0(P) CL0.4 D22 CORRENTE\",\n                                \"code\": \"121503X0420000\"\n                            },\n                            \"quantity\": 8,\n                            \"price\": 2000,\n                            \"extended_price\": 16000,\n                            \"total_price\": 16000,\n                            \"total_tax_price\": 0\n                        },\n                        {\n                            \"product\": {\n                                \"name\": \"Serviço de Bomba Lança\",\n                                \"code\": \"Pump 1\"\n                            },\n                            \"quantity\": 8,\n                            \"price\": 1000,\n                            \"extended_price\": 8000,\n                            \"total_price\": 8000,\n                            \"total_tax_price\": 0\n                        }\n                    ],\n                    \"order\": {\n                        \"order_number\": \"189\",\n                        \"order_code\": null,\n                        \"order_date\": \"2024-01-15 16:26:53\",\n                        \"delivery_date\": \"2024-01-15 19:25:00\",\n                        \"client\": {\n                            \"name\": \"Testando Loop\",\n                            \"code\": \"139345\",\n                            \"legal_address\": null,\n                            \"document\": \"123456\",\n                            \"document2\": \"123456\",\n                            \"document3\": \"123456\",\n                            \"document4\": \"123456\",\n                            \"person_type\": \"L\",\n                            \"legal_name\": \"123456\"\n                        },\n                        \"address\": {\n                            \"code\": null,\n                            \"street\": \"Rua de New York\",\n                            \"district\": null,\n                            \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                            \"city_name\": \"Nova Iorque\"\n                        },\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"project\": {\n                            \"client\": {\n                                \"name\": \"Testando Loop\",\n                                \"code\": \"139345\",\n                                \"legal_address\": null,\n                                \"document\": \"123456\",\n                                \"document2\": \"123456\",\n                                \"document3\": \"123456\",\n                                \"document4\": \"123456\",\n                                \"person_type\": \"L\",\n                                \"legal_name\": \"123456\"\n                            },\n                            \"address\": {\n                                \"code\": null,\n                                \"street\": \"Rua de New York\",\n                                \"district\": null,\n                                \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                                \"city_name\": \"Nova Iorque\"\n                            },\n                            \"billing_address\": {\n                                \"code\": null,\n                                \"street\": \"Rua de New York\",\n                                \"district\": null,\n                                \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                                \"city_name\": \"Nova Iorque\"\n                            },\n                            \"name\": \"Serviço de Bomba e Concreto\",\n                            \"credit_limit\": null,\n                            \"credit_ordered\": 0,\n                            \"credit_delivered\": 30000,\n                            \"seller\": null,\n                            \"code\": \"57729\",\n                            \"contacts\": [],\n                            \"notes\": null\n                        },\n                        \"seller\": null\n                    }\n                }\n            ],\n            \"delivery_code\": \"Poli1-6\",\n            \"delivery_number\": 6,\n            \"volume\": 8,\n            \"created_at\": \"2024-01-15 16:29:37\",\n            \"updated_at\": \"2024-01-15 16:29:37\",\n            \"seal\": null,\n            \"slump\": null\n        },\n        {\n            \"start\": \"2024-01-15 16:52:00\",\n            \"ticket\": \"2024-01-15 16:52:39\",\n            \"endload\": null,\n            \"vehicle\": {\n                \"name\": \"BT003\",\n                \"code\": \"BT003\",\n                \"plate\": \"KFJ4029\"\n            },\n            \"order\": {\n                \"order_number\": \"189\",\n                \"order_code\": null,\n                \"order_date\": \"2024-01-15 16:26:53\",\n                \"delivery_date\": \"2024-01-15 19:25:00\",\n                \"client\": {\n                    \"name\": \"Testando Loop\",\n                    \"code\": \"139345\",\n                    \"legal_address\": null,\n                    \"document\": \"123456\",\n                    \"document2\": \"123456\",\n                    \"document3\": \"123456\",\n                    \"document4\": \"123456\",\n                    \"person_type\": \"L\",\n                    \"legal_name\": \"123456\"\n                },\n                \"address\": {\n                    \"code\": null,\n                    \"street\": \"Rua de New York\",\n                    \"district\": null,\n                    \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                    \"city_name\": \"Nova Iorque\"\n                },\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"project\": {\n                    \"client\": {\n                        \"name\": \"Testando Loop\",\n                        \"code\": \"139345\",\n                        \"legal_address\": null,\n                        \"document\": \"123456\",\n                        \"document2\": \"123456\",\n                        \"document3\": \"123456\",\n                        \"document4\": \"123456\",\n                        \"person_type\": \"L\",\n                        \"legal_name\": \"123456\"\n                    },\n                    \"address\": {\n                        \"code\": null,\n                        \"street\": \"Rua de New York\",\n                        \"district\": null,\n                        \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                        \"city_name\": \"Nova Iorque\"\n                    },\n                    \"billing_address\": {\n                        \"code\": null,\n                        \"street\": \"Rua de New York\",\n                        \"district\": null,\n                        \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                        \"city_name\": \"Nova Iorque\"\n                    },\n                    \"name\": \"Serviço de Bomba e Concreto\",\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 0,\n                    \"credit_delivered\": 30000,\n                    \"seller\": null,\n                    \"code\": \"57729\",\n                    \"contacts\": [],\n                    \"notes\": null\n                },\n                \"seller\": null\n            },\n            \"driver\": {\n                \"name\": \"João Motta\",\n                \"code\": \"M002\",\n                \"document\": null\n            },\n            \"loading_point\": {\n                \"name\": \"Poli\",\n                \"code\": \"Poli1\",\n                \"custom_1\": null,\n                \"custom_2\": null\n            },\n            \"plant\": {\n                \"name\": \"Poli\",\n                \"code\": \"Poli1\"\n            },\n            \"project\": {\n                \"client\": {\n                    \"name\": \"Testando Loop\",\n                    \"code\": \"139345\",\n                    \"legal_address\": null,\n                    \"document\": \"123456\",\n                    \"document2\": \"123456\",\n                    \"document3\": \"123456\",\n                    \"document4\": \"123456\",\n                    \"person_type\": \"L\",\n                    \"legal_name\": \"123456\"\n                },\n                \"address\": {\n                    \"code\": null,\n                    \"street\": \"Rua de New York\",\n                    \"district\": null,\n                    \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                    \"city_name\": \"Nova Iorque\"\n                },\n                \"billing_address\": {\n                    \"code\": null,\n                    \"street\": \"Rua de New York\",\n                    \"district\": null,\n                    \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                    \"city_name\": \"Nova Iorque\"\n                },\n                \"name\": \"Serviço de Bomba e Concreto\",\n                \"credit_limit\": null,\n                \"credit_ordered\": 0,\n                \"credit_delivered\": 30000,\n                \"seller\": null,\n                \"code\": \"57729\",\n                \"contacts\": [],\n                \"notes\": null\n            },\n            \"delivery_note\": [\n                {\n                    \"total_price\": 6000,\n                    \"total_extended_price\": 6000,\n                    \"total_tax_price\": 0,\n                    \"project\": {\n                        \"client\": {\n                            \"name\": \"Testando Loop\",\n                            \"code\": \"139345\",\n                            \"legal_address\": null,\n                            \"document\": \"123456\",\n                            \"document2\": \"123456\",\n                            \"document3\": \"123456\",\n                            \"document4\": \"123456\",\n                            \"person_type\": \"L\",\n                            \"legal_name\": \"123456\"\n                        },\n                        \"address\": {\n                            \"code\": null,\n                            \"street\": \"Rua de New York\",\n                            \"district\": null,\n                            \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                            \"city_name\": \"Nova Iorque\"\n                        },\n                        \"billing_address\": {\n                            \"code\": null,\n                            \"street\": \"Rua de New York\",\n                            \"district\": null,\n                            \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                            \"city_name\": \"Nova Iorque\"\n                        },\n                        \"name\": \"Serviço de Bomba e Concreto\",\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 0,\n                        \"credit_delivered\": 30000,\n                        \"seller\": null,\n                        \"code\": \"57729\",\n                        \"contacts\": [],\n                        \"notes\": null\n                    },\n                    \"client\": {\n                        \"name\": \"Testando Loop\",\n                        \"code\": \"139345\",\n                        \"legal_address\": null,\n                        \"document\": \"123456\",\n                        \"document2\": \"123456\",\n                        \"document3\": \"123456\",\n                        \"document4\": \"123456\",\n                        \"person_type\": \"L\",\n                        \"legal_name\": \"123456\"\n                    },\n                    \"address\": {\n                        \"code\": null,\n                        \"street\": \"Rua de New York\",\n                        \"district\": null,\n                        \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                        \"city_name\": \"Nova Iorque\"\n                    },\n                    \"created_at\": \"2024-01-15 16:52:39\",\n                    \"product_notes\": [\n                        {\n                            \"product\": {\n                                \"name\": \"C12/15 S3 X0(P) CL0.4 D22 CORRENTE\",\n                                \"code\": \"121503X0420000\"\n                            },\n                            \"quantity\": 2,\n                            \"price\": 2000,\n                            \"extended_price\": 4000,\n                            \"total_price\": 4000,\n                            \"total_tax_price\": 0\n                        },\n                        {\n                            \"product\": {\n                                \"name\": \"Serviço de Bomba Lança\",\n                                \"code\": \"Pump 1\"\n                            },\n                            \"quantity\": 2,\n                            \"price\": 1000,\n                            \"extended_price\": 2000,\n                            \"total_price\": 2000,\n                            \"total_tax_price\": 0\n                        }\n                    ],\n                    \"order\": {\n                        \"order_number\": \"189\",\n                        \"order_code\": null,\n                        \"order_date\": \"2024-01-15 16:26:53\",\n                        \"delivery_date\": \"2024-01-15 19:25:00\",\n                        \"client\": {\n                            \"name\": \"Testando Loop\",\n                            \"code\": \"139345\",\n                            \"legal_address\": null,\n                            \"document\": \"123456\",\n                            \"document2\": \"123456\",\n                            \"document3\": \"123456\",\n                            \"document4\": \"123456\",\n                            \"person_type\": \"L\",\n                            \"legal_name\": \"123456\"\n                        },\n                        \"address\": {\n                            \"code\": null,\n                            \"street\": \"Rua de New York\",\n                            \"district\": null,\n                            \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                            \"city_name\": \"Nova Iorque\"\n                        },\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"project\": {\n                            \"client\": {\n                                \"name\": \"Testando Loop\",\n                                \"code\": \"139345\",\n                                \"legal_address\": null,\n                                \"document\": \"123456\",\n                                \"document2\": \"123456\",\n                                \"document3\": \"123456\",\n                                \"document4\": \"123456\",\n                                \"person_type\": \"L\",\n                                \"legal_name\": \"123456\"\n                            },\n                            \"address\": {\n                                \"code\": null,\n                                \"street\": \"Rua de New York\",\n                                \"district\": null,\n                                \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                                \"city_name\": \"Nova Iorque\"\n                            },\n                            \"billing_address\": {\n                                \"code\": null,\n                                \"street\": \"Rua de New York\",\n                                \"district\": null,\n                                \"address_full\": \"Rua de New York , 123, Nova Iorque, Nova York\",\n                                \"city_name\": \"Nova Iorque\"\n                            },\n                            \"name\": \"Serviço de Bomba e Concreto\",\n                            \"credit_limit\": null,\n                            \"credit_ordered\": 0,\n                            \"credit_delivered\": 30000,\n                            \"seller\": null,\n                            \"code\": \"57729\",\n                            \"contacts\": [],\n                            \"notes\": null\n                        },\n                        \"seller\": null\n                    }\n                }\n            ],\n            \"delivery_code\": \"Poli1-7\",\n            \"delivery_number\": 7,\n            \"volume\": 2,\n            \"created_at\": \"2024-01-15 16:52:39\",\n            \"updated_at\": \"2024-01-15 16:52:39\",\n            \"seal\": null,\n            \"slump\": null\n        },\n        {\n            \"start\": \"2024-01-18 10:02:00\",\n            \"ticket\": \"2024-01-18 10:02:37\",\n            \"endload\": null,\n            \"vehicle\": {\n                \"name\": \"BT003\",\n                \"code\": \"BT003\",\n                \"plate\": \"KFJ4029\"\n            },\n            \"order\": {\n                \"order_number\": \"174\",\n                \"order_code\": null,\n                \"order_date\": \"2024-01-09 12:28:51\",\n                \"delivery_date\": \"2024-01-09 10:00:00\",\n                \"client\": {\n                    \"name\": \"KAUE\",\n                    \"code\": \"55555\",\n                    \"legal_address\": null,\n                    \"document\": null,\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": null,\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"041162\",\n                    \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"district\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"city_name\": null\n                },\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"project\": {\n                    \"client\": {\n                        \"name\": \"KAUE\",\n                        \"code\": \"55555\",\n                        \"legal_address\": null,\n                        \"document\": null,\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": null,\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"041162\",\n                        \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"district\": null,\n                        \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"city_name\": null\n                    },\n                    \"billing_address\": null,\n                    \"name\": \"KAUE\",\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 9993,\n                    \"credit_delivered\": 8,\n                    \"seller\": null,\n                    \"code\": \"A266723A452591\",\n                    \"contacts\": [],\n                    \"notes\": null\n                },\n                \"seller\": null\n            },\n            \"driver\": {\n                \"name\": \"João Motta\",\n                \"code\": \"M002\",\n                \"document\": null\n            },\n            \"loading_point\": {\n                \"name\": \"Planta 2\",\n                \"code\": \"2\",\n                \"custom_1\": null,\n                \"custom_2\": null\n            },\n            \"plant\": {\n                \"name\": \"Planta 1\",\n                \"code\": \"P001\"\n            },\n            \"project\": {\n                \"client\": {\n                    \"name\": \"KAUE\",\n                    \"code\": \"55555\",\n                    \"legal_address\": null,\n                    \"document\": null,\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": null,\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"041162\",\n                    \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"district\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"city_name\": null\n                },\n                \"billing_address\": null,\n                \"name\": \"KAUE\",\n                \"credit_limit\": null,\n                \"credit_ordered\": 9993,\n                \"credit_delivered\": 8,\n                \"seller\": null,\n                \"code\": \"A266723A452591\",\n                \"contacts\": [],\n                \"notes\": null\n            },\n            \"delivery_note\": [\n                {\n                    \"total_price\": 8,\n                    \"total_extended_price\": 8,\n                    \"total_tax_price\": 0,\n                    \"project\": {\n                        \"client\": {\n                            \"name\": \"KAUE\",\n                            \"code\": \"55555\",\n                            \"legal_address\": null,\n                            \"document\": null,\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": null,\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"041162\",\n                            \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"district\": null,\n                            \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"city_name\": null\n                        },\n                        \"billing_address\": null,\n                        \"name\": \"KAUE\",\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 9993,\n                        \"credit_delivered\": 8,\n                        \"seller\": null,\n                        \"code\": \"A266723A452591\",\n                        \"contacts\": [],\n                        \"notes\": null\n                    },\n                    \"client\": {\n                        \"name\": \"KAUE\",\n                        \"code\": \"55555\",\n                        \"legal_address\": null,\n                        \"document\": null,\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": null,\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"041162\",\n                        \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"district\": null,\n                        \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"city_name\": null\n                    },\n                    \"created_at\": \"2024-01-18 10:02:38\",\n                    \"product_notes\": [\n                        {\n                            \"product\": {\n                                \"name\": \"HORMIGON ELAB. C/CPC40 H13 AS.15CM PP6-20\",\n                                \"code\": \"HN131520\"\n                            },\n                            \"quantity\": 8,\n                            \"price\": 1,\n                            \"extended_price\": 8,\n                            \"total_price\": 8,\n                            \"total_tax_price\": 0\n                        }\n                    ],\n                    \"order\": {\n                        \"order_number\": \"174\",\n                        \"order_code\": null,\n                        \"order_date\": \"2024-01-09 12:28:51\",\n                        \"delivery_date\": \"2024-01-09 10:00:00\",\n                        \"client\": {\n                            \"name\": \"KAUE\",\n                            \"code\": \"55555\",\n                            \"legal_address\": null,\n                            \"document\": null,\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": null,\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"041162\",\n                            \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"district\": null,\n                            \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"city_name\": null\n                        },\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"project\": {\n                            \"client\": {\n                                \"name\": \"KAUE\",\n                                \"code\": \"55555\",\n                                \"legal_address\": null,\n                                \"document\": null,\n                                \"document2\": null,\n                                \"document3\": null,\n                                \"document4\": null,\n                                \"person_type\": null,\n                                \"legal_name\": null\n                            },\n                            \"address\": {\n                                \"code\": \"041162\",\n                                \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                                \"district\": null,\n                                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                                \"city_name\": null\n                            },\n                            \"billing_address\": null,\n                            \"name\": \"KAUE\",\n                            \"credit_limit\": null,\n                            \"credit_ordered\": 9993,\n                            \"credit_delivered\": 8,\n                            \"seller\": null,\n                            \"code\": \"A266723A452591\",\n                            \"contacts\": [],\n                            \"notes\": null\n                        },\n                        \"seller\": null\n                    }\n                }\n            ],\n            \"delivery_code\": \"P001-137\",\n            \"delivery_number\": 137,\n            \"volume\": 8,\n            \"created_at\": \"2024-01-18 10:02:38\",\n            \"updated_at\": \"2024-01-18 10:02:38\",\n            \"seal\": null,\n            \"slump\": null\n        },\n        {\n            \"start\": \"2024-01-25 16:26:00\",\n            \"ticket\": \"2024-01-25 16:26:14\",\n            \"endload\": null,\n            \"vehicle\": {\n                \"name\": \"BT003\",\n                \"code\": \"BT003\",\n                \"plate\": \"KFJ4029\"\n            },\n            \"order\": {\n                \"order_number\": \"204\",\n                \"order_code\": null,\n                \"order_date\": \"2024-01-25 16:06:25\",\n                \"delivery_date\": \"2024-01-25 20:00:00\",\n                \"client\": {\n                    \"name\": \"KAUE\",\n                    \"code\": \"55555\",\n                    \"legal_address\": null,\n                    \"document\": null,\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": null,\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"041162\",\n                    \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"district\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"city_name\": null\n                },\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"project\": {\n                    \"client\": {\n                        \"name\": \"KAUE\",\n                        \"code\": \"55555\",\n                        \"legal_address\": null,\n                        \"document\": null,\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": null,\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"041162\",\n                        \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"district\": null,\n                        \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"city_name\": null\n                    },\n                    \"billing_address\": {\n                        \"code\": \"041162\",\n                        \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"district\": null,\n                        \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"city_name\": null\n                    },\n                    \"name\": \"SHOPPING MALTA STONE\",\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 2876.45,\n                    \"credit_delivered\": 600,\n                    \"seller\": null,\n                    \"code\": \"0000001\",\n                    \"contacts\": [],\n                    \"notes\": null\n                },\n                \"seller\": null\n            },\n            \"driver\": {\n                \"name\": \"João Motta\",\n                \"code\": \"M002\",\n                \"document\": null\n            },\n            \"loading_point\": {\n                \"name\": \"Planta 2\",\n                \"code\": \"2\",\n                \"custom_1\": null,\n                \"custom_2\": null\n            },\n            \"plant\": {\n                \"name\": \"Planta 1\",\n                \"code\": \"P001\"\n            },\n            \"project\": {\n                \"client\": {\n                    \"name\": \"KAUE\",\n                    \"code\": \"55555\",\n                    \"legal_address\": null,\n                    \"document\": null,\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": null,\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"041162\",\n                    \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"district\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"city_name\": null\n                },\n                \"billing_address\": {\n                    \"code\": \"041162\",\n                    \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"district\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"city_name\": null\n                },\n                \"name\": \"SHOPPING MALTA STONE\",\n                \"credit_limit\": null,\n                \"credit_ordered\": 2876.45,\n                \"credit_delivered\": 600,\n                \"seller\": null,\n                \"code\": \"0000001\",\n                \"contacts\": [],\n                \"notes\": null\n            },\n            \"delivery_note\": [\n                {\n                    \"total_price\": 480,\n                    \"total_extended_price\": 480,\n                    \"total_tax_price\": 0,\n                    \"project\": {\n                        \"client\": {\n                            \"name\": \"KAUE\",\n                            \"code\": \"55555\",\n                            \"legal_address\": null,\n                            \"document\": null,\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": null,\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"041162\",\n                            \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"district\": null,\n                            \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"city_name\": null\n                        },\n                        \"billing_address\": {\n                            \"code\": \"041162\",\n                            \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"district\": null,\n                            \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"city_name\": null\n                        },\n                        \"name\": \"SHOPPING MALTA STONE\",\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 2876.45,\n                        \"credit_delivered\": 600,\n                        \"seller\": null,\n                        \"code\": \"0000001\",\n                        \"contacts\": [],\n                        \"notes\": null\n                    },\n                    \"client\": {\n                        \"name\": \"KAUE\",\n                        \"code\": \"55555\",\n                        \"legal_address\": null,\n                        \"document\": null,\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": null,\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"041162\",\n                        \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"district\": null,\n                        \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"city_name\": null\n                    },\n                    \"created_at\": \"2024-01-25 16:26:14\",\n                    \"product_notes\": [\n                        {\n                            \"product\": {\n                                \"name\": \"HORMIGON ELAB. C/CPC40 H13 AS.10CM PP6-20\",\n                                \"code\": \"HN131020\"\n                            },\n                            \"quantity\": 8,\n                            \"price\": 60,\n                            \"extended_price\": 480,\n                            \"total_price\": 480,\n                            \"total_tax_price\": 0\n                        }\n                    ],\n                    \"order\": {\n                        \"order_number\": \"204\",\n                        \"order_code\": null,\n                        \"order_date\": \"2024-01-25 16:06:25\",\n                        \"delivery_date\": \"2024-01-25 20:00:00\",\n                        \"client\": {\n                            \"name\": \"KAUE\",\n                            \"code\": \"55555\",\n                            \"legal_address\": null,\n                            \"document\": null,\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": null,\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"041162\",\n                            \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"district\": null,\n                            \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"city_name\": null\n                        },\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"project\": {\n                            \"client\": {\n                                \"name\": \"KAUE\",\n                                \"code\": \"55555\",\n                                \"legal_address\": null,\n                                \"document\": null,\n                                \"document2\": null,\n                                \"document3\": null,\n                                \"document4\": null,\n                                \"person_type\": null,\n                                \"legal_name\": null\n                            },\n                            \"address\": {\n                                \"code\": \"041162\",\n                                \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                                \"district\": null,\n                                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                                \"city_name\": null\n                            },\n                            \"billing_address\": {\n                                \"code\": \"041162\",\n                                \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                                \"district\": null,\n                                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                                \"city_name\": null\n                            },\n                            \"name\": \"SHOPPING MALTA STONE\",\n                            \"credit_limit\": null,\n                            \"credit_ordered\": 2876.45,\n                            \"credit_delivered\": 600,\n                            \"seller\": null,\n                            \"code\": \"0000001\",\n                            \"contacts\": [],\n                            \"notes\": null\n                        },\n                        \"seller\": null\n                    }\n                }\n            ],\n            \"delivery_code\": \"P001-138\",\n            \"delivery_number\": 138,\n            \"volume\": 8,\n            \"created_at\": \"2024-01-25 16:26:14\",\n            \"updated_at\": \"2024-01-25 16:26:14\",\n            \"seal\": null,\n            \"slump\": null\n        },\n        {\n            \"start\": \"2024-01-25 16:26:00\",\n            \"ticket\": \"2024-01-25 16:26:31\",\n            \"endload\": null,\n            \"vehicle\": {\n                \"name\": \"BT003\",\n                \"code\": \"BT003\",\n                \"plate\": \"KFJ4029\"\n            },\n            \"order\": {\n                \"order_number\": \"204\",\n                \"order_code\": null,\n                \"order_date\": \"2024-01-25 16:06:25\",\n                \"delivery_date\": \"2024-01-25 20:00:00\",\n                \"client\": {\n                    \"name\": \"KAUE\",\n                    \"code\": \"55555\",\n                    \"legal_address\": null,\n                    \"document\": null,\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": null,\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"041162\",\n                    \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"district\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"city_name\": null\n                },\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"project\": {\n                    \"client\": {\n                        \"name\": \"KAUE\",\n                        \"code\": \"55555\",\n                        \"legal_address\": null,\n                        \"document\": null,\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": null,\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"041162\",\n                        \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"district\": null,\n                        \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"city_name\": null\n                    },\n                    \"billing_address\": {\n                        \"code\": \"041162\",\n                        \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"district\": null,\n                        \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"city_name\": null\n                    },\n                    \"name\": \"SHOPPING MALTA STONE\",\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 2876.45,\n                    \"credit_delivered\": 600,\n                    \"seller\": null,\n                    \"code\": \"0000001\",\n                    \"contacts\": [],\n                    \"notes\": null\n                },\n                \"seller\": null\n            },\n            \"driver\": {\n                \"name\": \"João Motta\",\n                \"code\": \"M002\",\n                \"document\": null\n            },\n            \"loading_point\": {\n                \"name\": \"Planta 2\",\n                \"code\": \"2\",\n                \"custom_1\": null,\n                \"custom_2\": null\n            },\n            \"plant\": {\n                \"name\": \"Planta 1\",\n                \"code\": \"P001\"\n            },\n            \"project\": {\n                \"client\": {\n                    \"name\": \"KAUE\",\n                    \"code\": \"55555\",\n                    \"legal_address\": null,\n                    \"document\": null,\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": null,\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"041162\",\n                    \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"district\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"city_name\": null\n                },\n                \"billing_address\": {\n                    \"code\": \"041162\",\n                    \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"district\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"city_name\": null\n                },\n                \"name\": \"SHOPPING MALTA STONE\",\n                \"credit_limit\": null,\n                \"credit_ordered\": 2876.45,\n                \"credit_delivered\": 600,\n                \"seller\": null,\n                \"code\": \"0000001\",\n                \"contacts\": [],\n                \"notes\": null\n            },\n            \"delivery_note\": [\n                {\n                    \"total_price\": 120,\n                    \"total_extended_price\": 120,\n                    \"total_tax_price\": 0,\n                    \"project\": {\n                        \"client\": {\n                            \"name\": \"KAUE\",\n                            \"code\": \"55555\",\n                            \"legal_address\": null,\n                            \"document\": null,\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": null,\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"041162\",\n                            \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"district\": null,\n                            \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"city_name\": null\n                        },\n                        \"billing_address\": {\n                            \"code\": \"041162\",\n                            \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"district\": null,\n                            \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"city_name\": null\n                        },\n                        \"name\": \"SHOPPING MALTA STONE\",\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 2876.45,\n                        \"credit_delivered\": 600,\n                        \"seller\": null,\n                        \"code\": \"0000001\",\n                        \"contacts\": [],\n                        \"notes\": null\n                    },\n                    \"client\": {\n                        \"name\": \"KAUE\",\n                        \"code\": \"55555\",\n                        \"legal_address\": null,\n                        \"document\": null,\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": null,\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"041162\",\n                        \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"district\": null,\n                        \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"city_name\": null\n                    },\n                    \"created_at\": \"2024-01-25 16:26:31\",\n                    \"product_notes\": [\n                        {\n                            \"product\": {\n                                \"name\": \"HORMIGON ELAB. C/CPC40 H13 AS.10CM PP6-20\",\n                                \"code\": \"HN131020\"\n                            },\n                            \"quantity\": 2,\n                            \"price\": 60,\n                            \"extended_price\": 120,\n                            \"total_price\": 120,\n                            \"total_tax_price\": 0\n                        }\n                    ],\n                    \"order\": {\n                        \"order_number\": \"204\",\n                        \"order_code\": null,\n                        \"order_date\": \"2024-01-25 16:06:25\",\n                        \"delivery_date\": \"2024-01-25 20:00:00\",\n                        \"client\": {\n                            \"name\": \"KAUE\",\n                            \"code\": \"55555\",\n                            \"legal_address\": null,\n                            \"document\": null,\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": null,\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"041162\",\n                            \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"district\": null,\n                            \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"city_name\": null\n                        },\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"project\": {\n                            \"client\": {\n                                \"name\": \"KAUE\",\n                                \"code\": \"55555\",\n                                \"legal_address\": null,\n                                \"document\": null,\n                                \"document2\": null,\n                                \"document3\": null,\n                                \"document4\": null,\n                                \"person_type\": null,\n                                \"legal_name\": null\n                            },\n                            \"address\": {\n                                \"code\": \"041162\",\n                                \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                                \"district\": null,\n                                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                                \"city_name\": null\n                            },\n                            \"billing_address\": {\n                                \"code\": \"041162\",\n                                \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                                \"district\": null,\n                                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                                \"city_name\": null\n                            },\n                            \"name\": \"SHOPPING MALTA STONE\",\n                            \"credit_limit\": null,\n                            \"credit_ordered\": 2876.45,\n                            \"credit_delivered\": 600,\n                            \"seller\": null,\n                            \"code\": \"0000001\",\n                            \"contacts\": [],\n                            \"notes\": null\n                        },\n                        \"seller\": null\n                    }\n                }\n            ],\n            \"delivery_code\": \"P001-139\",\n            \"delivery_number\": 139,\n            \"volume\": 2,\n            \"created_at\": \"2024-01-25 16:26:31\",\n            \"updated_at\": \"2024-01-25 16:26:31\",\n            \"seal\": null,\n            \"slump\": null\n        },\n        {\n            \"start\": \"2024-01-30 10:44:00\",\n            \"ticket\": \"2024-01-30 10:44:30\",\n            \"endload\": null,\n            \"vehicle\": {\n                \"name\": \"BT001\",\n                \"code\": \"BT001\",\n                \"plate\": \"FGJ4003\"\n            },\n            \"order\": {\n                \"order_number\": \"206\",\n                \"order_code\": null,\n                \"order_date\": \"2024-01-30 10:44:08\",\n                \"delivery_date\": \"2024-01-30 22:00:00\",\n                \"client\": {\n                    \"name\": \"Gabriel Marins Toledo\",\n                    \"code\": \"C0002\",\n                    \"legal_address\": null,\n                    \"document\": \"3434683225\",\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": \"N\",\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": null,\n                    \"street\": \"Avenida dos Trabalhadores\",\n                    \"district\": \"Vila Castelo Branco\",\n                    \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                    \"city_name\": \"Indaiatuba\"\n                },\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"project\": {\n                    \"client\": {\n                        \"name\": \"Gabriel Marins Toledo\",\n                        \"code\": \"C0002\",\n                        \"legal_address\": null,\n                        \"document\": \"3434683225\",\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": \"N\",\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": null,\n                        \"street\": \"Avenida dos Trabalhadores\",\n                        \"district\": \"Vila Castelo Branco\",\n                        \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                        \"city_name\": \"Indaiatuba\"\n                    },\n                    \"billing_address\": null,\n                    \"name\": \"Contrato teste\",\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 9000,\n                    \"credit_delivered\": 9500,\n                    \"seller\": null,\n                    \"code\": \"1234\",\n                    \"contacts\": [],\n                    \"notes\": null\n                },\n                \"seller\": null\n            },\n            \"driver\": {\n                \"name\": \"Claudio José\",\n                \"code\": \"M001\",\n                \"document\": null\n            },\n            \"loading_point\": {\n                \"name\": \"Planta 2\",\n                \"code\": \"2\",\n                \"custom_1\": null,\n                \"custom_2\": null\n            },\n            \"plant\": {\n                \"name\": \"Planta 1\",\n                \"code\": \"P001\"\n            },\n            \"project\": {\n                \"client\": {\n                    \"name\": \"Gabriel Marins Toledo\",\n                    \"code\": \"C0002\",\n                    \"legal_address\": null,\n                    \"document\": \"3434683225\",\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": \"N\",\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": null,\n                    \"street\": \"Avenida dos Trabalhadores\",\n                    \"district\": \"Vila Castelo Branco\",\n                    \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                    \"city_name\": \"Indaiatuba\"\n                },\n                \"billing_address\": null,\n                \"name\": \"Contrato teste\",\n                \"credit_limit\": null,\n                \"credit_ordered\": 9000,\n                \"credit_delivered\": 9500,\n                \"seller\": null,\n                \"code\": \"1234\",\n                \"contacts\": [],\n                \"notes\": null\n            },\n            \"delivery_note\": [\n                {\n                    \"total_price\": 4000,\n                    \"total_extended_price\": 4000,\n                    \"total_tax_price\": 0,\n                    \"project\": {\n                        \"client\": {\n                            \"name\": \"Gabriel Marins Toledo\",\n                            \"code\": \"C0002\",\n                            \"legal_address\": null,\n                            \"document\": \"3434683225\",\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": \"N\",\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": null,\n                            \"street\": \"Avenida dos Trabalhadores\",\n                            \"district\": \"Vila Castelo Branco\",\n                            \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                            \"city_name\": \"Indaiatuba\"\n                        },\n                        \"billing_address\": null,\n                        \"name\": \"Contrato teste\",\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 9000,\n                        \"credit_delivered\": 9500,\n                        \"seller\": null,\n                        \"code\": \"1234\",\n                        \"contacts\": [],\n                        \"notes\": null\n                    },\n                    \"client\": {\n                        \"name\": \"Gabriel Marins Toledo\",\n                        \"code\": \"C0002\",\n                        \"legal_address\": null,\n                        \"document\": \"3434683225\",\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": \"N\",\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": null,\n                        \"street\": \"Avenida dos Trabalhadores\",\n                        \"district\": \"Vila Castelo Branco\",\n                        \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                        \"city_name\": \"Indaiatuba\"\n                    },\n                    \"created_at\": \"2024-01-30 10:44:30\",\n                    \"product_notes\": [\n                        {\n                            \"product\": {\n                                \"name\": \"HORMIGON ELAB. H35\",\n                                \"code\": \"HN301035\"\n                            },\n                            \"quantity\": 8,\n                            \"price\": 500,\n                            \"extended_price\": 4000,\n                            \"total_price\": 4000,\n                            \"total_tax_price\": 0\n                        }\n                    ],\n                    \"order\": {\n                        \"order_number\": \"206\",\n                        \"order_code\": null,\n                        \"order_date\": \"2024-01-30 10:44:08\",\n                        \"delivery_date\": \"2024-01-30 22:00:00\",\n                        \"client\": {\n                            \"name\": \"Gabriel Marins Toledo\",\n                            \"code\": \"C0002\",\n                            \"legal_address\": null,\n                            \"document\": \"3434683225\",\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": \"N\",\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": null,\n                            \"street\": \"Avenida dos Trabalhadores\",\n                            \"district\": \"Vila Castelo Branco\",\n                            \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                            \"city_name\": \"Indaiatuba\"\n                        },\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"project\": {\n                            \"client\": {\n                                \"name\": \"Gabriel Marins Toledo\",\n                                \"code\": \"C0002\",\n                                \"legal_address\": null,\n                                \"document\": \"3434683225\",\n                                \"document2\": null,\n                                \"document3\": null,\n                                \"document4\": null,\n                                \"person_type\": \"N\",\n                                \"legal_name\": null\n                            },\n                            \"address\": {\n                                \"code\": null,\n                                \"street\": \"Avenida dos Trabalhadores\",\n                                \"district\": \"Vila Castelo Branco\",\n                                \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                                \"city_name\": \"Indaiatuba\"\n                            },\n                            \"billing_address\": null,\n                            \"name\": \"Contrato teste\",\n                            \"credit_limit\": null,\n                            \"credit_ordered\": 9000,\n                            \"credit_delivered\": 9500,\n                            \"seller\": null,\n                            \"code\": \"1234\",\n                            \"contacts\": [],\n                            \"notes\": null\n                        },\n                        \"seller\": null\n                    }\n                }\n            ],\n            \"delivery_code\": \"P001-140\",\n            \"delivery_number\": 140,\n            \"volume\": 8,\n            \"created_at\": \"2024-01-30 10:44:30\",\n            \"updated_at\": \"2024-01-30 12:10:26\",\n            \"seal\": null,\n            \"slump\": null\n        },\n        {\n            \"start\": \"2024-01-30 12:08:00\",\n            \"ticket\": \"2024-01-30 12:10:10\",\n            \"endload\": null,\n            \"vehicle\": {\n                \"name\": \"BT003\",\n                \"code\": \"BT003\",\n                \"plate\": \"KFJ4029\"\n            },\n            \"order\": {\n                \"order_number\": \"206\",\n                \"order_code\": null,\n                \"order_date\": \"2024-01-30 10:44:08\",\n                \"delivery_date\": \"2024-01-30 22:00:00\",\n                \"client\": {\n                    \"name\": \"Gabriel Marins Toledo\",\n                    \"code\": \"C0002\",\n                    \"legal_address\": null,\n                    \"document\": \"3434683225\",\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": \"N\",\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": null,\n                    \"street\": \"Avenida dos Trabalhadores\",\n                    \"district\": \"Vila Castelo Branco\",\n                    \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                    \"city_name\": \"Indaiatuba\"\n                },\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"project\": {\n                    \"client\": {\n                        \"name\": \"Gabriel Marins Toledo\",\n                        \"code\": \"C0002\",\n                        \"legal_address\": null,\n                        \"document\": \"3434683225\",\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": \"N\",\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": null,\n                        \"street\": \"Avenida dos Trabalhadores\",\n                        \"district\": \"Vila Castelo Branco\",\n                        \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                        \"city_name\": \"Indaiatuba\"\n                    },\n                    \"billing_address\": null,\n                    \"name\": \"Contrato teste\",\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 9000,\n                    \"credit_delivered\": 9500,\n                    \"seller\": null,\n                    \"code\": \"1234\",\n                    \"contacts\": [],\n                    \"notes\": null\n                },\n                \"seller\": null\n            },\n            \"driver\": {\n                \"name\": \"João Motta\",\n                \"code\": \"M002\",\n                \"document\": null\n            },\n            \"loading_point\": {\n                \"name\": \"Planta 2\",\n                \"code\": \"2\",\n                \"custom_1\": null,\n                \"custom_2\": null\n            },\n            \"plant\": {\n                \"name\": \"Planta 1\",\n                \"code\": \"P001\"\n            },\n            \"project\": {\n                \"client\": {\n                    \"name\": \"Gabriel Marins Toledo\",\n                    \"code\": \"C0002\",\n                    \"legal_address\": null,\n                    \"document\": \"3434683225\",\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": \"N\",\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": null,\n                    \"street\": \"Avenida dos Trabalhadores\",\n                    \"district\": \"Vila Castelo Branco\",\n                    \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                    \"city_name\": \"Indaiatuba\"\n                },\n                \"billing_address\": null,\n                \"name\": \"Contrato teste\",\n                \"credit_limit\": null,\n                \"credit_ordered\": 9000,\n                \"credit_delivered\": 9500,\n                \"seller\": null,\n                \"code\": \"1234\",\n                \"contacts\": [],\n                \"notes\": null\n            },\n            \"delivery_note\": [\n                {\n                    \"total_price\": 2000,\n                    \"total_extended_price\": 2000,\n                    \"total_tax_price\": 0,\n                    \"project\": {\n                        \"client\": {\n                            \"name\": \"Gabriel Marins Toledo\",\n                            \"code\": \"C0002\",\n                            \"legal_address\": null,\n                            \"document\": \"3434683225\",\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": \"N\",\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": null,\n                            \"street\": \"Avenida dos Trabalhadores\",\n                            \"district\": \"Vila Castelo Branco\",\n                            \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                            \"city_name\": \"Indaiatuba\"\n                        },\n                        \"billing_address\": null,\n                        \"name\": \"Contrato teste\",\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 9000,\n                        \"credit_delivered\": 9500,\n                        \"seller\": null,\n                        \"code\": \"1234\",\n                        \"contacts\": [],\n                        \"notes\": null\n                    },\n                    \"client\": {\n                        \"name\": \"Gabriel Marins Toledo\",\n                        \"code\": \"C0002\",\n                        \"legal_address\": null,\n                        \"document\": \"3434683225\",\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": \"N\",\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": null,\n                        \"street\": \"Avenida dos Trabalhadores\",\n                        \"district\": \"Vila Castelo Branco\",\n                        \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                        \"city_name\": \"Indaiatuba\"\n                    },\n                    \"created_at\": \"2024-01-30 12:10:10\",\n                    \"product_notes\": [\n                        {\n                            \"product\": {\n                                \"name\": \"HORMIGON ELAB. H35\",\n                                \"code\": \"HN301035\"\n                            },\n                            \"quantity\": 4,\n                            \"price\": 500,\n                            \"extended_price\": 2000,\n                            \"total_price\": 2000,\n                            \"total_tax_price\": 0\n                        }\n                    ],\n                    \"order\": {\n                        \"order_number\": \"206\",\n                        \"order_code\": null,\n                        \"order_date\": \"2024-01-30 10:44:08\",\n                        \"delivery_date\": \"2024-01-30 22:00:00\",\n                        \"client\": {\n                            \"name\": \"Gabriel Marins Toledo\",\n                            \"code\": \"C0002\",\n                            \"legal_address\": null,\n                            \"document\": \"3434683225\",\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": \"N\",\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": null,\n                            \"street\": \"Avenida dos Trabalhadores\",\n                            \"district\": \"Vila Castelo Branco\",\n                            \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                            \"city_name\": \"Indaiatuba\"\n                        },\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"project\": {\n                            \"client\": {\n                                \"name\": \"Gabriel Marins Toledo\",\n                                \"code\": \"C0002\",\n                                \"legal_address\": null,\n                                \"document\": \"3434683225\",\n                                \"document2\": null,\n                                \"document3\": null,\n                                \"document4\": null,\n                                \"person_type\": \"N\",\n                                \"legal_name\": null\n                            },\n                            \"address\": {\n                                \"code\": null,\n                                \"street\": \"Avenida dos Trabalhadores\",\n                                \"district\": \"Vila Castelo Branco\",\n                                \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                                \"city_name\": \"Indaiatuba\"\n                            },\n                            \"billing_address\": null,\n                            \"name\": \"Contrato teste\",\n                            \"credit_limit\": null,\n                            \"credit_ordered\": 9000,\n                            \"credit_delivered\": 9500,\n                            \"seller\": null,\n                            \"code\": \"1234\",\n                            \"contacts\": [],\n                            \"notes\": null\n                        },\n                        \"seller\": null\n                    }\n                }\n            ],\n            \"delivery_code\": \"P001-142\",\n            \"delivery_number\": 142,\n            \"volume\": 4,\n            \"created_at\": \"2024-01-30 12:10:10\",\n            \"updated_at\": \"2024-01-30 12:10:10\",\n            \"seal\": null,\n            \"slump\": null\n        },\n        {\n            \"start\": \"2024-01-30 17:44:00\",\n            \"ticket\": \"2024-01-30 17:45:10\",\n            \"endload\": null,\n            \"vehicle\": {\n                \"name\": \"BT004\",\n                \"code\": \"BT004\",\n                \"plate\": \"FF4D333\"\n            },\n            \"order\": {\n                \"order_number\": \"213\",\n                \"order_code\": null,\n                \"order_date\": \"2024-01-30 17:16:43\",\n                \"delivery_date\": \"2024-01-30 20:00:00\",\n                \"client\": {\n                    \"name\": \"KAUE\",\n                    \"code\": \"55555\",\n                    \"legal_address\": null,\n                    \"document\": null,\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": null,\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"041162\",\n                    \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"district\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"city_name\": null\n                },\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"project\": {\n                    \"client\": {\n                        \"name\": \"KAUE\",\n                        \"code\": \"55555\",\n                        \"legal_address\": null,\n                        \"document\": null,\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": null,\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"041162\",\n                        \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"district\": null,\n                        \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"city_name\": null\n                    },\n                    \"billing_address\": {\n                        \"code\": \"041162\",\n                        \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"district\": null,\n                        \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"city_name\": null\n                    },\n                    \"name\": \"COTIZACION NAHUEL\",\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 1300,\n                    \"credit_delivered\": 1000,\n                    \"seller\": {\n                        \"code\": \"V0001\",\n                        \"name\": \"Paulo Azevedo Queiroz\"\n                    },\n                    \"code\": \"NAHUEL\",\n                    \"contacts\": [],\n                    \"notes\": null\n                },\n                \"seller\": {\n                    \"code\": \"V0001\",\n                    \"name\": \"Paulo Azevedo Queiroz\"\n                }\n            },\n            \"driver\": {\n                \"name\": \"Claudio José\",\n                \"code\": \"M001\",\n                \"document\": null\n            },\n            \"loading_point\": {\n                \"name\": \"EC7\",\n                \"code\": \"EC7\",\n                \"custom_1\": null,\n                \"custom_2\": null\n            },\n            \"plant\": {\n                \"name\": \"Planta 7\",\n                \"code\": \"EC7\"\n            },\n            \"project\": {\n                \"client\": {\n                    \"name\": \"KAUE\",\n                    \"code\": \"55555\",\n                    \"legal_address\": null,\n                    \"document\": null,\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": null,\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"041162\",\n                    \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"district\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"city_name\": null\n                },\n                \"billing_address\": {\n                    \"code\": \"041162\",\n                    \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"district\": null,\n                    \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                    \"city_name\": null\n                },\n                \"name\": \"COTIZACION NAHUEL\",\n                \"credit_limit\": null,\n                \"credit_ordered\": 1300,\n                \"credit_delivered\": 1000,\n                \"seller\": {\n                    \"code\": \"V0001\",\n                    \"name\": \"Paulo Azevedo Queiroz\"\n                },\n                \"code\": \"NAHUEL\",\n                \"contacts\": [],\n                \"notes\": null\n            },\n            \"delivery_note\": [\n                {\n                    \"total_price\": 1000,\n                    \"total_extended_price\": 1000,\n                    \"total_tax_price\": 0,\n                    \"project\": {\n                        \"client\": {\n                            \"name\": \"KAUE\",\n                            \"code\": \"55555\",\n                            \"legal_address\": null,\n                            \"document\": null,\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": null,\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"041162\",\n                            \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"district\": null,\n                            \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"city_name\": null\n                        },\n                        \"billing_address\": {\n                            \"code\": \"041162\",\n                            \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"district\": null,\n                            \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"city_name\": null\n                        },\n                        \"name\": \"COTIZACION NAHUEL\",\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 1300,\n                        \"credit_delivered\": 1000,\n                        \"seller\": {\n                            \"code\": \"V0001\",\n                            \"name\": \"Paulo Azevedo Queiroz\"\n                        },\n                        \"code\": \"NAHUEL\",\n                        \"contacts\": [],\n                        \"notes\": null\n                    },\n                    \"client\": {\n                        \"name\": \"KAUE\",\n                        \"code\": \"55555\",\n                        \"legal_address\": null,\n                        \"document\": null,\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": null,\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"041162\",\n                        \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"district\": null,\n                        \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                        \"city_name\": null\n                    },\n                    \"created_at\": \"2024-01-30 17:45:11\",\n                    \"product_notes\": [\n                        {\n                            \"product\": {\n                                \"name\": \"HORMIGON ELAB. C/CPC40 H13 AS.15CM PP6-20\",\n                                \"code\": \"HN131520\"\n                            },\n                            \"quantity\": 10,\n                            \"price\": 100,\n                            \"extended_price\": 1000,\n                            \"total_price\": 1000,\n                            \"total_tax_price\": 0\n                        }\n                    ],\n                    \"order\": {\n                        \"order_number\": \"213\",\n                        \"order_code\": null,\n                        \"order_date\": \"2024-01-30 17:16:43\",\n                        \"delivery_date\": \"2024-01-30 20:00:00\",\n                        \"client\": {\n                            \"name\": \"KAUE\",\n                            \"code\": \"55555\",\n                            \"legal_address\": null,\n                            \"document\": null,\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": null,\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"041162\",\n                            \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"district\": null,\n                            \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                            \"city_name\": null\n                        },\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"project\": {\n                            \"client\": {\n                                \"name\": \"KAUE\",\n                                \"code\": \"55555\",\n                                \"legal_address\": null,\n                                \"document\": null,\n                                \"document2\": null,\n                                \"document3\": null,\n                                \"document4\": null,\n                                \"person_type\": null,\n                                \"legal_name\": null\n                            },\n                            \"address\": {\n                                \"code\": \"041162\",\n                                \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                                \"district\": null,\n                                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                                \"city_name\": null\n                            },\n                            \"billing_address\": {\n                                \"code\": \"041162\",\n                                \"street\": \"1243 STREET ONE, WINDERMERE FL\",\n                                \"district\": null,\n                                \"address_full\": \"1243 STREET ONE, WINDERMERE FL\",\n                                \"city_name\": null\n                            },\n                            \"name\": \"COTIZACION NAHUEL\",\n                            \"credit_limit\": null,\n                            \"credit_ordered\": 1300,\n                            \"credit_delivered\": 1000,\n                            \"seller\": {\n                                \"code\": \"V0001\",\n                                \"name\": \"Paulo Azevedo Queiroz\"\n                            },\n                            \"code\": \"NAHUEL\",\n                            \"contacts\": [],\n                            \"notes\": null\n                        },\n                        \"seller\": {\n                            \"code\": \"V0001\",\n                            \"name\": \"Paulo Azevedo Queiroz\"\n                        }\n                    }\n                }\n            ],\n            \"delivery_code\": \"EC7-3\",\n            \"delivery_number\": 3,\n            \"volume\": 10,\n            \"created_at\": \"2024-01-30 17:45:10\",\n            \"updated_at\": \"2024-01-30 17:45:10\",\n            \"seal\": null,\n            \"slump\": null\n        },\n        {\n            \"start\": \"2024-01-31 10:20:00\",\n            \"ticket\": \"2024-01-31 10:20:19\",\n            \"endload\": null,\n            \"vehicle\": {\n                \"name\": \"BT003\",\n                \"code\": \"BT003\",\n                \"plate\": \"KFJ4029\"\n            },\n            \"order\": {\n                \"order_number\": \"214\",\n                \"order_code\": null,\n                \"order_date\": \"2024-01-31 10:19:39\",\n                \"delivery_date\": \"2024-01-31 13:00:00\",\n                \"client\": {\n                    \"name\": \"Gabriel Marins Toledo\",\n                    \"code\": \"C0002\",\n                    \"legal_address\": null,\n                    \"document\": \"3434683225\",\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": \"N\",\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": null,\n                    \"street\": \"Avenida dos Trabalhadores\",\n                    \"district\": \"Vila Castelo Branco\",\n                    \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                    \"city_name\": \"Indaiatuba\"\n                },\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"project\": {\n                    \"client\": {\n                        \"name\": \"Gabriel Marins Toledo\",\n                        \"code\": \"C0002\",\n                        \"legal_address\": null,\n                        \"document\": \"3434683225\",\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": \"N\",\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": null,\n                        \"street\": \"Avenida dos Trabalhadores\",\n                        \"district\": \"Vila Castelo Branco\",\n                        \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                        \"city_name\": \"Indaiatuba\"\n                    },\n                    \"billing_address\": null,\n                    \"name\": \"Contrato teste\",\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 9000,\n                    \"credit_delivered\": 9500,\n                    \"seller\": null,\n                    \"code\": \"1234\",\n                    \"contacts\": [],\n                    \"notes\": null\n                },\n                \"seller\": null\n            },\n            \"driver\": {\n                \"name\": \"João Motta\",\n                \"code\": \"M002\",\n                \"document\": null\n            },\n            \"loading_point\": {\n                \"name\": \"Planta 2\",\n                \"code\": \"2\",\n                \"custom_1\": null,\n                \"custom_2\": null\n            },\n            \"plant\": {\n                \"name\": \"Planta 1\",\n                \"code\": \"P001\"\n            },\n            \"project\": {\n                \"client\": {\n                    \"name\": \"Gabriel Marins Toledo\",\n                    \"code\": \"C0002\",\n                    \"legal_address\": null,\n                    \"document\": \"3434683225\",\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": \"N\",\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": null,\n                    \"street\": \"Avenida dos Trabalhadores\",\n                    \"district\": \"Vila Castelo Branco\",\n                    \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                    \"city_name\": \"Indaiatuba\"\n                },\n                \"billing_address\": null,\n                \"name\": \"Contrato teste\",\n                \"credit_limit\": null,\n                \"credit_ordered\": 9000,\n                \"credit_delivered\": 9500,\n                \"seller\": null,\n                \"code\": \"1234\",\n                \"contacts\": [],\n                \"notes\": null\n            },\n            \"delivery_note\": [\n                {\n                    \"total_price\": 500,\n                    \"total_extended_price\": 500,\n                    \"total_tax_price\": 0,\n                    \"project\": {\n                        \"client\": {\n                            \"name\": \"Gabriel Marins Toledo\",\n                            \"code\": \"C0002\",\n                            \"legal_address\": null,\n                            \"document\": \"3434683225\",\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": \"N\",\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": null,\n                            \"street\": \"Avenida dos Trabalhadores\",\n                            \"district\": \"Vila Castelo Branco\",\n                            \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                            \"city_name\": \"Indaiatuba\"\n                        },\n                        \"billing_address\": null,\n                        \"name\": \"Contrato teste\",\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 9000,\n                        \"credit_delivered\": 9500,\n                        \"seller\": null,\n                        \"code\": \"1234\",\n                        \"contacts\": [],\n                        \"notes\": null\n                    },\n                    \"client\": {\n                        \"name\": \"Gabriel Marins Toledo\",\n                        \"code\": \"C0002\",\n                        \"legal_address\": null,\n                        \"document\": \"3434683225\",\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": \"N\",\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": null,\n                        \"street\": \"Avenida dos Trabalhadores\",\n                        \"district\": \"Vila Castelo Branco\",\n                        \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                        \"city_name\": \"Indaiatuba\"\n                    },\n                    \"created_at\": \"2024-01-31 10:20:19\",\n                    \"product_notes\": [\n                        {\n                            \"product\": {\n                                \"name\": \"HORMIGON ELAB. H35\",\n                                \"code\": \"HN301035\"\n                            },\n                            \"quantity\": 1,\n                            \"price\": 500,\n                            \"extended_price\": 500,\n                            \"total_price\": 500,\n                            \"total_tax_price\": 0\n                        }\n                    ],\n                    \"order\": {\n                        \"order_number\": \"214\",\n                        \"order_code\": null,\n                        \"order_date\": \"2024-01-31 10:19:39\",\n                        \"delivery_date\": \"2024-01-31 13:00:00\",\n                        \"client\": {\n                            \"name\": \"Gabriel Marins Toledo\",\n                            \"code\": \"C0002\",\n                            \"legal_address\": null,\n                            \"document\": \"3434683225\",\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": \"N\",\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": null,\n                            \"street\": \"Avenida dos Trabalhadores\",\n                            \"district\": \"Vila Castelo Branco\",\n                            \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                            \"city_name\": \"Indaiatuba\"\n                        },\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"project\": {\n                            \"client\": {\n                                \"name\": \"Gabriel Marins Toledo\",\n                                \"code\": \"C0002\",\n                                \"legal_address\": null,\n                                \"document\": \"3434683225\",\n                                \"document2\": null,\n                                \"document3\": null,\n                                \"document4\": null,\n                                \"person_type\": \"N\",\n                                \"legal_name\": null\n                            },\n                            \"address\": {\n                                \"code\": null,\n                                \"street\": \"Avenida dos Trabalhadores\",\n                                \"district\": \"Vila Castelo Branco\",\n                                \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n                                \"city_name\": \"Indaiatuba\"\n                            },\n                            \"billing_address\": null,\n                            \"name\": \"Contrato teste\",\n                            \"credit_limit\": null,\n                            \"credit_ordered\": 9000,\n                            \"credit_delivered\": 9500,\n                            \"seller\": null,\n                            \"code\": \"1234\",\n                            \"contacts\": [],\n                            \"notes\": null\n                        },\n                        \"seller\": null\n                    }\n                }\n            ],\n            \"delivery_code\": \"P001-144\",\n            \"delivery_number\": 144,\n            \"volume\": 1,\n            \"created_at\": \"2024-01-31 10:20:19\",\n            \"updated_at\": \"2024-01-31 10:20:19\",\n            \"seal\": null,\n            \"slump\": null\n        },\n        {\n            \"start\": \"2024-02-01 12:31:00\",\n            \"ticket\": \"2024-02-01 12:31:49\",\n            \"endload\": null,\n            \"vehicle\": {\n                \"name\": \"BT004\",\n                \"code\": \"BT004\",\n                \"plate\": \"FF4D333\"\n            },\n            \"order\": {\n                \"order_number\": \"215\",\n                \"order_code\": null,\n                \"order_date\": \"2024-02-01 10:46:19\",\n                \"delivery_date\": \"2024-02-01 22:02:00\",\n                \"client\": {\n                    \"name\": \"Gabriel Marins Toledo\",\n                    \"code\": \"C0002\",\n                    \"legal_address\": null,\n                    \"document\": \"3434683225\",\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": \"N\",\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"AD0002\",\n                    \"street\": \"Rua Itapiru\",\n                    \"district\": \"Rio Comprido\",\n                    \"address_full\": \"Rua Itapiru, Rio Comprido, Rio de Janeiro, Rio de Janeiro\",\n                    \"city_name\": \"Rio de Janeiro\"\n                },\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"project\": {\n                    \"client\": {\n                        \"name\": \"Gabriel Marins Toledo\",\n                        \"code\": \"C0002\",\n                        \"legal_address\": null,\n                        \"document\": \"3434683225\",\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": \"N\",\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"AD0002\",\n                        \"street\": \"Rua Itapiru\",\n                        \"district\": \"Rio Comprido\",\n                        \"address_full\": \"Rua Itapiru, Rio Comprido, Rio de Janeiro, Rio de Janeiro\",\n                        \"city_name\": \"Rio de Janeiro\"\n                    },\n                    \"billing_address\": null,\n                    \"name\": \"Gabriel Marins Toledo\",\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 4952,\n                    \"credit_delivered\": 46764,\n                    \"seller\": null,\n                    \"code\": \"A146454A238861\",\n                    \"contacts\": [],\n                    \"notes\": null\n                },\n                \"seller\": null\n            },\n            \"driver\": {\n                \"name\": \"Claudio José\",\n                \"code\": \"M001\",\n                \"document\": null\n            },\n            \"loading_point\": {\n                \"name\": \"Planta 2\",\n                \"code\": \"2\",\n                \"custom_1\": null,\n                \"custom_2\": null\n            },\n            \"plant\": {\n                \"name\": \"Planta 1\",\n                \"code\": \"P001\"\n            },\n            \"project\": {\n                \"client\": {\n                    \"name\": \"Gabriel Marins Toledo\",\n                    \"code\": \"C0002\",\n                    \"legal_address\": null,\n                    \"document\": \"3434683225\",\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": \"N\",\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"AD0002\",\n                    \"street\": \"Rua Itapiru\",\n                    \"district\": \"Rio Comprido\",\n                    \"address_full\": \"Rua Itapiru, Rio Comprido, Rio de Janeiro, Rio de Janeiro\",\n                    \"city_name\": \"Rio de Janeiro\"\n                },\n                \"billing_address\": null,\n                \"name\": \"Gabriel Marins Toledo\",\n                \"credit_limit\": null,\n                \"credit_ordered\": 4952,\n                \"credit_delivered\": 46764,\n                \"seller\": null,\n                \"code\": \"A146454A238861\",\n                \"contacts\": [],\n                \"notes\": null\n            },\n            \"delivery_note\": [\n                {\n                    \"total_price\": 4,\n                    \"total_extended_price\": 4,\n                    \"total_tax_price\": 0,\n                    \"project\": {\n                        \"client\": {\n                            \"name\": \"Gabriel Marins Toledo\",\n                            \"code\": \"C0002\",\n                            \"legal_address\": null,\n                            \"document\": \"3434683225\",\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": \"N\",\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"AD0002\",\n                            \"street\": \"Rua Itapiru\",\n                            \"district\": \"Rio Comprido\",\n                            \"address_full\": \"Rua Itapiru, Rio Comprido, Rio de Janeiro, Rio de Janeiro\",\n                            \"city_name\": \"Rio de Janeiro\"\n                        },\n                        \"billing_address\": null,\n                        \"name\": \"Gabriel Marins Toledo\",\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 4952,\n                        \"credit_delivered\": 46764,\n                        \"seller\": null,\n                        \"code\": \"A146454A238861\",\n                        \"contacts\": [],\n                        \"notes\": null\n                    },\n                    \"client\": {\n                        \"name\": \"Gabriel Marins Toledo\",\n                        \"code\": \"C0002\",\n                        \"legal_address\": null,\n                        \"document\": \"3434683225\",\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": \"N\",\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"AD0002\",\n                        \"street\": \"Rua Itapiru\",\n                        \"district\": \"Rio Comprido\",\n                        \"address_full\": \"Rua Itapiru, Rio Comprido, Rio de Janeiro, Rio de Janeiro\",\n                        \"city_name\": \"Rio de Janeiro\"\n                    },\n                    \"created_at\": \"2024-02-01 12:31:49\",\n                    \"product_notes\": [\n                        {\n                            \"product\": {\n                                \"name\": \"H180\",\n                                \"code\": \"PRT000004\"\n                            },\n                            \"quantity\": 4,\n                            \"price\": 1,\n                            \"extended_price\": 4,\n                            \"total_price\": 4,\n                            \"total_tax_price\": 0\n                        },\n                        {\n                            \"product\": {\n                                \"name\": \"Serviço de Bomba Lança\",\n                                \"code\": \"Pump 1\"\n                            },\n                            \"quantity\": 4,\n                            \"price\": 0,\n                            \"extended_price\": 0,\n                            \"total_price\": 0,\n                            \"total_tax_price\": 0\n                        }\n                    ],\n                    \"order\": {\n                        \"order_number\": \"215\",\n                        \"order_code\": null,\n                        \"order_date\": \"2024-02-01 10:46:19\",\n                        \"delivery_date\": \"2024-02-01 22:02:00\",\n                        \"client\": {\n                            \"name\": \"Gabriel Marins Toledo\",\n                            \"code\": \"C0002\",\n                            \"legal_address\": null,\n                            \"document\": \"3434683225\",\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": \"N\",\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"AD0002\",\n                            \"street\": \"Rua Itapiru\",\n                            \"district\": \"Rio Comprido\",\n                            \"address_full\": \"Rua Itapiru, Rio Comprido, Rio de Janeiro, Rio de Janeiro\",\n                            \"city_name\": \"Rio de Janeiro\"\n                        },\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"project\": {\n                            \"client\": {\n                                \"name\": \"Gabriel Marins Toledo\",\n                                \"code\": \"C0002\",\n                                \"legal_address\": null,\n                                \"document\": \"3434683225\",\n                                \"document2\": null,\n                                \"document3\": null,\n                                \"document4\": null,\n                                \"person_type\": \"N\",\n                                \"legal_name\": null\n                            },\n                            \"address\": {\n                                \"code\": \"AD0002\",\n                                \"street\": \"Rua Itapiru\",\n                                \"district\": \"Rio Comprido\",\n                                \"address_full\": \"Rua Itapiru, Rio Comprido, Rio de Janeiro, Rio de Janeiro\",\n                                \"city_name\": \"Rio de Janeiro\"\n                            },\n                            \"billing_address\": null,\n                            \"name\": \"Gabriel Marins Toledo\",\n                            \"credit_limit\": null,\n                            \"credit_ordered\": 4952,\n                            \"credit_delivered\": 46764,\n                            \"seller\": null,\n                            \"code\": \"A146454A238861\",\n                            \"contacts\": [],\n                            \"notes\": null\n                        },\n                        \"seller\": null\n                    }\n                }\n            ],\n            \"delivery_code\": \"P001-148\",\n            \"delivery_number\": 148,\n            \"volume\": 4,\n            \"created_at\": \"2024-02-01 12:31:49\",\n            \"updated_at\": \"2024-02-01 12:42:06\",\n            \"seal\": null,\n            \"slump\": 1\n        },\n        {\n            \"start\": \"2024-02-03 11:01:00\",\n            \"ticket\": \"2024-02-01 10:50:15\",\n            \"endload\": null,\n            \"vehicle\": {\n                \"name\": \"Betoneira-DLC8531\",\n                \"code\": \"M23\",\n                \"plate\": \"DLC8531\"\n            },\n            \"order\": {\n                \"order_number\": \"215\",\n                \"order_code\": null,\n                \"order_date\": \"2024-02-01 10:46:19\",\n                \"delivery_date\": \"2024-02-01 22:02:00\",\n                \"client\": {\n                    \"name\": \"Gabriel Marins Toledo\",\n                    \"code\": \"C0002\",\n                    \"legal_address\": null,\n                    \"document\": \"3434683225\",\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": \"N\",\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"AD0002\",\n                    \"street\": \"Rua Itapiru\",\n                    \"district\": \"Rio Comprido\",\n                    \"address_full\": \"Rua Itapiru, Rio Comprido, Rio de Janeiro, Rio de Janeiro\",\n                    \"city_name\": \"Rio de Janeiro\"\n                },\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"project\": {\n                    \"client\": {\n                        \"name\": \"Gabriel Marins Toledo\",\n                        \"code\": \"C0002\",\n                        \"legal_address\": null,\n                        \"document\": \"3434683225\",\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": \"N\",\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"AD0002\",\n                        \"street\": \"Rua Itapiru\",\n                        \"district\": \"Rio Comprido\",\n                        \"address_full\": \"Rua Itapiru, Rio Comprido, Rio de Janeiro, Rio de Janeiro\",\n                        \"city_name\": \"Rio de Janeiro\"\n                    },\n                    \"billing_address\": null,\n                    \"name\": \"Gabriel Marins Toledo\",\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 4952,\n                    \"credit_delivered\": 46764,\n                    \"seller\": null,\n                    \"code\": \"A146454A238861\",\n                    \"contacts\": [],\n                    \"notes\": null\n                },\n                \"seller\": null\n            },\n            \"driver\": {\n                \"name\": \"José Maria\",\n                \"code\": \"J23\",\n                \"document\": null\n            },\n            \"loading_point\": {\n                \"name\": \"Planta 2\",\n                \"code\": \"2\",\n                \"custom_1\": null,\n                \"custom_2\": null\n            },\n            \"plant\": {\n                \"name\": \"Planta 1\",\n                \"code\": \"P001\"\n            },\n            \"project\": {\n                \"client\": {\n                    \"name\": \"Gabriel Marins Toledo\",\n                    \"code\": \"C0002\",\n                    \"legal_address\": null,\n                    \"document\": \"3434683225\",\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": \"N\",\n                    \"legal_name\": null\n                },\n                \"address\": {\n                    \"code\": \"AD0002\",\n                    \"street\": \"Rua Itapiru\",\n                    \"district\": \"Rio Comprido\",\n                    \"address_full\": \"Rua Itapiru, Rio Comprido, Rio de Janeiro, Rio de Janeiro\",\n                    \"city_name\": \"Rio de Janeiro\"\n                },\n                \"billing_address\": null,\n                \"name\": \"Gabriel Marins Toledo\",\n                \"credit_limit\": null,\n                \"credit_ordered\": 4952,\n                \"credit_delivered\": 46764,\n                \"seller\": null,\n                \"code\": \"A146454A238861\",\n                \"contacts\": [],\n                \"notes\": null\n            },\n            \"delivery_note\": [\n                {\n                    \"total_price\": 0,\n                    \"total_extended_price\": 0,\n                    \"total_tax_price\": null,\n                    \"project\": {\n                        \"client\": {\n                            \"name\": \"Gabriel Marins Toledo\",\n                            \"code\": \"C0002\",\n                            \"legal_address\": null,\n                            \"document\": \"3434683225\",\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": \"N\",\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"AD0002\",\n                            \"street\": \"Rua Itapiru\",\n                            \"district\": \"Rio Comprido\",\n                            \"address_full\": \"Rua Itapiru, Rio Comprido, Rio de Janeiro, Rio de Janeiro\",\n                            \"city_name\": \"Rio de Janeiro\"\n                        },\n                        \"billing_address\": null,\n                        \"name\": \"Gabriel Marins Toledo\",\n                        \"credit_limit\": null,\n                        \"credit_ordered\": 4952,\n                        \"credit_delivered\": 46764,\n                        \"seller\": null,\n                        \"code\": \"A146454A238861\",\n                        \"contacts\": [],\n                        \"notes\": null\n                    },\n                    \"client\": {\n                        \"name\": \"Gabriel Marins Toledo\",\n                        \"code\": \"C0002\",\n                        \"legal_address\": null,\n                        \"document\": \"3434683225\",\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": \"N\",\n                        \"legal_name\": null\n                    },\n                    \"address\": {\n                        \"code\": \"AD0002\",\n                        \"street\": \"Rua Itapiru\",\n                        \"district\": \"Rio Comprido\",\n                        \"address_full\": \"Rua Itapiru, Rio Comprido, Rio de Janeiro, Rio de Janeiro\",\n                        \"city_name\": \"Rio de Janeiro\"\n                    },\n                    \"created_at\": \"2024-02-01 10:50:15\",\n                    \"product_notes\": [\n                        {\n                            \"product\": {\n                                \"name\": \"H180\",\n                                \"code\": \"PRT000004\"\n                            },\n                            \"quantity\": 8,\n                            \"price\": 1,\n                            \"extended_price\": 8,\n                            \"total_price\": 8,\n                            \"total_tax_price\": 0\n                        },\n                        {\n                            \"product\": {\n                                \"name\": \"Serviço de Bomba Lança\",\n                                \"code\": \"Pump 1\"\n                            },\n                            \"quantity\": 8,\n                            \"price\": 0,\n                            \"extended_price\": 0,\n                            \"total_price\": 0,\n                            \"total_tax_price\": 0\n                        }\n                    ],\n                    \"order\": {\n                        \"order_number\": \"215\",\n                        \"order_code\": null,\n                        \"order_date\": \"2024-02-01 10:46:19\",\n                        \"delivery_date\": \"2024-02-01 22:02:00\",\n                        \"client\": {\n                            \"name\": \"Gabriel Marins Toledo\",\n                            \"code\": \"C0002\",\n                            \"legal_address\": null,\n                            \"document\": \"3434683225\",\n                            \"document2\": null,\n                            \"document3\": null,\n                            \"document4\": null,\n                            \"person_type\": \"N\",\n                            \"legal_name\": null\n                        },\n                        \"address\": {\n                            \"code\": \"AD0002\",\n                            \"street\": \"Rua Itapiru\",\n                            \"district\": \"Rio Comprido\",\n                            \"address_full\": \"Rua Itapiru, Rio Comprido, Rio de Janeiro, Rio de Janeiro\",\n                            \"city_name\": \"Rio de Janeiro\"\n                        },\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"project\": {\n                            \"client\": {\n                                \"name\": \"Gabriel Marins Toledo\",\n                                \"code\": \"C0002\",\n                                \"legal_address\": null,\n                                \"document\": \"3434683225\",\n                                \"document2\": null,\n                                \"document3\": null,\n                                \"document4\": null,\n                                \"person_type\": \"N\",\n                                \"legal_name\": null\n                            },\n                            \"address\": {\n                                \"code\": \"AD0002\",\n                                \"street\": \"Rua Itapiru\",\n                                \"district\": \"Rio Comprido\",\n                                \"address_full\": \"Rua Itapiru, Rio Comprido, Rio de Janeiro, Rio de Janeiro\",\n                                \"city_name\": \"Rio de Janeiro\"\n                            },\n                            \"billing_address\": null,\n                            \"name\": \"Gabriel Marins Toledo\",\n                            \"credit_limit\": null,\n                            \"credit_ordered\": 4952,\n                            \"credit_delivered\": 46764,\n                            \"seller\": null,\n                            \"code\": \"A146454A238861\",\n                            \"contacts\": [],\n                            \"notes\": null\n                        },\n                        \"seller\": null\n                    }\n                }\n            ],\n            \"delivery_code\": \"P001-145\",\n            \"delivery_number\": 145,\n            \"volume\": 0,\n            \"created_at\": \"2024-02-01 10:50:15\",\n            \"updated_at\": \"2024-02-01 10:54:29\",\n            \"seal\": null,\n            \"slump\": 11\n        }\n    ],\n    \"message\": \"\"\n}"},{"id":"b48420dd-5b51-4e2a-bda6-0ea592a10192","name":"Error Records","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":{"raw":"https://integration.loop4.io/api/integration/ticket-notes?from_date=&to_date=2024-02-06","host":["https://integration.loop4.io"],"path":["api","integration","ticket-notes"],"query":[{"key":"from_date","value":""},{"key":"to_date","value":"2024-02-06"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Feb 2024 11:52:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"95"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"reason\": \"time data ' 00:00:00' does not match format '%Y-%m-%d %H:%M:%S'\"\n}"}],"_postman_id":"cce002bf-c4d2-4e53-823f-e9648408c422"},{"name":"List Tickets V2","id":"5cae787b-6624-40cd-ba78-4cc71925d42b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"41d856d2-8316-49a7-bd19-1bedec61","type":"text"}],"url":"https://integration.loop4.io/api/company/deliveries?updated_at_gt=2024-06-16 00:00:00&loading_points_ids=592","description":"<p>List tickets to Loop 4 Readymix Application with some parameters.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td><strong>Required</strong></td>\n<td>yyyy-mm-dd</td>\n</tr>\n<tr>\n<td>to</td>\n<td><strong>Required</strong></td>\n<td>yyyy-mm-dd</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","company","deliveries"],"host":["https://integration.loop4.io"],"query":[{"disabled":true,"key":"date_start","value":"2024-05-25"},{"disabled":true,"key":"date_end","value":"2024-10-25"},{"key":"updated_at_gt","value":"2024-06-16 00:00:00"},{"key":"loading_points_ids","value":"592"}],"variable":[]}},"response":[{"id":"77c42162-e49f-4a0a-9d74-26b16bebe3b0","name":"List Tickets V2","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":{"raw":"https://integration.loop4.io/api/company/deliveries?date_start=2024-03-27&date_end=2024-03-27","host":["https://integration.loop4.io"],"path":["api","company","deliveries"],"query":[{"key":"date_start","value":"2024-03-27"},{"key":"date_end","value":"2024-03-27"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Apr 2024 20:15:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1920"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"start_at\": \"2024-03-27 12:53:00\",\n            \"code\": \"P001-164\",\n            \"volume\": 1,\n            \"product_code\": \"HN301035\",\n            \"loading_point_code\": \"2\",\n            \"loading_point_name\": \"Planta 2\",\n            \"plant_code\": \"P001\",\n            \"plant_name\": \"Planta 1\",\n            \"vehicle_code\": \"BT003\",\n            \"vehicle_name\": \"BT003\",\n            \"driver_code\": \"M002\",\n            \"driver_name\": \"João Motta\",\n            \"customer_code\": \"\",\n            \"project_code\": \"00026-01\",\n            \"order_code\": \"244\",\n            \"address_full\": \"Avenida dos Trabalhadores, 1212, Vila Castelo Branco, Indaiatuba, São Paulo, 13338-048\",\n            \"trip\": null,\n            \"formula\": {\n                \"code\": \"HN301035\",\n                \"description\": \"HORMIGON ELAB. H35\",\n                \"materials\": [\n                    {\n                        \"raw_material_code\": \"AR1\",\n                        \"raw_material_name\": \"AGUA\",\n                        \"quantity\": 150\n                    },\n                    {\n                        \"raw_material_code\": \"CE1\",\n                        \"raw_material_name\": \"CEMENTO CPC 40\",\n                        \"quantity\": 210\n                    },\n                    {\n                        \"raw_material_code\": \"MP0004\",\n                        \"raw_material_name\": \"ARENA FINA DE RIO\",\n                        \"quantity\": 200\n                    },\n                    {\n                        \"raw_material_code\": \"MP0005\",\n                        \"raw_material_name\": \"PIEDRA GRUESA\",\n                        \"quantity\": 300\n                    }\n                ]\n            },\n            \"loaded_materials\": [\n                {\n                    \"raw_material_code\": \"AR1\",\n                    \"raw_material_name\": \"AGUA\",\n                    \"formula_humidity\": null,\n                    \"formula_dry_desired_weight\": 150,\n                    \"formula_humid_desired_weight\": 150,\n                    \"formula_max_deviation\": null,\n                    \"manually_loaded\": false\n                },\n                {\n                    \"raw_material_code\": \"CE1\",\n                    \"raw_material_name\": \"CEMENTO CPC 40\",\n                    \"formula_humidity\": null,\n                    \"formula_dry_desired_weight\": 210,\n                    \"formula_humid_desired_weight\": 210,\n                    \"formula_max_deviation\": null,\n                    \"manually_loaded\": false\n                },\n                {\n                    \"raw_material_code\": \"MP0004\",\n                    \"raw_material_name\": \"ARENA FINA DE RIO\",\n                    \"formula_humidity\": null,\n                    \"formula_dry_desired_weight\": 200,\n                    \"formula_humid_desired_weight\": 200,\n                    \"formula_max_deviation\": null,\n                    \"manually_loaded\": false\n                },\n                {\n                    \"raw_material_code\": \"MP0005\",\n                    \"raw_material_name\": \"PIEDRA GRUESA\",\n                    \"formula_humidity\": null,\n                    \"formula_dry_desired_weight\": 300,\n                    \"formula_humid_desired_weight\": 300,\n                    \"formula_max_deviation\": null,\n                    \"manually_loaded\": false\n                }\n            ]\n        }\n    ],\n    \"message\": \"\"\n}"}],"_postman_id":"5cae787b-6624-40cd-ba78-4cc71925d42b"}],"id":"11c22cff-ecb7-4cae-9fed-65044f7c72f8","_postman_id":"11c22cff-ecb7-4cae-9fed-65044f7c72f8","description":""},{"name":"Delivery Notes","item":[{"name":"List Delivery Notes","id":"1a5d2f1d-af8f-433b-9e54-f6bc8aef76d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":"https://api.360kpi.io/planning/delivery-note?date_start=2023-11-27&date_end=2024-11-27","description":"<p>List Devliery Notes</p>\n<p>Retrieves a list of delivery notes.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameters</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>date_start</td>\n<td>Required</td>\n<td>This parameter represents the starting date of the desired range.</td>\n</tr>\n<tr>\n<td>date_end</td>\n<td>Required</td>\n<td>Represents the ending date for filtering delivery notes.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["planning","delivery-note"],"host":["api","360kpi","io"],"query":[{"key":"date_start","value":"2023-11-27"},{"key":"date_end","value":"2024-11-27"}],"variable":[]}},"response":[{"id":"5a38e38a-5578-4254-9ad9-be560e4130eb","name":"List Delivery Notes","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":{"raw":"https://api.360kpi.io/planning/delivery-note?date_start=2024-01-16&date_end=2024-01-16","protocol":"https","host":["api","360kpi","io"],"path":["planning","delivery-note"],"query":[{"key":"date_start","value":"2024-01-16"},{"key":"date_end","value":"2024-01-16"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 20:29:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"27652"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 24380131,\n            \"created_at\": \"2024-01-16 11:55:53\",\n            \"product_notes\": [\n                {\n                    \"id\": 24560726,\n                    \"product\": {\n                        \"id\": 73142,\n                        \"product_type\": {\n                            \"id\": 1,\n                            \"description\": \"CONCRETO\",\n                            \"keylang\": \"plan.concrete\"\n                        },\n                        \"delivery_type\": null,\n                        \"uom\": null,\n                        \"code\": \"CONQ 01\",\n                        \"name\": \"Concreto Premium\",\n                        \"description\": \"O melhor concreto do mercado\",\n                        \"list_price\": 1500,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"min_quantity\": null,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"value_per_unit\": false,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"all_plants\": true,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"related_to\": null,\n                        \"statistical_control\": true,\n                        \"company\": 511,\n                        \"removed_by\": null,\n                        \"raw_material_type\": null,\n                        \"pump_min_tax\": null\n                    },\n                    \"order_product\": {\n                        \"id\": 1544982,\n                        \"product\": {\n                            \"id\": 73142,\n                            \"product_type\": {\n                                \"id\": 1,\n                                \"description\": \"CONCRETO\",\n                                \"keylang\": \"plan.concrete\"\n                            },\n                            \"delivery_type\": null,\n                            \"uom\": null,\n                            \"code\": \"CONQ 01\",\n                            \"name\": \"Concreto Premium\",\n                            \"description\": \"O melhor concreto do mercado\",\n                            \"list_price\": 1500,\n                            \"list_slump\": null,\n                            \"list_slump2\": null,\n                            \"fck\": null,\n                            \"coarse_agg\": null,\n                            \"color\": \"#DCDCDC\",\n                            \"removed\": false,\n                            \"removed_at\": null,\n                            \"dim_volume\": 0,\n                            \"dim_mass\": 1,\n                            \"min_quantity\": null,\n                            \"project_required\": false,\n                            \"project_suggestion\": false,\n                            \"default_value\": null,\n                            \"value_type\": null,\n                            \"value_per_unit\": false,\n                            \"comparison_value\": null,\n                            \"comparison_operator\": null,\n                            \"comparison_operator_value\": null,\n                            \"comparison_operator2\": null,\n                            \"comparison_operator_value2\": null,\n                            \"week_days\": null,\n                            \"all_plants\": true,\n                            \"recipe_code\": null,\n                            \"custom_1\": null,\n                            \"related_to\": null,\n                            \"statistical_control\": true,\n                            \"company\": 511,\n                            \"removed_by\": null,\n                            \"raw_material_type\": null,\n                            \"pump_min_tax\": null\n                        },\n                        \"rule\": null,\n                        \"order\": {\n                            \"id\": 1168545,\n                            \"order_date\": \"2024-01-16T11:46:08-03:00\",\n                            \"delivery_date\": \"2024-01-16T08:44:00-03:00\",\n                            \"city\": null,\n                            \"zip\": null,\n                            \"po\": null,\n                            \"job\": null,\n                            \"notes\": null,\n                            \"tms_sync\": null,\n                            \"display_price\": true,\n                            \"order_number\": \"3\",\n                            \"erpkey\": null,\n                            \"planned\": true,\n                            \"max_trip_quantity\": 8,\n                            \"first_arrival_at\": \"2024-01-16T08:44:00-03:00\",\n                            \"truck_interval\": null,\n                            \"load_time\": null,\n                            \"go_time\": null,\n                            \"unload_time\": null,\n                            \"back_time\": null,\n                            \"plan_notes\": null,\n                            \"auto_created\": true,\n                            \"cancelled\": false,\n                            \"total_price\": 15000,\n                            \"debtor_code\": null,\n                            \"vat_code\": null,\n                            \"haulage_depot_code\": null,\n                            \"haulage_zone_code\": null,\n                            \"sales_account_code\": null,\n                            \"location\": null,\n                            \"hzcs_name\": null,\n                            \"custom_1\": null,\n                            \"custom_2\": null,\n                            \"custom_3\": null,\n                            \"custom_4\": null,\n                            \"custom_5\": null,\n                            \"custom_6\": null,\n                            \"custom_7\": null,\n                            \"custom_8\": null,\n                            \"custom_9\": null,\n                            \"custom_10\": null,\n                            \"is_b_side\": false,\n                            \"po_product_value\": false,\n                            \"updated_at\": \"2024-01-16T11:46:08-03:00\",\n                            \"valid_through\": null,\n                            \"annulled\": false,\n                            \"company\": 511,\n                            \"geofence\": 2248,\n                            \"client\": 352166,\n                            \"project\": 547510167,\n                            \"project_old\": null,\n                            \"usage\": null,\n                            \"status\": 1293,\n                            \"order_type\": 1,\n                            \"tms_address\": 568739,\n                            \"tax\": null,\n                            \"seller\": 82942,\n                            \"payment_method\": null,\n                            \"sale_type\": 1,\n                            \"project_b\": null,\n                            \"price_table\": null,\n                            \"products\": [\n                                73142\n                            ]\n                        },\n                        \"qtd\": 10,\n                        \"price\": 1500,\n                        \"extended_price\": 15000,\n                        \"planned\": true,\n                        \"planned_qtd\": 10,\n                        \"manual_finished\": false,\n                        \"slump\": null,\n                        \"delivered_qtd\": 5,\n                        \"rule_qtd\": null,\n                        \"is_extra\": false,\n                        \"min_price\": null,\n                        \"min_qtd\": null,\n                        \"value\": null,\n                        \"value_type\": null,\n                        \"is_multidrop\": false,\n                        \"project_b_volume\": null,\n                        \"price_table_rule_operator\": null,\n                        \"price_table_rule_value\": null,\n                        \"price_table_rule_value_type\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"company\": 511,\n                        \"type\": 2,\n                        \"pump\": null,\n                        \"parent_op\": null,\n                        \"tax\": null,\n                        \"product_price_table\": null\n                    },\n                    \"order\": {\n                        \"id\": 1168545,\n                        \"order_date\": \"2024-01-16T11:46:08-03:00\",\n                        \"delivery_date\": \"2024-01-16T08:44:00-03:00\",\n                        \"city\": null,\n                        \"zip\": null,\n                        \"po\": null,\n                        \"job\": null,\n                        \"notes\": null,\n                        \"tms_sync\": null,\n                        \"display_price\": true,\n                        \"order_number\": \"3\",\n                        \"erpkey\": null,\n                        \"planned\": true,\n                        \"max_trip_quantity\": 8,\n                        \"first_arrival_at\": \"2024-01-16T08:44:00-03:00\",\n                        \"truck_interval\": null,\n                        \"load_time\": null,\n                        \"go_time\": null,\n                        \"unload_time\": null,\n                        \"back_time\": null,\n                        \"plan_notes\": null,\n                        \"auto_created\": true,\n                        \"cancelled\": false,\n                        \"total_price\": 15000,\n                        \"debtor_code\": null,\n                        \"vat_code\": null,\n                        \"haulage_depot_code\": null,\n                        \"haulage_zone_code\": null,\n                        \"sales_account_code\": null,\n                        \"location\": null,\n                        \"hzcs_name\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"custom_6\": null,\n                        \"custom_7\": null,\n                        \"custom_8\": null,\n                        \"custom_9\": null,\n                        \"custom_10\": null,\n                        \"is_b_side\": false,\n                        \"po_product_value\": false,\n                        \"updated_at\": \"2024-01-16T11:46:08-03:00\",\n                        \"valid_through\": null,\n                        \"annulled\": false,\n                        \"company\": 511,\n                        \"geofence\": 2248,\n                        \"client\": 352166,\n                        \"project\": 547510167,\n                        \"project_old\": null,\n                        \"usage\": null,\n                        \"status\": 1293,\n                        \"order_type\": 1,\n                        \"tms_address\": 568739,\n                        \"tax\": null,\n                        \"seller\": 82942,\n                        \"payment_method\": null,\n                        \"sale_type\": 1,\n                        \"project_b\": null,\n                        \"price_table\": null,\n                        \"products\": [\n                            73142\n                        ]\n                    },\n                    \"quantity\": 5,\n                    \"price\": 1500,\n                    \"extended_price\": 7500,\n                    \"total_price\": 7500,\n                    \"total_tax_price\": 0,\n                    \"audited\": null,\n                    \"status\": \"F\",\n                    \"created\": null,\n                    \"created_at\": \"2024-01-16T11:55:53-03:00\",\n                    \"notes\": null,\n                    \"bypass_credit_limit\": false,\n                    \"can_delete\": false,\n                    \"delivery_note\": 24380131,\n                    \"bill\": null,\n                    \"invoice\": 17136,\n                    \"delivery\": 3919841,\n                    \"aggregated_product\": null,\n                    \"vehicle\": 867900,\n                    \"driver\": 100186,\n                    \"assistant1\": null,\n                    \"assistant2\": null,\n                    \"assistant3\": null,\n                    \"origin_order\": null,\n                    \"origin_order_product\": null\n                }\n            ],\n            \"order\": {\n                \"id\": 1168545,\n                \"order_date\": \"2024-01-16 11:46:08\",\n                \"delivery_date\": \"2024-01-16 08:44:00\",\n                \"first_arrival_at\": \"2024-01-16 08:44:00\",\n                \"geofence\": {\n                    \"id\": 2248,\n                    \"idgeofence\": 0,\n                    \"name\": \"ALA 1 - São Marino\",\n                    \"description\": null,\n                    \"lat\": -23.6919,\n                    \"lng\": -46.9062,\n                    \"poly_points\": 6,\n                    \"cod_planta\": \"DIST01\",\n                    \"id_device\": null,\n                    \"disabled\": false,\n                    \"pump_plant\": false,\n                    \"batch_integration_host\": null,\n                    \"batch_integration_port\": null,\n                    \"default_load_time\": 45,\n                    \"default_unload_time\": 30,\n                    \"default_go_time\": null,\n                    \"default_back_time\": null,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 511,\n                    \"type\": 0,\n                    \"business\": 1,\n                    \"batch_integration\": null\n                },\n                \"status\": {\n                    \"id\": 1293,\n                    \"erpkey\": \"ST 01\",\n                    \"status\": \"Aprovado\",\n                    \"color\": \"#00ff19\",\n                    \"is_default\": true,\n                    \"plan_blocked\": false,\n                    \"dispatch_blocked\": false,\n                    \"blocked\": false,\n                    \"is_cancelled\": false,\n                    \"company\": 511,\n                    \"reasons\": []\n                },\n                \"project\": {\n                    \"id\": 547510167,\n                    \"client\": {\n                        \"id\": 352166,\n                        \"name\": \"José Alameda\",\n                        \"email\": \"jose@gmail\",\n                        \"country_code\": \"+55\",\n                        \"phone\": \"1152566221\",\n                        \"erpkey\": \"CL 02\",\n                        \"address\": null,\n                        \"notes\": null,\n                        \"conversation_sid\": null,\n                        \"document\": null,\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": null,\n                        \"legal_name\": null,\n                        \"inactive\": false,\n                        \"is_system\": false,\n                        \"credit_limit\": null,\n                        \"is_b_side\": false,\n                        \"company\": 511,\n                        \"legal_address\": null\n                    },\n                    \"address\": {\n                        \"id\": 568739,\n                        \"address_erpkey\": \"End 02\",\n                        \"address_street\": \"Av Lázaro Queiroz\",\n                        \"address_full\": \"Av Lázaro Queiroz , 120, Sede , Itapevi, São Paulo\",\n                        \"notes\": null,\n                        \"lat\": -23.5526920604659,\n                        \"lng\": -46.9398593902588,\n                        \"address_number\": \"120\",\n                        \"address_district\": \"Sede\",\n                        \"state\": \"São Paulo\",\n                        \"address_complement\": null,\n                        \"postal_code\": null,\n                        \"auto_location\": false,\n                        \"timezone\": null,\n                        \"is_billing\": false,\n                        \"is_legal\": false,\n                        \"erpkey_2\": null,\n                        \"city_name\": \"Itapevi\",\n                        \"read_only\": false,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"company\": 511,\n                        \"plan_customer\": 352166,\n                        \"person\": null,\n                        \"region\": null,\n                        \"city\": null,\n                        \"proposal\": null\n                    },\n                    \"code\": \"CONT 02\",\n                    \"sellercode\": null,\n                    \"pincode\": null,\n                    \"name\": \"Construção  do seu josé\",\n                    \"client_address\": \"Av Lázaro Queiroz , 120, Sede , Itapevi, São Paulo\",\n                    \"email\": null,\n                    \"geofence\": null,\n                    \"polyg\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"dtstart\": null,\n                    \"dtend\": null,\n                    \"active\": null,\n                    \"freight\": null,\n                    \"sug_distance\": null,\n                    \"sug_time\": null,\n                    \"sug_time_load\": null,\n                    \"sug_time_unload\": null,\n                    \"sug_time_learned\": null,\n                    \"detached\": false,\n                    \"old_id\": null,\n                    \"customer_key\": \"365898525\",\n                    \"notes\": null,\n                    \"start_date\": \"2024-01-16\",\n                    \"end_date\": \"2024-01-16\",\n                    \"has_max_quantity\": false,\n                    \"has_extra_quantity\": false,\n                    \"estimated_volume\": 8,\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 22500,\n                    \"credit_delivered\": 7500,\n                    \"credit_balance\": null,\n                    \"is_system\": false,\n                    \"inactive\": false,\n                    \"all_plants\": true,\n                    \"is_b_side\": false,\n                    \"version\": 4,\n                    \"spent_total_value\": 7500,\n                    \"display_price\": true,\n                    \"created_at\": \"2024-01-16T10:56:11-03:00\",\n                    \"updated_at\": \"2024-01-16T12:05:45-03:00\",\n                    \"po_required\": false,\n                    \"pre_client_name\": null,\n                    \"pre_address\": null,\n                    \"is_takeout\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"custom_3\": null,\n                    \"custom_4\": null,\n                    \"custom_5\": null,\n                    \"custom_6\": null,\n                    \"archived\": false,\n                    \"lost\": false,\n                    \"company\": 511,\n                    \"region\": null,\n                    \"cluster\": null,\n                    \"seller\": 82942,\n                    \"status\": 1295,\n                    \"fav_plant\": 2248,\n                    \"executant\": 352166,\n                    \"billing_address\": 568739,\n                    \"payment_method\": 118,\n                    \"payment_condition\": 2854,\n                    \"situation\": 2,\n                    \"price_table\": null,\n                    \"billing_method\": null,\n                    \"invoicing_address\": 568739,\n                    \"plant_fat\": null,\n                    \"sale_step\": null\n                },\n                \"tax\": null,\n                \"city\": null,\n                \"zip\": null,\n                \"po\": null,\n                \"job\": null,\n                \"notes\": null,\n                \"tms_sync\": null,\n                \"display_price\": true,\n                \"order_number\": \"3\",\n                \"erpkey\": null,\n                \"planned\": true,\n                \"max_trip_quantity\": 8,\n                \"truck_interval\": null,\n                \"load_time\": null,\n                \"go_time\": null,\n                \"unload_time\": null,\n                \"back_time\": null,\n                \"plan_notes\": null,\n                \"auto_created\": true,\n                \"cancelled\": false,\n                \"total_price\": 15000,\n                \"debtor_code\": null,\n                \"vat_code\": null,\n                \"haulage_depot_code\": null,\n                \"haulage_zone_code\": null,\n                \"sales_account_code\": null,\n                \"location\": null,\n                \"hzcs_name\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"custom_7\": null,\n                \"custom_8\": null,\n                \"custom_9\": null,\n                \"custom_10\": null,\n                \"is_b_side\": false,\n                \"po_product_value\": false,\n                \"updated_at\": \"2024-01-16T11:46:08-03:00\",\n                \"valid_through\": null,\n                \"annulled\": false,\n                \"company\": 511,\n                \"client\": 352166,\n                \"project_old\": null,\n                \"usage\": null,\n                \"order_type\": 1,\n                \"tms_address\": 568739,\n                \"seller\": 82942,\n                \"payment_method\": null,\n                \"sale_type\": 1,\n                \"project_b\": null,\n                \"price_table\": null,\n                \"products\": [\n                    73142\n                ]\n            },\n            \"delivery\": {\n                \"id\": 3919841,\n                \"START\": \"2024-01-16 11:51:00\",\n                \"to_job\": null,\n                \"on_job\": null,\n                \"pour_start\": null,\n                \"pour_end\": null,\n                \"wash_start\": null,\n                \"wash_end\": null,\n                \"to_plant\": null,\n                \"at_plant\": null,\n                \"id_veiculo\": {\n                    \"id\": 867900,\n                    \"unit\": null,\n                    \"idgps\": null,\n                    \"phone\": null,\n                    \"name\": \"Caminhão 02 - São Marino\",\n                    \"icon\": \"M_16.png\",\n                    \"capacity\": 8,\n                    \"id_device\": -1,\n                    \"codbt\": \"CAM 02\",\n                    \"codplanta\": null,\n                    \"idgeofence\": null,\n                    \"dtinclusao\": \"2024-01-16T09:53:30-03:00\",\n                    \"status\": null,\n                    \"inoutplant\": null,\n                    \"disabled\": null,\n                    \"auto_repair\": 0,\n                    \"ignition\": null,\n                    \"odometer\": null,\n                    \"hourmeter\": null,\n                    \"drum\": null,\n                    \"pump\": null,\n                    \"fuel_level\": null,\n                    \"rpm\": null,\n                    \"temperature\": null,\n                    \"pto\": null,\n                    \"engine\": null,\n                    \"breakdown\": null,\n                    \"fuel_level_table\": 0,\n                    \"driver\": null,\n                    \"flespi_cnt\": null,\n                    \"brand\": null,\n                    \"model\": null,\n                    \"year\": null,\n                    \"cost_idle\": null,\n                    \"deleted\": null,\n                    \"dev_storage\": null,\n                    \"deactivated\": false,\n                    \"plate\": \"MERC-8080\",\n                    \"id_flespi\": null,\n                    \"capacity_2\": null,\n                    \"capacity_3\": null,\n                    \"capacity_4\": null,\n                    \"capacity_5\": null,\n                    \"capacity_6\": null,\n                    \"n_engines\": null,\n                    \"max_capacity\": null,\n                    \"max_volume\": null,\n                    \"base_odometer\": 0,\n                    \"base_engine_hours\": 0,\n                    \"base_distance\": 0,\n                    \"unoperational\": false,\n                    \"tms_available\": true,\n                    \"start_maint\": null,\n                    \"end_maint\": null,\n                    \"descr_maint\": null,\n                    \"fuel_consumption_distance\": 2.5,\n                    \"fuel_consumption_time\": 6,\n                    \"allocated_plant\": null,\n                    \"is_third_party\": false,\n                    \"is_device_redirect\": false,\n                    \"company\": 511,\n                    \"type\": 0,\n                    \"category\": null,\n                    \"fuel_type\": null,\n                    \"carrier\": null,\n                    \"last_driver\": 100186,\n                    \"geofence_last_trip\": null\n                },\n                \"idgeofence\": {\n                    \"id\": 2248,\n                    \"idgeofence\": 0,\n                    \"name\": \"ALA 1 - São Marino\",\n                    \"description\": null,\n                    \"lat\": -23.6919,\n                    \"lng\": -46.9062,\n                    \"poly_points\": 6,\n                    \"cod_planta\": \"DIST01\",\n                    \"id_device\": null,\n                    \"disabled\": false,\n                    \"pump_plant\": false,\n                    \"batch_integration_host\": null,\n                    \"batch_integration_port\": null,\n                    \"default_load_time\": 45,\n                    \"default_unload_time\": 30,\n                    \"default_go_time\": null,\n                    \"default_back_time\": null,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 511,\n                    \"type\": 0,\n                    \"business\": 1,\n                    \"batch_integration\": null\n                },\n                \"order\": {\n                    \"id\": 1168545,\n                    \"order_date\": \"2024-01-16T11:46:08-03:00\",\n                    \"delivery_date\": \"2024-01-16T08:44:00-03:00\",\n                    \"city\": null,\n                    \"zip\": null,\n                    \"po\": null,\n                    \"job\": null,\n                    \"notes\": null,\n                    \"tms_sync\": null,\n                    \"display_price\": true,\n                    \"order_number\": \"3\",\n                    \"erpkey\": null,\n                    \"planned\": true,\n                    \"max_trip_quantity\": 8,\n                    \"first_arrival_at\": \"2024-01-16T08:44:00-03:00\",\n                    \"truck_interval\": null,\n                    \"load_time\": null,\n                    \"go_time\": null,\n                    \"unload_time\": null,\n                    \"back_time\": null,\n                    \"plan_notes\": null,\n                    \"auto_created\": true,\n                    \"cancelled\": false,\n                    \"total_price\": 15000,\n                    \"debtor_code\": null,\n                    \"vat_code\": null,\n                    \"haulage_depot_code\": null,\n                    \"haulage_zone_code\": null,\n                    \"sales_account_code\": null,\n                    \"location\": null,\n                    \"hzcs_name\": null,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"custom_3\": null,\n                    \"custom_4\": null,\n                    \"custom_5\": null,\n                    \"custom_6\": null,\n                    \"custom_7\": null,\n                    \"custom_8\": null,\n                    \"custom_9\": null,\n                    \"custom_10\": null,\n                    \"is_b_side\": false,\n                    \"po_product_value\": false,\n                    \"updated_at\": \"2024-01-16T11:46:08-03:00\",\n                    \"valid_through\": null,\n                    \"annulled\": false,\n                    \"company\": 511,\n                    \"geofence\": 2248,\n                    \"client\": 352166,\n                    \"project\": 547510167,\n                    \"project_old\": null,\n                    \"usage\": null,\n                    \"status\": 1293,\n                    \"order_type\": 1,\n                    \"tms_address\": 568739,\n                    \"tax\": null,\n                    \"seller\": 82942,\n                    \"payment_method\": null,\n                    \"sale_type\": 1,\n                    \"project_b\": null,\n                    \"price_table\": null,\n                    \"products\": [\n                        73142\n                    ]\n                },\n                \"project\": {\n                    \"id\": 547510167,\n                    \"client\": {\n                        \"id\": 352166,\n                        \"name\": \"José Alameda\",\n                        \"email\": \"jose@gmail\",\n                        \"country_code\": \"+55\",\n                        \"phone\": \"1152566221\",\n                        \"erpkey\": \"CL 02\",\n                        \"address\": null,\n                        \"notes\": null,\n                        \"conversation_sid\": null,\n                        \"document\": null,\n                        \"document2\": null,\n                        \"document3\": null,\n                        \"document4\": null,\n                        \"person_type\": null,\n                        \"legal_name\": null,\n                        \"inactive\": false,\n                        \"is_system\": false,\n                        \"credit_limit\": null,\n                        \"is_b_side\": false,\n                        \"company\": 511,\n                        \"legal_address\": null\n                    },\n                    \"address\": {\n                        \"id\": 568739,\n                        \"address_erpkey\": \"End 02\",\n                        \"address_street\": \"Av Lázaro Queiroz\",\n                        \"address_full\": \"Av Lázaro Queiroz , 120, Sede , Itapevi, São Paulo\",\n                        \"notes\": null,\n                        \"lat\": -23.5526920604659,\n                        \"lng\": -46.9398593902588,\n                        \"address_number\": \"120\",\n                        \"address_district\": \"Sede\",\n                        \"state\": \"São Paulo\",\n                        \"address_complement\": null,\n                        \"postal_code\": null,\n                        \"auto_location\": false,\n                        \"timezone\": null,\n                        \"is_billing\": false,\n                        \"is_legal\": false,\n                        \"erpkey_2\": null,\n                        \"city_name\": \"Itapevi\",\n                        \"read_only\": false,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"company\": 511,\n                        \"plan_customer\": 352166,\n                        \"person\": null,\n                        \"region\": null,\n                        \"city\": null,\n                        \"proposal\": null\n                    },\n                    \"code\": \"CONT 02\",\n                    \"sellercode\": null,\n                    \"pincode\": null,\n                    \"name\": \"Construção  do seu josé\",\n                    \"client_address\": \"Av Lázaro Queiroz , 120, Sede , Itapevi, São Paulo\",\n                    \"email\": null,\n                    \"geofence\": null,\n                    \"polyg\": null,\n                    \"lat\": null,\n                    \"lng\": null,\n                    \"dtstart\": null,\n                    \"dtend\": null,\n                    \"active\": null,\n                    \"freight\": null,\n                    \"sug_distance\": null,\n                    \"sug_time\": null,\n                    \"sug_time_load\": null,\n                    \"sug_time_unload\": null,\n                    \"sug_time_learned\": null,\n                    \"detached\": false,\n                    \"old_id\": null,\n                    \"customer_key\": \"365898525\",\n                    \"notes\": null,\n                    \"start_date\": \"2024-01-16\",\n                    \"end_date\": \"2024-01-16\",\n                    \"has_max_quantity\": false,\n                    \"has_extra_quantity\": false,\n                    \"estimated_volume\": 8,\n                    \"credit_limit\": null,\n                    \"credit_ordered\": 22500,\n                    \"credit_delivered\": 7500,\n                    \"credit_balance\": null,\n                    \"is_system\": false,\n                    \"inactive\": false,\n                    \"all_plants\": true,\n                    \"is_b_side\": false,\n                    \"version\": 4,\n                    \"spent_total_value\": 7500,\n                    \"display_price\": true,\n                    \"created_at\": \"2024-01-16T10:56:11-03:00\",\n                    \"updated_at\": \"2024-01-16T12:05:45-03:00\",\n                    \"po_required\": false,\n                    \"pre_client_name\": null,\n                    \"pre_address\": null,\n                    \"is_takeout\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"custom_3\": null,\n                    \"custom_4\": null,\n                    \"custom_5\": null,\n                    \"custom_6\": null,\n                    \"archived\": false,\n                    \"lost\": false,\n                    \"company\": 511,\n                    \"region\": null,\n                    \"cluster\": null,\n                    \"seller\": 82942,\n                    \"status\": 1295,\n                    \"fav_plant\": 2248,\n                    \"executant\": 352166,\n                    \"billing_address\": 568739,\n                    \"payment_method\": 118,\n                    \"payment_condition\": 2854,\n                    \"situation\": 2,\n                    \"price_table\": null,\n                    \"billing_method\": null,\n                    \"invoicing_address\": 568739,\n                    \"plant_fat\": null,\n                    \"sale_step\": null\n                },\n                \"product\": {\n                    \"id\": 73142,\n                    \"code\": \"CONQ 01\",\n                    \"name\": \"Concreto Premium\",\n                    \"description\": \"O melhor concreto do mercado\",\n                    \"list_price\": 1500,\n                    \"list_slump\": null,\n                    \"list_slump2\": null,\n                    \"fck\": null,\n                    \"coarse_agg\": null,\n                    \"color\": \"#DCDCDC\",\n                    \"removed\": false,\n                    \"removed_at\": null,\n                    \"dim_volume\": 0,\n                    \"dim_mass\": 1,\n                    \"min_quantity\": null,\n                    \"project_required\": false,\n                    \"project_suggestion\": false,\n                    \"default_value\": null,\n                    \"value_type\": null,\n                    \"value_per_unit\": false,\n                    \"comparison_value\": null,\n                    \"comparison_operator\": null,\n                    \"comparison_operator_value\": null,\n                    \"comparison_operator2\": null,\n                    \"comparison_operator_value2\": null,\n                    \"week_days\": null,\n                    \"all_plants\": true,\n                    \"recipe_code\": null,\n                    \"custom_1\": null,\n                    \"related_to\": null,\n                    \"statistical_control\": true,\n                    \"company\": 511,\n                    \"product_type\": 1,\n                    \"delivery_type\": null,\n                    \"removed_by\": null,\n                    \"uom\": null,\n                    \"raw_material_type\": null,\n                    \"pump_min_tax\": null\n                },\n                \"driver\": {\n                    \"id\": 100186,\n                    \"codmotorista\": \"MOT03\",\n                    \"nome\": \"Alfredo Dias\",\n                    \"token\": null,\n                    \"password\": null,\n                    \"phone\": \"19 8080 7070\",\n                    \"last_login\": null,\n                    \"firebase_uid\": \"76yZg3ZmDxaIFG7q2XRhAq3G0bE2\",\n                    \"username\": null,\n                    \"driver_key\": 199365091,\n                    \"firebase_code\": \"199365091\",\n                    \"firebase_email\": \"100186@readymix.io\",\n                    \"push_id_rm_app\": null,\n                    \"document\": \"Documento Do Motorista\",\n                    \"address_full\": \"Rua Da casa do Motorista\",\n                    \"removed\": false,\n                    \"removed_at\": null,\n                    \"empresa\": 511,\n                    \"carrier\": null,\n                    \"removed_by\": null\n                },\n                \"recz5\": null,\n                \"DELIVERYCODE\": \"DIST01-1\",\n                \"INVOICE\": null,\n                \"PROJECTCODE\": \"CONT 02\",\n                \"PLANTCODE\": \"DIST01\",\n                \"TRUCKCODE\": \"CAM 02\",\n                \"codcliente\": null,\n                \"PROJECTNAME\": \"Construção  do seu josé\",\n                \"DELIVERYADDRESS\": \"Av Lázaro Queiroz , 120, Sede , Itapevi, São Paulo\",\n                \"PRODUCTCODE\": \"CONQ 01\",\n                \"PRODUCTNAME\": \"Concreto Premium\",\n                \"VOLUME\": 5,\n                \"production_volume\": 5,\n                \"moldagem\": null,\n                \"processadocli\": null,\n                \"is_loaded\": false,\n                \"EDITED\": null,\n                \"SELLERCODE\": null,\n                \"SELLERNAME\": null,\n                \"DRIVERCODE\": \"MOT03\",\n                \"DRIVERNAME\": \"Alfredo Dias\",\n                \"LOADINGPOINT\": \"SILO01\",\n                \"criado_em\": \"2024-01-16T11:55:53-03:00\",\n                \"manual_finish\": false,\n                \"TICKET\": \"2024-01-16T11:55:53-03:00\",\n                \"STATUS\": null,\n                \"LAT\": null,\n                \"LNG\": null,\n                \"RAD\": null,\n                \"ENDLOAD\": null,\n                \"BOOKCODE\": null,\n                \"DELIVERY_NUMBER\": 1,\n                \"structure_type\": null,\n                \"pump_type\": null,\n                \"lacre\": \"\",\n                \"from_planning\": true,\n                \"added_water\": null,\n                \"slump\": null,\n                \"notes\": null,\n                \"signing\": null,\n                \"token\": \"ztDlGAZeTjqP\",\n                \"audited\": false,\n                \"last_updated\": \"2024-01-16T11:55:53-03:00\",\n                \"splitted\": 1,\n                \"sync_value\": null,\n                \"batch_status\": null,\n                \"send_to_batch\": true,\n                \"custom_1\": null,\n                \"mcc_unit_formula\": null,\n                \"mcc_total_formula\": null,\n                \"mcc_unit_weight\": null,\n                \"mcc_total_weight\": null,\n                \"IDEMPRESA\": 511,\n                \"idviagem\": null,\n                \"created_by\": 3751,\n                \"id_loadingpoint\": 878,\n                \"formula\": null,\n                \"reused_delivery\": null,\n                \"reused_custom_formula\": null\n            },\n            \"client\": {\n                \"id\": 352166,\n                \"name\": \"José Alameda\",\n                \"email\": \"jose@gmail\",\n                \"country_code\": \"+55\",\n                \"phone\": \"1152566221\",\n                \"erpkey\": \"CL 02\",\n                \"address\": null,\n                \"notes\": null,\n                \"conversation_sid\": null,\n                \"document\": null,\n                \"document2\": null,\n                \"document3\": null,\n                \"document4\": null,\n                \"person_type\": null,\n                \"legal_name\": null,\n                \"inactive\": false,\n                \"is_system\": false,\n                \"credit_limit\": null,\n                \"is_b_side\": false,\n                \"company\": 511,\n                \"legal_address\": null\n            },\n            \"address\": {\n                \"id\": 568739,\n                \"address_erpkey\": \"End 02\",\n                \"address_street\": \"Av Lázaro Queiroz\",\n                \"address_full\": \"Av Lázaro Queiroz , 120, Sede , Itapevi, São Paulo\",\n                \"notes\": null,\n                \"lat\": -23.5526920604659,\n                \"lng\": -46.9398593902588,\n                \"address_number\": \"120\",\n                \"address_district\": \"Sede\",\n                \"state\": \"São Paulo\",\n                \"address_complement\": null,\n                \"postal_code\": null,\n                \"auto_location\": false,\n                \"timezone\": null,\n                \"is_billing\": false,\n                \"is_legal\": false,\n                \"erpkey_2\": null,\n                \"city_name\": \"Itapevi\",\n                \"read_only\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 511,\n                \"plan_customer\": 352166,\n                \"person\": null,\n                \"region\": null,\n                \"city\": null,\n                \"proposal\": null\n            },\n            \"geofence\": {\n                \"id\": 2248,\n                \"idgeofence\": 0,\n                \"name\": \"ALA 1 - São Marino\",\n                \"description\": null,\n                \"lat\": -23.6919,\n                \"lng\": -46.9062,\n                \"poly_points\": 6,\n                \"cod_planta\": \"DIST01\",\n                \"id_device\": null,\n                \"disabled\": false,\n                \"pump_plant\": false,\n                \"batch_integration_host\": null,\n                \"batch_integration_port\": null,\n                \"default_load_time\": 45,\n                \"default_unload_time\": 30,\n                \"default_go_time\": null,\n                \"default_back_time\": null,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"company\": 511,\n                \"type\": 0,\n                \"business\": 1,\n                \"batch_integration\": null\n            },\n            \"project\": {\n                \"id\": 547510167,\n                \"client\": {\n                    \"id\": 352166,\n                    \"name\": \"José Alameda\",\n                    \"email\": \"jose@gmail\",\n                    \"country_code\": \"+55\",\n                    \"phone\": \"1152566221\",\n                    \"erpkey\": \"CL 02\",\n                    \"address\": null,\n                    \"notes\": null,\n                    \"conversation_sid\": null,\n                    \"document\": null,\n                    \"document2\": null,\n                    \"document3\": null,\n                    \"document4\": null,\n                    \"person_type\": null,\n                    \"legal_name\": null,\n                    \"inactive\": false,\n                    \"is_system\": false,\n                    \"credit_limit\": null,\n                    \"is_b_side\": false,\n                    \"company\": 511,\n                    \"legal_address\": null\n                },\n                \"address\": {\n                    \"id\": 568739,\n                    \"address_erpkey\": \"End 02\",\n                    \"address_street\": \"Av Lázaro Queiroz\",\n                    \"address_full\": \"Av Lázaro Queiroz , 120, Sede , Itapevi, São Paulo\",\n                    \"notes\": null,\n                    \"lat\": -23.5526920604659,\n                    \"lng\": -46.9398593902588,\n                    \"address_number\": \"120\",\n                    \"address_district\": \"Sede\",\n                    \"state\": \"São Paulo\",\n                    \"address_complement\": null,\n                    \"postal_code\": null,\n                    \"auto_location\": false,\n                    \"timezone\": null,\n                    \"is_billing\": false,\n                    \"is_legal\": false,\n                    \"erpkey_2\": null,\n                    \"city_name\": \"Itapevi\",\n                    \"read_only\": false,\n                    \"custom_1\": null,\n                    \"custom_2\": null,\n                    \"company\": 511,\n                    \"plan_customer\": 352166,\n                    \"person\": null,\n                    \"region\": null,\n                    \"city\": null,\n                    \"proposal\": null\n                },\n                \"code\": \"CONT 02\",\n                \"sellercode\": null,\n                \"pincode\": null,\n                \"name\": \"Construção  do seu josé\",\n                \"client_address\": \"Av Lázaro Queiroz , 120, Sede , Itapevi, São Paulo\",\n                \"email\": null,\n                \"geofence\": null,\n                \"polyg\": null,\n                \"lat\": null,\n                \"lng\": null,\n                \"dtstart\": null,\n                \"dtend\": null,\n                \"active\": null,\n                \"freight\": null,\n                \"sug_distance\": null,\n                \"sug_time\": null,\n                \"sug_time_load\": null,\n                \"sug_time_unload\": null,\n                \"sug_time_learned\": null,\n                \"detached\": false,\n                \"old_id\": null,\n                \"customer_key\": \"365898525\",\n                \"notes\": null,\n                \"start_date\": \"2024-01-16\",\n                \"end_date\": \"2024-01-16\",\n                \"has_max_quantity\": false,\n                \"has_extra_quantity\": false,\n                \"estimated_volume\": 8,\n                \"credit_limit\": null,\n                \"credit_ordered\": 22500,\n                \"credit_delivered\": 7500,\n                \"credit_balance\": null,\n                \"is_system\": false,\n                \"inactive\": false,\n                \"all_plants\": true,\n                \"is_b_side\": false,\n                \"version\": 4,\n                \"spent_total_value\": 7500,\n                \"display_price\": true,\n                \"created_at\": \"2024-01-16T10:56:11-03:00\",\n                \"updated_at\": \"2024-01-16T12:05:45-03:00\",\n                \"po_required\": false,\n                \"pre_client_name\": null,\n                \"pre_address\": null,\n                \"is_takeout\": false,\n                \"custom_1\": null,\n                \"custom_2\": null,\n                \"custom_3\": null,\n                \"custom_4\": null,\n                \"custom_5\": null,\n                \"custom_6\": null,\n                \"archived\": false,\n                \"lost\": false,\n                \"company\": 511,\n                \"region\": null,\n                \"cluster\": null,\n                \"seller\": 82942,\n                \"status\": 1295,\n                \"fav_plant\": 2248,\n                \"executant\": 352166,\n                \"billing_address\": 568739,\n                \"payment_method\": 118,\n                \"payment_condition\": 2854,\n                \"situation\": 2,\n                \"price_table\": null,\n                \"billing_method\": null,\n                \"invoicing_address\": 568739,\n                \"plant_fat\": null,\n                \"sale_step\": null\n            },\n            \"code\": \"DIST01-1\",\n            \"serie\": null,\n            \"dn_number\": null,\n            \"sync_value\": null,\n            \"total_price\": 7500,\n            \"total_extended_price\": 7500,\n            \"total_tax_price\": 0,\n            \"arrival\": null,\n            \"end\": null,\n            \"date\": \"2024-01-16\",\n            \"updated_at\": \"2024-01-16T11:58:51-03:00\",\n            \"manual_created\": false,\n            \"inactive\": false,\n            \"is_b_side\": false,\n            \"can_delete\": false,\n            \"company\": 511,\n            \"type\": 1,\n            \"ticket\": null,\n            \"plan_allocation\": null\n        }\n    ],\n    \"extra_data\": null,\n    \"message\": \"\",\n    \"translate\": true,\n    \"warning\": false\n}"}],"_postman_id":"1a5d2f1d-af8f-433b-9e54-f6bc8aef76d9"},{"name":"List Delivery Notes V2","id":"94ff97fe-ce45-4a9b-903c-43c3e6dda878","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":"https://integration.loop4.io/api/company/delivery-notes?date_start=2025-11-01&date_end=2025-11-01&updated_at_gt=2025-11-01 10:00:00","urlObject":{"path":["api","company","delivery-notes"],"host":["https://integration.loop4.io"],"query":[{"key":"date_start","value":"2025-11-01"},{"key":"date_end","value":"2025-11-01"},{"key":"updated_at_gt","value":"2025-11-01 10:00:00"}],"variable":[]}},"response":[{"id":"8adb4d15-191c-4859-aa61-4c426975b523","name":"List Delivery Notes V2","originalRequest":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":{"raw":"https://integration.loop4.io/api/company/delivery-notes?updated_at_gt=2025-10-27 10:50:00","host":["https://integration.loop4.io"],"path":["api","company","delivery-notes"],"query":[{"key":"date_start","value":"2025-11-01","disabled":true},{"key":"date_end","value":"2025-11-01","disabled":true},{"key":"updated_at_gt","value":"2025-10-27 10:50:00"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"created_at\": \"2025-10-27 10:56:11\",\n            \"updated_at\": \"2025-10-27 11:48:49\",\n            \"delivery_start_at\": \"2025-10-27 10:56:00\",\n            \"delivery_code\": \"01-100755\",\n            \"delivery_product_code\": \"2500\",\n            \"delivery_product_name\": \"2500 PSI CONCRETE (REG)\",\n            \"delivery_volume\": 8.0,\n            \"delivery_concrete_volume\": 8.0,\n            \"plant_code\": \"01\",\n            \"plant_name\": \"Plant 01\",\n            \"order_number\": \"1811\",\n            \"order_code\": null,\n            \"customer_code\": \"C01\",\n            \"project_code\": \"PTA1\",\n            \"address_full\": \"Rua Benedito de Barros Silveira, Condomínio Fechado Piccolo Paese, Salto, São Paulo, 13327-893\",\n            \"dn_code\": \"01-100755\",\n            \"dn_serie\": \"111\",\n            \"dn_number\": \"00000910\",\n            \"dn_serie_number\": \"111-00000910\",\n            \"dn_concrete_volume\": 8.0,\n            \"total_price\": 198.0,\n            \"total_tax_price\": 0.0,\n            \"total_extended_price\": 198.0,\n            \"dn_date\": \"2025-10-27\",\n            \"dn_job_start\": null,\n            \"dn_job_end\": null,\n            \"dn_classification\": \"Primary\",\n            \"items\": [\n                {\n                    \"status\": \"Pending\",\n                    \"product_code\": \"2500\",\n                    \"product_name\": \"2500 PSI CONCRETE (REG)\",\n                    \"uom_code\": \"MLT\",\n                    \"uom_name\": \"MLT\",\n                    \"quantity\": 8.0,\n                    \"price\": 10.0,\n                    \"total_price\": 80.0,\n                    \"extended_price\": 80.0,\n                    \"total_tax_price\": 0.0,\n                    \"order_number\": \"1811\",\n                    \"order_code\": null,\n                    \"purchase_order_number\": null,\n                    \"purchase_order_code\": null,\n                    \"vehicle_code\": \"M033\",\n                    \"vehicle_name\": \"Mixer 03\",\n                    \"driver_code\": \"D011\",\n                    \"driver_name\": \"Driver P Mike\",\n                    \"assistant1_code\": null,\n                    \"assistant1_name\": null,\n                    \"assistant2_code\": null,\n                    \"assistant2_name\": null,\n                    \"assistant3_code\": null,\n                    \"assistant3_name\": null\n                },\n                {\n                    \"status\": \"Invoiced\",\n                    \"product_code\": \"22221\",\n                    \"product_name\": \"22\",\n                    \"uom_code\": \"UN\",\n                    \"uom_name\": \"UN\",\n                    \"quantity\": 12.0,\n                    \"price\": 1.0,\n                    \"total_price\": 12.0,\n                    \"extended_price\": 12.0,\n                    \"total_tax_price\": 0.0,\n                    \"order_number\": null,\n                    \"order_code\": null,\n                    \"purchase_order_number\": null,\n                    \"purchase_order_code\": null,\n                    \"vehicle_code\": \"344343\",\n                    \"vehicle_name\": \"3434343\",\n                    \"driver_code\": null,\n                    \"driver_name\": null,\n                    \"assistant1_code\": null,\n                    \"assistant1_name\": null,\n                    \"assistant2_code\": null,\n                    \"assistant2_name\": null,\n                    \"assistant3_code\": null,\n                    \"assistant3_name\": null\n                },\n                {\n                    \"status\": \"Confirmed\",\n                    \"product_code\": \"OPS001\",\n                    \"product_name\": \"Aditivo\",\n                    \"uom_code\": \"LTR\",\n                    \"uom_name\": \"LTR\",\n                    \"quantity\": 1.0,\n                    \"price\": 100.0,\n                    \"total_price\": 100.0,\n                    \"extended_price\": 100.0,\n                    \"total_tax_price\": 0.0,\n                    \"order_number\": null,\n                    \"order_code\": null,\n                    \"purchase_order_number\": null,\n                    \"purchase_order_code\": null,\n                    \"vehicle_code\": null,\n                    \"vehicle_name\": null,\n                    \"driver_code\": null,\n                    \"driver_name\": null,\n                    \"assistant1_code\": null,\n                    \"assistant1_name\": null,\n                    \"assistant2_code\": null,\n                    \"assistant2_name\": null,\n                    \"assistant3_code\": null,\n                    \"assistant3_name\": null\n                },\n                {\n                    \"status\": \"Pending\",\n                    \"product_code\": \"02\",\n                    \"product_name\": \"BETOTBOMBA PQ OBRAS\",\n                    \"uom_code\": \"M3\",\n                    \"uom_name\": \"M3\",\n                    \"quantity\": 1.0,\n                    \"price\": 6.0,\n                    \"total_price\": 6.0,\n                    \"extended_price\": 6.0,\n                    \"total_tax_price\": 0.0,\n                    \"order_number\": null,\n                    \"order_code\": null,\n                    \"purchase_order_number\": null,\n                    \"purchase_order_code\": null,\n                    \"vehicle_code\": null,\n                    \"vehicle_name\": null,\n                    \"driver_code\": null,\n                    \"driver_name\": null,\n                    \"assistant1_code\": null,\n                    \"assistant1_name\": null,\n                    \"assistant2_code\": null,\n                    \"assistant2_name\": null,\n                    \"assistant3_code\": \"5\",\n                    \"assistant3_name\": \"AMARFIL, LUIS ALBERTO\"\n                }\n            ],\n            \"delivery_formula\": null,\n            \"loaded_materials\": []\n        }\n    ],\n    \"message\": \"\"\n}"}],"_postman_id":"94ff97fe-ce45-4a9b-903c-43c3e6dda878"},{"name":"List PDF Delivery Note","event":[{"listen":"test","script":{"id":"f3d4c828-1924-4a0f-af75-b8415191d24d","exec":[""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"c4784274-0af9-48c9-a9ac-6f8a1f0aefb6","exec":[""],"type":"text/javascript","packages":{}}}],"id":"49930fd5-fe19-4078-b217-b2b1fed76690","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":"https://integration.loop4.io/api/delivery-note/26245047/pdf","description":"<h3 id=\"list-pdf-delivery-note\">List PDF Delivery Note</h3>\n<p>Retrieves a list PDF of delivery note.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<p><em>Note</em>: In this endpoint, the number <strong>26245047</strong> represents the ID of the delivery note.</p>\n<p>This endpoint retrieves the PDF for a specific delivery note.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>This request does not require a request body.</p>\n<h4 id=\"response\">Response</h4>\n<p>Upon a successful request, the response will contain the PDF file for the specified delivery note.</p>\n","urlObject":{"path":["api","delivery-note","26245047","pdf"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"49930fd5-fe19-4078-b217-b2b1fed76690"},{"name":"Send PDF Delivery Notes","id":"7a82167e-9f19-446b-96ed-068ab57fae78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"delivery_note_code\": \"01-4\",\n        \"delivery_note_sync_value\": \"AT0001\",\n        \"delivery_note_pdf_base64\": \"JVBERi0xLjcKJcfsj6IKNSAwIG9iago8PC9MZW5ndGggNiAwIFIvRmlsdGVyIC9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nLVWTY8cRQxVshA2k1G+NgkQLnWjO9JUyna5qnxFcEFciEbiEDhFgIS0Qbv//8Bzz3RPzX4ERVG0l2qXy35+z/bORUgxt5D8bz68O19N3+Hy79XFimNqIjIZ+vO78/DDdvX6TQ3EYfvXKkUzyzTdUZASWmI3he35argzbv+ZfLlGKwd3tr0\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/delivery-note-pdf","urlObject":{"path":["api","sync","delivery-note-pdf"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"7a82167e-9f19-446b-96ed-068ab57fae78"}],"id":"ae95b071-f860-47e4-97f5-d97803cadc53","_postman_id":"ae95b071-f860-47e4-97f5-d97803cadc53","description":""},{"name":"Formula Tables","item":[{"name":"List Formulas Tables","id":"22181ac3-4344-4c4d-8683-26bc98b6171d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}"}],"url":"https://integration.loop4.io/api/sync/formula-tables?updated_at_gt=2024-01-01 00:00:00","description":"<p>Used to list all formula tables and their respective formulas.</p>\n","urlObject":{"path":["api","sync","formula-tables"],"host":["https://integration.loop4.io"],"query":[{"key":"updated_at_gt","value":"2024-01-01 00:00:00"}],"variable":[]}},"response":[{"id":"d0f280c9-1bac-4b86-9e1a-2ee7527e95de","name":"Listed Formulas Table","originalRequest":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}"}],"url":"{{syncapi_endpoint}}/api/sync/formula-tables"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 31 May 2024 19:54:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"255238"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 1297,\n            \"formulas\": [\n                {\n                    \"id\": 256267,\n                    \"product\": {\n                        \"id\": 66827,\n                        \"code\": \"2500\",\n                        \"erpid\": null,\n                        \"name\": \"2500 PSI CONCRETE (REG)\",\n                        \"description\": \"Optional product description\",\n                        \"list_price\": 20,\n                        \"slump_class\": null,\n                        \"list_slump\": 111,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 3,\n                        \"coarse_agg\": \"4\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": true,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 126,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1822667,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 100,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-27T18:14:10-03:00\",\n                            \"updated_at\": \"2024-02-27T18:14:10-03:00\",\n                            \"formula\": 256267\n                        },\n                        {\n                            \"id\": 1822668,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 100,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-27T18:14:10-03:00\",\n                            \"updated_at\": \"2024-02-27T18:14:10-03:00\",\n                            \"formula\": 256267\n                        },\n                        {\n                            \"id\": 1822669,\n                            \"raw_material\": {\n                                \"id\": 26983,\n                                \"code\": \"RMS01\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 100,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-27T18:14:10-03:00\",\n                            \"updated_at\": \"2024-02-27T18:14:10-03:00\",\n                            \"formula\": 256267\n                        },\n                        {\n                            \"id\": 1822670,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 100,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-27T18:14:11-03:00\",\n                            \"updated_at\": \"2024-02-27T18:14:11-03:00\",\n                            \"formula\": 256267\n                        },\n                        {\n                            \"id\": 1822671,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 100,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-27T18:14:11-03:00\",\n                            \"updated_at\": \"2024-02-27T18:14:11-03:00\",\n                            \"formula\": 256267\n                        },\n                        {\n                            \"id\": 1822672,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 10,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-27T18:14:11-03:00\",\n                            \"updated_at\": \"2024-02-27T18:14:11-03:00\",\n                            \"formula\": 256267\n                        }\n                    ],\n                    \"description\": \"2500 PSI con B01 100\",\n                    \"code\": \"F05_B01_100\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2024-02-27T18:14:09-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1297,\n                    \"user\": null\n                },\n                {\n                    \"id\": 256268,\n                    \"product\": {\n                        \"id\": 66827,\n                        \"code\": \"2500\",\n                        \"erpid\": null,\n                        \"name\": \"2500 PSI CONCRETE (REG)\",\n                        \"description\": \"Optional product description\",\n                        \"list_price\": 20,\n                        \"slump_class\": null,\n                        \"list_slump\": 111,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 3,\n                        \"coarse_agg\": \"4\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": true,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 126,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1822673,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-27T18:14:12-03:00\",\n                            \"updated_at\": \"2024-02-27T18:14:12-03:00\",\n                            \"formula\": 256268\n                        },\n                        {\n                            \"id\": 1822674,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-27T18:14:13-03:00\",\n                            \"updated_at\": \"2024-02-27T18:14:13-03:00\",\n                            \"formula\": 256268\n                        },\n                        {\n                            \"id\": 1822675,\n                            \"raw_material\": {\n                                \"id\": 26983,\n                                \"code\": \"RMS01\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-27T18:14:13-03:00\",\n                            \"updated_at\": \"2024-02-27T18:14:13-03:00\",\n                            \"formula\": 256268\n                        },\n                        {\n                            \"id\": 1822676,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-27T18:14:13-03:00\",\n                            \"updated_at\": \"2024-02-27T18:14:13-03:00\",\n                            \"formula\": 256268\n                        },\n                        {\n                            \"id\": 1822677,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-27T18:14:14-03:00\",\n                            \"updated_at\": \"2024-02-27T18:14:14-03:00\",\n                            \"formula\": 256268\n                        },\n                        {\n                            \"id\": 1822678,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 10,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-27T18:14:14-03:00\",\n                            \"updated_at\": \"2024-02-27T18:14:14-03:00\",\n                            \"formula\": 256268\n                        }\n                    ],\n                    \"description\": \"2500 PSI con B01 500\",\n                    \"code\": \"F05_B01_500\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2024-02-27T18:14:12-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1297,\n                    \"user\": null\n                },\n                {\n                    \"id\": 256269,\n                    \"product\": {\n                        \"id\": 66827,\n                        \"code\": \"2500\",\n                        \"erpid\": null,\n                        \"name\": \"2500 PSI CONCRETE (REG)\",\n                        \"description\": \"Optional product description\",\n                        \"list_price\": 20,\n                        \"slump_class\": null,\n                        \"list_slump\": 111,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 3,\n                        \"coarse_agg\": \"4\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": true,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 126,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1822679,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-27T18:14:15-03:00\",\n                            \"updated_at\": \"2024-02-27T18:14:15-03:00\",\n                            \"formula\": 256269\n                        },\n                        {\n                            \"id\": 1822680,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-27T18:14:15-03:00\",\n                            \"updated_at\": \"2024-02-27T18:14:15-03:00\",\n                            \"formula\": 256269\n                        },\n                        {\n                            \"id\": 1822681,\n                            \"raw_material\": {\n                                \"id\": 26983,\n                                \"code\": \"RMS01\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-27T18:14:16-03:00\",\n                            \"updated_at\": \"2024-02-27T18:14:16-03:00\",\n                            \"formula\": 256269\n                        },\n                        {\n                            \"id\": 1822682,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-27T18:14:16-03:00\",\n                            \"updated_at\": \"2024-02-27T18:14:16-03:00\",\n                            \"formula\": 256269\n                        },\n                        {\n                            \"id\": 1822683,\n                            \"raw_material\": {\n                                \"id\": 72494,\n                                \"code\": \"RMB02\",\n                                \"erpid\": null,\n                                \"name\": \"Piedra Novala\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-27T18:14:16-03:00\",\n                            \"updated_at\": \"2024-02-27T18:14:16-03:00\",\n                            \"formula\": 256269\n                        }\n                    ],\n                    \"description\": \"2500 PSI con B02 500\",\n                    \"code\": \"F05_B02_500\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2024-02-27T18:14:15-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1297,\n                    \"user\": null\n                }\n            ],\n            \"code\": null,\n            \"description\": \"1\",\n            \"notes\": null,\n            \"file_name\": \"Formulastest.xlsx\",\n            \"created_at\": \"2024-02-27T18:14:09-03:00\",\n            \"updated_at\": \"2024-02-27T18:14:09-03:00\",\n            \"inactive\": false,\n            \"num_products\": 3,\n            \"company\": 434\n        },\n        {\n            \"id\": 1068,\n            \"formulas\": [\n                {\n                    \"id\": 214645,\n                    \"product\": {\n                        \"id\": 66827,\n                        \"code\": \"2500\",\n                        \"erpid\": null,\n                        \"name\": \"2500 PSI CONCRETE (REG)\",\n                        \"description\": \"Optional product description\",\n                        \"list_price\": 20,\n                        \"slump_class\": null,\n                        \"list_slump\": 111,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 3,\n                        \"coarse_agg\": \"4\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": true,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 126,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1533570,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 200,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-11-30T17:49:44-03:00\",\n                            \"updated_at\": \"2024-05-06T17:42:37-03:00\",\n                            \"formula\": 214645\n                        },\n                        {\n                            \"id\": 1533571,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 220,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-11-30T17:49:44-03:00\",\n                            \"updated_at\": \"2024-05-06T17:42:37-03:00\",\n                            \"formula\": 214645\n                        },\n                        {\n                            \"id\": 1533572,\n                            \"raw_material\": {\n                                \"id\": 26983,\n                                \"code\": \"RMS01\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 600,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-11-30T17:49:44-03:00\",\n                            \"updated_at\": \"2024-05-06T17:42:37-03:00\",\n                            \"formula\": 214645\n                        },\n                        {\n                            \"id\": 1533573,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 300,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-11-30T17:49:44-03:00\",\n                            \"updated_at\": \"2024-05-06T17:42:37-03:00\",\n                            \"formula\": 214645\n                        },\n                        {\n                            \"id\": 1533574,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 900,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-11-30T17:49:44-03:00\",\n                            \"updated_at\": \"2024-05-06T17:42:37-03:00\",\n                            \"formula\": 214645\n                        },\n                        {\n                            \"id\": 1533575,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 2,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-11-30T17:49:44-03:00\",\n                            \"updated_at\": \"2024-05-06T17:42:37-03:00\",\n                            \"formula\": 214645\n                        }\n                    ],\n                    \"description\": \"2500 PSI con B01\",\n                    \"code\": \"F05_B01\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-11-30T17:49:44-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1068,\n                    \"user\": null\n                },\n                {\n                    \"id\": 214646,\n                    \"product\": {\n                        \"id\": 66827,\n                        \"code\": \"2500\",\n                        \"erpid\": null,\n                        \"name\": \"2500 PSI CONCRETE (REG)\",\n                        \"description\": \"Optional product description\",\n                        \"list_price\": 20,\n                        \"slump_class\": null,\n                        \"list_slump\": 111,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 3,\n                        \"coarse_agg\": \"4\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": true,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 126,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1533576,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 200,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-11-30T17:49:44-03:00\",\n                            \"updated_at\": \"2023-11-30T17:49:44-03:00\",\n                            \"formula\": 214646\n                        },\n                        {\n                            \"id\": 1533577,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 210,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-11-30T17:49:44-03:00\",\n                            \"updated_at\": \"2023-11-30T17:49:44-03:00\",\n                            \"formula\": 214646\n                        },\n                        {\n                            \"id\": 1533578,\n                            \"raw_material\": {\n                                \"id\": 26983,\n                                \"code\": \"RMS01\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 700,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-11-30T17:49:44-03:00\",\n                            \"updated_at\": \"2023-11-30T17:49:44-03:00\",\n                            \"formula\": 214646\n                        },\n                        {\n                            \"id\": 1533579,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 300,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-11-30T17:49:44-03:00\",\n                            \"updated_at\": \"2023-11-30T17:49:44-03:00\",\n                            \"formula\": 214646\n                        },\n                        {\n                            \"id\": 1533580,\n                            \"raw_material\": {\n                                \"id\": 72494,\n                                \"code\": \"RMB02\",\n                                \"erpid\": null,\n                                \"name\": \"Piedra Novala\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 1000,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-11-30T17:49:44-03:00\",\n                            \"updated_at\": \"2023-11-30T17:49:44-03:00\",\n                            \"formula\": 214646\n                        },\n                        {\n                            \"id\": 1533581,\n                            \"raw_material\": {\n                                \"id\": 64698,\n                                \"code\": \"RMA02\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santo André\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 4,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-11-30T17:49:44-03:00\",\n                            \"updated_at\": \"2023-11-30T17:49:44-03:00\",\n                            \"formula\": 214646\n                        }\n                    ],\n                    \"description\": \"2500 PSI con B02\",\n                    \"code\": \"F05_B02\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-11-30T17:49:44-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1068,\n                    \"user\": null\n                },\n                {\n                    \"id\": 249342,\n                    \"product\": {\n                        \"id\": 66827,\n                        \"code\": \"2500\",\n                        \"erpid\": null,\n                        \"name\": \"2500 PSI CONCRETE (REG)\",\n                        \"description\": \"Optional product description\",\n                        \"list_price\": 20,\n                        \"slump_class\": null,\n                        \"list_slump\": 111,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 3,\n                        \"coarse_agg\": \"4\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": true,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 126,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1775814,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 12,\n                            \"unit_cost\": 22,\n                            \"created_at\": \"2024-02-19T15:11:44-03:00\",\n                            \"updated_at\": \"2024-02-19T15:11:44-03:00\",\n                            \"formula\": 249342\n                        }\n                    ],\n                    \"description\": \"2500 PSI CONCRETE (REG) xez\",\n                    \"code\": \"123\",\n                    \"total_cost\": 264,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2024-02-19T15:11:44-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1068,\n                    \"user\": 3163\n                },\n                {\n                    \"id\": 249343,\n                    \"product\": {\n                        \"id\": 25212,\n                        \"code\": \"P01\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete Product 1\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3,\n                        \"fck_class\": null,\n                        \"fck\": 15,\n                        \"coarse_agg\": \"PP20mm\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1775815,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 12,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-20T09:13:26-03:00\",\n                            \"updated_at\": \"2024-02-20T09:13:26-03:00\",\n                            \"formula\": 249343\n                        }\n                    ],\n                    \"description\": \"teste\",\n                    \"code\": \"teste\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2024-02-20T09:13:26-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1068,\n                    \"user\": 2902\n                },\n                {\n                    \"id\": 259645,\n                    \"product\": {\n                        \"id\": 72988,\n                        \"code\": \"3\",\n                        \"erpid\": null,\n                        \"name\": \"Concreto 100\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1843416,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"updated_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"formula\": 259645\n                        },\n                        {\n                            \"id\": 1843417,\n                            \"raw_material\": {\n                                \"id\": 64698,\n                                \"code\": \"RMA02\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santo André\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"updated_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"formula\": 259645\n                        },\n                        {\n                            \"id\": 1843418,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"updated_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"formula\": 259645\n                        },\n                        {\n                            \"id\": 1843419,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"updated_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"formula\": 259645\n                        },\n                        {\n                            \"id\": 1843420,\n                            \"raw_material\": {\n                                \"id\": 26982,\n                                \"code\": \"RMC02\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"updated_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"formula\": 259645\n                        },\n                        {\n                            \"id\": 1843421,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"updated_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"formula\": 259645\n                        },\n                        {\n                            \"id\": 1843422,\n                            \"raw_material\": {\n                                \"id\": 72494,\n                                \"code\": \"RMB02\",\n                                \"erpid\": null,\n                                \"name\": \"Piedra Novala\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"updated_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"formula\": 259645\n                        },\n                        {\n                            \"id\": 1843423,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"updated_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"formula\": 259645\n                        },\n                        {\n                            \"id\": 1843424,\n                            \"raw_material\": {\n                                \"id\": 65382,\n                                \"code\": \"RMS03\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Mix\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"updated_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"formula\": 259645\n                        },\n                        {\n                            \"id\": 1843425,\n                            \"raw_material\": {\n                                \"id\": 26983,\n                                \"code\": \"RMS01\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"updated_at\": \"2024-03-05T14:57:03-03:00\",\n                            \"formula\": 259645\n                        }\n                    ],\n                    \"description\": \"Formula Test 100\",\n                    \"code\": \"FP0100\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2024-03-05T14:57:03-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1068,\n                    \"user\": 267\n                },\n                {\n                    \"id\": 259683,\n                    \"product\": {\n                        \"id\": 84625,\n                        \"code\": \"N_P001\",\n                        \"erpid\": null,\n                        \"name\": \"New Product 01\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1843683,\n                            \"raw_material\": {\n                                \"id\": 84621,\n                                \"code\": \"N_RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"New Aditivo\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-03-06T09:14:09-03:00\",\n                            \"updated_at\": \"2024-03-06T09:14:09-03:00\",\n                            \"formula\": 259683\n                        }\n                    ],\n                    \"description\": \"New Formula 01\",\n                    \"code\": \"N_F001\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2024-03-06T09:14:09-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1068,\n                    \"user\": 267\n                },\n                {\n                    \"id\": 259684,\n                    \"product\": {\n                        \"id\": 84626,\n                        \"code\": \"N_P002\",\n                        \"erpid\": null,\n                        \"name\": \"New Product 02\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1843684,\n                            \"raw_material\": {\n                                \"id\": 84620,\n                                \"code\": \"N_RM000\",\n                                \"erpid\": null,\n                                \"name\": \"New Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 2,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-03-06T09:14:39-03:00\",\n                            \"updated_at\": \"2024-03-06T09:16:11-03:00\",\n                            \"formula\": 259684\n                        }\n                    ],\n                    \"description\": \"New Formula 02\",\n                    \"code\": \"N_F002\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2024-03-06T09:14:39-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1068,\n                    \"user\": 267\n                },\n                {\n                    \"id\": 259685,\n                    \"product\": {\n                        \"id\": 84627,\n                        \"code\": \"N_P003\",\n                        \"erpid\": null,\n                        \"name\": \"New Product 03\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1843685,\n                            \"raw_material\": {\n                                \"id\": 84624,\n                                \"code\": \"N_RMS01\",\n                                \"erpid\": null,\n                                \"name\": \"New Arena\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 3,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-03-06T09:16:03-03:00\",\n                            \"updated_at\": \"2024-03-06T09:16:08-03:00\",\n                            \"formula\": 259685\n                        }\n                    ],\n                    \"description\": \"New Formula 03\",\n                    \"code\": \"N_F003\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2024-03-06T09:16:03-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1068,\n                    \"user\": 267\n                },\n                {\n                    \"id\": 259686,\n                    \"product\": {\n                        \"id\": 84628,\n                        \"code\": \"N_P004\",\n                        \"erpid\": null,\n                        \"name\": \"New Product 04\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1843686,\n                            \"raw_material\": {\n                                \"id\": 84623,\n                                \"code\": \"N_RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"New Cemento\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 4,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-03-06T09:16:28-03:00\",\n                            \"updated_at\": \"2024-03-06T09:16:28-03:00\",\n                            \"formula\": 259686\n                        }\n                    ],\n                    \"description\": \"New Formula 04\",\n                    \"code\": \"N_F004\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2024-03-06T09:16:28-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1068,\n                    \"user\": 267\n                },\n                {\n                    \"id\": 259687,\n                    \"product\": {\n                        \"id\": 84629,\n                        \"code\": \"N_P005\",\n                        \"erpid\": null,\n                        \"name\": \"New Product 05\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1843687,\n                            \"raw_material\": {\n                                \"id\": 84622,\n                                \"code\": \"N_RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"New Piedra\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 5,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-03-06T09:16:48-03:00\",\n                            \"updated_at\": \"2024-03-06T09:16:48-03:00\",\n                            \"formula\": 259687\n                        }\n                    ],\n                    \"description\": \"New Formula 05\",\n                    \"code\": \"N_F005\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2024-03-06T09:16:48-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1068,\n                    \"user\": 267\n                },\n                {\n                    \"id\": 289352,\n                    \"product\": {\n                        \"id\": 66827,\n                        \"code\": \"2500\",\n                        \"erpid\": null,\n                        \"name\": \"2500 PSI CONCRETE (REG)\",\n                        \"description\": \"Optional product description\",\n                        \"list_price\": 20,\n                        \"slump_class\": null,\n                        \"list_slump\": 111,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 3,\n                        \"coarse_agg\": \"4\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": true,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 126,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 2053208,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 2,\n                            \"unit_cost\": 2,\n                            \"created_at\": \"2024-05-06T17:18:17-03:00\",\n                            \"updated_at\": \"2024-05-06T17:18:17-03:00\",\n                            \"formula\": 289352\n                        }\n                    ],\n                    \"description\": \"12\",\n                    \"code\": \"12\",\n                    \"total_cost\": 4,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2024-05-06T17:18:17-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1068,\n                    \"user\": 267\n                },\n                {\n                    \"id\": 289354,\n                    \"product\": {\n                        \"id\": 66827,\n                        \"code\": \"2500\",\n                        \"erpid\": null,\n                        \"name\": \"2500 PSI CONCRETE (REG)\",\n                        \"description\": \"Optional product description\",\n                        \"list_price\": 20,\n                        \"slump_class\": null,\n                        \"list_slump\": 111,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 3,\n                        \"coarse_agg\": \"4\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": true,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 126,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 2053210,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 1,\n                            \"created_at\": \"2024-05-06T18:04:42-03:00\",\n                            \"updated_at\": \"2024-05-06T18:04:42-03:00\",\n                            \"formula\": 289354\n                        }\n                    ],\n                    \"description\": \"2\",\n                    \"code\": \"12412412\",\n                    \"total_cost\": 1,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2024-05-06T18:04:42-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1068,\n                    \"user\": 267\n                },\n                {\n                    \"id\": 289880,\n                    \"product\": {\n                        \"id\": 65873,\n                        \"code\": \"12345678901234567890123456789012345678901234567890\",\n                        \"erpid\": null,\n                        \"name\": \"asaaa\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 2057229,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 12,\n                            \"unit_cost\": 1,\n                            \"created_at\": \"2024-05-06T18:08:17-03:00\",\n                            \"updated_at\": \"2024-05-06T18:08:17-03:00\",\n                            \"formula\": 289880\n                        }\n                    ],\n                    \"description\": \"123123123\",\n                    \"code\": \"123123\",\n                    \"total_cost\": 12,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2024-05-06T18:08:17-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1068,\n                    \"user\": 267\n                },\n                {\n                    \"id\": 289882,\n                    \"product\": {\n                        \"id\": 63807,\n                        \"code\": \"0001\",\n                        \"erpid\": null,\n                        \"name\": \"B-15-CPV-B10-S100-NORMAL\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 2057231,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 12,\n                            \"unit_cost\": 1,\n                            \"created_at\": \"2024-05-06T18:29:24-03:00\",\n                            \"updated_at\": \"2024-05-06T18:29:24-03:00\",\n                            \"formula\": 289882\n                        }\n                    ],\n                    \"description\": \"\",\n                    \"code\": \"0001\",\n                    \"total_cost\": 12,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2024-05-06T18:29:23-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1068,\n                    \"user\": 267\n                },\n                {\n                    \"id\": 289883,\n                    \"product\": {\n                        \"id\": 65873,\n                        \"code\": \"12345678901234567890123456789012345678901234567890\",\n                        \"erpid\": null,\n                        \"name\": \"asaaa\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 2057232,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 123,\n                            \"unit_cost\": 1,\n                            \"created_at\": \"2024-05-06T22:05:14-03:00\",\n                            \"updated_at\": \"2024-05-06T22:05:14-03:00\",\n                            \"formula\": 289883\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"123\",\n                    \"total_cost\": 123,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2024-05-06T22:05:14-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1068,\n                    \"user\": 267\n                },\n                {\n                    \"id\": 289884,\n                    \"product\": {\n                        \"id\": 25223,\n                        \"code\": \"C02\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete 02\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": 3,\n                        \"fck_class\": null,\n                        \"fck\": 17,\n                        \"coarse_agg\": \"PP20mm\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 2057233,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 1,\n                            \"created_at\": \"2024-05-06T22:12:13-03:00\",\n                            \"updated_at\": \"2024-05-06T22:12:13-03:00\",\n                            \"formula\": 289884\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"C02\",\n                    \"total_cost\": 1,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2024-05-06T22:12:12-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1068,\n                    \"user\": 267\n                },\n                {\n                    \"id\": 289885,\n                    \"product\": {\n                        \"id\": 66827,\n                        \"code\": \"2500\",\n                        \"erpid\": null,\n                        \"name\": \"2500 PSI CONCRETE (REG)\",\n                        \"description\": \"Optional product description\",\n                        \"list_price\": 20,\n                        \"slump_class\": null,\n                        \"list_slump\": 111,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 3,\n                        \"coarse_agg\": \"4\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": true,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 126,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 2057234,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 1,\n                            \"created_at\": \"2024-05-07T08:30:13-03:00\",\n                            \"updated_at\": \"2024-05-07T08:30:13-03:00\",\n                            \"formula\": 289885\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"2500\",\n                    \"total_cost\": 1,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2024-05-07T08:30:13-03:00\",\n                    \"volume_per_cycle\": 5,\n                    \"company\": 434,\n                    \"formula_table\": 1068,\n                    \"user\": 267\n                }\n            ],\n            \"code\": null,\n            \"description\": \"Formulas 2023-11-x\",\n            \"notes\": null,\n            \"file_name\": \"Formulas_2023_11.xlsx\",\n            \"created_at\": \"2023-11-30T17:49:44-03:00\",\n            \"updated_at\": \"2024-02-19T15:10:05-03:00\",\n            \"inactive\": false,\n            \"num_products\": 2,\n            \"company\": 434\n        },\n        {\n            \"id\": 329,\n            \"formulas\": [\n                {\n                    \"id\": 31425,\n                    \"product\": {\n                        \"id\": 60664,\n                        \"code\": \"505\",\n                        \"erpid\": null,\n                        \"name\": \"Produto 505\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 234950,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 160,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-31T15:29:22-03:00\",\n                            \"updated_at\": \"2023-01-31T15:29:22-03:00\",\n                            \"formula\": 31425\n                        },\n                        {\n                            \"id\": 234951,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 260,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-31T15:29:23-03:00\",\n                            \"updated_at\": \"2023-01-31T15:29:23-03:00\",\n                            \"formula\": 31425\n                        },\n                        {\n                            \"id\": 234952,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 470,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-31T15:29:23-03:00\",\n                            \"updated_at\": \"2023-01-31T15:29:23-03:00\",\n                            \"formula\": 31425\n                        },\n                        {\n                            \"id\": 234953,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 470,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-31T15:29:23-03:00\",\n                            \"updated_at\": \"2023-01-31T15:29:23-03:00\",\n                            \"formula\": 31425\n                        },\n                        {\n                            \"id\": 234954,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 0.12,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-31T15:29:24-03:00\",\n                            \"updated_at\": \"2023-01-31T15:29:24-03:00\",\n                            \"formula\": 31425\n                        },\n                        {\n                            \"id\": 234955,\n                            \"raw_material\": {\n                                \"id\": 64698,\n                                \"code\": \"RMA02\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santo André\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 0.79,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-31T15:29:24-03:00\",\n                            \"updated_at\": \"2023-01-31T15:29:24-03:00\",\n                            \"formula\": 31425\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"piso\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-01-31T15:29:22-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 329,\n                    \"user\": null\n                },\n                {\n                    \"id\": 31426,\n                    \"product\": {\n                        \"id\": 60664,\n                        \"code\": \"505\",\n                        \"erpid\": null,\n                        \"name\": \"Produto 505\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 234956,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 160,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-31T15:29:25-03:00\",\n                            \"updated_at\": \"2023-01-31T15:29:25-03:00\",\n                            \"formula\": 31426\n                        },\n                        {\n                            \"id\": 234957,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 260,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-31T15:29:25-03:00\",\n                            \"updated_at\": \"2023-01-31T15:29:25-03:00\",\n                            \"formula\": 31426\n                        },\n                        {\n                            \"id\": 234958,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 470,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-31T15:29:26-03:00\",\n                            \"updated_at\": \"2023-01-31T15:29:26-03:00\",\n                            \"formula\": 31426\n                        },\n                        {\n                            \"id\": 234959,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 470,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-31T15:29:26-03:00\",\n                            \"updated_at\": \"2023-01-31T15:29:26-03:00\",\n                            \"formula\": 31426\n                        },\n                        {\n                            \"id\": 234960,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 0.12,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-31T15:29:26-03:00\",\n                            \"updated_at\": \"2023-01-31T15:29:26-03:00\",\n                            \"formula\": 31426\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"viga\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-01-31T15:29:25-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 329,\n                    \"user\": null\n                },\n                {\n                    \"id\": 31427,\n                    \"product\": {\n                        \"id\": 60664,\n                        \"code\": \"505\",\n                        \"erpid\": null,\n                        \"name\": \"Produto 505\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [],\n                    \"description\": null,\n                    \"code\": \"base estrutural\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-01-31T15:29:27-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 329,\n                    \"user\": null\n                },\n                {\n                    \"id\": 31471,\n                    \"product\": {\n                        \"id\": 63807,\n                        \"code\": \"0001\",\n                        \"erpid\": null,\n                        \"name\": \"B-15-CPV-B10-S100-NORMAL\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 235082,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": null,\n                            \"created_at\": \"2023-01-31T16:17:17-03:00\",\n                            \"updated_at\": \"2023-01-31T16:17:17-03:00\",\n                            \"formula\": 31471\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"23\",\n                    \"total_cost\": null,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-01-31T16:17:17-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 329,\n                    \"user\": 2762\n                },\n                {\n                    \"id\": 31472,\n                    \"product\": {\n                        \"id\": 60664,\n                        \"code\": \"505\",\n                        \"erpid\": null,\n                        \"name\": \"Produto 505\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 235083,\n                            \"raw_material\": {\n                                \"id\": 64698,\n                                \"code\": \"RMA02\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santo André\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 2,\n                            \"unit_cost\": null,\n                            \"created_at\": \"2023-01-31T16:41:26-03:00\",\n                            \"updated_at\": \"2023-01-31T16:41:26-03:00\",\n                            \"formula\": 31472\n                        },\n                        {\n                            \"id\": 235084,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 3,\n                            \"unit_cost\": 1,\n                            \"created_at\": \"2023-01-31T16:41:26-03:00\",\n                            \"updated_at\": \"2023-01-31T16:41:26-03:00\",\n                            \"formula\": 31472\n                        },\n                        {\n                            \"id\": 235085,\n                            \"raw_material\": {\n                                \"id\": 26982,\n                                \"code\": \"RMC02\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 4,\n                            \"unit_cost\": null,\n                            \"created_at\": \"2023-01-31T16:41:26-03:00\",\n                            \"updated_at\": \"2023-01-31T16:41:26-03:00\",\n                            \"formula\": 31472\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"viga2\",\n                    \"total_cost\": null,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-01-31T16:41:26-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 329,\n                    \"user\": 2762\n                },\n                {\n                    \"id\": 90885,\n                    \"product\": {\n                        \"id\": 65873,\n                        \"code\": \"12345678901234567890123456789012345678901234567890\",\n                        \"erpid\": null,\n                        \"name\": \"asaaa\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 655664,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 12,\n                            \"unit_cost\": 2,\n                            \"created_at\": \"2023-04-25T12:31:38-03:00\",\n                            \"updated_at\": \"2023-04-25T12:31:38-03:00\",\n                            \"formula\": 90885\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"23\",\n                    \"total_cost\": null,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-04-25T12:31:38-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 329,\n                    \"user\": 267\n                }\n            ],\n            \"code\": null,\n            \"description\": \"5\",\n            \"notes\": \"SEM PLANILHA NO S3\",\n            \"file_name\": \"formulas_5.xlsx\",\n            \"created_at\": \"2023-01-31T15:29:22-03:00\",\n            \"updated_at\": \"2023-11-23T16:17:14-03:00\",\n            \"inactive\": true,\n            \"num_products\": 3,\n            \"company\": 434\n        },\n        {\n            \"id\": 324,\n            \"formulas\": [\n                {\n                    \"id\": 31264,\n                    \"product\": {\n                        \"id\": 25212,\n                        \"code\": \"P01\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete Product 1\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3,\n                        \"fck_class\": null,\n                        \"fck\": 15,\n                        \"coarse_agg\": \"PP20mm\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 234001,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 140,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31264\n                        },\n                        {\n                            \"id\": 234002,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 200,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31264\n                        },\n                        {\n                            \"id\": 234003,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 495,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31264\n                        },\n                        {\n                            \"id\": 234004,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 495,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31264\n                        }\n                    ],\n                    \"description\": \"P01-T001\",\n                    \"code\": \"P01-T001\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-01-26T16:52:46-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 324,\n                    \"user\": null\n                },\n                {\n                    \"id\": 31265,\n                    \"product\": {\n                        \"id\": 25212,\n                        \"code\": \"P01\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete Product 1\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3,\n                        \"fck_class\": null,\n                        \"fck\": 15,\n                        \"coarse_agg\": \"PP20mm\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 234006,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 150,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31265\n                        },\n                        {\n                            \"id\": 234007,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 210,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31265\n                        },\n                        {\n                            \"id\": 234008,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 488,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31265\n                        },\n                        {\n                            \"id\": 234009,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 488,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31265\n                        },\n                        {\n                            \"id\": 234010,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 1.26,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31265\n                        }\n                    ],\n                    \"description\": \"P01-T002\",\n                    \"code\": \"P01-T002\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-01-26T16:52:46-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 324,\n                    \"user\": null\n                },\n                {\n                    \"id\": 31266,\n                    \"product\": {\n                        \"id\": 25212,\n                        \"code\": \"P01\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete Product 1\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3,\n                        \"fck_class\": null,\n                        \"fck\": 15,\n                        \"coarse_agg\": \"PP20mm\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 234011,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 150,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31266\n                        },\n                        {\n                            \"id\": 234012,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 225,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31266\n                        },\n                        {\n                            \"id\": 234013,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 480,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31266\n                        },\n                        {\n                            \"id\": 234014,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 480,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31266\n                        }\n                    ],\n                    \"description\": \"P01-T003\",\n                    \"code\": \"P01-T003\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-01-26T16:52:46-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 324,\n                    \"user\": null\n                },\n                {\n                    \"id\": 31267,\n                    \"product\": {\n                        \"id\": 25223,\n                        \"code\": \"C02\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete 02\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": 3,\n                        \"fck_class\": null,\n                        \"fck\": 17,\n                        \"coarse_agg\": \"PP20mm\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 234016,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 155,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31267\n                        },\n                        {\n                            \"id\": 234017,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 230,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31267\n                        },\n                        {\n                            \"id\": 234018,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 480,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31267\n                        },\n                        {\n                            \"id\": 234019,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 480,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31267\n                        },\n                        {\n                            \"id\": 234020,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 1.38,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31267\n                        }\n                    ],\n                    \"description\": \"P02\",\n                    \"code\": \"P02\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-01-26T16:52:46-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 324,\n                    \"user\": null\n                },\n                {\n                    \"id\": 31268,\n                    \"product\": {\n                        \"id\": 25223,\n                        \"code\": \"C02\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete 02\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": 3,\n                        \"fck_class\": null,\n                        \"fck\": 17,\n                        \"coarse_agg\": \"PP20mm\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 234021,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 160,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31268\n                        },\n                        {\n                            \"id\": 234022,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 237,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31268\n                        },\n                        {\n                            \"id\": 234023,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 495,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31268\n                        },\n                        {\n                            \"id\": 234024,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 495,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31268\n                        },\n                        {\n                            \"id\": 234025,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 1.42,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31268\n                        }\n                    ],\n                    \"description\": \"P02-T001\",\n                    \"code\": \"P02-T001\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-01-26T16:52:46-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 324,\n                    \"user\": null\n                },\n                {\n                    \"id\": 31269,\n                    \"product\": {\n                        \"id\": 59354,\n                        \"code\": \"C03\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete 03\",\n                        \"description\": null,\n                        \"list_price\": 10,\n                        \"slump_class\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"3/4\",\n                        \"color\": \"#4af434\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 234026,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 160,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31269\n                        },\n                        {\n                            \"id\": 234027,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 260,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31269\n                        },\n                        {\n                            \"id\": 234028,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 470,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31269\n                        },\n                        {\n                            \"id\": 234029,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 470,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31269\n                        },\n                        {\n                            \"id\": 234030,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 1.56,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"updated_at\": \"2023-01-24T12:07:12-03:00\",\n                            \"formula\": 31269\n                        }\n                    ],\n                    \"description\": \"P03\",\n                    \"code\": \"P03\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-01-26T16:52:46-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 324,\n                    \"user\": null\n                },\n                {\n                    \"id\": 109576,\n                    \"product\": {\n                        \"id\": 60664,\n                        \"code\": \"505\",\n                        \"erpid\": null,\n                        \"name\": \"Produto 505\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 790385,\n                            \"raw_material\": {\n                                \"id\": 26982,\n                                \"code\": \"RMC02\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 10,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-06-13T12:18:21-03:00\",\n                            \"updated_at\": \"2023-06-13T12:18:21-03:00\",\n                            \"formula\": 109576\n                        }\n                    ],\n                    \"description\": \"F10-05\",\n                    \"code\": \"F10-05\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-06-13T12:18:21-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 324,\n                    \"user\": 267\n                },\n                {\n                    \"id\": 109577,\n                    \"product\": {\n                        \"id\": 60664,\n                        \"code\": \"505\",\n                        \"erpid\": null,\n                        \"name\": \"Produto 505\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 790386,\n                            \"raw_material\": {\n                                \"id\": 26982,\n                                \"code\": \"RMC02\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 100,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-06-13T12:18:55-03:00\",\n                            \"updated_at\": \"2023-06-13T12:18:55-03:00\",\n                            \"formula\": 109577\n                        }\n                    ],\n                    \"description\": \"F100-05\",\n                    \"code\": \"F100-05\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-06-13T12:18:55-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 324,\n                    \"user\": 267\n                },\n                {\n                    \"id\": 109748,\n                    \"product\": {\n                        \"id\": 60664,\n                        \"code\": \"505\",\n                        \"erpid\": null,\n                        \"name\": \"Produto 505\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 791472,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 10,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-06-13T16:18:54-03:00\",\n                            \"updated_at\": \"2023-06-13T16:18:54-03:00\",\n                            \"formula\": 109748\n                        },\n                        {\n                            \"id\": 791473,\n                            \"raw_material\": {\n                                \"id\": 26983,\n                                \"code\": \"RMS01\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 10,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-06-13T16:18:54-03:00\",\n                            \"updated_at\": \"2023-06-13T16:18:54-03:00\",\n                            \"formula\": 109748\n                        }\n                    ],\n                    \"description\": \"F10Agua-05\",\n                    \"code\": \"F10Agua-05\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-06-13T16:18:54-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 324,\n                    \"user\": 267\n                },\n                {\n                    \"id\": 109749,\n                    \"product\": {\n                        \"id\": 60664,\n                        \"code\": \"505\",\n                        \"erpid\": null,\n                        \"name\": \"Produto 505\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 791474,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 100,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-06-13T16:19:18-03:00\",\n                            \"updated_at\": \"2023-06-13T16:19:18-03:00\",\n                            \"formula\": 109749\n                        },\n                        {\n                            \"id\": 791475,\n                            \"raw_material\": {\n                                \"id\": 26983,\n                                \"code\": \"RMS01\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 100,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-06-13T16:19:18-03:00\",\n                            \"updated_at\": \"2023-06-13T16:19:18-03:00\",\n                            \"formula\": 109749\n                        }\n                    ],\n                    \"description\": \"F100Agua-05\",\n                    \"code\": \"F100Agua-05\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-06-13T16:19:18-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 324,\n                    \"user\": 267\n                },\n                {\n                    \"id\": 148674,\n                    \"product\": {\n                        \"id\": 59354,\n                        \"code\": \"C03\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete 03\",\n                        \"description\": null,\n                        \"list_price\": 10,\n                        \"slump_class\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"3/4\",\n                        \"color\": \"#4af434\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1052170,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 12,\n                            \"unit_cost\": 1,\n                            \"created_at\": \"2023-08-21T17:00:28-03:00\",\n                            \"updated_at\": \"2023-08-21T17:00:28-03:00\",\n                            \"formula\": 148674\n                        }\n                    ],\n                    \"description\": \"P031\",\n                    \"code\": \"P031\",\n                    \"total_cost\": 12,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-08-21T17:00:28-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 324,\n                    \"user\": 267\n                }\n            ],\n            \"code\": null,\n            \"description\": \"Tabela com Múltiplas Fórmulas\",\n            \"notes\": \"SEM PLANILHA NO S3\",\n            \"file_name\": \"Formulas_New_Loop.xlsx\",\n            \"created_at\": \"2023-01-24T12:07:12-03:00\",\n            \"updated_at\": \"2023-11-23T16:17:18-03:00\",\n            \"inactive\": true,\n            \"num_products\": 6,\n            \"company\": 434\n        },\n        {\n            \"id\": 1088,\n            \"formulas\": [\n                {\n                    \"id\": 219834,\n                    \"product\": {\n                        \"id\": 66827,\n                        \"code\": \"2500\",\n                        \"erpid\": null,\n                        \"name\": \"2500 PSI CONCRETE (REG)\",\n                        \"description\": \"Optional product description\",\n                        \"list_price\": 20,\n                        \"slump_class\": null,\n                        \"list_slump\": 111,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 3,\n                        \"coarse_agg\": \"4\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": true,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 126,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1571852,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 200,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"updated_at\": \"2024-05-06T23:02:23-03:00\",\n                            \"formula\": 219834\n                        },\n                        {\n                            \"id\": 1571853,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 100,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"updated_at\": \"2024-05-06T23:02:23-03:00\",\n                            \"formula\": 219834\n                        },\n                        {\n                            \"id\": 1571854,\n                            \"raw_material\": {\n                                \"id\": 26983,\n                                \"code\": \"RMS01\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 100,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"updated_at\": \"2024-05-06T23:02:23-03:00\",\n                            \"formula\": 219834\n                        },\n                        {\n                            \"id\": 1571855,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 100,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"updated_at\": \"2024-05-06T23:02:23-03:00\",\n                            \"formula\": 219834\n                        },\n                        {\n                            \"id\": 1571856,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 100,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"updated_at\": \"2024-05-06T23:02:23-03:00\",\n                            \"formula\": 219834\n                        },\n                        {\n                            \"id\": 1571857,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 10,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"updated_at\": \"2024-05-06T23:02:23-03:00\",\n                            \"formula\": 219834\n                        }\n                    ],\n                    \"description\": \"2500 PSI con B01 100\",\n                    \"code\": \"F05_B01_100\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                    \"volume_per_cycle\": 2.5,\n                    \"company\": 434,\n                    \"formula_table\": 1088,\n                    \"user\": null\n                },\n                {\n                    \"id\": 219835,\n                    \"product\": {\n                        \"id\": 66827,\n                        \"code\": \"2500\",\n                        \"erpid\": null,\n                        \"name\": \"2500 PSI CONCRETE (REG)\",\n                        \"description\": \"Optional product description\",\n                        \"list_price\": 20,\n                        \"slump_class\": null,\n                        \"list_slump\": 111,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 3,\n                        \"coarse_agg\": \"4\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": true,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 126,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1571858,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"updated_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"formula\": 219835\n                        },\n                        {\n                            \"id\": 1571859,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"updated_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"formula\": 219835\n                        },\n                        {\n                            \"id\": 1571860,\n                            \"raw_material\": {\n                                \"id\": 26983,\n                                \"code\": \"RMS01\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"updated_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"formula\": 219835\n                        },\n                        {\n                            \"id\": 1571861,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"updated_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"formula\": 219835\n                        },\n                        {\n                            \"id\": 1571862,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"updated_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"formula\": 219835\n                        },\n                        {\n                            \"id\": 1571863,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 10,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"updated_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"formula\": 219835\n                        }\n                    ],\n                    \"description\": \"2500 PSI con B01 500\",\n                    \"code\": \"F05_B01_500\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1088,\n                    \"user\": null\n                },\n                {\n                    \"id\": 219836,\n                    \"product\": {\n                        \"id\": 66827,\n                        \"code\": \"2500\",\n                        \"erpid\": null,\n                        \"name\": \"2500 PSI CONCRETE (REG)\",\n                        \"description\": \"Optional product description\",\n                        \"list_price\": 20,\n                        \"slump_class\": null,\n                        \"list_slump\": 111,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 3,\n                        \"coarse_agg\": \"4\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": true,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 126,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1571864,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"updated_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"formula\": 219836\n                        },\n                        {\n                            \"id\": 1571865,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"updated_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"formula\": 219836\n                        },\n                        {\n                            \"id\": 1571866,\n                            \"raw_material\": {\n                                \"id\": 26983,\n                                \"code\": \"RMS01\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"updated_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"formula\": 219836\n                        },\n                        {\n                            \"id\": 1571867,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"updated_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"formula\": 219836\n                        },\n                        {\n                            \"id\": 1571868,\n                            \"raw_material\": {\n                                \"id\": 72494,\n                                \"code\": \"RMB02\",\n                                \"erpid\": null,\n                                \"name\": \"Piedra Novala\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"updated_at\": \"2023-12-06T14:41:02-03:00\",\n                            \"formula\": 219836\n                        }\n                    ],\n                    \"description\": \"2500 PSI con B02 500\",\n                    \"code\": \"F05_B02_500\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-12-06T14:41:02-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1088,\n                    \"user\": null\n                },\n                {\n                    \"id\": 243585,\n                    \"product\": {\n                        \"id\": 59354,\n                        \"code\": \"C03\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete 03\",\n                        \"description\": null,\n                        \"list_price\": 10,\n                        \"slump_class\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"3/4\",\n                        \"color\": \"#4af434\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1735865,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 100,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-14T18:39:37-03:00\",\n                            \"updated_at\": \"2024-02-14T18:39:37-03:00\",\n                            \"formula\": 243585\n                        },\n                        {\n                            \"id\": 1735866,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 200,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-14T18:39:37-03:00\",\n                            \"updated_at\": \"2024-02-14T18:39:37-03:00\",\n                            \"formula\": 243585\n                        },\n                        {\n                            \"id\": 1735867,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 200,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-14T18:39:37-03:00\",\n                            \"updated_at\": \"2024-02-14T18:39:37-03:00\",\n                            \"formula\": 243585\n                        },\n                        {\n                            \"id\": 1735868,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 400,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-14T18:39:37-03:00\",\n                            \"updated_at\": \"2024-02-14T18:39:37-03:00\",\n                            \"formula\": 243585\n                        },\n                        {\n                            \"id\": 1735869,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 10,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-14T18:39:37-03:00\",\n                            \"updated_at\": \"2024-02-14T18:39:37-03:00\",\n                            \"formula\": 243585\n                        }\n                    ],\n                    \"description\": \"Formula Test 03\",\n                    \"code\": \"FP03\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2024-02-14T18:39:37-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1088,\n                    \"user\": 267\n                },\n                {\n                    \"id\": 245612,\n                    \"product\": {\n                        \"id\": 25223,\n                        \"code\": \"C02\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete 02\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": 3,\n                        \"fck_class\": null,\n                        \"fck\": 17,\n                        \"coarse_agg\": \"PP20mm\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1749666,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-16T00:45:15-03:00\",\n                            \"updated_at\": \"2024-02-16T00:45:15-03:00\",\n                            \"formula\": 245612\n                        },\n                        {\n                            \"id\": 1749667,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2024-02-16T00:45:15-03:00\",\n                            \"updated_at\": \"2024-02-16T00:45:15-03:00\",\n                            \"formula\": 245612\n                        }\n                    ],\n                    \"description\": \"Formula Test 02\",\n                    \"code\": \"FP02\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2024-02-16T00:45:15-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1088,\n                    \"user\": 267\n                }\n            ],\n            \"code\": null,\n            \"description\": \"Formulas Simples 2023-11\",\n            \"notes\": null,\n            \"file_name\": \"Formulas_Simples_2023_11.xlsx\",\n            \"created_at\": \"2023-12-06T14:41:02-03:00\",\n            \"updated_at\": \"2023-12-06T14:41:02-03:00\",\n            \"inactive\": false,\n            \"num_products\": 3,\n            \"company\": 434\n        },\n        {\n            \"id\": 1124,\n            \"formulas\": [\n                {\n                    \"id\": 226657,\n                    \"product\": {\n                        \"id\": 66827,\n                        \"code\": \"2500\",\n                        \"erpid\": null,\n                        \"name\": \"2500 PSI CONCRETE (REG)\",\n                        \"description\": \"Optional product description\",\n                        \"list_price\": 20,\n                        \"slump_class\": null,\n                        \"list_slump\": 111,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 3,\n                        \"coarse_agg\": \"4\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": true,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 126,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1620833,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"updated_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"formula\": 226657\n                        },\n                        {\n                            \"id\": 1620834,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"updated_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"formula\": 226657\n                        },\n                        {\n                            \"id\": 1620835,\n                            \"raw_material\": {\n                                \"id\": 26982,\n                                \"code\": \"RMC02\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"updated_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"formula\": 226657\n                        },\n                        {\n                            \"id\": 1620836,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"updated_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"formula\": 226657\n                        },\n                        {\n                            \"id\": 1620837,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"updated_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"formula\": 226657\n                        }\n                    ],\n                    \"description\": \"Formula 1\",\n                    \"code\": \"F2500-1\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-12-28T12:38:32-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1124,\n                    \"user\": null\n                },\n                {\n                    \"id\": 226658,\n                    \"product\": {\n                        \"id\": 66827,\n                        \"code\": \"2500\",\n                        \"erpid\": null,\n                        \"name\": \"2500 PSI CONCRETE (REG)\",\n                        \"description\": \"Optional product description\",\n                        \"list_price\": 20,\n                        \"slump_class\": null,\n                        \"list_slump\": 111,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 3,\n                        \"coarse_agg\": \"4\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": true,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 126,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1620838,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 3,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"updated_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"formula\": 226658\n                        },\n                        {\n                            \"id\": 1620839,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 3,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"updated_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"formula\": 226658\n                        },\n                        {\n                            \"id\": 1620840,\n                            \"raw_material\": {\n                                \"id\": 26982,\n                                \"code\": \"RMC02\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 3,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"updated_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"formula\": 226658\n                        },\n                        {\n                            \"id\": 1620841,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 3,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"updated_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"formula\": 226658\n                        },\n                        {\n                            \"id\": 1620842,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 3,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"updated_at\": \"2023-12-28T12:38:32-03:00\",\n                            \"formula\": 226658\n                        }\n                    ],\n                    \"description\": \"Formula 2\",\n                    \"code\": \"F2500-2\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-12-28T12:38:32-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1124,\n                    \"user\": null\n                }\n            ],\n            \"code\": null,\n            \"description\": \"Tabla 2\",\n            \"notes\": null,\n            \"file_name\": \"Formula_Table_Template (1).xlsx\",\n            \"created_at\": \"2023-12-28T12:38:32-03:00\",\n            \"updated_at\": \"2023-12-28T12:38:32-03:00\",\n            \"inactive\": false,\n            \"num_products\": 2,\n            \"company\": 434\n        },\n        {\n            \"id\": 1123,\n            \"formulas\": [\n                {\n                    \"id\": 226655,\n                    \"product\": {\n                        \"id\": 66827,\n                        \"code\": \"2500\",\n                        \"erpid\": null,\n                        \"name\": \"2500 PSI CONCRETE (REG)\",\n                        \"description\": \"Optional product description\",\n                        \"list_price\": 20,\n                        \"slump_class\": null,\n                        \"list_slump\": 111,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 3,\n                        \"coarse_agg\": \"4\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": true,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 126,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1620823,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"updated_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"formula\": 226655\n                        },\n                        {\n                            \"id\": 1620824,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"updated_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"formula\": 226655\n                        },\n                        {\n                            \"id\": 1620825,\n                            \"raw_material\": {\n                                \"id\": 26982,\n                                \"code\": \"RMC02\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"updated_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"formula\": 226655\n                        },\n                        {\n                            \"id\": 1620826,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"updated_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"formula\": 226655\n                        },\n                        {\n                            \"id\": 1620827,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"updated_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"formula\": 226655\n                        }\n                    ],\n                    \"description\": \"Formula 1\",\n                    \"code\": \"F2500-1\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-12-28T12:37:38-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1123,\n                    \"user\": null\n                },\n                {\n                    \"id\": 226656,\n                    \"product\": {\n                        \"id\": 66827,\n                        \"code\": \"2500\",\n                        \"erpid\": null,\n                        \"name\": \"2500 PSI CONCRETE (REG)\",\n                        \"description\": \"Optional product description\",\n                        \"list_price\": 20,\n                        \"slump_class\": null,\n                        \"list_slump\": 111,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 3,\n                        \"coarse_agg\": \"4\",\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": true,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": 126,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1620828,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 2,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"updated_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"formula\": 226656\n                        },\n                        {\n                            \"id\": 1620829,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 2,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"updated_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"formula\": 226656\n                        },\n                        {\n                            \"id\": 1620830,\n                            \"raw_material\": {\n                                \"id\": 26982,\n                                \"code\": \"RMC02\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 2,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"updated_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"formula\": 226656\n                        },\n                        {\n                            \"id\": 1620831,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 2,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"updated_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"formula\": 226656\n                        },\n                        {\n                            \"id\": 1620832,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 2,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"updated_at\": \"2023-12-28T12:37:38-03:00\",\n                            \"formula\": 226656\n                        }\n                    ],\n                    \"description\": \"Formula 2\",\n                    \"code\": \"F2500-2\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-12-28T12:37:38-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1123,\n                    \"user\": null\n                }\n            ],\n            \"code\": null,\n            \"description\": \"Tabla de Demonstracion\",\n            \"notes\": null,\n            \"file_name\": \"Formula_Table_Template.xlsx\",\n            \"created_at\": \"2023-12-28T12:37:38-03:00\",\n            \"updated_at\": \"2023-12-28T12:37:38-03:00\",\n            \"inactive\": false,\n            \"num_products\": 2,\n            \"company\": 434\n        },\n        {\n            \"id\": 374,\n            \"formulas\": [\n                {\n                    \"id\": 40196,\n                    \"product\": {\n                        \"id\": 59354,\n                        \"code\": \"C03\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete 03\",\n                        \"description\": null,\n                        \"list_price\": 10,\n                        \"slump_class\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"3/4\",\n                        \"color\": \"#4af434\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 300180,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 100,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-02-07T11:17:32-03:00\",\n                            \"updated_at\": \"2023-02-07T11:17:32-03:00\",\n                            \"formula\": 40196\n                        },\n                        {\n                            \"id\": 300181,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 200,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-02-07T11:17:32-03:00\",\n                            \"updated_at\": \"2023-02-07T11:17:32-03:00\",\n                            \"formula\": 40196\n                        },\n                        {\n                            \"id\": 300182,\n                            \"raw_material\": {\n                                \"id\": 64698,\n                                \"code\": \"RMA02\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santo André\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 300,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-02-07T11:17:32-03:00\",\n                            \"updated_at\": \"2023-02-07T11:17:32-03:00\",\n                            \"formula\": 40196\n                        },\n                        {\n                            \"id\": 300183,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 200,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-02-07T11:17:32-03:00\",\n                            \"updated_at\": \"2023-02-07T11:17:32-03:00\",\n                            \"formula\": 40196\n                        },\n                        {\n                            \"id\": 300184,\n                            \"raw_material\": {\n                                \"id\": 26982,\n                                \"code\": \"RMC02\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 150,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-02-07T11:17:32-03:00\",\n                            \"updated_at\": \"2023-02-07T11:17:32-03:00\",\n                            \"formula\": 40196\n                        }\n                    ],\n                    \"description\": \"CONCRETE 03\",\n                    \"code\": \"P03\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-02-07T11:17:32-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 374,\n                    \"user\": null\n                },\n                {\n                    \"id\": 49845,\n                    \"product\": {\n                        \"id\": 59354,\n                        \"code\": \"C03\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete 03\",\n                        \"description\": null,\n                        \"list_price\": 10,\n                        \"slump_class\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"3/4\",\n                        \"color\": \"#4af434\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 371902,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 2,\n                            \"unit_cost\": null,\n                            \"created_at\": \"2023-02-14T11:50:14-03:00\",\n                            \"updated_at\": \"2023-02-14T11:50:14-03:00\",\n                            \"formula\": 49845\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"P03_V2\",\n                    \"total_cost\": null,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-02-14T11:50:14-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 374,\n                    \"user\": 2762\n                },\n                {\n                    \"id\": 49846,\n                    \"product\": {\n                        \"id\": 59354,\n                        \"code\": \"C03\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete 03\",\n                        \"description\": null,\n                        \"list_price\": 10,\n                        \"slump_class\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"3/4\",\n                        \"color\": \"#4af434\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 371903,\n                            \"raw_material\": {\n                                \"id\": 26983,\n                                \"code\": \"RMS01\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 3,\n                            \"unit_cost\": null,\n                            \"created_at\": \"2023-02-14T12:33:40-03:00\",\n                            \"updated_at\": \"2023-02-14T12:33:40-03:00\",\n                            \"formula\": 49846\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"P03_V3\",\n                    \"total_cost\": null,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-02-14T12:33:40-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 374,\n                    \"user\": 2762\n                },\n                {\n                    \"id\": 49847,\n                    \"product\": {\n                        \"id\": 59354,\n                        \"code\": \"C03\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete 03\",\n                        \"description\": null,\n                        \"list_price\": 10,\n                        \"slump_class\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"3/4\",\n                        \"color\": \"#4af434\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 371904,\n                            \"raw_material\": {\n                                \"id\": 65382,\n                                \"code\": \"RMS03\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Mix\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 222,\n                            \"unit_cost\": null,\n                            \"created_at\": \"2023-02-14T12:34:53-03:00\",\n                            \"updated_at\": \"2023-02-14T12:34:53-03:00\",\n                            \"formula\": 49847\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"P03_V4\",\n                    \"total_cost\": null,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-02-14T12:34:53-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 374,\n                    \"user\": 2762\n                },\n                {\n                    \"id\": 51802,\n                    \"product\": {\n                        \"id\": 59354,\n                        \"code\": \"C03\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete 03\",\n                        \"description\": null,\n                        \"list_price\": 10,\n                        \"slump_class\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"3/4\",\n                        \"color\": \"#4af434\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 387027,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 1.5,\n                            \"unit_cost\": null,\n                            \"created_at\": \"2023-02-15T16:20:47-03:00\",\n                            \"updated_at\": \"2023-02-15T16:20:47-03:00\",\n                            \"formula\": 51802\n                        },\n                        {\n                            \"id\": 387028,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 3.8,\n                            \"unit_cost\": null,\n                            \"created_at\": \"2023-02-15T16:20:47-03:00\",\n                            \"updated_at\": \"2023-02-15T16:20:47-03:00\",\n                            \"formula\": 51802\n                        },\n                        {\n                            \"id\": 387029,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 1.1,\n                            \"unit_cost\": null,\n                            \"created_at\": \"2023-02-15T16:20:47-03:00\",\n                            \"updated_at\": \"2023-02-15T16:20:47-03:00\",\n                            \"formula\": 51802\n                        },\n                        {\n                            \"id\": 387030,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 0.2,\n                            \"unit_cost\": null,\n                            \"created_at\": \"2023-02-15T16:20:47-03:00\",\n                            \"updated_at\": \"2023-02-15T16:20:47-03:00\",\n                            \"formula\": 51802\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"P03_V5\",\n                    \"total_cost\": null,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-02-15T16:20:47-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 374,\n                    \"user\": 2762\n                },\n                {\n                    \"id\": 148675,\n                    \"product\": {\n                        \"id\": 59354,\n                        \"code\": \"C03\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete 03\",\n                        \"description\": null,\n                        \"list_price\": 10,\n                        \"slump_class\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"3/4\",\n                        \"color\": \"#4af434\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 1052171,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 1,\n                            \"unit_cost\": 1,\n                            \"created_at\": \"2023-08-21T17:02:47-03:00\",\n                            \"updated_at\": \"2023-08-21T17:02:47-03:00\",\n                            \"formula\": 148675\n                        }\n                    ],\n                    \"description\": \"novoooo\",\n                    \"code\": \"novo\",\n                    \"total_cost\": 1,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-08-21T17:02:47-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 374,\n                    \"user\": 267\n                }\n            ],\n            \"code\": null,\n            \"description\": \"PRE FORTE\",\n            \"notes\": \"SEM PLANILHA NO S3\",\n            \"file_name\": \"Import Fórmulas Default.xlsx\",\n            \"created_at\": \"2023-02-07T11:17:32-03:00\",\n            \"updated_at\": \"2023-11-23T16:17:22-03:00\",\n            \"inactive\": true,\n            \"num_products\": 1,\n            \"company\": 434\n        },\n        {\n            \"id\": 1534,\n            \"formulas\": [\n                {\n                    \"id\": 300740,\n                    \"product\": {\n                        \"id\": 60664,\n                        \"code\": \"505\",\n                        \"erpid\": null,\n                        \"name\": \"Produto 505\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 2124068,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 137,\n                            \"unit_cost\": null,\n                            \"created_at\": \"2024-05-31T11:11:49-03:00\",\n                            \"updated_at\": \"2024-05-31T16:35:56-03:00\",\n                            \"formula\": 300740\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"form1\",\n                    \"total_cost\": null,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2024-05-31T11:05:37-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1534,\n                    \"user\": null\n                },\n                {\n                    \"id\": 300741,\n                    \"product\": {\n                        \"id\": 60664,\n                        \"code\": \"505\",\n                        \"erpid\": null,\n                        \"name\": \"Produto 505\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [],\n                    \"description\": null,\n                    \"code\": \"form2\",\n                    \"total_cost\": null,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2024-05-31T11:07:10-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 1534,\n                    \"user\": null\n                }\n            ],\n            \"code\": \"test\",\n            \"description\": \"tabela teste\",\n            \"notes\": null,\n            \"file_name\": \"N/A\",\n            \"created_at\": \"2024-05-31T10:58:42-03:00\",\n            \"updated_at\": \"2024-05-31T16:35:56-03:00\",\n            \"inactive\": false,\n            \"num_products\": null,\n            \"company\": 434\n        },\n        {\n            \"id\": 325,\n            \"formulas\": [\n                {\n                    \"id\": 31270,\n                    \"product\": {\n                        \"id\": 59354,\n                        \"code\": \"C03\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete 03\",\n                        \"description\": null,\n                        \"list_price\": 10,\n                        \"slump_class\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"3/4\",\n                        \"color\": \"#4af434\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 234031,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 160,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-25T11:46:54-03:00\",\n                            \"updated_at\": \"2023-01-25T11:46:54-03:00\",\n                            \"formula\": 31270\n                        },\n                        {\n                            \"id\": 234032,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 260,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-25T11:46:54-03:00\",\n                            \"updated_at\": \"2023-01-25T11:46:54-03:00\",\n                            \"formula\": 31270\n                        },\n                        {\n                            \"id\": 234033,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 470,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-25T11:46:54-03:00\",\n                            \"updated_at\": \"2023-01-25T11:46:54-03:00\",\n                            \"formula\": 31270\n                        },\n                        {\n                            \"id\": 234034,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 470,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-25T11:46:54-03:00\",\n                            \"updated_at\": \"2023-01-25T11:46:54-03:00\",\n                            \"formula\": 31270\n                        },\n                        {\n                            \"id\": 234035,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 1.56,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-01-25T11:46:54-03:00\",\n                            \"updated_at\": \"2023-01-25T11:46:54-03:00\",\n                            \"formula\": 31270\n                        }\n                    ],\n                    \"description\": \"Formula Test\",\n                    \"code\": \"FP03\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-01-26T16:52:46-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 325,\n                    \"user\": null\n                },\n                {\n                    \"id\": 31473,\n                    \"product\": {\n                        \"id\": 59354,\n                        \"code\": \"C03\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete 03\",\n                        \"description\": null,\n                        \"list_price\": 10,\n                        \"slump_class\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"3/4\",\n                        \"color\": \"#4af434\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 235086,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 2,\n                            \"unit_cost\": null,\n                            \"created_at\": \"2023-01-31T16:46:33-03:00\",\n                            \"updated_at\": \"2023-01-31T16:46:33-03:00\",\n                            \"formula\": 31473\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"novo\",\n                    \"total_cost\": null,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-01-31T16:46:33-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 325,\n                    \"user\": 2762\n                },\n                {\n                    \"id\": 49844,\n                    \"product\": {\n                        \"id\": 59354,\n                        \"code\": \"C03\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete 03\",\n                        \"description\": null,\n                        \"list_price\": 10,\n                        \"slump_class\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"3/4\",\n                        \"color\": \"#4af434\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 371901,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 2,\n                            \"unit_cost\": null,\n                            \"created_at\": \"2023-02-14T11:49:45-03:00\",\n                            \"updated_at\": \"2023-02-14T11:49:45-03:00\",\n                            \"formula\": 49844\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"P03_V2\",\n                    \"total_cost\": null,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-02-14T11:49:45-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 325,\n                    \"user\": 2762\n                },\n                {\n                    \"id\": 54343,\n                    \"product\": {\n                        \"id\": 59354,\n                        \"code\": \"C03\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete 03\",\n                        \"description\": null,\n                        \"list_price\": 10,\n                        \"slump_class\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"3/4\",\n                        \"color\": \"#4af434\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 406852,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 100,\n                            \"unit_cost\": null,\n                            \"created_at\": \"2023-02-17T10:46:56-03:00\",\n                            \"updated_at\": \"2023-02-17T10:50:17-03:00\",\n                            \"formula\": 54343\n                        },\n                        {\n                            \"id\": 406853,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 100,\n                            \"unit_cost\": null,\n                            \"created_at\": \"2023-02-17T10:46:56-03:00\",\n                            \"updated_at\": \"2023-02-17T10:46:56-03:00\",\n                            \"formula\": 54343\n                        },\n                        {\n                            \"id\": 406854,\n                            \"raw_material\": {\n                                \"id\": 64696,\n                                \"code\": \"RM000\",\n                                \"erpid\": null,\n                                \"name\": \"Agua\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 156,\n                                \"raw_material_type\": 5\n                            },\n                            \"quantity\": 1000,\n                            \"unit_cost\": null,\n                            \"created_at\": \"2023-02-17T10:46:56-03:00\",\n                            \"updated_at\": \"2023-02-17T10:46:56-03:00\",\n                            \"formula\": 54343\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"P03_V10\",\n                    \"total_cost\": null,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-02-17T10:46:56-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 325,\n                    \"user\": 2762\n                },\n                {\n                    \"id\": 77709,\n                    \"product\": {\n                        \"id\": 63807,\n                        \"code\": \"0001\",\n                        \"erpid\": null,\n                        \"name\": \"B-15-CPV-B10-S100-NORMAL\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 566119,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 2,\n                            \"unit_cost\": 1,\n                            \"created_at\": \"2023-03-28T19:26:14-03:00\",\n                            \"updated_at\": \"2023-03-28T19:26:14-03:00\",\n                            \"formula\": 77709\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"23\",\n                    \"total_cost\": null,\n                    \"inactive\": false,\n                    \"manual_input\": false,\n                    \"created_at\": \"2023-03-28T19:26:14-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 325,\n                    \"user\": 2762\n                },\n                {\n                    \"id\": 77710,\n                    \"product\": {\n                        \"id\": 65873,\n                        \"code\": \"12345678901234567890123456789012345678901234567890\",\n                        \"erpid\": null,\n                        \"name\": \"asaaa\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": true,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 566120,\n                            \"raw_material\": {\n                                \"id\": 64698,\n                                \"code\": \"RMA02\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santo André\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 23,\n                            \"unit_cost\": null,\n                            \"created_at\": \"2023-03-28T19:27:20-03:00\",\n                            \"updated_at\": \"2023-03-28T19:27:20-03:00\",\n                            \"formula\": 77710\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"2323\",\n                    \"total_cost\": null,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-03-28T19:27:20-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 325,\n                    \"user\": 2762\n                },\n                {\n                    \"id\": 77711,\n                    \"product\": {\n                        \"id\": 64028,\n                        \"code\": \"MIX 2D\",\n                        \"erpid\": null,\n                        \"name\": \"MIX 2D\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 566121,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 2,\n                            \"unit_cost\": 2,\n                            \"created_at\": \"2023-03-28T19:27:45-03:00\",\n                            \"updated_at\": \"2023-03-28T19:27:45-03:00\",\n                            \"formula\": 77711\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"12\",\n                    \"total_cost\": null,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-03-28T19:27:45-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 325,\n                    \"user\": 2762\n                },\n                {\n                    \"id\": 77712,\n                    \"product\": {\n                        \"id\": 62360,\n                        \"code\": \"P10\",\n                        \"erpid\": null,\n                        \"name\": \"Produto 10\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 566122,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 11,\n                            \"unit_cost\": 1,\n                            \"created_at\": \"2023-03-28T19:40:34-03:00\",\n                            \"updated_at\": \"2023-03-28T19:40:34-03:00\",\n                            \"formula\": 77712\n                        },\n                        {\n                            \"id\": 566123,\n                            \"raw_material\": {\n                                \"id\": 64698,\n                                \"code\": \"RMA02\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santo André\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 0.1,\n                            \"unit_cost\": 0.1,\n                            \"created_at\": \"2023-03-28T19:40:34-03:00\",\n                            \"updated_at\": \"2023-03-28T19:40:34-03:00\",\n                            \"formula\": 77712\n                        },\n                        {\n                            \"id\": 566124,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 3,\n                            \"unit_cost\": 3,\n                            \"created_at\": \"2023-03-28T19:40:34-03:00\",\n                            \"updated_at\": \"2023-03-28T19:40:34-03:00\",\n                            \"formula\": 77712\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"10\",\n                    \"total_cost\": null,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-03-28T19:40:34-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 325,\n                    \"user\": 2762\n                },\n                {\n                    \"id\": 77713,\n                    \"product\": {\n                        \"id\": 60663,\n                        \"code\": \"204C30P\",\n                        \"erpid\": null,\n                        \"name\": \"CONC - GRADE C25/30 PUMP MIX\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 566125,\n                            \"raw_material\": {\n                                \"id\": 64697,\n                                \"code\": \"RMA01\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santana\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 2,\n                            \"unit_cost\": 2,\n                            \"created_at\": \"2023-03-28T20:00:41-03:00\",\n                            \"updated_at\": \"2023-03-28T20:00:41-03:00\",\n                            \"formula\": 77713\n                        }\n                    ],\n                    \"description\": null,\n                    \"code\": \"12\",\n                    \"total_cost\": null,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-03-28T20:00:40-03:00\",\n                    \"volume_per_cycle\": 3,\n                    \"company\": 434,\n                    \"formula_table\": 325,\n                    \"user\": 2762\n                },\n                {\n                    \"id\": 107978,\n                    \"product\": {\n                        \"id\": 59354,\n                        \"code\": \"C03\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete 03\",\n                        \"description\": null,\n                        \"list_price\": 10,\n                        \"slump_class\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"3/4\",\n                        \"color\": \"#4af434\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 779834,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 25,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-06-07T10:54:58-03:00\",\n                            \"updated_at\": \"2023-06-07T10:54:58-03:00\",\n                            \"formula\": 107978\n                        },\n                        {\n                            \"id\": 779835,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 50,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-06-07T10:54:58-03:00\",\n                            \"updated_at\": \"2023-06-07T10:54:58-03:00\",\n                            \"formula\": 107978\n                        },\n                        {\n                            \"id\": 779836,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 100,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-06-07T10:54:58-03:00\",\n                            \"updated_at\": \"2023-06-07T10:54:58-03:00\",\n                            \"formula\": 107978\n                        }\n                    ],\n                    \"description\": \"Formula 25/50/100\",\n                    \"code\": \"F100\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-06-07T10:54:58-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 325,\n                    \"user\": 267\n                },\n                {\n                    \"id\": 108464,\n                    \"product\": {\n                        \"id\": 59354,\n                        \"code\": \"C03\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete 03\",\n                        \"description\": null,\n                        \"list_price\": 10,\n                        \"slump_class\": null,\n                        \"list_slump\": 15,\n                        \"list_slump2\": 2,\n                        \"fck_class\": null,\n                        \"fck\": 20,\n                        \"coarse_agg\": \"3/4\",\n                        \"color\": \"#4af434\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 783354,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 250,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-06-07T10:56:38-03:00\",\n                            \"updated_at\": \"2023-06-07T10:56:38-03:00\",\n                            \"formula\": 108464\n                        },\n                        {\n                            \"id\": 783355,\n                            \"raw_material\": {\n                                \"id\": 26984,\n                                \"code\": \"RMS02\",\n                                \"erpid\": null,\n                                \"name\": \"Sand Duran\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 2\n                            },\n                            \"quantity\": 500,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-06-07T10:56:38-03:00\",\n                            \"updated_at\": \"2023-06-07T10:56:38-03:00\",\n                            \"formula\": 108464\n                        },\n                        {\n                            \"id\": 783356,\n                            \"raw_material\": {\n                                \"id\": 26981,\n                                \"code\": \"RMC01\",\n                                \"erpid\": null,\n                                \"name\": \"Cement Valle\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 1\n                            },\n                            \"quantity\": 1000,\n                            \"unit_cost\": 0,\n                            \"created_at\": \"2023-06-07T10:56:38-03:00\",\n                            \"updated_at\": \"2023-06-07T10:56:38-03:00\",\n                            \"formula\": 108464\n                        }\n                    ],\n                    \"description\": \"Formula 250/500/1000\",\n                    \"code\": \"F1K\",\n                    \"total_cost\": 0,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-06-07T10:56:38-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 325,\n                    \"user\": 267\n                },\n                {\n                    \"id\": 113109,\n                    \"product\": {\n                        \"id\": 25212,\n                        \"code\": \"P01\",\n                        \"erpid\": null,\n                        \"name\": \"Concrete Product 1\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": 10,\n                        \"list_slump2\": 3,\n                        \"fck_class\": null,\n                        \"fck\": 15,\n                        \"coarse_agg\": \"PP20mm\",\n                        \"color\": \"#DCDCDC\",\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 0,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"company\": 434,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null\n                    },\n                    \"formula_items\": [\n                        {\n                            \"id\": 814207,\n                            \"raw_material\": {\n                                \"id\": 64698,\n                                \"code\": \"RMA02\",\n                                \"erpid\": null,\n                                \"name\": \"Aditivo Santo André\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 126,\n                                \"raw_material_type\": 4\n                            },\n                            \"quantity\": 12,\n                            \"unit_cost\": 1,\n                            \"created_at\": \"2023-06-28T10:37:27-03:00\",\n                            \"updated_at\": \"2023-06-28T10:37:27-03:00\",\n                            \"formula\": 113109\n                        },\n                        {\n                            \"id\": 814208,\n                            \"raw_material\": {\n                                \"id\": 64695,\n                                \"code\": \"RMB01\",\n                                \"erpid\": null,\n                                \"name\": \"Brita Extrape\",\n                                \"description\": null,\n                                \"list_price\": null,\n                                \"slump_class\": null,\n                                \"list_slump\": null,\n                                \"list_slump2\": null,\n                                \"fck_class\": null,\n                                \"fck\": null,\n                                \"coarse_agg\": null,\n                                \"color\": \"#DCDCDC\",\n                                \"removed\": false,\n                                \"removed_at\": null,\n                                \"dim_volume\": 1,\n                                \"dim_mass\": 1,\n                                \"project_required\": false,\n                                \"project_suggestion\": false,\n                                \"default_value\": null,\n                                \"value_type\": null,\n                                \"comparison_value\": null,\n                                \"comparison_operator\": null,\n                                \"comparison_operator_value\": null,\n                                \"comparison_operator2\": null,\n                                \"comparison_operator_value2\": null,\n                                \"week_days\": null,\n                                \"recipe_code\": null,\n                                \"custom_1\": null,\n                                \"custom_2\": null,\n                                \"custom_3\": null,\n                                \"custom_4\": null,\n                                \"custom_5\": null,\n                                \"company\": 434,\n                                \"product_type\": 6,\n                                \"removed_by\": null,\n                                \"uom\": 229,\n                                \"raw_material_type\": 3\n                            },\n                            \"quantity\": 12,\n                            \"unit_cost\": 1,\n                            \"created_at\": \"2023-06-28T10:37:27-03:00\",\n                            \"updated_at\": \"2023-06-28T10:37:27-03:00\",\n                            \"formula\": 113109\n                        }\n                    ],\n                    \"description\": \"F\",\n                    \"code\": \"F_090\",\n                    \"total_cost\": 24,\n                    \"inactive\": false,\n                    \"manual_input\": true,\n                    \"created_at\": \"2023-06-28T10:37:27-03:00\",\n                    \"volume_per_cycle\": null,\n                    \"company\": 434,\n                    \"formula_table\": 325,\n                    \"user\": 267\n                }\n            ],\n            \"code\": null,\n            \"description\": \"Só Produto 3\",\n            \"notes\": \"SEM PLANILHA NO S3\",\n            \"file_name\": \"Product3_Formula.xlsx\",\n            \"created_at\": \"2023-01-25T11:46:54-03:00\",\n            \"updated_at\": \"2023-11-23T16:17:26-03:00\",\n            \"inactive\": true,\n            \"num_products\": 1,\n            \"company\": 434\n        }\n    ],\n    \"message\": \"\"\n}"}],"_postman_id":"22181ac3-4344-4c4d-8683-26bc98b6171d"},{"name":"Formula Table","id":"5feaf236-15ce-45b1-934d-201e9d09b393","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"formula_table_code\": \"T1\",\n        \"formula_table_description\": \"First Table\",\n        \"formula_table_formulas\": [\n            {\n                \"formula_code\": \"Formula 01\",\n                \"formula_product_code\": \"505\",\n                \"formula_items\": [\n                    {\n                        \"item_raw_material_code\": \"WAT01\",\n                        \"item_quantity\": 137\n                    },\n                    {\n                        \"item_raw_material_code\": \"SAND01\",\n                        \"item_quantity\": 137\n                    },\n                    {\n                        \"item_raw_material_code\": \"SAND02\",\n                        \"item_quantity\": 120\n                    },\n                    {\n                        \"item_raw_material_code\": \"GRV01\",\n                        \"item_quantity\": 200\n                    },\n                    {\n                        \"item_raw_material_code\": \"ADD01\",\n                        \"item_quantity\": 200\n                    } \n                ]  \n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/formula-tables","description":"<p>Create and send a new Formula Table to ReadyMix Application.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>formula_table_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Code used to identify the table in the Readymix application.</td>\n</tr>\n<tr>\n<td>formula_table_description</td>\n<td>Required</td>\n<td>string</td>\n<td>Description of the formula table to be inserted into the Readymix application.</td>\n</tr>\n<tr>\n<td>formulas</td>\n<td>Required</td>\n<td>Array[Formula]</td>\n<td>Used to group and list the formulas to be inserted into the formula table.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","formula-tables"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"5feaf236-15ce-45b1-934d-201e9d09b393"}],"id":"6188b896-0c59-4495-a847-2e6ebb77ef0c","_postman_id":"6188b896-0c59-4495-a847-2e6ebb77ef0c","description":""},{"name":"Formulas","item":[{"name":"Insert Formulas","id":"b8d42d5a-1353-4616-9725-a2cf833332b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"formula_table_code\": \"PRD02\",\n        \"formula_product_code\": \"350Kg-S4-00-D6-CL0,20\",\n        \"formula_code\": \"FM02\",\n        \"formula_description\": \"Product FCK 20 MPA\",\n        \"formula_items\": [\n            {\n                \"item_raw_material_code\": \"ciment II\",\n                \"item_quantity\": 200.2\n            },\n            {\n                \"item_raw_material_code\": \"Soft Gravel\",\n                \"item_quantity\": 180.2\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/formulas","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>formula_table_code</td>\n<td>Required</td>\n<td>string</td>\n<td>The code of the table that the formula will be inserted into</td>\n</tr>\n<tr>\n<td>product_code</td>\n<td>Required</td>\n<td>string</td>\n<td>The code of the assigned product</td>\n</tr>\n<tr>\n<td>formula_code</td>\n<td>Required</td>\n<td>string</td>\n<td>The code of the formula</td>\n</tr>\n<tr>\n<td>formula_description</td>\n<td>Required</td>\n<td>string</td>\n<td>The description of the formula</td>\n</tr>\n<tr>\n<td>formula_items</td>\n<td>Required</td>\n<td>Array[FormulaItem]</td>\n<td></td>\n</tr>\n<tr>\n<td>formula_inactive</td>\n<td>Optional</td>\n<td>boolean</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"formulaitem\"><strong>FormulaItem</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>product_code</td>\n<td>Required</td>\n<td>string</td>\n<td>The code of the raw material product</td>\n</tr>\n<tr>\n<td>formula_item_quantity</td>\n<td>Required</td>\n<td>float</td>\n<td>The quantity to be loaded of this material</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","formulas"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"b8d42d5a-1353-4616-9725-a2cf833332b8"},{"name":"List Formulas","id":"6af62bed-9c5b-4d3e-8083-4ed56c14b02c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":"https://integration.loop4.io/api/sync/formulas?loading_point_id&formula_table_codes&formula_codes&updated_at_gt","urlObject":{"path":["api","sync","formulas"],"host":["https://integration.loop4.io"],"query":[{"key":"loading_point_id","value":null},{"key":"formula_table_codes","value":null},{"key":"formula_codes","value":null},{"key":"updated_at_gt","value":null}],"variable":[]}},"response":[],"_postman_id":"6af62bed-9c5b-4d3e-8083-4ed56c14b02c"}],"id":"7474be3a-2e9f-4906-9e51-d642e0d2f7ba","_postman_id":"7474be3a-2e9f-4906-9e51-d642e0d2f7ba","description":""},{"name":"Batch Load","item":[{"name":"Insert Batch Load","id":"d16881d5-b7bc-473f-a9a8-835b3e97ec84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[{\n    \"batch_load_code\": \"6113892\",\n    \"batch_load_load_end\": \"2025-07-10 08:41:56\",\n    \"batch_load_load_start\": \"2025-07-10 08:32:36\",\n    \"batch_load_loading_point_id\": 1264,\n    \"batch_load_volume\": 8.0,\n    \"delivery_id\": \"6113892\",\n    \"loaded_materials\": [\n        {\n            \"clp_raw_material_code\": \"1014\",\n            \"real_weight\": 5069.3\n        },\n        {\n            \"clp_raw_material_code\": \"1013\",\n            \"real_weight\": 2810.33\n        },\n        {\n            \"clp_raw_material_code\": \"1012\",\n            \"real_weight\": 3415.22\n        },\n        {\n            \"clp_raw_material_code\": \"1008\",\n            \"real_weight\": 3404.51\n        },\n        {\n            \"clp_raw_material_code\": \"11702\",\n            \"real_weight\": 441.23\n        },\n        {\n            \"clp_raw_material_code\": \"11700\",\n            \"real_weight\": 1801.04\n        },\n        {\n            \"clp_raw_material_code\": \"4109\",\n            \"real_weight\": 12.86\n        },\n        {\n            \"clp_raw_material_code\": \"8861\",\n            \"real_weight\": 5.62\n        },\n        {\n            \"clp_raw_material_code\": \"1000\",\n            \"real_weight\": 1066.55\n        }\n    ]\n}]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/integration/batch-load","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>batch_load_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Code of the batch load</td>\n</tr>\n<tr>\n<td>batch_load_loading_point_id</td>\n<td>Required</td>\n<td>string</td>\n<td>Loading point ID in Loop</td>\n</tr>\n<tr>\n<td>batch_load_volume</td>\n<td>Required</td>\n<td>number</td>\n<td>Volume Loaded</td>\n</tr>\n<tr>\n<td>batch_load_clp_product_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Product code Loaded (In Loop)</td>\n</tr>\n<tr>\n<td>batch_load_clp_formula_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Formula code Loaded (In Loop)</td>\n</tr>\n<tr>\n<td>batch_load_load_start</td>\n<td>Optional</td>\n<td>string</td>\n<td>Date when loading started</td>\n</tr>\n<tr>\n<td>batch_load_load_end</td>\n<td>Optional</td>\n<td>string</td>\n<td>Date when loading was completed</td>\n</tr>\n<tr>\n<td>loaded_materials</td>\n<td>Optional</td>\n<td>array / object</td>\n<td>All raw materials Loaded</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Optional</td>\n<td>number</td>\n<td>Id of the Batch Load</td>\n</tr>\n<tr>\n<td>endload</td>\n<td>Optional</td>\n<td>string</td>\n<td>Date when loading was Finish</td>\n</tr>\n<tr>\n<td>batch_status</td>\n<td>Optional</td>\n<td>number</td>\n<td>Batch Status in Loop</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Code of the Raw material</td>\n</tr>\n<tr>\n<td>clp_product_description</td>\n<td>Optional</td>\n<td>string</td>\n<td>Description product of the Raw material</td>\n</tr>\n<tr>\n<td>humidity</td>\n<td>Optional</td>\n<td>number</td>\n<td>Humidity rate of the raw material</td>\n</tr>\n<tr>\n<td>clp_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Raw material code</td>\n</tr>\n<tr>\n<td>desired</td>\n<td>Optional</td>\n<td>number</td>\n<td>Desired volume of the Raw material</td>\n</tr>\n<tr>\n<td>real</td>\n<td>Optional</td>\n<td>number</td>\n<td>Real volume of the Raw material</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","integration","batch-load"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"b21814dc-92b1-4069-94e7-da91a785de8a","name":"Error Response","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n\n    \"batch_load_code\": \"3462271\",\n\n    \"batch_load_clp_product_code\": \"HN301020\",\n\n    \"batch_load_clp_formula_code\": \"HN301020\",\n\n    \"batch_load_loading_point_id\": \"889\",\n\n    \"batch_load_load_start\": \"2024-09-18 10:16:00\",\n\n    \"batch_load_load_end\": \"2024-09-18 10:17:00\",\n\n    \"batch_load_volume\": 8,\n\n    \"loaded_materials\": [\n\n      {\n\n        \"code\": \"AR1\",\n\n        \"clp_product_description\": \"AR1\",\n\n        \"humidity\": 0,\n\n        \"clp_code\": \"AR1\",\n\n        \"desired\": 8,\n\n        \"real\": 8\n\n      },\n\n      {\n\n        \"code\": \"CE1\",\n\n        \"clp_product_description\": \"CE1\",\n\n        \"humidity\": 0,\n\n        \"clp_code\": \"CE1\",\n\n        \"desired\": 8,\n\n        \"real\": 8\n\n      }\n\n    ],\n\n    \"id\": 3462270,\n\n    \"endload\": \"2024-09-18 10:17:00\",\n\n    \"batch_status\": 2\n\n  }\n\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://integration.readymix.io/api/integration/batch-load","protocol":"https","host":["integration","readymix","io"],"path":["api","integration","batch-load"],"query":[{"key":"token","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 23 Sep 2024 15:18:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"177"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [],\n        \"failed_records\": [\n            {\n                \"batch_load_code\": \"3462271\",\n                \"reason\": \"LoadingPoint matching query does not exist.\"\n            }\n        ]\n    },\n    \"message\": \"\"\n}"},{"id":"b3062033-556f-430a-82d3-b8f2b9bbfd5e","name":"Created Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-comapny-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n\n    \"batch_load_code\": \"3462271\",\n\n    \"batch_load_clp_product_code\": \"HN301020\",\n\n    \"batch_load_clp_formula_code\": \"HN301020\",\n\n    \"batch_load_loading_point_id\": \"388\",\n\n    \"batch_load_load_start\": \"2024-09-18 10:16:00\",\n\n    \"batch_load_load_end\": \"2024-09-18 10:17:00\",\n\n    \"batch_load_volume\": 8,\n\n    \"loaded_materials\": [\n\n      {\n\n        \"code\": \"AR1\",\n\n        \"clp_product_description\": \"AR1\",\n\n        \"humidity\": 0,\n\n        \"clp_code\": \"AR1\",\n\n        \"desired\": 8,\n\n        \"real\": 8\n\n      },\n\n      {\n\n        \"code\": \"CE1\",\n\n        \"clp_product_description\": \"CE1\",\n\n        \"humidity\": 0,\n\n        \"clp_code\": \"CE1\",\n\n        \"desired\": 8,\n\n        \"real\": 8\n\n      }\n\n    ],\n\n    \"id\": 3462270,\n\n    \"endload\": \"2024-09-18 10:17:00\",\n\n    \"batch_status\": 2\n\n  }\n\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://integration.readymix.io/api/integration/batch-load","protocol":"https","host":["integration","readymix","io"],"path":["api","integration","batch-load"],"query":[{"key":"token","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 23 Sep 2024 15:22:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"145"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"batch_load_code\": \"3462271\",\n                \"batch_load_id\": 208453\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"d16881d5-b7bc-473f-a9a8-835b3e97ec84"},{"name":"Post Loop Batch Data","id":"130b9838-e774-48f0-9393-8bf1c2c9fb18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"token","value":"c500f862-b8bd-40c0-a53f-29fce9dd","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"batch_load_code\": \"3462271\",\n        \"batch_load_clp_product_code\": \"HN301020\",\n        \"batch_load_clp_formula_code\": \"HN301020\",\n        \"batch_load_loading_point_id\": \"388\",\n        \"batch_load_load_start\": \"2024-09-18 10:16:00\",\n        \"batch_load_load_end\": \"2024-09-18 10:17:00\",\n        \"batch_load_volume\": 8,\n        \"loaded_materials\": [\n            {\n                \"code\": \"AR1\",\n                \"clp_product_description\": \"AR1\",\n                \"humidity\": 0,\n                \"clp_code\": \"AR1\",\n                \"desired\": 8,\n                \"real\": 8\n            },\n            {\n                \"code\": \"CE1\",\n                \"clp_product_description\": \"CE1\",\n                \"humidity\": 0,\n                \"clp_code\": \"CE1\",\n                \"desired\": 8,\n                \"real\": 8\n            }\n        ],\n        \"id\": 3462270,\n        \"endload\": \"2024-09-18 10:17:00\",\n        \"batch_status\": 2\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/integration/loop-batch","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>batch_load_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Code of the batch load</td>\n</tr>\n<tr>\n<td>batch_load_loading_point_id</td>\n<td>Required</td>\n<td>string</td>\n<td>Loading point ID in Loop</td>\n</tr>\n<tr>\n<td>batch_load_volume</td>\n<td>Required</td>\n<td>number</td>\n<td>Volume Loaded</td>\n</tr>\n<tr>\n<td>batch_load_clp_product_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Product code Loaded (In Loop)</td>\n</tr>\n<tr>\n<td>batch_load_clp_formula_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Formula code Loaded (In Loop)</td>\n</tr>\n<tr>\n<td>batch_load_load_start</td>\n<td>Optional</td>\n<td>string</td>\n<td>Date when loading started</td>\n</tr>\n<tr>\n<td>batch_load_load_end</td>\n<td>Optional</td>\n<td>string</td>\n<td>Date when loading was completed</td>\n</tr>\n<tr>\n<td>loaded_materials</td>\n<td>Optional</td>\n<td>array / object</td>\n<td>All raw materials Loaded</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Optional</td>\n<td>number</td>\n<td>Id of the Batch Load</td>\n</tr>\n<tr>\n<td>endload</td>\n<td>Optional</td>\n<td>string</td>\n<td>Date when loading was Finish</td>\n</tr>\n<tr>\n<td>batch_status</td>\n<td>Optional</td>\n<td>number</td>\n<td>Batch Status in Loop</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fields</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Code of the Raw material</td>\n</tr>\n<tr>\n<td>clp_product_description</td>\n<td>Optional</td>\n<td>string</td>\n<td>Description product of the Raw material</td>\n</tr>\n<tr>\n<td>humidity</td>\n<td>Optional</td>\n<td>number</td>\n<td>Humidity rate of the raw material</td>\n</tr>\n<tr>\n<td>clp_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Raw material code</td>\n</tr>\n<tr>\n<td>desired</td>\n<td>Optional</td>\n<td>number</td>\n<td>Desired volume of the Raw material</td>\n</tr>\n<tr>\n<td>real</td>\n<td>Optional</td>\n<td>number</td>\n<td>Real volume of the Raw material</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","integration","loop-batch"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"7f8b8207-e501-4269-88d2-a174f3290b27","name":"Error Response","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n\n    \"batch_load_code\": \"3462271\",\n\n    \"batch_load_clp_product_code\": \"HN301020\",\n\n    \"batch_load_clp_formula_code\": \"HN301020\",\n\n    \"batch_load_loading_point_id\": \"889\",\n\n    \"batch_load_load_start\": \"2024-09-18 10:16:00\",\n\n    \"batch_load_load_end\": \"2024-09-18 10:17:00\",\n\n    \"batch_load_volume\": 8,\n\n    \"loaded_materials\": [\n\n      {\n\n        \"code\": \"AR1\",\n\n        \"clp_product_description\": \"AR1\",\n\n        \"humidity\": 0,\n\n        \"clp_code\": \"AR1\",\n\n        \"desired\": 8,\n\n        \"real\": 8\n\n      },\n\n      {\n\n        \"code\": \"CE1\",\n\n        \"clp_product_description\": \"CE1\",\n\n        \"humidity\": 0,\n\n        \"clp_code\": \"CE1\",\n\n        \"desired\": 8,\n\n        \"real\": 8\n\n      }\n\n    ],\n\n    \"id\": 3462270,\n\n    \"endload\": \"2024-09-18 10:17:00\",\n\n    \"batch_status\": 2\n\n  }\n\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://integration.readymix.io/api/integration/batch-load","protocol":"https","host":["integration","readymix","io"],"path":["api","integration","batch-load"],"query":[{"key":"token","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 23 Sep 2024 15:18:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"177"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [],\n        \"failed_records\": [\n            {\n                \"batch_load_code\": \"3462271\",\n                \"reason\": \"LoadingPoint matching query does not exist.\"\n            }\n        ]\n    },\n    \"message\": \"\"\n}"},{"id":"9ccff5a8-c50d-4cb1-95cc-fa324da3c53d","name":"Created Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-comapny-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n\n    \"batch_load_code\": \"3462271\",\n\n    \"batch_load_clp_product_code\": \"HN301020\",\n\n    \"batch_load_clp_formula_code\": \"HN301020\",\n\n    \"batch_load_loading_point_id\": \"388\",\n\n    \"batch_load_load_start\": \"2024-09-18 10:16:00\",\n\n    \"batch_load_load_end\": \"2024-09-18 10:17:00\",\n\n    \"batch_load_volume\": 8,\n\n    \"loaded_materials\": [\n\n      {\n\n        \"code\": \"AR1\",\n\n        \"clp_product_description\": \"AR1\",\n\n        \"humidity\": 0,\n\n        \"clp_code\": \"AR1\",\n\n        \"desired\": 8,\n\n        \"real\": 8\n\n      },\n\n      {\n\n        \"code\": \"CE1\",\n\n        \"clp_product_description\": \"CE1\",\n\n        \"humidity\": 0,\n\n        \"clp_code\": \"CE1\",\n\n        \"desired\": 8,\n\n        \"real\": 8\n\n      }\n\n    ],\n\n    \"id\": 3462270,\n\n    \"endload\": \"2024-09-18 10:17:00\",\n\n    \"batch_status\": 2\n\n  }\n\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://integration.readymix.io/api/integration/batch-load","protocol":"https","host":["integration","readymix","io"],"path":["api","integration","batch-load"],"query":[{"key":"token","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 23 Sep 2024 15:22:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"145"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"batch_load_code\": \"3462271\",\n                \"batch_load_id\": 208453\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"130b9838-e774-48f0-9393-8bf1c2c9fb18"}],"id":"3f6bc8ca-f547-4585-83a3-f575b08a9432","_postman_id":"3f6bc8ca-f547-4585-83a3-f575b08a9432","description":""},{"name":"Loading Points","item":[{"name":"Loading Points ID","id":"4593d719-8692-4f0c-9ace-097e132f5fe2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":"https://integration.loop4.io/api/integration/loading-points","urlObject":{"path":["api","integration","loading-points"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"4593d719-8692-4f0c-9ace-097e132f5fe2"}],"id":"1f22de34-7c3e-4857-b602-d16b9f2b9bbb","_postman_id":"1f22de34-7c3e-4857-b602-d16b9f2b9bbb","description":""},{"name":"Plans Reservations","item":[{"name":"Insert Plans Reservations","id":"47104a33-b3ed-4489-b59f-27f1cf4a9e8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"date\": \"2025-02-14\",\n        \"plant_code\": \"2\",\n        \"quantity\": 6,\n        \"notes\": \"Notes\",\n        \"trip_max_vol\": 8,\n        \"first_arrival_at\": \"2025-02-14 12:00:00\",\n        \"truck_interval\": 20,\n        \"back_time\": 11,\n        \"go_time\": 12,\n        \"unload_time\": 13,\n        \"load_time\": 14\n    },\n    {\n        \"date\": \"2025-02-14\",\n        \"plant_code\": \"2\",\n        \"quantity\": 2,\n        \"notes\": \"Notes\",\n        \"trip_max_vol\": 8,\n        \"first_arrival_at\": \"2025-02-14 17:00:00\",\n        \"truck_interval\": 20,\n        \"back_time\": 10,\n        \"go_time\": 10,\n        \"unload_time\": 10,\n        \"load_time\": 10\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/plans-reservations","description":"<p>Creates Plans Reservations</p>\n<p>The plans reservations will be created on each request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>date</td>\n<td>Required</td>\n<td>string</td>\n<td>Date the Plan Reservation</td>\n</tr>\n<tr>\n<td>plant_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Plant Code of the Plan Reservation</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Required</td>\n<td>number</td>\n<td>Quantity of the Plan Reservation</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>Required</td>\n<td>string</td>\n<td>Notes of the Plan Reservation</td>\n</tr>\n<tr>\n<td>trip_max_vol</td>\n<td>Required</td>\n<td>number</td>\n<td>Trip Max Volume of the Plan Reservation</td>\n</tr>\n<tr>\n<td>first_arrival_at</td>\n<td>Required</td>\n<td>string</td>\n<td>First Arrival At of the Plan Reservation  <br />  <br />Format: YYYY-MM-DD HH:MM:SS</td>\n</tr>\n<tr>\n<td>truck_interval</td>\n<td>Required</td>\n<td>number</td>\n<td>Truck Interval of the Plan Reservation</td>\n</tr>\n<tr>\n<td>back_time</td>\n<td>Required</td>\n<td>number</td>\n<td>Back Time of the Plan Reservation</td>\n</tr>\n<tr>\n<td>go_time</td>\n<td>Required</td>\n<td>number</td>\n<td>Go Time of the Plan Reservation</td>\n</tr>\n<tr>\n<td>unload_time</td>\n<td>Required</td>\n<td>number</td>\n<td>Unload time of the Plan Reservation</td>\n</tr>\n<tr>\n<td>load_time</td>\n<td>Required</td>\n<td>number</td>\n<td>Load Time of the Plan Reservation</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","plans-reservations"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"cff1d8aa-703c-4f97-8e89-7a8f71fe0e8d","name":"Created Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"date\": \"2025-02-14\",\r\n        \"plant_code\": \"2\",\r\n        \"quantity\": 6,\r\n        \"notes\": \"Notes\",\r\n        \"trip_max_vol\": 8,\r\n        \"first_arrival_at\": \"2025-02-14 12:00:00\",\r\n        \"truck_interval\": 20,\r\n        \"back_time\": 11,\r\n        \"go_time\": 12,\r\n        \"unload_time\": 13,\r\n        \"load_time\": 14\r\n    },\r\n    {\r\n        \"date\": \"2025-02-14\",\r\n        \"plant_code\": \"2\",\r\n        \"quantity\": 2,\r\n        \"notes\": \"Notes\",\r\n        \"trip_max_vol\": 8,\r\n        \"first_arrival_at\": \"2025-02-14 17:00:00\",\r\n        \"truck_interval\": 20,\r\n        \"back_time\": 10,\r\n        \"go_time\": 10,\r\n        \"unload_time\": 10,\r\n        \"load_time\": 10\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.readymix.io/api/sync/plans-reservations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 14:04:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"132"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"first_arrival_at\": \"2025-02-14 17:00:00\",\n                \"status\": \"created\"\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"bd807826-9d7b-4b8d-962a-9e5d14ac1b31","name":"Error Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"},{"key":"token","value":"06aa00c3-f8d6-44cb-823b-7b4ac295","type":"text","disabled":true}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://integration.readymix.io/api/sync/plans-reservations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 14:06:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"138"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [],\n        \"failed_records\": [\n            {\n                \"first_arrival_at\": \"2025-02-14 17:00:00\",\n                \"reason\": \"plant_code '20' does not exist in the database\"\n            }\n        ]\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"47104a33-b3ed-4489-b59f-27f1cf4a9e8d"},{"name":"List Plans Reservations","id":"64bf1017-68c8-402a-87be-b13e77744edd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":"https://integration.loop4.io/api/sync/plans-reservations?updated_at_gt=2025-02-17 00:00:00","urlObject":{"path":["api","sync","plans-reservations"],"host":["https://integration.loop4.io"],"query":[{"key":"updated_at_gt","value":"2025-02-17 00:00:00"}],"variable":[]}},"response":[],"_postman_id":"64bf1017-68c8-402a-87be-b13e77744edd"}],"id":"9044aad9-6b24-4dc4-88d1-a8bcbe4a2266","_postman_id":"9044aad9-6b24-4dc4-88d1-a8bcbe4a2266","description":""},{"name":"Invoice","item":[{"name":"Update Invoices","id":"228ff540-751d-4d74-8f9f-1a83cf350bb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"invoice_code\": \"45\",\n        \"invoice_date\": \"2025-10-23\",\n        \"invoice_due_date\": \"2025-10-31\",\n        \"invoice_total_price\": 100,\n        \"invoice_total_extended_price\": 100,\n        \"invoice_total_tax_price\": 0,\n        \"invoice_base64\":\"UEsDgAIAAAAEAACAFAAATAAgCW0NvbnRlbnRfVHlwZXNdLnhtbCCiBAIooAACAAAAAAAAAAAAAAAAAAAAtABQABgAIAAAAIQBYNnlLE\",\n        \"customer_code\": \"C04\",\n        \"project_code\": \"000016\",\n        \"address_code\": \"A000016\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/invoices","description":"<h3 id=\"update-invoices-records\">Update Invoices Records</h3>\n<p>The invoice records will be updated on each request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>invoice_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Code identifying the invoice</td>\n</tr>\n<tr>\n<td>invoice_total_price</td>\n<td>Optional</td>\n<td>number</td>\n<td>Total price of the invoice</td>\n</tr>\n<tr>\n<td>invoice_total_extended_price</td>\n<td>Optional</td>\n<td>number</td>\n<td>Total extended price of the invoice</td>\n</tr>\n<tr>\n<td>invoice_total_tax_price</td>\n<td>Optional</td>\n<td>number</td>\n<td>Total tax amount of the invoice</td>\n</tr>\n<tr>\n<td>invoice_date</td>\n<td>Optional</td>\n<td>string</td>\n<td>Date of the invoice  <br />  <br />Format: YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>customer_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Code of the customer related to the invoice</td>\n</tr>\n<tr>\n<td>project_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Code of the project related to the invoice</td>\n</tr>\n<tr>\n<td>address_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Code of the address related to the invoice</td>\n</tr>\n<tr>\n<td>invoice_base64</td>\n<td>Optional</td>\n<td>string</td>\n<td>Base64 to generate the PDF invoice</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","invoices"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"228ff540-751d-4d74-8f9f-1a83cf350bb5"},{"name":"List Invoices","id":"72c284f6-1d02-4543-84d4-d72b0db6f6b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":"https://integration.loop4.io/api/sync/invoices?date_start=2025-05-01&date_end=2025-05-07","urlObject":{"path":["api","sync","invoices"],"host":["https://integration.loop4.io"],"query":[{"key":"date_start","value":"2025-05-01"},{"key":"date_end","value":"2025-05-07"}],"variable":[]}},"response":[{"id":"ec51a117-c21d-4ff7-9f3d-cf6ad5a2be5a","name":"List Records","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":"https://integration.readymix.io/api/sync/plans-reservations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Feb 2024 14:04:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"132"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": [\n    {\n      \"id\": 60977,\n      \"client\": {\n        \"id\": 644370,\n        \"name\": \"NECTAREA SA\",\n        \"email\": null,\n        \"phone\": \"2617083893\",\n        \"erpkey\": \"G03988\",\n        \"erpid\": null,\n        \"batchid\": null,\n        \"notes\": \"NECTAREA SOCIEDAD ANONIMA DE AHORRO PARA FINES DETERMINADOS S. A.\",\n        \"address\": null,\n        \"complement\": null,\n        \"district\": null,\n        \"city_name\": null,\n        \"state\": null,\n        \"postal_code\": null,\n        \"country\": null,\n        \"document\": \"30716336421\",\n        \"document2\": null,\n        \"document3\": null,\n        \"document4\": null,\n        \"document5\": null,\n        \"document6\": null,\n        \"document7\": null,\n        \"document8\": null,\n        \"document9\": null,\n        \"document10\": null,\n        \"document11\": null,\n        \"document12\": null,\n        \"person_type\": \"N\",\n        \"paternal_last_name\": null,\n        \"maternal_last_name\": null,\n        \"legal_name\": null,\n        \"inactive\": false,\n        \"is_system\": false,\n        \"credit_limit\": null,\n        \"is_b_side\": true,\n        \"created_at\": \"2025-05-05T12:19:32-03:00\",\n        \"updated_at\": \"2025-05-05T15:06:55-03:00\",\n        \"company\": 555,\n        \"seller\": 84355,\n        \"payment_condition\": 2968,\n        \"legal_address\": null\n      },\n      \"purchase_order\": {\n        \"id\": 14875164,\n        \"delivery_date\": \"2025-05-05 15:08:00\",\n        \"order_date\": \"2025-05-05 15:09:11\",\n        \"order_number\": \"4431\",\n        \"order_products\": [\n          {\n            \"id\": 3063153,\n            \"order\": 14875164,\n            \"product\": {\n              \"id\": 102634,\n              \"code\": \"H005\",\n              \"erpid\": null,\n              \"batchid\": null,\n              \"name\": \"H17 - 06/25\",\n              \"description\": \"H17-0625-02\",\n              \"list_price\": null,\n              \"slump_class\": null,\n              \"list_slump\": 13.0,\n              \"list_slump2\": null,\n              \"fck_class\": null,\n              \"fck\": 20.1,\n              \"coarse_agg\": \"06/25\",\n              \"total_weight\": null,\n              \"min_quantity\": null,\n              \"color\": null,\n              \"removed\": false,\n              \"removed_at\": null,\n              \"dim_volume\": 1.0,\n              \"dim_mass\": 1.0,\n              \"project_required\": false,\n              \"project_suggestion\": false,\n              \"default_value\": null,\n              \"value_type\": null,\n              \"comparison_value\": null,\n              \"comparison_operator\": null,\n              \"comparison_operator_value\": null,\n              \"comparison_operator2\": null,\n              \"comparison_operator_value2\": null,\n              \"week_days\": null,\n              \"recipe_code\": null,\n              \"custom_1\": null,\n              \"custom_2\": null,\n              \"custom_3\": null,\n              \"custom_4\": null,\n              \"custom_5\": null,\n              \"company\": 555,\n              \"product_type\": 1,\n              \"removed_by\": null,\n              \"uom\": null,\n              \"raw_material_type\": null,\n              \"tax_group\": null\n            },\n            \"qtd\": 6.0,\n            \"price\": 92600.0,\n            \"extended_price\": 555600.0,\n            \"planned\": false,\n            \"pump\": null,\n            \"planned_qtd\": 0.0\n          }\n        ]\n      },\n      \"project\": {\n        \"id\": 548222002,\n        \"codcontrato\": \"0257\",\n        \"clinome\": \"BARRIO VIRGEN DE LOURDES\",\n        \"cliendereco\": \"CALLE 13 , CHALLAO , LS HERAS, MENDOZA, 5539\",\n        \"codvendedor\": null,\n        \"pincode\": null,\n        \"lat\": -32.834,\n        \"lng\": -68.871,\n        \"polyg\": null,\n        \"detached\": false,\n        \"customer_key\": \"289379109\",\n        \"dtstart\": null,\n        \"dtend\": null,\n        \"active\": null,\n        \"estimated_volume\": 6.0,\n        \"credit_limit\": 600000.0,\n        \"credit_ordered\": 0.0,\n        \"credit_delivered\": 0.0,\n        \"notes\": null,\n        \"start_date\": \"2025-05-05\",\n        \"end_date\": \"2025-05-12\",\n        \"has_max_quantity\": false,\n        \"has_extra_quantity\": false,\n        \"inactive\": false,\n        \"all_plants\": true,\n        \"is_b_side\": true,\n        \"version\": 2,\n        \"spent_total_value\": 0.0,\n        \"display_price\": false,\n        \"created_at\": \"2025-05-05T12:24:06-03:00\",\n        \"updated_at\": \"2025-05-05T15:08:02-03:00\",\n        \"po_required\": true,\n        \"pre_client_name\": null,\n        \"pre_address\": null,\n        \"custom_1\": null,\n        \"custom_2\": null,\n        \"custom_3\": null,\n        \"custom_4\": null,\n        \"custom_5\": null,\n        \"custom_6\": null,\n        \"custom_7\": null,\n        \"custom_8\": null,\n        \"custom_9\": null,\n        \"custom_10\": null,\n        \"custom_11\": null,\n        \"custom_12\": null,\n        \"custom_13\": null,\n        \"custom_14\": null,\n        \"custom_15\": null,\n        \"custom_16\": null,\n        \"custom_17\": null,\n        \"created_by_username\": null,\n        \"company\": 555,\n        \"plan_customer\": 644370,\n        \"tms_address\": 1381659,\n        \"billing_address\": 1381659,\n        \"invoicing_address\": 1381659,\n        \"billing_method\": null,\n        \"seller\": 84355,\n        \"seller_2\": null,\n        \"status\": 1664,\n        \"fav_plant\": null,\n        \"executant\": 644370,\n        \"payment_method\": 156,\n        \"payment_condition\": 2968,\n        \"situation\": 1,\n        \"price_table\": null,\n        \"plant_fat\": null,\n        \"project_status\": null,\n        \"sale_step\": null,\n        \"rating\": null,\n        \"sale_source\": null\n      },\n      \"address\": {\n        \"id\": 1381659,\n        \"address_erpkey\": null,\n        \"address_street\": \"CALLE 13\",\n        \"address_number\": null,\n        \"address_district\": \"CHALLAO\",\n        \"address_complement\": null,\n        \"postal_code\": \"5539\",\n        \"lat\": -32.8339837394469,\n        \"lng\": -68.8709735870361,\n        \"polyg\": null,\n        \"radius\": null,\n        \"address_full\": \"CALLE 13 , CHALLAO , LS HERAS, MENDOZA, 5539\",\n        \"state\": \"MENDOZA\",\n        \"note\": null,\n        \"name\": null,\n        \"is_billing\": false,\n        \"is_legal\": false,\n        \"erpkey_2\": null,\n        \"city_name\": \"LS HERAS\",\n        \"read_only\": false,\n        \"auto_location\": false,\n        \"custom_1\": null,\n        \"custom_2\": null,\n        \"custom_3\": null,\n        \"custom_4\": null,\n        \"custom_5\": null,\n        \"thoroughfare\": null,\n        \"company\": 555,\n        \"city\": null,\n        \"person\": null,\n        \"plan_customer\": 644370\n      },\n      \"payment_method\": {\n        \"id\": 156,\n        \"erpkey\": \"001\",\n        \"name\": \"EFECTIVO\",\n        \"company\": 555\n      },\n      \"payment_condition\": {\n        \"id\": 2968,\n        \"erpkey\": \"001\",\n        \"name\": \"CONTADO\",\n        \"company\": 555\n      },\n      \"fat_code\": \"222\",\n      \"total_price\": 555600.0,\n      \"total_extended_price\": 555600.0,\n      \"total_tax_price\": 0.0,\n      \"date\": \"2025-05-05\",\n      \"created_at\": \"2025-05-05T15:09:11-03:00\",\n      \"total_due\": \"0.00\",\n      \"sync_value\": null,\n      \"discount\": \"0.00\",\n      \"can_delete_note\": true,\n      \"company\": 555\n    }\n  ],\n  \"message\": \"\"\n}"}],"_postman_id":"72c284f6-1d02-4543-84d4-d72b0db6f6b0"}],"id":"d2b86bc6-d540-40bf-9e41-700e6ec03dbb","_postman_id":"d2b86bc6-d540-40bf-9e41-700e6ec03dbb","description":""},{"name":"Suppliers","item":[{"name":"List Suppliers","id":"726d3ff5-dece-4b28-a3db-10389a337d78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":"https://integration.loop4.io/api/sync/supplier","urlObject":{"path":["api","sync","supplier"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"795a7ca5-9db9-4247-871b-04d2e111a03d","name":"List Records","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your_company_token}}","type":"text"}],"url":"https://integration.loop4.io/api/sync/supplier"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 21 Aug 2025 19:23:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"242"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"code\": \"111\",\n            \"name\": \"2222AA\"\n        },\n        {\n            \"code\": \"1111\",\n            \"name\": \"KIOSK\"\n        },\n        {\n            \"code\": \"123\",\n            \"name\": \"concrete first supplier\"\n        },\n        {\n            \"code\": \"2222\",\n            \"name\": \"Zéquinha\"\n        },\n        {\n            \"code\": \"3333\",\n            \"name\": \"ALIAS\"\n        }\n    ],\n    \"message\": \"\"\n}"}],"_postman_id":"726d3ff5-dece-4b28-a3db-10389a337d78"},{"name":"Insert Suplliers","id":"b46748d7-4538-4024-8fb3-ce8adaa2002f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"supplier_code\": \"123\",\n        \"supplier_name\": \"concrete first supplier\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/supplier","description":"<p>Creates / Updates Suppliers</p>\n<p>The Suppliers will be created or updated on each request.<br />If the Suppliers code exists, it will be updated, if it does not exist it will be created.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>supplier_code</td>\n<td>Required</td>\n<td>string</td>\n<td>The supplier code, this value is used to identify each supplier, must be unique per supplier</td>\n</tr>\n<tr>\n<td>supplier_name</td>\n<td>Required</td>\n<td>string</td>\n<td>Name of the Supplier</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","supplier"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[{"id":"b232fca2-23d9-4018-8bcc-83c93ef84632","name":"Created Records","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your_company_token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"supplier_code\": \"123\",\n        \"supplier_name\": \"concrete first supplier\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/supplier"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 21 Aug 2025 19:22:57 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"135"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"supplier_code\": \"123\",\n                \"status\": \"created\"\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"8c461689-1dde-40b9-a84a-841fde67943d","name":"Updated Records","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your_company_token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"supplier_code\": \"123\",\n        \"supplier_name\": \"concrete first supplier 1\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/supplier"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 21 Aug 2025 19:23:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"135"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"supplier_code\": \"123\",\n                \"status\": \"updated\"\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"},{"id":"17cdfdb2-de0e-4f04-a6a9-39a7073df255","name":"Error Records","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"token","value":"{{your_company_token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"supplier_name\": \"concrete first supplier 1\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/supplier"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 21 Aug 2025 19:23:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"166"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [],\n        \"failed_records\": [\n            {\n                \"supplier_code\": null,\n                \"reason\": \"Missing field 'supplier_code' from json\"\n            }\n        ]\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"b46748d7-4538-4024-8fb3-ce8adaa2002f"}],"id":"f4b91e78-08c5-48d2-8a07-75674ee06347","_postman_id":"f4b91e78-08c5-48d2-8a07-75674ee06347","description":""},{"name":"Plans","item":[{"name":"List Plans","id":"218dd2b3-a19f-49a5-b915-219fb8bd8496","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"token","value":"{{your_company_token}}","type":"text"}],"url":"https://integration.loop4.io/api/sync/plans?date_start=2025-08-02 00:00:00&date_end=2025-08-02 23:59:59&plant_code=02","description":"<p>List Plans</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Params</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>date_start</td>\n<td>Required</td>\n<td>The start date and time for the plans.  <br />Format: YYYY-MM-DD HH:MM:SS</td>\n</tr>\n<tr>\n<td>date_end</td>\n<td>Required</td>\n<td>The end date and time for the plans.  <br />Format: YYYY-MM-DD HH:MM:SS</td>\n</tr>\n<tr>\n<td>plant_code</td>\n<td>Required</td>\n<td>The registered plant code in Loop.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"how-to-obtain-the-plant_code\">How to obtain the <code>plant_code</code></h3>\n<p>To get the registered <strong>plant code</strong> in the <strong>Loop</strong> system, follow these steps:<br />Administration -&gt; Plants</p>\n<img src=\"https://content.pstmn.io/99c284b1-4b65-47a9-a18c-fbc3a501d1d7/aW1hZ2UucG5n\" alt height=\"1986\" width=\"3420\" />\n\n<p>The <strong><code>plant_code</code></strong> corresponds to the <strong><code>internal_code</code></strong> column in the <strong>Plants</strong> table of the Loop.</p>\n<img src=\"https://content.pstmn.io/209a2638-820a-40e9-a3a2-a5f1786e22c9/aW1hZ2UucG5n\" alt height=\"1986\" width=\"3420\" />","urlObject":{"path":["api","sync","plans"],"host":["https://integration.loop4.io"],"query":[{"key":"date_start","value":"2025-08-02 00:00:00"},{"key":"date_end","value":"2025-08-02 23:59:59"},{"key":"plant_code","value":"02"}],"variable":[]}},"response":[],"_postman_id":"218dd2b3-a19f-49a5-b915-219fb8bd8496"},{"name":"List Plans By Project and Date","id":"58e6e5c7-a7be-4e4a-8a99-e4df71685fc0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":"https://integration.loop4.io/api/plans/by-project-date?id_projects=123,456,789&date=2026-03-13","urlObject":{"path":["api","plans","by-project-date"],"host":["https://integration.loop4.io"],"query":[{"key":"id_projects","value":"123,456,789"},{"key":"date","value":"2026-03-13"}],"variable":[]}},"response":[],"_postman_id":"58e6e5c7-a7be-4e4a-8a99-e4df71685fc0"}],"id":"7b377af7-f972-4e43-9a11-84f16b1e22f1","_postman_id":"7b377af7-f972-4e43-9a11-84f16b1e22f1","description":""},{"name":"Pump Plans","item":[{"name":"List Pump Plans","id":"1ba04726-cf51-4584-894f-9639a0471088","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"token","value":"{{your_company_token}}","type":"text"}],"url":"https://integration.loop4.io/api/company/pump-plans?date_start=2025-10-01&date_end=2025-10-01","description":"<p>List Plans</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Params</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>date_start</td>\n<td>Required</td>\n<td>The start date and time for the plans.  <br />Format: YYYY-MM-DD HH:MM:SS</td>\n</tr>\n<tr>\n<td>date_end</td>\n<td>Required</td>\n<td>The end date and time for the plans.  <br />Format: YYYY-MM-DD HH:MM:SS</td>\n</tr>\n<tr>\n<td>plant_code</td>\n<td>Required</td>\n<td>The registered plant code in Loop.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"how-to-obtain-the-plant_code\">How to obtain the <code>plant_code</code></h3>\n<p>To get the registered <strong>plant code</strong> in the <strong>Loop</strong> system, follow these steps:<br />Administration -&gt; Plants</p>\n<img src=\"https://content.pstmn.io/99c284b1-4b65-47a9-a18c-fbc3a501d1d7/aW1hZ2UucG5n\" alt height=\"1986\" width=\"3420\" />\n\n<p>The <strong><code>plant_code</code></strong> corresponds to the <strong><code>internal_code</code></strong> column in the <strong>Plants</strong> table of the Loop.</p>\n<img src=\"https://content.pstmn.io/209a2638-820a-40e9-a3a2-a5f1786e22c9/aW1hZ2UucG5n\" alt height=\"1986\" width=\"3420\" />","urlObject":{"path":["api","company","pump-plans"],"host":["https://integration.loop4.io"],"query":[{"key":"date_start","value":"2025-10-01"},{"key":"date_end","value":"2025-10-01"}],"variable":[]}},"response":[],"_postman_id":"1ba04726-cf51-4584-894f-9639a0471088"}],"id":"2870df65-e188-414c-90fc-31fd61c78d96","_postman_id":"2870df65-e188-414c-90fc-31fd61c78d96","description":""},{"name":"Hauliers","item":[{"name":"List Hauliers","id":"30e41f1b-39ed-405c-ad36-21915c80c262","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"token","value":"{{your_company_token}}","type":"text"}],"url":"https://integration.loop4.io/api/sync/hauliers","urlObject":{"path":["api","sync","hauliers"],"host":["https://integration.loop4.io"],"query":[{"disabled":true,"key":"haulier_codes","value":null}],"variable":[]}},"response":[],"_postman_id":"30e41f1b-39ed-405c-ad36-21915c80c262"},{"name":"Insert Hauliers","id":"f93a1abe-30c5-4abb-9b00-f7ca2b9b5113","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"token","value":"{{your_company_token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"haulier_code\": \"H1\",\n        \"haulier_name\": \"John Hauliers LTDA\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/hauliers","urlObject":{"path":["api","sync","hauliers"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"f93a1abe-30c5-4abb-9b00-f7ca2b9b5113"}],"id":"a5d2e774-2280-4ebc-8a47-51e5d1459f0c","_postman_id":"a5d2e774-2280-4ebc-8a47-51e5d1459f0c","description":""},{"name":"Aggregate Deliveries","item":[{"name":"List Aggregate Deliveries","id":"d7077190-82fe-4116-885d-6da6f2cc283b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"token","value":"{{your_company_token}}","type":"text"}],"url":"https://integration.loop4.io/api/company/aggregate-deliveries?date_start=2025-10-01&date_end=2025-10-01","urlObject":{"path":["api","company","aggregate-deliveries"],"host":["https://integration.loop4.io"],"query":[{"key":"date_start","value":"2025-10-01"},{"key":"date_end","value":"2025-10-01"},{"disabled":true,"key":"product_codes","value":"PC1,PC2,PC3"}],"variable":[]}},"response":[],"_postman_id":"d7077190-82fe-4116-885d-6da6f2cc283b"}],"id":"da76f4c3-f5a6-4a32-9395-2fac0a4784fd","_postman_id":"da76f4c3-f5a6-4a32-9395-2fac0a4784fd","description":""},{"name":"Leads","item":[{"name":"Insert Leads","id":"66a59dae-b639-44f0-bfb0-1095a28aac92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {   \n        \"lead_code\": \"PS-011000\",\n        \"lead_name\": \"Kauê Ribeiro API\",\n        \"seller_code\": \"171\"\n    }   \n]","options":{"raw":{"language":"json"}}},"url":"https://integration.loop4.io/api/sync/leads","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Required</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>lead_code</td>\n<td>Optional</td>\n<td>string</td>\n<td>Code of the lead to be created</td>\n</tr>\n<tr>\n<td>lead_name</td>\n<td>Required</td>\n<td>string</td>\n<td>Name of the lead to be created</td>\n</tr>\n<tr>\n<td>seller_code</td>\n<td>Required</td>\n<td>string</td>\n<td>Seller code that already exists</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","sync","leads"],"host":["https://integration.loop4.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"66a59dae-b639-44f0-bfb0-1095a28aac92"}],"id":"134315e5-94ff-4d04-8ca4-411cba845f45","_postman_id":"134315e5-94ff-4d04-8ca4-411cba845f45","description":""},{"name":"Price Tables","item":[{"name":"List Price Tables","id":"23cff88e-8527-43b3-9c67-b6f212dc8334","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":"{{syncapi_endpoint}}/api/sync/price-tables","description":"<h2 id=\"list-price-tables\">List Price Tables</h2>\n<p>Retrieves price table records from <strong>Loop</strong> with optional filters.</p>\n<p><strong>Method:</strong> <code>GET</code><br /><strong>URL:</strong> <code>{{syncapi_endpoint}}/api/sync/price-tables</code></p>\n<hr />\n<h2 id=\"authentication\">Authentication</h2>\n<p>Send the auth token using the <code>token</code> header:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">token: {{your-company-token}}\n\n</code></pre>\n<hr />\n<h2 id=\"query-parameters\">Query parameters</h2>\n<p>All query parameters are optional. If omitted/blank, the API may return a broader dataset.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>plant_code</code></td>\n<td>string</td>\n<td>Filters results to a specific plant.</td>\n</tr>\n<tr>\n<td><code>price_table_codes</code></td>\n<td>string</td>\n<td>array</td>\n</tr>\n<tr>\n<td><code>updated_at_gt</code></td>\n<td>string (datetime)</td>\n<td>Returns only records updated <strong>after</strong> the provided timestamp. (e.g., <code>2024-01-01 00:00:00</code>).</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"usage-examples\">Usage examples</h2>\n<h3 id=\"1-no-filters\">1) No filters</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET {{syncapi_endpoint}}/api/sync/price-tables\n\n</code></pre>\n<h3 id=\"2-filter-by-plant\">2) Filter by plant</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET {{syncapi_endpoint}}/api/sync/price-tables?plant_code=SP01\n\n</code></pre>\n<h3 id=\"3-filter-by-plant--updated-since\">3) Filter by plant + updated since</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET {{syncapi_endpoint}}/api/sync/price-tables?plant_code=SP01&amp;updated_at_gt=2026-02-25 00:00:00\n\n</code></pre>\n<h3 id=\"4-filter-by-multiple-price-table-codes-comma-separated\">4) Filter by multiple price table codes (comma-separated)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET {{syncapi_endpoint}}/api/sync/price-tables?price_table_codes=PT001,PT002,PT003\n\n</code></pre>\n","urlObject":{"path":["api","sync","price-tables"],"host":["{{syncapi_endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"4270616d-e07d-4197-b689-1a91b61c3f4a","name":"List Price Tables","originalRequest":{"method":"GET","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"url":"{{syncapi_endpoint}}/api/sync/price-tables"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":"Date","value":"Wed, 25 Feb 2026 13:06:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"3372"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.18.0"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Amzn-Trace-Id","value":"Root=dummy"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 449,\n            \"product_price_table\": [\n                {\n                    \"id\": 92592,\n                    \"product\": {\n                        \"id\": 109981,\n                        \"code\": \"FCK180\",\n                        \"erpid\": null,\n                        \"batchid\": null,\n                        \"name\": \"FCK180\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"total_weight\": null,\n                        \"min_quantity\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"inactive\": false,\n                        \"manage_stock\": false,\n                        \"company\": 555,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null,\n                        \"tax_group\": null,\n                        \"product_family\": null\n                    },\n                    \"price\": 200.5,\n                    \"cost\": null,\n                    \"company\": 555,\n                    \"price_table\": 449\n                },\n                {\n                    \"id\": 92593,\n                    \"product\": {\n                        \"id\": 111504,\n                        \"code\": \"FCK210\",\n                        \"erpid\": null,\n                        \"batchid\": null,\n                        \"name\": \"FCK210\",\n                        \"description\": null,\n                        \"list_price\": null,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"total_weight\": null,\n                        \"min_quantity\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"inactive\": false,\n                        \"manage_stock\": false,\n                        \"company\": 555,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null,\n                        \"tax_group\": null,\n                        \"product_family\": null\n                    },\n                    \"price\": 20,\n                    \"cost\": null,\n                    \"company\": 555,\n                    \"price_table\": 449\n                },\n                {\n                    \"id\": 92594,\n                    \"product\": {\n                        \"id\": 111505,\n                        \"code\": \"FCK90\",\n                        \"erpid\": null,\n                        \"batchid\": null,\n                        \"name\": \"FCK90\",\n                        \"description\": null,\n                        \"list_price\": 10,\n                        \"slump_class\": null,\n                        \"list_slump\": null,\n                        \"list_slump2\": null,\n                        \"fck_class\": null,\n                        \"fck\": null,\n                        \"coarse_agg\": null,\n                        \"total_weight\": null,\n                        \"min_quantity\": null,\n                        \"color\": null,\n                        \"removed\": false,\n                        \"removed_at\": null,\n                        \"dim_volume\": 1,\n                        \"dim_mass\": 1,\n                        \"project_required\": false,\n                        \"project_suggestion\": false,\n                        \"default_value\": null,\n                        \"value_type\": null,\n                        \"comparison_value\": null,\n                        \"comparison_operator\": null,\n                        \"comparison_operator_value\": null,\n                        \"comparison_operator2\": null,\n                        \"comparison_operator_value2\": null,\n                        \"week_days\": null,\n                        \"recipe_code\": null,\n                        \"custom_1\": null,\n                        \"custom_2\": null,\n                        \"custom_3\": null,\n                        \"custom_4\": null,\n                        \"custom_5\": null,\n                        \"inactive\": false,\n                        \"manage_stock\": false,\n                        \"company\": 555,\n                        \"product_type\": 1,\n                        \"removed_by\": null,\n                        \"uom\": null,\n                        \"raw_material_type\": null,\n                        \"tax_group\": null,\n                        \"product_family\": null\n                    },\n                    \"price\": 300,\n                    \"cost\": null,\n                    \"company\": 555,\n                    \"price_table\": 449\n                }\n            ],\n            \"name\": \"Price - Example\",\n            \"erpkey\": \"Price - Example\",\n            \"active\": true,\n            \"inactive\": false,\n            \"created_at\": \"2026-02-25T09:58:05-03:00\",\n            \"updated_at\": \"2026-02-25T10:01:08-03:00\",\n            \"company\": 555,\n            \"plant\": 2738\n        }\n    ],\n    \"message\": \"\"\n}"}],"_postman_id":"23cff88e-8527-43b3-9c67-b6f212dc8334"},{"name":"Insert Price Tables","id":"04313e0c-1691-412f-9684-dbdbaf526c90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"price_table_code\": \"Price - Test\",\n        \"price_table_name\": \"Price - Test\",\n        \"price_table_products\": [\n            {\n                \"product_code\": \"FCK180\",\n                \"price\": 200.5\n            },\n            {\n                \"product_code\": \"FCK210\",\n                \"price\": 20.0\n            },\n            {\n                \"product_code\": \"FCK90\",\n                \"price\": 300.0\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{syncapi_endpoint}}/api/sync/price-tables","urlObject":{"path":["api","sync","price-tables"],"host":["{{syncapi_endpoint}}"],"query":[],"variable":[]}},"response":[{"id":"5db51f13-9f89-4f27-8f50-f45b5f42413a","name":"Insert Price Tables","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{your-company-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"price_table_code\": \"Price - Test\",\n        \"price_table_name\": \"Price - Test\",\n        \"price_table_products\": [\n            {\n                \"product_code\": \"FCK180\",\n                \"price\": 200.5\n            },\n            {\n                \"product_code\": \"FCK210\",\n                \"price\": 20.0\n            },\n            {\n                \"product_code\": \"FCK90\",\n                \"price\": 300.0\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{syncapi_endpoint}}/api/sync/price-tables"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Wed, 25 Feb 2026 13:17:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"147"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.18.0"},{"key":"Vary","value":"Accept, Origin"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Amzn-Trace-Id","value":"Root=1-699ef671-56adae92456cfc3370eab27d"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"successful_records\": [\n            {\n                \"price_table_code\": \"Price - Test\",\n                \"status\": \"created\"\n            }\n        ],\n        \"failed_records\": []\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"04313e0c-1691-412f-9684-dbdbaf526c90"}],"id":"503b4773-7a46-4023-beab-fae85e72890b","_postman_id":"503b4773-7a46-4023-beab-fae85e72890b","description":""}],"event":[{"listen":"prerequest","script":{"id":"8ec8fd39-afab-441d-8ee8-5f9d508c746b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bdcb9e48-0bb2-4553-82bd-e82276aae06d","type":"text/javascript","exec":[""]}}],"variable":[{"key":"url","value":"https://integration.loop4.io"},{"key":"token","value":"your-company-token"}]}