{"info":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","description":"<html><head></head><body><h1 id=\"consentio-partner-api\">Consentio Partner API</h1>\n<p>The goal of this document is to provide information and instructions of how to integrate a company's ERP within Consentio, for the following areas of functionality:</p>\n<ul>\n<li>Populating products from the ERP into Consentio.</li>\n<li>Populating the necessary information that is important for a sucessful import of orders into an ERP, such as customer information and addresses.</li>\n<li>Importing orders from Consentio into the ERP.</li>\n</ul>\n<h1 id=\"integration-options\">Integration options</h1>\n<p>We offer two different type of integrations: file exchange and through API.</p>\n<h2 id=\"file-exchange\">File exchange</h2>\n<p>File exchange between the ERP and Consentio can be set up through an FTP, SFTP, HTTP(S), dropbox or any alternative storage options. File exchange works as follows:</p>\n<ul>\n<li>Consentio takes all the product information from the ERP in a customized <a href=\"#exchange-csv-format\">CSV format</a> periodically that is processed. More details about the product structure can be found at <a href=\"#product-flat-structure\">Product fields</a>.</li>\n<li>Everytime an order is accepted within Consentio, the system places an order into the ERP's storage.</li>\n</ul>\n<h2 id=\"api-integration\">API integration</h2>\n<p>Consentio exposes a partner API available for all customers that want to integrate. The integrations offered are the following:</p>\n<ul>\n<li>Load a product catalog.</li>\n<li>Load customer rates that will be used for trading within Consentio.</li>\n<li>Load customer information, such as their applied rate, their ERP Id, and their addresses.</li>\n<li>Retrieve all the orders that have been accepted in our platform for a specified date range.</li>\n<li>Update the tracking status of orders within Consentio.</li>\n</ul>\n<h1 id=\"requirements-and-general-information\">Requirements and general information</h1>\n<h2 id=\"identification\">Identification</h2>\n<p>Before the integration starts, you'll need Consentio to provide you with:</p>\n<ul>\n<li>A partner ID, necessary to identify yourself in Consentio.</li>\n<li>An API key, necessary to authenticate within our platform.</li>\n</ul>\n<h2 id=\"general-information-about-our-endpoints\">General information about our endpoints</h2>\n<p>There are a number of rules that apply to all our endpoints:</p>\n<ul>\n<li>Text encoding: All the data should always be encoded in UTF8. This applies to requests to Consentio, and also to responses from Consentio.</li>\n<li>All requests should be encoded in JSON, unless there is an explicit indication in the documentation. This applies both to requests (if data is sent in the body), and to responses.</li>\n<li>The Consentio API will return an HTTP code 500 whenever there are unexpected errors.</li>\n</ul>\n<p>Interactive API calls have variables which are defined with curly braces <code>{{}}</code> that must be replaces by their final values. Some of the variables are:</p>\n<ul>\n<li>Host: This is the base url where the API is hosted. Examples:<ul>\n<li>Sandbox: <a href=\"https://rtapi.sandbox.consentio-tool.com/v2\">https://rtapi.sandbox.consentio-tool.com/v2</a></li>\n<li>Production: <a href=\"https://rtapi.consentio-tool.com/v2\">https://rtapi.consentio-tool.com/v2</a></li>\n</ul>\n</li>\n<li>ApiKey: The api key is used to authenticate within our platform and it is provided by Consentio.</li>\n<li>PartnerID: The partner ID that will be used for the integration and it is provided by Consentio.</li>\n<li>Token: JWT Token for authorization that its provided when first logged in Consentio.</li>\n</ul>\n<h1 id=\"price-management-on-products\">Price management on products</h1>\n<p>A product's price is comprised of two fields: the price amount, and the product sale unit. The available sale product units are:</p>\n<ul>\n<li><strong>piece</strong>: price per piece (e.g. 0.20€ per orange).</li>\n<li><strong>kg</strong>: price per kg (e.g. 4.2€ per kilo).</li>\n<li><strong>box</strong>: price per box (e.g. 7€ per box).</li>\n<li><strong>pallet</strong>: price per pallet (e.g. 800.5€ per pallet).</li>\n</ul>\n<p>If the price is not specified, the product will be assumed to be P.O.R. (Price on Request). In this case, the order negotiation will begin without an initial price, which will be set in a latter stage. Even for P.O.R. products, it is required to indicated which product unit will be used in the negotiation.</p>\n<h1 id=\"price-and-sale-units-on-order-articles\">Price and sale units on order articles</h1>\n<p>A product may be sold in several formats (by piece, kilo, box, or pallet). It is important to have into account that the necessary data to perform the price conversion needs to be available (eg. pieces per box, boxes per pallet), as long as the necessary data are available to perform the price conversion.</p>\n<p>The conversion fields are: boxes_per_pallet, box_weight, and pieces_per_box. Pallets are assumed to have the dimensions of an EURO pallet (80x120), and the field boxes_per_pallet indicates the number of boxes in a EURO type pallet.</p>\n<p>For example, given a product with price 5€ per box:</p>\n<ul>\n<li><strong>box</strong>: will be accepted as a sale unit</li>\n<li><strong>piece</strong>: will be accepted as a sale unit if pieces_per_box is populated (e.g. price 5/12 per piece if pieces_per_box = 12).</li>\n<li><strong>kg</strong>: will be accepted as a sale unit if box_weight is populated (e.g. price 5/10 per kg if box_weight = 10kg).</li>\n<li><strong>pallet</strong>: will be accepted as a sale unit if boxes_per_pallet is populated (e.g. price 5x120 per pallet if boxes_per_pallet = 120).</li>\n</ul>\n<h1 id=\"unit-conversions\">Unit conversions</h1>\n<p>To manage prices for order items, it will be necessary to make conversion between units. If your system differentiates between price_unit and sale_units, there is no problem as you probably know how to manage them. However, if your system only supports one unit, always be sure to make the conversions between units in order to get the correct information within your system.</p>\n<p>How to make conversion between units?</p>\n<ul>\n<li>if price_unit is kg:<ul>\n<li>if sale_unit is kg -&gt; amount (no op)</li>\n<li>if sale_unit is box -&gt; amount x box_weight</li>\n<li>if sale_unit is pallet -&gt; amount x box_weight x boxes_per_pallet</li>\n<li>if sale_unit is piece -&gt; (amount x box_weight) / pieces_per_box</li>\n</ul>\n</li>\n<li>if price_unit is box:<ul>\n<li>if sale_unit is box -&gt; amount (no op)</li>\n<li>if sale_unit is piece -&gt; amount / pieces_per_box</li>\n<li>if sale_unit is kg -&gt; amount / box_weight</li>\n<li>if sale_unit is pallet -&gt; amount x boxes_per_pallet</li>\n</ul>\n</li>\n<li>if price_unit is pallet:<ul>\n<li>if sale_unit is pallet -&gt; amount (no op)</li>\n<li>if sale_unit is box -&gt; amount / boxes_per_pallet</li>\n<li>if sale_unit is piece -&gt; amount / boxes_per_pallet / pieces_per_box</li>\n<li>if sale_unit is kg -&gt; amount / boxes_per_pallet / box_weight</li>\n</ul>\n</li>\n<li>if price_unit is piece:<ul>\n<li>if sale_unit is piece -&gt; amount (no op)</li>\n<li>if sale_unit is box -&gt; amount * pieces_per_box</li>\n<li>if sale_unit is pallet -&gt; amount * boxes*per_pallet * pieces_per_box</li>\n<li>if sale_unit is kg -&gt; amount * boxes*per_pallet * box_weight (edited)</li>\n</ul>\n</li>\n</ul>\n<h1 id=\"traceability-between-partners-and-consentio\">Traceability between partners and Consentio</h1>\n<p>It's crucial to connect the identifiers on the Consentio side with the identifiers on the ERP side in order to have a healthy and useful integration. Below you will find the different traceability cases supported.</p>\n<h2 id=\"for-products\">For products</h2>\n<p>We use the <code>SKU</code> field as a unique identifier per product and seller. The <code>SKU</code> has the following uses:</p>\n<ul>\n<li>Make possible to load products from the ERP identifying those products that have been changed, added or deleted by the ERP side.</li>\n<li>Make possible to load orders into the ERP: each item in an order can be tracked by <code>SKU</code>.</li>\n</ul>\n<h2 id=\"for-clients\">For clients</h2>\n<p>When accepted orders are sent to the ERP it is very important to know which client (in ERP language) made the order.</p>\n<p>To achieve that, partners need to upload the ERP identifier for each one of their clients. See <a href=\"#4cd4d4b8-37af-48f7-b3c3-cfd61f37709f\">the specific endpoint</a> for further information.</p>\n<h2 id=\"for-addresses\">For addresses</h2>\n<p>Once an order is accepted and sent over to the ERP it is very important to have in our records the address where it will be delivered/picked up.</p>\n<p>To achieve that, the partner will upload their client addresses to the system. See <a href=\"#d13ac106-412b-47f6-a30f-18c1f027f2fe\">the specific endpoint</a> for further information.</p>\n<h2 id=\"for-orders\">For orders</h2>\n<p>We offer the possibility to add custom identifiers to Consentio's orders. By adding this identifier, we are able to track the order between Consentio and the ERP. This is useful for scenarios like:</p>\n<ul>\n<li>Reupload an order from Consentio to the ERP in case of failure.</li>\n<li>Know which orders have been processed by the ERP (e.g. through <code>external_id</code> attribute in orders).</li>\n</ul>\n<h1 id=\"webhooks\">Webhooks</h1>\n<p>As partners, it is possible to review in real time the events that occur within Consentio. The structure we follow for our webhooks is as follows:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em>Name</em></th>\n<th><em>Description</em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>action</td>\n<td>The action we follow</td>\n</tr>\n<tr>\n<td>payload</td>\n<td>The object that has been changed in Consentio. Depends on the action performed, it can contain products, orders, etc.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"action-types\">Action types</h2>\n<p>The following action types with the following content inside <code>payload</code> are:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em>Action type</em></th>\n<th><em>Description</em></th>\n<th><em>Payload content</em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>order:accept</code></td>\n<td>Triggered when the order is accepted. The payload content is an order</td>\n<td><code>{ \"order\" : {...}</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"how-to-enable-webhooks\">How to enable webhooks</h2>\n<p>If you want to enable webhooks, or to activate more actions, you can contact us at <a href=\"mailto:integrations@consentio.co\">integrations@consentio.co</a>.</p>\n<h1 id=\"product-types\">Product types</h1>\n<p>When introducing products in Consentio, you need to indicate the type. If you have product types on your system, you would have to make a relationship between your types and Consentio ones.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em>Type</em></th>\n<th><em>Product</em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>other</td>\n<td>Other</td>\n</tr>\n<tr>\n<td>almond</td>\n<td>Almond</td>\n</tr>\n<tr>\n<td>annone</td>\n<td>Annone</td>\n</tr>\n<tr>\n<td>apple</td>\n<td>Apple</td>\n</tr>\n<tr>\n<td>apricot</td>\n<td>Apricot</td>\n</tr>\n<tr>\n<td>artichoke</td>\n<td>Artichoke</td>\n</tr>\n<tr>\n<td>asparagus</td>\n<td>Asparagus</td>\n</tr>\n<tr>\n<td>aubergine</td>\n<td>Aubergine</td>\n</tr>\n<tr>\n<td>avocado</td>\n<td>Avocado</td>\n</tr>\n<tr>\n<td>banana</td>\n<td>Banana</td>\n</tr>\n<tr>\n<td>basil</td>\n<td>Basil</td>\n</tr>\n<tr>\n<td>bay-leaf</td>\n<td>Bay Leaf</td>\n</tr>\n<tr>\n<td>beans</td>\n<td>Beans</td>\n</tr>\n<tr>\n<td>beetroot</td>\n<td>Beetroot</td>\n</tr>\n<tr>\n<td>blackberry</td>\n<td>Blackberry</td>\n</tr>\n<tr>\n<td>blackcurrant</td>\n<td>Blackcurrant</td>\n</tr>\n<tr>\n<td>blueberry</td>\n<td>Blueberry</td>\n</tr>\n<tr>\n<td>broad_beans</td>\n<td>Broad beans</td>\n</tr>\n<tr>\n<td>broccoli</td>\n<td>Broccoli</td>\n</tr>\n<tr>\n<td>brussel_sprouts</td>\n<td>Brussel sprouts</td>\n</tr>\n<tr>\n<td>butternut</td>\n<td>Butternut</td>\n</tr>\n<tr>\n<td>cabbage</td>\n<td>Cabbage</td>\n</tr>\n<tr>\n<td>carambola</td>\n<td>Carambola</td>\n</tr>\n<tr>\n<td>cardoon</td>\n<td>Cardoon</td>\n</tr>\n<tr>\n<td>carrot</td>\n<td>Carrot</td>\n</tr>\n<tr>\n<td>cashew_nuts</td>\n<td>Cashew nuts</td>\n</tr>\n<tr>\n<td>cassava</td>\n<td>Cassava</td>\n</tr>\n<tr>\n<td>cauliflower</td>\n<td>Cauliflower</td>\n</tr>\n<tr>\n<td>cedrat</td>\n<td>Cedrat</td>\n</tr>\n<tr>\n<td>celeriac</td>\n<td>Celeriac</td>\n</tr>\n<tr>\n<td>celery</td>\n<td>Celery</td>\n</tr>\n<tr>\n<td>chard</td>\n<td>Chard</td>\n</tr>\n<tr>\n<td>chayote</td>\n<td>Chayote</td>\n</tr>\n<tr>\n<td>cherry</td>\n<td>Cherry</td>\n</tr>\n<tr>\n<td>chervil</td>\n<td>Chervil</td>\n</tr>\n<tr>\n<td>chestnuts</td>\n<td>Chestnuts</td>\n</tr>\n<tr>\n<td>chick_peas</td>\n<td>Chick peas</td>\n</tr>\n<tr>\n<td>chicory</td>\n<td>Chicory</td>\n</tr>\n<tr>\n<td>chili_pepper</td>\n<td>Chili pepper</td>\n</tr>\n<tr>\n<td>chinese_cabbage</td>\n<td>Chinese cabbage</td>\n</tr>\n<tr>\n<td>chive</td>\n<td>Chive</td>\n</tr>\n<tr>\n<td>cinnamon_apple</td>\n<td>Cinnamon Apple</td>\n</tr>\n<tr>\n<td>clementine</td>\n<td>Clementine</td>\n</tr>\n<tr>\n<td>coconut</td>\n<td>Coconut</td>\n</tr>\n<tr>\n<td>cola_nuts</td>\n<td>Cola nuts</td>\n</tr>\n<tr>\n<td>combavas</td>\n<td>Combavas</td>\n</tr>\n<tr>\n<td>coriander</td>\n<td>Coriander</td>\n</tr>\n<tr>\n<td>corn</td>\n<td>Corn</td>\n</tr>\n<tr>\n<td>cranberries</td>\n<td>Cranberries</td>\n</tr>\n<tr>\n<td>cress</td>\n<td>Cress</td>\n</tr>\n<tr>\n<td>crosna</td>\n<td>Crosna</td>\n</tr>\n<tr>\n<td>cucumber</td>\n<td>Cucumber</td>\n</tr>\n<tr>\n<td>curly_endive</td>\n<td>Curly Endive</td>\n</tr>\n<tr>\n<td>date</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>dill</td>\n<td>Dill</td>\n</tr>\n<tr>\n<td>donut_peach</td>\n<td>Donut Peach</td>\n</tr>\n<tr>\n<td>echalion</td>\n<td>Echalion</td>\n</tr>\n<tr>\n<td>evening_primrose</td>\n<td>Evening Primrose</td>\n</tr>\n<tr>\n<td>extra_fine_beans</td>\n<td>Extra fine beans</td>\n</tr>\n<tr>\n<td>fennel</td>\n<td>Fennel</td>\n</tr>\n<tr>\n<td>fig</td>\n<td>Fig</td>\n</tr>\n<tr>\n<td>fine_beans</td>\n<td>Fine beans</td>\n</tr>\n<tr>\n<td>fresh_herbs</td>\n<td>Fresh herbs</td>\n</tr>\n<tr>\n<td>garlic</td>\n<td>Garlic</td>\n</tr>\n<tr>\n<td>gherkin</td>\n<td>Gherkin</td>\n</tr>\n<tr>\n<td>ginger</td>\n<td>Ginger</td>\n</tr>\n<tr>\n<td>goji_berries</td>\n<td>Goji Berries</td>\n</tr>\n<tr>\n<td>goji</td>\n<td>Goji</td>\n</tr>\n<tr>\n<td>grapefruit</td>\n<td>Grapefruit</td>\n</tr>\n<tr>\n<td>grapes_dried</td>\n<td>Grapes (Dried)</td>\n</tr>\n<tr>\n<td>grapes</td>\n<td>Grapes</td>\n</tr>\n<tr>\n<td>green_beans</td>\n<td>Green beans</td>\n</tr>\n<tr>\n<td>green_peas</td>\n<td>Green peas</td>\n</tr>\n<tr>\n<td>grenadilla</td>\n<td>Grenadilla</td>\n</tr>\n<tr>\n<td>guava</td>\n<td>Guava</td>\n</tr>\n<tr>\n<td>hazelnuts</td>\n<td>Hazelnuts</td>\n</tr>\n<tr>\n<td>jerusalem_artichoke</td>\n<td>Jerusalem artichoke</td>\n</tr>\n<tr>\n<td>jujube</td>\n<td>Jujube</td>\n</tr>\n<tr>\n<td>kale</td>\n<td>Kale</td>\n</tr>\n<tr>\n<td>khaki</td>\n<td>Khaki</td>\n</tr>\n<tr>\n<td>kiwano</td>\n<td>Kiwano</td>\n</tr>\n<tr>\n<td>kiwi</td>\n<td>Kiwi</td>\n</tr>\n<tr>\n<td>kumquat</td>\n<td>Kumquat</td>\n</tr>\n<tr>\n<td>lambs_lettuce</td>\n<td>Lambs lettuce</td>\n</tr>\n<tr>\n<td>leaf_stalk_carrots</td>\n<td>Leaf stalk Carrots</td>\n</tr>\n<tr>\n<td>leeks</td>\n<td>Leeks</td>\n</tr>\n<tr>\n<td>lemon</td>\n<td>Lemon</td>\n</tr>\n<tr>\n<td>lemon-balm</td>\n<td>Lemon Balm</td>\n</tr>\n<tr>\n<td>lemongrass</td>\n<td>Lemongrass</td>\n</tr>\n<tr>\n<td>lentils</td>\n<td>Lentils</td>\n</tr>\n<tr>\n<td>lettuce</td>\n<td>Lettuce</td>\n</tr>\n<tr>\n<td>lime</td>\n<td>Lime</td>\n</tr>\n<tr>\n<td>litchi</td>\n<td>Litchi</td>\n</tr>\n<tr>\n<td>little-gem-lettuce</td>\n<td>Little Gem Lettuce</td>\n</tr>\n<tr>\n<td>longan</td>\n<td>Longan</td>\n</tr>\n<tr>\n<td>lupine</td>\n<td>Lupine</td>\n</tr>\n<tr>\n<td>mandarin</td>\n<td>Mandarin</td>\n</tr>\n<tr>\n<td>mange_tout</td>\n<td>Mangetout</td>\n</tr>\n<tr>\n<td>mango</td>\n<td>Mango</td>\n</tr>\n<tr>\n<td>mangosteen</td>\n<td>Mangosteen</td>\n</tr>\n<tr>\n<td>maracuja</td>\n<td>Maracuja</td>\n</tr>\n<tr>\n<td>marjoram</td>\n<td>Marjoram</td>\n</tr>\n<tr>\n<td>medlar</td>\n<td>Medlar</td>\n</tr>\n<tr>\n<td>melon</td>\n<td>Melon</td>\n</tr>\n<tr>\n<td>mini_vegetables</td>\n<td>Mini vegetables</td>\n</tr>\n<tr>\n<td>mint</td>\n<td>Mint</td>\n</tr>\n<tr>\n<td>mushroom</td>\n<td>Mushroom</td>\n</tr>\n<tr>\n<td>nasturtium_tuber</td>\n<td>Nasturtium Tuber</td>\n</tr>\n<tr>\n<td>nectarine</td>\n<td>Nectarine</td>\n</tr>\n<tr>\n<td>nigelle</td>\n<td>Nigelle</td>\n</tr>\n<tr>\n<td>oca</td>\n<td>Oca</td>\n</tr>\n<tr>\n<td>olive</td>\n<td>Olive</td>\n</tr>\n<tr>\n<td>onion</td>\n<td>Onion</td>\n</tr>\n<tr>\n<td>orange</td>\n<td>Orange</td>\n</tr>\n<tr>\n<td>paksoi</td>\n<td>Paksoi</td>\n</tr>\n<tr>\n<td>papaya</td>\n<td>Papaya</td>\n</tr>\n<tr>\n<td>parsley</td>\n<td>Parsley</td>\n</tr>\n<tr>\n<td>parsnip</td>\n<td>Parsnip</td>\n</tr>\n<tr>\n<td>passion_fruit</td>\n<td>Passion fruit</td>\n</tr>\n<tr>\n<td>peach</td>\n<td>Peach</td>\n</tr>\n<tr>\n<td>peanut</td>\n<td>Peanut</td>\n</tr>\n<tr>\n<td>pear</td>\n<td>Pear</td>\n</tr>\n<tr>\n<td>peas</td>\n<td>Peas</td>\n</tr>\n<tr>\n<td>pepper</td>\n<td>Pepper</td>\n</tr>\n<tr>\n<td>physalis</td>\n<td>Physalis</td>\n</tr>\n<tr>\n<td>pine-nut</td>\n<td>Pine Nut</td>\n</tr>\n<tr>\n<td>pineapple</td>\n<td>Pineapple</td>\n</tr>\n<tr>\n<td>pistachios</td>\n<td>Pistachios</td>\n</tr>\n<tr>\n<td>pitahaya</td>\n<td>Pitahaya</td>\n</tr>\n<tr>\n<td>plum</td>\n<td>Plum</td>\n</tr>\n<tr>\n<td>pointed_cabbage</td>\n<td>Pointed cabbage</td>\n</tr>\n<tr>\n<td>pomegranate</td>\n<td>Pomegranate</td>\n</tr>\n<tr>\n<td>pomelo</td>\n<td>Pomelo</td>\n</tr>\n<tr>\n<td>potatoes</td>\n<td>Potatoes</td>\n</tr>\n<tr>\n<td>prunes</td>\n<td>Prunes</td>\n</tr>\n<tr>\n<td>quince</td>\n<td>Quince</td>\n</tr>\n<tr>\n<td>radish</td>\n<td>Radish</td>\n</tr>\n<tr>\n<td>rambutan</td>\n<td>Rambutan</td>\n</tr>\n<tr>\n<td>raspberry</td>\n<td>Raspberry</td>\n</tr>\n<tr>\n<td>redcurrant</td>\n<td>Redcurrant</td>\n</tr>\n<tr>\n<td>rhubarb</td>\n<td>Rhubarb</td>\n</tr>\n<tr>\n<td>rosemary</td>\n<td>Rosemary</td>\n</tr>\n<tr>\n<td>rucula</td>\n<td>Rocket</td>\n</tr>\n<tr>\n<td>runner_beans</td>\n<td>Runner beans</td>\n</tr>\n<tr>\n<td>rutabaga</td>\n<td>Rutabaga</td>\n</tr>\n<tr>\n<td>sage</td>\n<td>Sage</td>\n</tr>\n<tr>\n<td>salsify</td>\n<td>Salsify</td>\n</tr>\n<tr>\n<td>sapotille</td>\n<td>Sapotille</td>\n</tr>\n<tr>\n<td>savory</td>\n<td>Savory</td>\n</tr>\n<tr>\n<td>scallion</td>\n<td>Scallion</td>\n</tr>\n<tr>\n<td>shallot</td>\n<td>Shallot</td>\n</tr>\n<tr>\n<td>sheep-sorrel</td>\n<td>Sheep Sorrel</td>\n</tr>\n<tr>\n<td>soursop</td>\n<td>Soursop</td>\n</tr>\n<tr>\n<td>spinach</td>\n<td>Spinach</td>\n</tr>\n<tr>\n<td>spring_onion</td>\n<td>Spring Onion</td>\n</tr>\n<tr>\n<td>sprouts</td>\n<td>Sprouts</td>\n</tr>\n<tr>\n<td>squash</td>\n<td>Squash</td>\n</tr>\n<tr>\n<td>strawberry</td>\n<td>Strawberry</td>\n</tr>\n<tr>\n<td>sugar-apple</td>\n<td>Sugar Apple</td>\n</tr>\n<tr>\n<td>sugar-cane</td>\n<td>Sugar Cane</td>\n</tr>\n<tr>\n<td>sweet_potato</td>\n<td>Sweet potato</td>\n</tr>\n<tr>\n<td>swiss_chard</td>\n<td>Swiss chard</td>\n</tr>\n<tr>\n<td>tamarillo</td>\n<td>Tamarillo</td>\n</tr>\n<tr>\n<td>tarragon</td>\n<td>Tarragon</td>\n</tr>\n<tr>\n<td>thyme</td>\n<td>Thyme</td>\n</tr>\n<tr>\n<td>tomato</td>\n<td>Tomato</td>\n</tr>\n<tr>\n<td>tomberry</td>\n<td>Tomberry</td>\n</tr>\n<tr>\n<td>turnip</td>\n<td>Turnip</td>\n</tr>\n<tr>\n<td>verbena</td>\n<td>Verbena</td>\n</tr>\n<tr>\n<td>walnut_kernels</td>\n<td>Walnut Kernels</td>\n</tr>\n<tr>\n<td>walnuts</td>\n<td>Walnuts</td>\n</tr>\n<tr>\n<td>watermelon</td>\n<td>Watermelon</td>\n</tr>\n<tr>\n<td>yacon</td>\n<td>Yacon</td>\n</tr>\n<tr>\n<td>yam</td>\n<td>Yam</td>\n</tr>\n<tr>\n<td>yuzu</td>\n<td>Yuzu</td>\n</tr>\n<tr>\n<td>zucchini</td>\n<td>Zucchini</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"available-countries\">Available countries</h1>\n<p>ISO2 country code is used to identify countries taht are used inside Consentio in for example customer addresses. Below you will find the relation between country codes and country names in case it is necessary to perform any transformation.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ISO 2 Code</th>\n<th>Country name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AD</td>\n<td>andorra</td>\n</tr>\n<tr>\n<td>AE</td>\n<td>united_arab_emirates</td>\n</tr>\n<tr>\n<td>AL</td>\n<td>albania</td>\n</tr>\n<tr>\n<td>AR</td>\n<td>argentina</td>\n</tr>\n<tr>\n<td>AT</td>\n<td>austria</td>\n</tr>\n<tr>\n<td>AU</td>\n<td>australia</td>\n</tr>\n<tr>\n<td>AZ</td>\n<td>azerbaijan</td>\n</tr>\n<tr>\n<td>BA</td>\n<td>bosnia_and_herzegovina</td>\n</tr>\n<tr>\n<td>BE</td>\n<td>belgium</td>\n</tr>\n<tr>\n<td>BF</td>\n<td>burkina_faso</td>\n</tr>\n<tr>\n<td>BG</td>\n<td>bulgaria</td>\n</tr>\n<tr>\n<td>BH</td>\n<td>bahrain</td>\n</tr>\n<tr>\n<td>BI</td>\n<td>burundi</td>\n</tr>\n<tr>\n<td>BJ</td>\n<td>benin</td>\n</tr>\n<tr>\n<td>BL</td>\n<td>saint_barthelemy</td>\n</tr>\n<tr>\n<td>BO</td>\n<td>bolivia</td>\n</tr>\n<tr>\n<td>BR</td>\n<td>brazil</td>\n</tr>\n<tr>\n<td>BY</td>\n<td>belarus</td>\n</tr>\n<tr>\n<td>BZ</td>\n<td>belize</td>\n</tr>\n<tr>\n<td>CA</td>\n<td>canada</td>\n</tr>\n<tr>\n<td>CD</td>\n<td>congo_zaire</td>\n</tr>\n<tr>\n<td>CF</td>\n<td>central_african_republic</td>\n</tr>\n<tr>\n<td>CG</td>\n<td>congo</td>\n</tr>\n<tr>\n<td>CH</td>\n<td>switzerland</td>\n</tr>\n<tr>\n<td>CI</td>\n<td>ivory_coast</td>\n</tr>\n<tr>\n<td>CL</td>\n<td>chile</td>\n</tr>\n<tr>\n<td>CM</td>\n<td>cameroon</td>\n</tr>\n<tr>\n<td>CN</td>\n<td>china</td>\n</tr>\n<tr>\n<td>CO</td>\n<td>colombia</td>\n</tr>\n<tr>\n<td>CR</td>\n<td>costa_rica</td>\n</tr>\n<tr>\n<td>CY</td>\n<td>cyprus</td>\n</tr>\n<tr>\n<td>CZ</td>\n<td>czech_republic</td>\n</tr>\n<tr>\n<td>DE</td>\n<td>germany</td>\n</tr>\n<tr>\n<td>DK</td>\n<td>denmark</td>\n</tr>\n<tr>\n<td>DM</td>\n<td>dominica</td>\n</tr>\n<tr>\n<td>DO</td>\n<td>dominican_republic</td>\n</tr>\n<tr>\n<td>DZ</td>\n<td>algeria</td>\n</tr>\n<tr>\n<td>EC</td>\n<td>ecuador</td>\n</tr>\n<tr>\n<td>EE</td>\n<td>estonia</td>\n</tr>\n<tr>\n<td>EG</td>\n<td>egypt</td>\n</tr>\n<tr>\n<td>ES</td>\n<td>spain</td>\n</tr>\n<tr>\n<td>ET</td>\n<td>ethiopia</td>\n</tr>\n<tr>\n<td>FI</td>\n<td>finland</td>\n</tr>\n<tr>\n<td>FR</td>\n<td>france</td>\n</tr>\n<tr>\n<td>GB</td>\n<td>united_kingdom</td>\n</tr>\n<tr>\n<td>GH</td>\n<td>ghana</td>\n</tr>\n<tr>\n<td>GM</td>\n<td>gambia</td>\n</tr>\n<tr>\n<td>GN</td>\n<td>guinea</td>\n</tr>\n<tr>\n<td>GP</td>\n<td>guadeloupe</td>\n</tr>\n<tr>\n<td>GR</td>\n<td>greece</td>\n</tr>\n<tr>\n<td>GT</td>\n<td>guatemala</td>\n</tr>\n<tr>\n<td>GY</td>\n<td>guyana</td>\n</tr>\n<tr>\n<td>HK</td>\n<td>hong_kong</td>\n</tr>\n<tr>\n<td>HN</td>\n<td>honduras</td>\n</tr>\n<tr>\n<td>HR</td>\n<td>croatia</td>\n</tr>\n<tr>\n<td>HT</td>\n<td>haiti</td>\n</tr>\n<tr>\n<td>HU</td>\n<td>hungary</td>\n</tr>\n<tr>\n<td>ID</td>\n<td>indonesia</td>\n</tr>\n<tr>\n<td>IE</td>\n<td>ireland</td>\n</tr>\n<tr>\n<td>IL</td>\n<td>israel</td>\n</tr>\n<tr>\n<td>IN</td>\n<td>india</td>\n</tr>\n<tr>\n<td>IS</td>\n<td>iceland</td>\n</tr>\n<tr>\n<td>IT</td>\n<td>italy</td>\n</tr>\n<tr>\n<td>JO</td>\n<td>jordan</td>\n</tr>\n<tr>\n<td>JP</td>\n<td>japan</td>\n</tr>\n<tr>\n<td>KE</td>\n<td>kenya</td>\n</tr>\n<tr>\n<td>KH</td>\n<td>cambodia</td>\n</tr>\n<tr>\n<td>KM</td>\n<td>comoros</td>\n</tr>\n<tr>\n<td>KR</td>\n<td>south_korea</td>\n</tr>\n<tr>\n<td>LA</td>\n<td>laos</td>\n</tr>\n<tr>\n<td>LB</td>\n<td>lebanon</td>\n</tr>\n<tr>\n<td>LI</td>\n<td>liechtenstein</td>\n</tr>\n<tr>\n<td>LK</td>\n<td>sri_lanka</td>\n</tr>\n<tr>\n<td>LT</td>\n<td>lithuania</td>\n</tr>\n<tr>\n<td>LU</td>\n<td>luxembourg</td>\n</tr>\n<tr>\n<td>LV</td>\n<td>latvia</td>\n</tr>\n<tr>\n<td>MA</td>\n<td>morocco</td>\n</tr>\n<tr>\n<td>MD</td>\n<td>moldova</td>\n</tr>\n<tr>\n<td>ME</td>\n<td>montenegro</td>\n</tr>\n<tr>\n<td>MF</td>\n<td>saint_martin_french</td>\n</tr>\n<tr>\n<td>MG</td>\n<td>madagascar</td>\n</tr>\n<tr>\n<td>MK</td>\n<td>macedonia</td>\n</tr>\n<tr>\n<td>ML</td>\n<td>mali</td>\n</tr>\n<tr>\n<td>MQ</td>\n<td>martinique</td>\n</tr>\n<tr>\n<td>MR</td>\n<td>mauritania</td>\n</tr>\n<tr>\n<td>MT</td>\n<td>malta</td>\n</tr>\n<tr>\n<td>MU</td>\n<td>mauritius</td>\n</tr>\n<tr>\n<td>MX</td>\n<td>mexico</td>\n</tr>\n<tr>\n<td>MY</td>\n<td>malaysia</td>\n</tr>\n<tr>\n<td>MZ</td>\n<td>mozambique</td>\n</tr>\n<tr>\n<td>NA</td>\n<td>namibia</td>\n</tr>\n<tr>\n<td>NC</td>\n<td>new_caledonia</td>\n</tr>\n<tr>\n<td>NG</td>\n<td>nigeria</td>\n</tr>\n<tr>\n<td>NI</td>\n<td>nicaragua</td>\n</tr>\n<tr>\n<td>NL</td>\n<td>netherlands</td>\n</tr>\n<tr>\n<td>NO</td>\n<td>norway</td>\n</tr>\n<tr>\n<td>NP</td>\n<td>nepal</td>\n</tr>\n<tr>\n<td>NZ</td>\n<td>new_zealand</td>\n</tr>\n<tr>\n<td>OM</td>\n<td>oman</td>\n</tr>\n<tr>\n<td>PA</td>\n<td>panama</td>\n</tr>\n<tr>\n<td>PE</td>\n<td>peru</td>\n</tr>\n<tr>\n<td>PF</td>\n<td>french_polynesia</td>\n</tr>\n<tr>\n<td>PH</td>\n<td>philippines</td>\n</tr>\n<tr>\n<td>PK</td>\n<td>pakistan</td>\n</tr>\n<tr>\n<td>PL</td>\n<td>poland</td>\n</tr>\n<tr>\n<td>PM</td>\n<td>saint_pierre_and_miquelon</td>\n</tr>\n<tr>\n<td>PR</td>\n<td>puerto_rico</td>\n</tr>\n<tr>\n<td>PS</td>\n<td>gaza</td>\n</tr>\n<tr>\n<td>PT</td>\n<td>portugal</td>\n</tr>\n<tr>\n<td>PY</td>\n<td>paraguay</td>\n</tr>\n<tr>\n<td>RE</td>\n<td>reunion</td>\n</tr>\n<tr>\n<td>RO</td>\n<td>romania</td>\n</tr>\n<tr>\n<td>RS</td>\n<td>serbia</td>\n</tr>\n<tr>\n<td>RW</td>\n<td>rwanda</td>\n</tr>\n<tr>\n<td>SA</td>\n<td>saudi_arabia</td>\n</tr>\n<tr>\n<td>SD</td>\n<td>sudan</td>\n</tr>\n<tr>\n<td>SE</td>\n<td>sweden</td>\n</tr>\n<tr>\n<td>SG</td>\n<td>singapore</td>\n</tr>\n<tr>\n<td>SI</td>\n<td>slovenia</td>\n</tr>\n<tr>\n<td>SK</td>\n<td>slovakia</td>\n</tr>\n<tr>\n<td>SN</td>\n<td>senegal</td>\n</tr>\n<tr>\n<td>SR</td>\n<td>suriname</td>\n</tr>\n<tr>\n<td>SV</td>\n<td>el_salvador</td>\n</tr>\n<tr>\n<td>SZ</td>\n<td>swaziland</td>\n</tr>\n<tr>\n<td>TG</td>\n<td>togo</td>\n</tr>\n<tr>\n<td>TH</td>\n<td>thailand</td>\n</tr>\n<tr>\n<td>TN</td>\n<td>tunisia</td>\n</tr>\n<tr>\n<td>TR</td>\n<td>turkey</td>\n</tr>\n<tr>\n<td>TW</td>\n<td>taiwan</td>\n</tr>\n<tr>\n<td>TZ</td>\n<td>tanzania</td>\n</tr>\n<tr>\n<td>UA</td>\n<td>ukraine</td>\n</tr>\n<tr>\n<td>UG</td>\n<td>uganda</td>\n</tr>\n<tr>\n<td>US</td>\n<td>united_states_of_america</td>\n</tr>\n<tr>\n<td>UY</td>\n<td>uruguay</td>\n</tr>\n<tr>\n<td>UZ</td>\n<td>uzbekistan</td>\n</tr>\n<tr>\n<td>VC</td>\n<td>saint_vincent_and_the_grenadines</td>\n</tr>\n<tr>\n<td>VG</td>\n<td>british_virgin_islands</td>\n</tr>\n<tr>\n<td>VN</td>\n<td>vietnam</td>\n</tr>\n<tr>\n<td>WF</td>\n<td>wallis_and_futuna_islands</td>\n</tr>\n<tr>\n<td>XK</td>\n<td>kosovo</td>\n</tr>\n<tr>\n<td>YT</td>\n<td>mayotte</td>\n</tr>\n<tr>\n<td>ZA</td>\n<td>south_africa</td>\n</tr>\n<tr>\n<td>ZM</td>\n<td>zambia</td>\n</tr>\n<tr>\n<td>ZW</td>\n<td>zimbabwe</td>\n</tr>\n<tr>\n<td>PF</td>\n<td>french_polynesia</td>\n</tr>\n<tr>\n<td>PH</td>\n<td>philippines</td>\n</tr>\n<tr>\n<td>PK</td>\n<td>pakistan</td>\n</tr>\n<tr>\n<td>PL</td>\n<td>poland</td>\n</tr>\n<tr>\n<td>PM</td>\n<td>saint_pierre_and_miquelon</td>\n</tr>\n<tr>\n<td>PR</td>\n<td>puerto_rico</td>\n</tr>\n<tr>\n<td>PS</td>\n<td>gaza</td>\n</tr>\n<tr>\n<td>PT</td>\n<td>portugal</td>\n</tr>\n<tr>\n<td>PY</td>\n<td>paraguay</td>\n</tr>\n<tr>\n<td>RE</td>\n<td>reunion</td>\n</tr>\n<tr>\n<td>RO</td>\n<td>romania</td>\n</tr>\n<tr>\n<td>RS</td>\n<td>serbia</td>\n</tr>\n<tr>\n<td>RW</td>\n<td>rwanda</td>\n</tr>\n<tr>\n<td>SA</td>\n<td>saudi_arabia</td>\n</tr>\n<tr>\n<td>SD</td>\n<td>sudan</td>\n</tr>\n<tr>\n<td>SE</td>\n<td>sweden</td>\n</tr>\n<tr>\n<td>SG</td>\n<td>singapore</td>\n</tr>\n<tr>\n<td>SI</td>\n<td>slovenia</td>\n</tr>\n<tr>\n<td>SK</td>\n<td>slovakia</td>\n</tr>\n<tr>\n<td>SN</td>\n<td>senegal</td>\n</tr>\n<tr>\n<td>SR</td>\n<td>suriname</td>\n</tr>\n<tr>\n<td>SV</td>\n<td>el_salvador</td>\n</tr>\n<tr>\n<td>SZ</td>\n<td>swaziland</td>\n</tr>\n<tr>\n<td>TG</td>\n<td>togo</td>\n</tr>\n<tr>\n<td>TH</td>\n<td>thailand</td>\n</tr>\n<tr>\n<td>TN</td>\n<td>tunisia</td>\n</tr>\n<tr>\n<td>TR</td>\n<td>turkey</td>\n</tr>\n<tr>\n<td>TW</td>\n<td>taiwan</td>\n</tr>\n<tr>\n<td>TZ</td>\n<td>tanzania</td>\n</tr>\n<tr>\n<td>UA</td>\n<td>ukraine</td>\n</tr>\n<tr>\n<td>UG</td>\n<td>uganda</td>\n</tr>\n<tr>\n<td>US</td>\n<td>united_states_of_america</td>\n</tr>\n<tr>\n<td>UY</td>\n<td>uruguay</td>\n</tr>\n<tr>\n<td>UZ</td>\n<td>uzbekistan</td>\n</tr>\n<tr>\n<td>VC</td>\n<td>saint_vincent_and_the_grenadines</td>\n</tr>\n<tr>\n<td>VG</td>\n<td>british_virgin_islands</td>\n</tr>\n<tr>\n<td>VN</td>\n<td>vietnam</td>\n</tr>\n<tr>\n<td>WF</td>\n<td>wallis_and_futuna_islands</td>\n</tr>\n<tr>\n<td>XK</td>\n<td>kosovo</td>\n</tr>\n<tr>\n<td>YT</td>\n<td>mayotte</td>\n</tr>\n<tr>\n<td>ZA</td>\n<td>south_africa</td>\n</tr>\n<tr>\n<td>ZM</td>\n<td>zambia</td>\n</tr>\n<tr>\n<td>ZW</td>\n<td>zimbabwe</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"docs-in-different-languages\">Docs in different languages</h1>\n<p>Documentation in french can be found <a href=\"https://documenter.getpostman.com/view/8247926/SVSRJSBi\">here</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Consentio Partner API","slug":"consentio-partner-api"},{"content":"Integration options","slug":"integration-options"},{"content":"Requirements and general information","slug":"requirements-and-general-information"},{"content":"Price management on products","slug":"price-management-on-products"},{"content":"Price and sale units on order articles","slug":"price-and-sale-units-on-order-articles"},{"content":"Unit conversions","slug":"unit-conversions"},{"content":"Traceability between partners and Consentio","slug":"traceability-between-partners-and-consentio"},{"content":"Webhooks","slug":"webhooks"},{"content":"Product types","slug":"product-types"},{"content":"Available countries","slug":"available-countries"},{"content":"Docs in different languages","slug":"docs-in-different-languages"}],"owner":"8247926","collectionId":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","publishedId":"SVSRJ6UT","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2019-08-30T08:02:46.000Z"},"item":[{"name":"partner","item":[{"name":"Authentication","item":[{"name":"Login","event":[{"listen":"test","script":{"id":"1f388c9d-e865-4e24-852d-5c61fdbd774a","exec":["var jsonData = pm.response.json();","pm.environment.set(\"token\", jsonData.access_token);","pm.environment.set(\"refresh\", jsonData.refresh_token);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"04ee28f9-e93d-4df5-8989-549931df495b","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"api_key\": \"{{apiKey}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/user/loginpassword?email=%7B%7Bemail%7D%7D&password=%7B%7Bpassword%7D%7D","description":"<p>Authenticate as a partner. This is a step required for next interactions with our API.</p>\n<p>An API key is needed to login and will return JWT tokens in response.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["user","loginpassword"],"host":["{{host}}"],"query":[{"key":"email","value":"{{email}}"},{"key":"password","value":"{{password}}"}],"variable":[]}},"response":[{"id":"5ad3ba5e-a36a-4fc2-a8b6-e181ea93cee7","name":"Login Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"api_key\": \"{{apiKey}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{partner_id}}/login"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"200"},{"key":"Date","value":"Fri, 26 Mar 2021 07:53:02 GMT"},{"key":"Content-Length","value":"712"}],"cookie":[],"responseTime":null,"body":"{\n    \"catalog\": {\n        \"bio\": \"\",\n        \"company_color\": \"\",\n        \"company_image\": \"\",\n        \"company_logo\": \"\",\n        \"created_at\": 1582040334856,\n        \"currency_conversions\": {\n            \"AUD\": 20\n        },\n        \"default_currency\": \"EUR\",\n        \"default_weight_unit\": \"kg\",\n        \"hash_id\": \"Y1VOXZ798J\",\n        \"id\": 6,\n        \"members\": [\n            {\n                \"user_id\": 1213,\n                \"catalog_id\": 6,\n                \"role\": \"admin\",\n                \"created_at\": 1582040334856,\n                \"updated_at\": 1582040334856\n            },\n            {\n                \"user_id\": 1214,\n                \"catalog_id\": 6,\n                \"role\": \"editor\",\n                \"created_at\": 1608729846896,\n                \"updated_at\": 1615884003358\n            }\n        ],\n        \"name\": \"\",\n        \"number_of_active_teammates\": 2,\n        \"number_of_clients\": 62,\n        \"number_of_decimals_showed\": 2,\n        \"number_of_products\": 0,\n        \"orders_email\": \"\",\n        \"owner_id\": 1213,\n        \"pdf_show_prices\": true,\n        \"plan\": {\n            \"catalog_id\": 6,\n            \"type\": \"pro\",\n            \"start_date\": 1608728779348,\n            \"expiry_date\": 1643760000000,\n            \"updated_at\": 1608728779348,\n            \"num_licenses\": 20\n        },\n        \"price_list_url\": \"consentio-RNOZZZPOX8\",\n        \"public_price_list\": true,\n        \"sections\": [],\n        \"sections_enabled\": false,\n        \"status\": \"active\",\n        \"updated_at\": 1608729979417\n    },\n    \"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjowLCJvcmdhbml6YXRpb25faWQiOjAsImNhdGFsb2dfaWQiOjYsImlzX3JlZnJlc2giOmZhbHNlLCJleHAiOjE2MTY3NDU0ODJ9.CQwNRJRz1kl3R5b9a2LpQmnEWwWXsTO6LlfUlL3Wz0w\",\n    \"refresh_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjowLCJvcmdhbml6YXRpb25faWQiOjAsImNhdGFsb2dfaWQiOjYsImlzX3JlZnJlc2giOnRydWUsImV4cCI6MTYxNjgzMDU4Mn0.FQ6J-HckjikhSByXs3pS5MQnGIkIEdvQvsTMfOckg9w\"\n}"},{"id":"c22c00bd-8692-4306-893d-c81b5bca40e9","name":"Wrong API Key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"api_key\": \"{{apiKey}}\"\n}"},"url":"{{host}}/partner/{{partner_id}}/login"},"status":"Not Found","code":404,"_postman_previewlanguage":"plain","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"200"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Date","value":"Fri, 26 Mar 2021 07:57:52 GMT"},{"key":"Content-Length","value":"47"}],"cookie":[],"responseTime":null,"body":"Not Found"}],"_postman_id":"04ee28f9-e93d-4df5-8989-549931df495b"},{"name":"Refresh","event":[{"listen":"test","script":{"id":"4ca006eb-b751-4730-ba2c-9b31f838e836","exec":["//var jsonData = JSON.parse(responseBody);","//postman.setEnvironmentVariable(\"token\", jsonData.access_token);"],"type":"text/javascript"}}],"id":"b26648a3-5382-4a02-9b5f-72a5a67c7fc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{refresh}}","description":"<p>Authentication and authorization header: must contain JWT refresh token retrieved in login call</p>\n"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/refresh","description":"<p>Refresh access token based on a valid refresh token.</p>\n<p>Every time a JWT access token expires, refresh should be called to get a new one.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["refresh"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"a091d592-4430-4dd0-8d8f-03afb901a5a1","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{refresh}}"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/refresh"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"202"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 25 Jul 2019 13:52:19 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"125"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjowLCJvcmdhbml6YXRpb25faWQiOjEsImlzX3JlZnJlc2giOmZhbHNlLCJleHAiOjE1NjQwNjMwMzl9.CLBsmjDxtB-yyr4_rjv-0DQhucEW1XRhozH8nKFkQ_A\"\n}"},{"id":"bb655858-cb28-48f0-9491-1c6040319f13","name":"Error: unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjowLCJvcmdhbml6YXRpb25faWQiOjEsImlzX3JlZnJlc2giOmZhbHNlLCJleHAiOjE1NjQwNjMwODl9.exDZQptxXzuQyTEmhDMU-qMpq_ZaYe4mncpqwveJ_Kk"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/refresh"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"plain","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"25"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Date","value":"Thu, 25 Jul 2019 13:53:21 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"125"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"\n"}],"_postman_id":"b26648a3-5382-4a02-9b5f-72a5a67c7fc4"}],"id":"574998eb-28b6-4d71-839d-e30ad4f11e26","description":"<p>All communication with the API is encrypted with SSL (key RSA 2048 bits), so no sensitive information will be exchanged in plain text between the partner and Consentio.<br />You can verify our SSL certificate at <a href=\"https://www.ssllabs.com/ssltest/analyze.html?d=rtapi.consentio-tool.com\">SSLLabs</a>.</p>\n<p>Authentication and authorization are handled via the open standard <a href=\"https://jwt.io/\">JSON Web Token (JWT)</a>. Its operation consists mainly of three actions:</p>\n<ol>\n<li><a href=\"#2d0fe123-e441-4668-acf9-d9e42c0bd692\">Identification</a>: obtaining access and refresh tokens using the API_KEY. The access token will be valid for 5 minutes, the refresh token will be valid for 24 hours.</li>\n<li>Regular API call: with the access token in the Authorization header.</li>\n<li><a href=\"#788c56a0-c0ca-4a2d-839d-333f83ad4c8a\">Refresh</a>: obtaining a new access token from the refresh token.</li>\n</ol>\n<p>At the beginning of each session, it is necessary to log in using the variable `{{apiKey}}` provided by Consentio.</p>\n<p>Once logged in successfully, every request should include the access_token in the Authorization header using the string: `Bearer` . For example if the access token is eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9, the content of the Authorization header would be `Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9`.</p>\n","_postman_id":"574998eb-28b6-4d71-839d-e30ad4f11e26","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}}},{"name":"Product","item":[{"name":"Product creation","id":"66127f49-adee-4506-bcd8-cd13ecb1e19a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"<p>Authentication and authorization header: must contain JWT access token retrieved in login call</p>\n","type":"text"}],"body":{"mode":"raw","raw":"type,variety,origin,category,size,box_weight,brand,status,price_unit,pieces_per_box,packaging,sale_units,sku,boxes_per_pallet,display_name,image1\n',S.D,--,,,0,\"\",inactive,box,1,\"\",\"box\",000000000000035560_box_105216_000000000000000000,20000,\"\",\n'ginger,S.D,PE,1,,13,\"\",inactive,box,1,\"\",\"box\",000000000000117487_box_206458_000000000002358797,72,\"JENGIBRE I BIO 10% PE\",\n'ginger,S.D,PE,1,,13,\"\",inactive,box,1,\"\",\"box\",000000000000117487_box_559127_000000000002347066,72,\"JENGIBRE I BIO 10% PE\",\n'onion,RECAS,ES,1,,10,\"\",inactive,box,0,\"10K\",\"box\",000000000000117943_box_654687_000000000002366043,100,\"CEBOLLA RECAS I BIO 10K ES\",\n'banana,S.D,ES,,,17,\"\",inactive,box,0,\"17K\",\"box\",000000000000140293_box_414876_000000000002362711,45,\"PLATANO EN CONVERSION 17K ES\",\n'banana,S.D,ES,4,,16,\"\",inactive,box,0,\"16K\",\"box\",000000000000145590_box_650639_000000000002365149,45,\"PLATANO XTRA BIO 16K ES\",\n'kiwi,HAYWARD ORG,NZ,1,33,10,\"ZESPRI\",active,box,0,\"10K\",\"box\",000000000000146784_box_309609_000000000002348461,100,\"KIWI HAYWARD 33 I BIO ZESPRI 10K NZ\",\n'apple,R.GALA,ES,1,,9,\"\",active,box,0,\"\",\"box\",000000000000150852_box_147312_000000000002337764,60,\"MAN R.GALA I BIO ES\",\n'apple,R.GALA,IT,1,75/80,7,\"MARLENE\",active,box,0,\"1M\",\"box\",000000000000150941_box_897883_000000000002368645,100,\"MAN R.GALA 75/80 I BIO MARLENE 1M IT\",\n'other,S.D,PE,,,2,\"\",active,box,0,\"2K\",\"box\",000000000000151436_box_590104/J01_0000000000023681,168,\"(ENV)-CURCUMA BIO 2K 10%\",\n'other,S.D,PE,1,,13,\"\",active,box,0,\"\",\"box\",000000000000151831_box_590104_000000000002328398,72,\"CURCUMA I BIO 10% PE\",\n'tomato,ROSA,ES,1,,7,\"\",active,box,0,\"\",\"box\",000000000000151932_box_745367_000000000002370066,150,\"TOMATE ROSA BARBASTRO I BIO ES\",\n'pear,CONFER,ES,1,55/65,11,\"\",active,box,0,\"\",\"box\",000000000000152131_box_717875_000000000002359610,93,\"PERA CONFER 55/65 I BIO ES\",\n'zucchini,S.D,ES,1,,6,\"\",active,box,0,\"6K\",\"box\",000000000000152496_box_677274_000000000002366088,108,\"CALABAC I BIO 6K ES\",\n'squash,S.D,ES,1,,10,\"\",active,box,0,\"10K\",\"box\",000000000000152498_box_827972_000000000002352355,110,\"CALABAZA I BIO 10K ES\",\n'leeks,S.D,ES,1,,10,\"\",active,box,0,\"10K\",\"box\",000000000000152499_box_463412_000000000002367124,50,\"PUERRO I BIO 10K ES\",\n'ginger,S.D,PE,1,,8,\"\",active,box,0,\"8K\",\"box\",000000000000155106_box_260812_000000000002366848,182,\"JENGIBRE I BIO 8K 10% PE\",\n'garlic,MORADO,ES,1,,5,\"\",inactive,box,0,\"5K\",\"box\",000000000000155520_box_928690_000000000002365620,150,\"AJO MORADO I BIO 5K ES\",\n'garlic,MORADO,ES,1,,5,\"\",inactive,box,0,\"5K\",\"box\",000000000000155520_box_988083_000000000002370776,150,\"AJO MORADO I BIO 5K ES\",\n'aubergine,NEGRA,ES,1,,5,\"\",active,box,0,\"5K\",\"box\",000000000000156645_box_649968_000000000002364053,100,\"BERENJ NEGRA I BIO 5K ES\",\n'zucchini,S.D,ES,1,14/21,6,\"\",inactive,box,0,\"6K\",\"box\",000000000000156689_box_752265_000000000002373139,108,\"CALABAC 14/21 I BIO 6K ES\",\n'date,MEDJOUL,IL,1,,2,\"\",active,box,0,\"2K\",\"box\",000000000000157108_box_583318_000000000002363236,100,\"DATIL MEDJOUL I BIO 2K IL\",\n'lemon,S.D,ES,1,,6,\"\",inactive,box,0,\"6K\",\"box\",000000000000157183_box_594239_000000000002373584,136,\"LIMON I BIO 6K ES\",\n'cucumber,S.D,ES,1,,5,\"\",inactive,box,0,\"5K\",\"box\",000000000000157185_box_906972_000000000002366052,100,\"PEPINO I BIO 5K ES\",\n'tomato,PERA,ES,1,,6,\"\",active,box,0,\"6K\",\"box\",000000000000157274_box_451842_000000000002370764,150,\"TOMATE PERA I BIO 6K ES\",\n'tomato,PERA,ES,1,,6,\"\",active,box,0,\"6K\",\"box\",000000000000157274_box_496054_000000000002373227,150,\"TOMATE PERA I BIO 6K ES\",\n'tomato,PERA,ES,1,,6,\"\",active,box,0,\"6K\",\"box\",000000000000157274_box_952279_000000000002370832,150,\"TOMATE PERA I BIO 6K ES\",\n'sweet_potato,S.D,ES,1,150/300,6,\"\",inactive,box,0,\"6K\",\"box\",000000000000157275_box_591900_000000000002362022,150,\"BONIATO 150/300 I BIO 6K ES\",\n'pepper,ROJO CALIF,ES,1,,5,\"\",active,box,0,\"5K\",\"box\",000000000000157369_box_306634_000000000002372636,100,\"PIM ROJO CALIF I BIO 5K ES\",\n'pepper,ROJO CALIF,ES,1,,5,\"\",active,box,0,\"5K\",\"box\",000000000000157369_box_417552_000000000002363030,100,\"PIM ROJO CALIF I BIO 5K ES\",\n'pepper,ROJO CALIF,ES,1,,5,\"\",inactive,box,0,\"5K\",\"box\",000000000000157369_box_422315_000000000002361823,100,\"PIM ROJO CALIF I BIO 5K ES\",\n'pepper,ROJO CALIF,ES,1,,5,\"\",active,box,0,\"5K\",\"box\",000000000000157369_box_852871_000000000002373140,100,\"PIM ROJO CALIF I BIO 5K ES\",\n'zucchini,S.D,ES,1,,5,\"\",active,box,0,\"5K\",\"box\",000000000000157422_box_954078_000000000002365472,108,\"CALABAC I BIO 5K ES\",\n'squash,S.D,ES,1,,12,\"\",active,box,0,\"12K\",\"box\",000000000000157430_box_978987_000000000002365474,110,\"CALABAZA I BIO 12K ES\",\n'broccoli,S.D,ES,1,,6,\"\",active,box,6,\"6K\",\"box\",000000000000157622_box_206472_000000000002368777,80,\"BROCOLI I BIO 6K ES\",\n'broccoli,S.D,ES,1,,6,\"\",active,box,6,\"6K\",\"box\",000000000000157622_box_320036_000000000002365283,80,\"BROCOLI I BIO 6K ES\",\n'broccoli,S.D,ES,1,,6,\"\",active,box,6,\"6K\",\"box\",000000000000157622_box_427977_000000000002373196,80,\"BROCOLI I BIO 6K ES\",\n'carrot,S.D,NL,1,,10,\"\",active,box,0,\"10K\",\"box\",000000000000157683_box_823232_000000000002367818,120,\"ZANAHORIA I BIO 10K NL\",\n'tomato,ROSA,ES,1,,5,\"\",active,box,0,\"5K\",\"box\",000000000000157686_box_273695_000000000002368884,150,\"TOMATE ROSA BARBASTRO I BIO 5K ES\",\n'tomato,RAMA,FR,1,,5,\"P.BRETAGNE\",active,box,0,\"5K\",\"box\",000000000000157693_box_189623_000000000002372295,140,\"TOMATE RAMA I BIO P.BRETAGNE 5K FR\",\n'tomato,CHERRY BOLA,ES,1,,23,\"\",active,box,9,\"9X250GR BJA\",\"box\",000000000000157772_box_947948_000000000002368702,100,\"TOMATE CHERRY BOLA I BIO 9X250GR BJA ES\",\n'khaki,S.D,ES,1,,11,\"\",active,box,0,\"\",\"box\",000000000000158022_box_278698_000000000002369963,100,\"KAKI I BIO ES\",\n'banana,S.D,ES,,,2,\"\",active,box,0,\"\",\"box\",000000000000158236_box_175848-PM3_0000000000023708,45,\"(ENV) PLATANO BIO SUELTO\",\n'orange,NAVELINA,ES,1,6/7/8,10,\"\",active,box,0,\"\",\"box\",000000000000158367_box_555340_000000000002365621,80,\"NAR NAVELINA 6/7/8 I ZUMO BIO ES\",\n'apple,S.D,FR,1,16,5,\"JULIET\",inactive,box,0,\"\",\"box\",000000000000158399_box_945800_000000000002363846,160,\"MAN 16 I JULIET BIO FR\",\n'pepper,AMARILLO CALIF,ES,1,,5,\"\",active,box,0,\"5K\",\"box\",000000000000158581_box_640504_000000000002372637,160,\"PIM AMARILLO CALIF I BIO 5K ES\",\n'corn,COCIDO,ES,1,,5,\"HUERCASA\",active,box,12,\"12BJA\",\"box\",000000000000159901_box_265867_000000000002360739,135,\"MAIZ COCIDO I BIO HUERCASA 12BJA 10% ES\",\n'beetroot,COCIDA,ES,1,,1,\"HUERCASA\",active,box,12,\"12BJA\",\"box\",000000000000159902_box_881594_000000000002360740,135,\"REMOLACHA CD BIO I HUERCASA 12BJA 10% ES\",\n'leeks,S.D,FR,1,,10,\"P.BRETAGNE\",active,box,0,\"10K\",\"box\",000000000000161074_box_468230_000000000002372296,55,\"PUERRO I BIO P.BRETAGNE 10K FR\",\n'tomato,ASURCADO,ES,1,G,3,\"\",active,box,0,\"3K\",\"box\",000000000000161255_box_880908_000000000002371414,180,\"TOMATE ASURCADO G I BIO 3K ES\",\n'pear,CONFER,ES,1,60+,11,\"\",active,box,0,\"\",\"box\",000000000000161283_box_850598_000000000002371569,93,\"PERA CONFER 60+ I BIO ES\",\n'apple,R.DELIC,IT,1,75/80,4,\"MARLENE\",active,box,0,\"C/P\",\"box\",000000000000161350_box_422266_000000000002368644,176,\"MAN R.DELIC 75/80 I BIO MARLENE C/P IT\",\n'apple,G.SMITH,IT,1,75/80,4,\"MARLENE\",active,box,0,\"C/P\",\"box\",000000000000161352_box_746988_000000000002368648,176,\"MAN G.SMITH 75/80 I BIO MARLENE C/P IT\",\n'ginger,S.D,PE,,,5,\"ORSERO\",active,box,5,\"5K\",\"box\",000000000000161605_box_559127/X01_0000000000023717,160,\"(ENV)-BBBJENGIBRE ORSERO BIO 5K 10%\",\n'ginger,S.D,PE,,,5,\"ORSERO\",inactive,box,5,\"5K\",\"box\",000000000000161605_box_963249/S01_0000000000023603,160,\"(ENV)-JENGIBRE ORSERO BIO 5K 10%\",\n'carrot,S.D,NL,2,,10,\"\",active,box,0,\"10K\",\"box\",000000000000161907_box_609207_000000000002367819,100,\"ZANAHORIA II BIO 10K NL\",\n'banana,S.D,ES,,,9,\"CUQUI\",active,box,0,\"9K\",\"box\",000000000000162092_box_442661_000000000002369790,70,\"PLATANO CUQUI BIO 9K ES\",\n'ginger,S.D,PE,1,,9,\"\",active,box,0,\"8,5K\",\"box\",000000000000162102_box_723103_000000000002365402,72,\"JENGIBRE I BIO 8,5K 10% PE\",\n'tomato,CHERRY RAMA,ES,1,,3,\"\",active,box,10,\"3K\",\"box\",000000000000162211_box_481598_000000000002366862,92,\"TOMATE CHERRY RAMA I BIO 3K ES\",\n'apple,GOLDEN,IT,1,75/80,4,\"MARLENE\",active,box,0,\"1M\",\"box\",000000000000162356_box_387562_000000000002368650,176,\"MAN GOLDEN 75/80 I BIO MARLENE 1M IT\",\n'mushroom,PORTOBELLO,ES,1,,2,\"\",active,box,0,\"\",\"box\",000000000000162429_box_903633_000000000002371721,120,\"CHAMPIÃ‘ON PORTOBELLO I BIO ES\",\n'apple,S.D,FR,1,95/130,13,\"JULIET\",inactive,box,0,\"13K\",\"box\",000000000000162467_box_387511_000000000002363847,60,\"MAN 95/130 I JULIET BIO 13K FR\",\n'potatoes,BLANCA,ES,,,5,\"\",active,box,0,\"5K\",\"box\",000000000000162518_box_464890_000000000002370777,50,\"PATATA BLANCA BIO 5K ES\",\n'potatoes,BLANCA,ES,,,5,\"\",active,box,0,\"5K\",\"box\",000000000000162518_box_747266_000000000002366042,50,\"PATATA BLANCA BIO 5K ES\",\n'potatoes,BLANCA,ES,,,5,\"\",active,box,0,\"5K\",\"box\",000000000000162518_box_840800_000000000002354165,50,\"PATATA BLANCA BIO 5K ES\",\n'beans,BOBY,ES,1,,4,\"\",active,box,0,\"4K\",\"box\",000000000000162783_box_293406_000000000002370815,120,\"JUDIA BOBY I BIO 4K ES\",\n'apple,G.SMITH,ES,1,,4,\"\",active,box,0,\"\",\"box\",000000000000163599_box_156795_000000000002359609,72,\"MAN G.SMITH I BIO ES\",\n'apple,G.SMITH,ES,1,,4,\"\",active,box,0,\"\",\"box\",000000000000163599_box_156795/G_000000000002360198,72,\"MAN G.SMITH I BIO ES\",\n'potatoes,ROJA,ES,1,,10,\"\",active,box,0,\"10K\",\"box\",000000000000163636_box_906870_000000000002357808,80,\"PATATA ROJA I BIO 10K ES\",\n'pear,BLANQUILLA,ES,1,50/60,4,\"\",active,box,0,\"\",\"box\",000000000000163745_box_908884_000000000002369932,172,\"PERA BLANQUILLA 50/60 I BIO ES\",\n'apple,GOLDEN,ES,1,60/70,8,\"\",active,box,0,\"\",\"box\",000000000000163789_box_183594/P01_0000000000023622,96,\"MAN GOLDEN 60/70 I BIO ES\",\n'avocado,BACON,ES,1,20,4,\"\",active,box,14,\"4K\",\"box\",000000000000163969_box_996816_000000000002366096,180,\"AGUACATE BACON 20 I BIO 4K ES\",\n',S.D,ES,1,,5,\"\",active,box,0,\"5K\",\"box\",000000000000163999_box_430303_000000000002372782,80,\"CASTAÃ‘A I BIO 5K ES\",\n',S.D,ES,1,,5,\"\",active,box,0,\"5K\",\"box\",000000000000163999_box_469128_000000000002371607,80,\"CASTAÃ‘A I BIO 5K ES\",\n',S.D,ES,1,,5,\"\",active,box,0,\"5K\",\"box\",000000000000163999_box_700730_000000000002365218,80,\"CASTAÃ‘A I BIO 5K ES\",\n'mandarin,S.D,ES,1,,10,\"\",active,box,0,\"10K\",\"box\",000000000000164090_box_257748_000000000002356092,88,\"MANDARINA I BIO 10K ES\",\n'tomato,ASURCADO,ES,1,M,6,\"\",active,box,0,\"6K\",\"box\",000000000000164154_box_426250_000000000002371416,180,\"TOMATE ASURCADO M I BIO 6K ES\",\n'tomato,ASURCADO,ES,1,M,3,\"\",active,box,0,\"3K\",\"box\",000000000000164156_box_649374_000000000002371415,180,\"TOMATE ASURCADO M I BIO 3K ES\",\n'orange,NAVELINA,ES,1,7/8,10,\"\",active,box,0,\"10K\",\"box\",000000000000164184_box_323484_000000000002367976,80,\"NAR NAVELINA 7/8 I BIO 10K ES\",\n'apple,GOLDEN,ES,1,70/75,8,\"\",active,box,0,\"\",\"box\",000000000000164192_box_984119/P_000000000002363016,96,\"MAN GOLDEN 70/75 I BIO ES\",\n'orange,NAVELINA,ES,1,4/5,10,\"\",active,box,0,\"10K\",\"box\",000000000000164262_box_881214_000000000002370782,80,\"NAR NAVELINA 4/5 I BIO 10K ES\",\n'orange,NAVELINA,ES,1,6/7,10,\"\",active,box,0,\"10K\",\"box\",000000000000164263_box_984709_000000000002370783,80,\"NAR NAVELINA 6/7 I BIO 10K ES\",\n'other,S.D,ES,,,5,\"\",active,box,5,\"\",\"box\",000000000000164519_box_962351_000000000002361896,70,\"ALOE VERA BIO 10% ES\",\n'potatoes,AGRIA,ES,,,10,\"\",active,box,0,\"\",\"box\",000000000000164546_box_122545_000000000002371732,50,\"PATATA AGRIA BIO ES\",\n'apple,FUJI,ES,1,80+,10,\"\",active,box,0,\"\",\"box\",000000000000164783_box_802498_000000000002365725,100,\"MAN FUJI 80+ I BIO ES\",\n'tomato,BOLA,ES,1,,6,\"\",active,box,0,\"6K\",\"box\",000000000000164957_box_433703_000000000002370831,120,\"TOMATE BOLA I BIO 6K ES\",\n'tomato,BOLA,ES,1,,6,\"\",active,box,0,\"6K\",\"box\",000000000000164957_box_458806_000000000002368699,120,\"TOMATE BOLA I BIO 6K ES\",\n'kiwi,HAYWARD ORG,PT,1,33,6,\"\",active,box,0,\"6K\",\"box\",000000000000165089_box_516776_000000000002368956,80,\"KIWI HAYWARD 33 I BIO 6K PT\",\n'pear,CONFER,ES,1,50/60,10,\"\",active,box,0,\"\",\"box\",000000000000165500_box_632510_000000000002359624,93,\"PERA CONFER 50/60 I BIO ES\",\n'grapefruit,STAR RUBY,ES,1,5/6,7,\"\",active,box,0,\"\",\"box\",000000000000165536_box_250048_000000000002359622,88,\"POMELO STAR RUBY 5/6 I BIO ES\",\n'pineapple,S.D,CI,1,10,11,\"\",active,box,10,\"11K\",\"box\",000000000000165609_box_708207_000000000002363237,70,\"PIÃ‘A 10 MIX I BIO 11K CI\",\n'grapes,ITALIA,IT,1,,6,\"\",active,box,0,\"6K\",\"box\",000000000000166344_box_202199_000000000002361936,100,\"UVA ITALIA I BIO 6K IT\",\n'apple,FUJI,ES,1,,5,\"CUQUI\",active,box,6,\"6X4F BJA\",\"box\",000000000000166364_box_4706643_000000000002372104,120,\"MAN FUJI I CUQUI BIO 6X4F BJA ES\",\n'apple,FUJI,ES,1,,5,\"CUQUI\",active,box,6,\"6X4F BJA\",\"box\",000000000000166364_box_4706645_000000000002371135,120,\"MAN FUJI I CUQUI BIO 6X4F BJA ES\",\n'apple,RED BUBBLE,FR,1,80/85,13,\"\",inactive,box,0,\"\",\"box\",000000000000166439_box_690411_000000000002342198,60,\"MAN RED BUBBLE 80/85 I BIO FR\",\n'pomegranate,S.D,ES,1,,4,\"\",active,box,0,\"4K\",\"box\",000000000000166526_box_490245_000000000002350386,160,\"GRANADA I BIO 4K ES\",\n'apple,RED BUBBLE,FR,1,73/78,13,\"\",inactive,box,0,\"\",\"box\",000000000000166579_box_866690_000000000002354866,60,\"MAN RED BUBBLE 73/78 I BIO FR\",\n'kiwi,AMARILLO,ES,1,36,6,\"\",active,box,0,\"6K\",\"box\",000000000000166595_box_197955_000000000002356341,90,\"KIWI AMARILLO 36 I BIO 6K ES\",\n'avocado,HASS,PE,1,12,4,\"\",inactive,box,14,\"4K\",\"box\",000000000000166627_box_828998_000000000002360996,180,\"AGUACATE HASS 12 I BIO 4K PE\",\n'khaki,S.D,ES,1,,5,\"\",active,box,0,\"5K\",\"box\",000000000000166691_box_601202_000000000002368735,100,\"KAKI I BIO 5K ES\",\n'tomato,PERA RAMA,ES,1,,4,\"BIO SABOR\",active,box,0,\"4K\",\"box\",000000000000166728_box_303709_000000000002368705,184,\"TOMATE COCK. PERA RAMA I BIO 4K ES\",\n'pepper,NARANJA CALIF,ES,1,,5,\"\",active,box,0,\"5K\",\"box\",000000000000166729_box_820476_000000000002368706,100,\"PIM NARANJA CALIF I BIO 5K ES\",\n'mango,PALMER,ES,1,10,4,\"\",active,box,0,\"4K\",\"box\",000000000000166778_box_984238_000000000002373228,189,\"MANGO PALMER 10 I BIO 4K ES\",\n'other,S.D,ES,,,4,\"\",active,box,0,\"4K\",\"box\",000000000000166779_box_942710_000000000002373255,70,\"ALOE VERA BIO 4K 10% ES\",\n'pepper,LAMUYO ROJO,ES,1,,5,\"\",active,box,0,\"4,5K\",\"box\",000000000000166780_box_804787_000000000002373256,100,\"PIM LAMUYO ROJO I BIO 4,5K ES\",                                                                                      "},"url":"{{host}}/partner/{{partner_id}}/product?type=file","description":"<p>This endpoint does two things:</p>\n<ul>\n<li>Creates a list of products</li>\n<li>Creates rates if they are included on the request</li>\n</ul>\n<p>Products will be sent in CSV format, encoded in UTF-8. The first row is a header with the names of the fields, and each successive row represents a product. Each product consists of a product type and a sale format, so if a product can be sold in two formats, the information will be sent in two different rows.</p>\n<p>Also, if the seller has price groups for their clients inside the ERP, it is possible to provide them through Consentio. The rates provided must come with the prefix <strong>rate_</strong>.</p>\n<h3 id=\"product-load-strategy\">Product load strategy</h3>\n<p>By default, the products that are uploaded by the ERP to Consentio are our source of truth. This means that the products that are sent will be updated if any change is made, and the products that don't appear will be deleted.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["partner","{{partner_id}}","product"],"host":["{{host}}"],"query":[{"key":"type","value":"file"}],"variable":[]}},"response":[{"id":"a4de4e7b-8793-4fc9-8989-f9b6687bd36e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjowLCJvcmdhbml6YXRpb25faWQiOjI0LCJpc19yZWZyZXNoIjpmYWxzZSwiZXhwIjoxNjEwNTU4NzIxfQ.RdQUB...","description":"Authentication and authorization header: must contain JWT access token retrieved in login call"}],"body":{"mode":"raw","raw":"type,variety,origin,category,size,box_weight,boxes_per_amount,price,brand,status,price_unit,pieces_per_box,packaging,sales_unit,sku,ean_code,box_type,pallet_type,organic,more_info\nlemon,Verna Lemon,ES,I,60,15,72,14,Sentilver Fruit,active,box,,,box,LEMON-1,,,,,\nlemon,Verna Lemon,ES,I,70,15,72,15,Sentilver Fruit,active,box,,,box,LEMON-2,,,,,\nlemon,Verna Lemon,ES,I,80,15,72,16,Sentilver Fruit,active,box,,,box,LEMON-3,,,,,\nclementine,Satsuma,ZA,I,1XXX,10,104,12,Grown4U,active,box,,,box,CLEMENTINE-1,,,,,\nclementine,Satsuma,ZA,I,1XX,10,104,12,Grown4U,active,box,,,box,CLEMENTINE-2,,,,,\nclementine,Satsuma,ZA,I,1X,10,104,12.5,Grown4U,active,box,,,box,CLEMENTINE-3,,,,,\nclementine,Satsuma,ZA,I,1,10,104,13.5,Grown4U,active,box,,,box,CLEMENTINE-4,,,,,\norange,Valencia,EG,I,72,15,80,8,Daltex,active,box,,,box,ORANGE-1,,,,,\norange,Valencia,EG,I,80,15,80,8,Daltex,inactive,box,,,box,ORANGE-2,,,,,\norange,Valencia,EG,I,88,15,80,8,Daltex,unavailable,box,,,box,ORANGE-3,,,,,"},"url":"https://rtapi.consentio-tool.com/v2/partner/3058/product"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"200"},{"key":"Date","value":"Fri, 26 Mar 2021 08:03:51 GMT"},{"key":"Content-Length","value":"1621"}],"cookie":[],"responseTime":null,"body":"{\n    \"products\": [\n        {\n            \"id\": 105336,\n            \"catalog_id\": 6,\n            \"type\": {\n                \"product_id\": 105336,\n                \"group\": \"vegetable\",\n                \"variety\": \"Verna Lemon\",\n                \"type\": \"lemon\",\n                \"origin\": \"ES\",\n                \"created_at\": \"2021-03-26T08:03:50.917295Z\",\n                \"updated_at\": \"2021-03-26T08:03:50.917295Z\"\n            },\n            \"currency\": \"EUR\",\n            \"status\": \"active\",\n            \"size\": \"60\",\n            \"created_at\": \"2021-03-26T08:03:50.913413Z\",\n            \"images\": [],\n            \"box_weight\": 15,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"LEMON-1\",\n            \"organic\": \"\",\n            \"updated_at\": \"2021-03-26T08:03:50.913413Z\",\n            \"favorite_hash\": \"dd582736d8e9307555768ff47af96dcb\",\n            \"checksum\": \"3f3c7e5cf8ef413063ca89bbc96270c154c840704c0a5cb0c68f2ba3357af3b4\",\n            \"price\": 14,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"price_hash\": \"\",\n            \"user_id\": 1213,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Sentilver Fruit\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\",\n            \"tags\": [],\n            \"tax\": 0,\n            \"use_base\": false,\n            \"hash_id\": \"1K68VZKD6Y\",\n            \"pricegroup_id\": \"\",\n            \"weight_unit\": \"kg\"\n        },\n        {\n            \"id\": 105337,\n            \"catalog_id\": 6,\n            \"type\": {\n                \"product_id\": 105337,\n                \"group\": \"vegetable\",\n                \"variety\": \"Verna Lemon\",\n                \"type\": \"lemon\",\n                \"origin\": \"ES\",\n                \"created_at\": \"2021-03-26T08:03:50.920909Z\",\n                \"updated_at\": \"2021-03-26T08:03:50.920909Z\"\n            },\n            \"currency\": \"EUR\",\n            \"status\": \"active\",\n            \"size\": \"70\",\n            \"created_at\": \"2021-03-26T08:03:50.920097Z\",\n            \"images\": [],\n            \"box_weight\": 15,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"LEMON-2\",\n            \"organic\": \"\",\n            \"updated_at\": \"2021-03-26T08:03:50.920097Z\",\n            \"favorite_hash\": \"680f2739bb6c4f22fbab8308369d4d5b\",\n            \"checksum\": \"99ab8afe22988e1f91e6edad2db680f2f84372741af3345b8b01bad56563935b\",\n            \"price\": 15,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"price_hash\": \"\",\n            \"user_id\": 1213,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Sentilver Fruit\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\",\n            \"tags\": [],\n            \"tax\": 0,\n            \"use_base\": false,\n            \"hash_id\": \"RNOZG3LX7X\",\n            \"pricegroup_id\": \"\",\n            \"weight_unit\": \"kg\"\n        },\n        {\n            \"id\": 105338,\n            \"catalog_id\": 6,\n            \"type\": {\n                \"product_id\": 105338,\n                \"group\": \"vegetable\",\n                \"variety\": \"Verna Lemon\",\n                \"type\": \"lemon\",\n                \"origin\": \"ES\",\n                \"created_at\": \"2021-03-26T08:03:50.922136Z\",\n                \"updated_at\": \"2021-03-26T08:03:50.922136Z\"\n            },\n            \"currency\": \"EUR\",\n            \"status\": \"active\",\n            \"size\": \"80\",\n            \"created_at\": \"2021-03-26T08:03:50.921541Z\",\n            \"images\": [],\n            \"box_weight\": 15,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"LEMON-3\",\n            \"organic\": \"\",\n            \"updated_at\": \"2021-03-26T08:03:50.921541Z\",\n            \"favorite_hash\": \"6c7d176f68a35befa4470df56d52d01b\",\n            \"checksum\": \"d99773fd413d710c08d1abd538b43c7dedfb0e5cb700014b936de5b22bce2a5b\",\n            \"price\": 16,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"price_hash\": \"\",\n            \"user_id\": 1213,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Sentilver Fruit\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\",\n            \"tags\": [],\n            \"tax\": 0,\n            \"use_base\": false,\n            \"hash_id\": \"JNOMJBK4OX\",\n            \"pricegroup_id\": \"\",\n            \"weight_unit\": \"kg\"\n        },\n        {\n            \"id\": 105339,\n            \"catalog_id\": 6,\n            \"type\": {\n                \"product_id\": 105339,\n                \"group\": \"vegetable\",\n                \"variety\": \"Satsuma\",\n                \"type\": \"clementine\",\n                \"origin\": \"ZA\",\n                \"created_at\": \"2021-03-26T08:03:50.923074Z\",\n                \"updated_at\": \"2021-03-26T08:03:50.923074Z\"\n            },\n            \"currency\": \"EUR\",\n            \"status\": \"active\",\n            \"size\": \"1XXX\",\n            \"created_at\": \"2021-03-26T08:03:50.922594Z\",\n            \"images\": [],\n            \"box_weight\": 10,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"CLEMENTINE-1\",\n            \"organic\": \"\",\n            \"updated_at\": \"2021-03-26T08:03:50.922594Z\",\n            \"favorite_hash\": \"ac6df2581d99129d45c4104ca4721e34\",\n            \"checksum\": \"7cfad91e4942bab3c5d24005ef577da7435ba2490ad0a9c5501cc030d57ded12\",\n            \"price\": 12,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"price_hash\": \"\",\n            \"user_id\": 1213,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Grown4u\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\",\n            \"tags\": [],\n            \"tax\": 0,\n            \"use_base\": false,\n            \"hash_id\": \"2G7NJWPV6R\",\n            \"pricegroup_id\": \"\",\n            \"weight_unit\": \"kg\"\n        },\n        {\n            \"id\": 105340,\n            \"catalog_id\": 6,\n            \"type\": {\n                \"product_id\": 105340,\n                \"group\": \"vegetable\",\n                \"variety\": \"Satsuma\",\n                \"type\": \"clementine\",\n                \"origin\": \"ZA\",\n                \"created_at\": \"2021-03-26T08:03:50.923918Z\",\n                \"updated_at\": \"2021-03-26T08:03:50.923918Z\"\n            },\n            \"currency\": \"EUR\",\n            \"status\": \"active\",\n            \"size\": \"1XX\",\n            \"created_at\": \"2021-03-26T08:03:50.923452Z\",\n            \"images\": [],\n            \"box_weight\": 10,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"CLEMENTINE-2\",\n            \"organic\": \"\",\n            \"updated_at\": \"2021-03-26T08:03:50.923452Z\",\n            \"favorite_hash\": \"ddcefd9e62365118b610db36887b911d\",\n            \"checksum\": \"ce3124b79cc256ccbe3d49f4ebae539611a149535efcca68967d52d404a664ef\",\n            \"price\": 12,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"price_hash\": \"\",\n            \"user_id\": 1213,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Grown4u\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\",\n            \"tags\": [],\n            \"tax\": 0,\n            \"use_base\": false,\n            \"hash_id\": \"287V45W865\",\n            \"pricegroup_id\": \"\",\n            \"weight_unit\": \"kg\"\n        },\n        {\n            \"id\": 105341,\n            \"catalog_id\": 6,\n            \"type\": {\n                \"product_id\": 105341,\n                \"group\": \"vegetable\",\n                \"variety\": \"Satsuma\",\n                \"type\": \"clementine\",\n                \"origin\": \"ZA\",\n                \"created_at\": \"2021-03-26T08:03:50.924999Z\",\n                \"updated_at\": \"2021-03-26T08:03:50.924999Z\"\n            },\n            \"currency\": \"EUR\",\n            \"status\": \"active\",\n            \"size\": \"1X\",\n            \"created_at\": \"2021-03-26T08:03:50.92433Z\",\n            \"images\": [],\n            \"box_weight\": 10,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"CLEMENTINE-3\",\n            \"organic\": \"\",\n            \"updated_at\": \"2021-03-26T08:03:50.92433Z\",\n            \"favorite_hash\": \"c2ef235363357f0edb143c8a693962a4\",\n            \"checksum\": \"2836944a4d16e5dd08ace14731386dacd53511e1a0b37f406c29dba4f41d33a9\",\n            \"price\": 12.5,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"price_hash\": \"\",\n            \"user_id\": 1213,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Grown4u\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\",\n            \"tags\": [],\n            \"tax\": 0,\n            \"use_base\": false,\n            \"hash_id\": \"V27RZWN86M\",\n            \"pricegroup_id\": \"\",\n            \"weight_unit\": \"kg\"\n        },\n        {\n            \"id\": 105342,\n            \"catalog_id\": 6,\n            \"type\": {\n                \"product_id\": 105342,\n                \"group\": \"vegetable\",\n                \"variety\": \"Satsuma\",\n                \"type\": \"clementine\",\n                \"origin\": \"ZA\",\n                \"created_at\": \"2021-03-26T08:03:50.926128Z\",\n                \"updated_at\": \"2021-03-26T08:03:50.926128Z\"\n            },\n            \"currency\": \"EUR\",\n            \"status\": \"active\",\n            \"size\": \"1\",\n            \"created_at\": \"2021-03-26T08:03:50.925559Z\",\n            \"images\": [],\n            \"box_weight\": 10,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"CLEMENTINE-4\",\n            \"organic\": \"\",\n            \"updated_at\": \"2021-03-26T08:03:50.925559Z\",\n            \"favorite_hash\": \"1d3dbbff783437da9a878014b7edc503\",\n            \"checksum\": \"b7ec094a689651af84189be420605d7a0503f364a6995ad64ff6b71221bc6ced\",\n            \"price\": 13.5,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"price_hash\": \"\",\n            \"user_id\": 1213,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Grown4u\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\",\n            \"tags\": [],\n            \"tax\": 0,\n            \"use_base\": false,\n            \"hash_id\": \"3G62XYG4O4\",\n            \"pricegroup_id\": \"\",\n            \"weight_unit\": \"kg\"\n        },\n        {\n            \"id\": 105343,\n            \"catalog_id\": 6,\n            \"type\": {\n                \"product_id\": 105343,\n                \"group\": \"vegetable\",\n                \"variety\": \"Valencia\",\n                \"type\": \"orange\",\n                \"origin\": \"EG\",\n                \"created_at\": \"2021-03-26T08:03:50.92716Z\",\n                \"updated_at\": \"2021-03-26T08:03:50.92716Z\"\n            },\n            \"currency\": \"EUR\",\n            \"status\": \"active\",\n            \"size\": \"72\",\n            \"created_at\": \"2021-03-26T08:03:50.926585Z\",\n            \"images\": [],\n            \"box_weight\": 15,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"ORANGE-1\",\n            \"organic\": \"\",\n            \"updated_at\": \"2021-03-26T08:03:50.926585Z\",\n            \"favorite_hash\": \"ac9a6132b9ca93b8ca7c6e8405f31da8\",\n            \"checksum\": \"af2a1403593e39d4a10346c613c0549c4c9d6882ecfffa9a605bf17fc27338ad\",\n            \"price\": 8,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"price_hash\": \"\",\n            \"user_id\": 1213,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Daltex\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\",\n            \"tags\": [],\n            \"tax\": 0,\n            \"use_base\": false,\n            \"hash_id\": \"RQOW5LB571\",\n            \"pricegroup_id\": \"\",\n            \"weight_unit\": \"kg\"\n        },\n        {\n            \"id\": 105344,\n            \"catalog_id\": 6,\n            \"type\": {\n                \"product_id\": 105344,\n                \"group\": \"vegetable\",\n                \"variety\": \"Valencia\",\n                \"type\": \"orange\",\n                \"origin\": \"EG\",\n                \"created_at\": \"2021-03-26T08:03:50.928247Z\",\n                \"updated_at\": \"2021-03-26T08:03:50.928247Z\"\n            },\n            \"currency\": \"EUR\",\n            \"status\": \"inactive\",\n            \"size\": \"80\",\n            \"created_at\": \"2021-03-26T08:03:50.927641Z\",\n            \"images\": [],\n            \"box_weight\": 15,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"ORANGE-2\",\n            \"organic\": \"\",\n            \"updated_at\": \"2021-03-26T08:03:50.927641Z\",\n            \"favorite_hash\": \"5ef8e8dba961d2727826affac981f9e4\",\n            \"checksum\": \"1b8716de91260befa0479528e01399ee7ab794bc416a209ec88ad48176792529\",\n            \"price\": 8,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"price_hash\": \"\",\n            \"user_id\": 1213,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Daltex\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\",\n            \"tags\": [],\n            \"tax\": 0,\n            \"use_base\": false,\n            \"hash_id\": \"VB6B2QB8OR\",\n            \"pricegroup_id\": \"\",\n            \"weight_unit\": \"kg\"\n        },\n        {\n            \"id\": 105345,\n            \"catalog_id\": 6,\n            \"type\": {\n                \"product_id\": 105345,\n                \"group\": \"vegetable\",\n                \"variety\": \"Valencia\",\n                \"type\": \"orange\",\n                \"origin\": \"EG\",\n                \"created_at\": \"2021-03-26T08:03:50.929289Z\",\n                \"updated_at\": \"2021-03-26T08:03:50.929289Z\"\n            },\n            \"currency\": \"EUR\",\n            \"status\": \"unavailable\",\n            \"size\": \"88\",\n            \"created_at\": \"2021-03-26T08:03:50.928691Z\",\n            \"images\": [],\n            \"box_weight\": 15,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"ORANGE-3\",\n            \"organic\": \"\",\n            \"updated_at\": \"2021-03-26T08:03:50.928691Z\",\n            \"favorite_hash\": \"6fc4ad4d7bf20f98d16b292f100e1500\",\n            \"checksum\": \"8c30c8b235ee3a1e2350a5f75cc0f88c22cb0baa189173cacc913bc5876a7220\",\n            \"price\": 8,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"price_hash\": \"\",\n            \"user_id\": 1213,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Daltex\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\",\n            \"tags\": [],\n            \"tax\": 0,\n            \"use_base\": false,\n            \"hash_id\": \"1X6D2P5B65\",\n            \"pricegroup_id\": \"\",\n            \"weight_unit\": \"kg\"\n        }\n    ],\n    \"errors\": []\n}"},{"id":"11761126-9f98-4f58-9cfd-8fcd4db7ac9e","name":"Errors","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}","description":"Authentication and authorization header: must contain JWT access token retrieved in login call"}],"body":{"mode":"raw","raw":"type,variety,origin,category,size,box_weight,boxes_per_amount,price,brand,status,price_unit,pieces_per_box,packaging,sales_unit,sku,ean_code,box_type,pallet_type,organic,more_info\nlemon,Verna Limon,ES,I,60,15,72,14,Sentilver Fruit,active,box,,,box,LEMON-1,,,,,\nfake,Valencia,EG,I,88,15,80,8,Daltex,active,box,,,box,ORANGE-3,,,,,"},"url":"{{host}}/partner/{{partner_id}}/product"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"200"},{"key":"Date","value":"Fri, 26 Mar 2021 08:06:19 GMT"},{"key":"Content-Length","value":"576"}],"cookie":[],"responseTime":null,"body":"{\n    \"products\": [\n        {\n            \"id\": 105336,\n            \"catalog_id\": 6,\n            \"type\": {\n                \"product_id\": 105336,\n                \"group\": \"vegetable\",\n                \"variety\": \"Verna Limon\",\n                \"type\": \"lemon\",\n                \"origin\": \"ES\",\n                \"created_at\": \"2021-03-26T08:06:18.628335Z\",\n                \"updated_at\": \"2021-03-26T08:06:18.628335Z\"\n            },\n            \"currency\": \"EUR\",\n            \"status\": \"active\",\n            \"size\": \"60\",\n            \"created_at\": null,\n            \"images\": [],\n            \"box_weight\": 15,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"LEMON-1\",\n            \"organic\": \"\",\n            \"updated_at\": \"2021-03-26T08:06:18.627616Z\",\n            \"favorite_hash\": \"1b144df0ed5a47b5f2af54f1835b810d\",\n            \"checksum\": \"45daf02e5993dbf23ff108235e749c2597baf54ac44adaf66c82b8fa9bef4d58\",\n            \"price\": 14,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"price_hash\": \"\",\n            \"user_id\": 1213,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Sentilver Fruit\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\",\n            \"tags\": [],\n            \"tax\": 0,\n            \"use_base\": false,\n            \"hash_id\": \"\",\n            \"pricegroup_id\": \"\",\n            \"weight_unit\": \"kg\"\n        }\n    ],\n    \"errors\": [\n        \"transform transformType failed: Unable to match 'fake' (fake-Valencia-88)\"\n    ]\n}"}],"_postman_id":"66127f49-adee-4506-bcd8-cd13ecb1e19a"},{"name":"Update Product Prices","id":"02c0f7ec-11e9-485a-beba-e0f026a6f243","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"text/csv","type":"text"}],"body":{"mode":"raw","raw":"sku,price,price_unit\nALMOND-1,3.4,piece","options":{"raw":{"language":"text"}}},"url":"{{host}}/partner/{{partner_id}}/products/baseprice","description":"<p>This endpoint is used to update the prices of the products in Consentio.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["partner","{{partner_id}}","products","baseprice"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"f9b29065-6925-45bb-8689-66eda5fb82a8","name":"CSV","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"text/csv","type":"text"}],"body":{"mode":"raw","raw":"sku,price,price_unit\nALMOND-1,3.4,piece","options":{"raw":{"language":"text"}}},"url":"{{host}}/partner/{{partner_id}}/products/baseprice"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5d546ed9-ef1e-4798-b9e8-811bc009283d","name":"JSON","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"sku\": \"ALMOND-1\",\n        \"price\": \"3.4\",\n        \"price_unit\": \"box\"\n    },\n    {\n        \"sku\": \"ALMOND-2\",\n        \"price\": \"3\",\n        \"price_unit\": \"kg\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{partner_id}}/products/baseprice"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"02c0f7ec-11e9-485a-beba-e0f026a6f243"},{"name":"Get products","id":"8ecf7766-54fc-4a0c-8d44-93ad66bcc672","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}","description":"<p>Authentication and authorization header: must contain JWT access token retrieved in login call</p>\n"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/partner/{{partner_id}}/products?from=1&to=1962039661081","description":"<p>Retrieves active products in a catalog modified between two specific parameters expresed in a unix date format in miliseconds.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["partner","{{partner_id}}","products"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Since you want orders in Unix time  format in miliseconds (1962019661081)</p>\n","type":"text/plain"},"key":"from","value":"1"},{"description":{"content":"<p>Until you want orders in Unix time format in miliseconds (1962039661081)</p>\n","type":"text/plain"},"key":"to","value":"1962039661081"}],"variable":[]}},"response":[{"id":"a9f8a4c6-6f5a-474b-b289-26b66105ecf0","name":"success - sales","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{host}}/partner/{{partner_id}}/order?from=2019-04-10T23:00:00Z&to=2019-09-10T23:00:00Z&kind=sale","host":["{{host}}"],"path":["partner","{{partner_id}}","order"],"query":[{"key":"from","value":"2019-04-10T23:00:00Z"},{"key":"to","value":"2019-09-10T23:00:00Z"},{"key":"kind","value":"sale"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"670"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 25 Jul 2019 14:07:51 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"125"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"ack_buyer\": false,\n        \"ack_seller\": false,\n        \"author_id\": 1286,\n        \"buyer_id\": 1307,\n        \"cloned_from\": null,\n        \"closed_at\": \"2019-11-06T10:09:38.686987Z\",\n        \"counteroffer_from_id\": null,\n        \"created_at\": \"2019-11-06T10:09:38.691368Z\",\n        \"custom_items\": [\n            {\n                \"id\": 7,\n                \"title\": \"shipping default\",\n                \"type\": \"shipping\",\n                \"price\": 50,\n                \"order_id\": 28,\n                \"created_at\": \"2019-11-06T10:09:38.696754Z\"\n            }\n        ],\n        \"delivery_estimated_at\": \"2019-11-20T00:00:00Z\",\n        \"delivery_estimated_schedule\": \"am\",\n        \"pickup_estimated_at\": \"2019-11-14T00:00:00Z\",\n        \"pickup_estimated_schedule\": \"pm\",\n        \"delivery_method\": \"shipping\",\n        \"order_direction\": 1,\n        \"hash_id\": \"E9N7GQMOG2\",\n        \"history\": [\n            {\n                \"id\": 61,\n                \"author_id\": 1286,\n                \"order_id\": 28,\n                \"price\": 1772,\n                \"status\": \"accepted\",\n                \"items\": [\n                    {\n                        \"id\": 110,\n                        \"order_history_id\": 61,\n                        \"order_item_id\": 49,\n                        \"price\": 14,\n                        \"amount\": 123\n                    }\n                ],\n                \"created_at\": \"2019-11-06T10:09:38.698364Z\"\n            }\n        ],\n        \"id\": 28,\n        \"incoterms\": [\n            \"EXW\"\n        ],\n        \"items\": [\n            {\n                \"amount\": 123,\n                \"boxes_per_pallet\": 72,\n                \"box_type\": \"\",\n                \"box_weight\": 15,\n                \"brand\": \"Sentilver Fruit\",\n                \"category\": \"1\",\n                \"created_at\": \"2019-11-06T10:09:38.695044Z\",\n                \"ean_code\": \"\",\n                \"external_id_buyer\": \"\",\n                \"external_id_seller\": \"\",\n                \"favorite_hash\": \"c10c89e38fdb80294135debc6b2aaac3\",\n                \"group\": \"vegetable\",\n                \"id\": 49,\n                \"images\": null,\n                \"is_por\": false,\n                \"more_info\": \"\",\n                \"order_id\": 28,\n                \"organic\": \"\",\n                \"origin\": \"ES\",\n                \"packaging\": \"\",\n                \"pallet_type\": \"\",\n                \"pieces_per_box\": 0,\n                \"price\": 14,\n                \"price_unit\": \"box\",\n                \"child_id\": 10401,\n                \"sale_unit\": \"box\",\n                \"size\": \"60\",\n                \"sku\": \"LEMON-1\",\n                \"title\": \"Verna Lemon\",\n                \"total_price\": 1722,\n                \"type\": \"lemon\",\n                \"tax\": 0,\n                \"price_hash\": \"\"\n            }\n        ],\n        \"legacy_id\": null,\n        \"more_info\": \"My supper comments\",\n        \"pallet_amount\": 1.7083334,\n        \"pallet_amount_accuracy\": \"full\",\n        \"pickup_from\": {\n            \"id\": 55,\n            \"country\": \"\",\n            \"display_name\": \"\",\n            \"zip\": \"\",\n            \"city\": \"\",\n            \"rest\": \"Calle la plata, Torrijos, 123, España\",\n            \"created_at\": \"2019-11-06T10:09:38.687845Z\",\n            \"updated_at\": \"2019-11-06T10:09:38.687845Z\",\n            \"external_id\": \"\"\n        },\n        \"pickup_from_id\": 55,\n        \"price\": 1772,\n        \"price_mode\": \"none\",\n        \"seller_id\": 1286,\n        \"deliver_to\": {\n            \"id\": 56,\n            \"country\": \"\",\n            \"display_name\": \"\",\n            \"zip\": \"\",\n            \"city\": \"\",\n            \"rest\": \"Calle la mata, Madrid, 45123, España\",\n            \"created_at\": \"2019-11-06T10:09:38.689789Z\",\n            \"updated_at\": \"2019-11-06T10:09:38.689789Z\",\n            \"external_id\": \"\"\n        },\n        \"deliver_to_id\": 56,\n        \"status\": \"accepted\",\n        \"updated_at\": \"2019-11-06T10:09:38.691368Z\",\n        \"weight\": 1845,\n        \"weight_accuracy\": \"full\",\n        \"counterpart_id\": \"\",\n        \"external_id\": \"\",\n        \"pickup_location\": \"Calle la plata, Torrijos, 123, España\",\n        \"shipping_address\": \"Calle la mata, Madrid, 45123, España\"\n    }\n]"},{"id":"8bf86d6e-50a4-4d14-bd17-6f5524da40bb","name":"Errror - bad time","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{host}}/partner/{{partner_id}}/order?from=2019-04-10T23:00:0&to=2019-09-10T23:00:00Z&kind=purchase","host":["{{host}}"],"path":["partner","{{partner_id}}","order"],"query":[{"key":"from","value":"2019-04-10T23:00:0"},{"key":"to","value":"2019-09-10T23:00:00Z"},{"key":"kind","value":"purchase"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"plain","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"66"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Date","value":"Thu, 25 Jul 2019 14:10:05 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"125"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"Invalid from param, expected RFC3339 time\n"},{"id":"4e76770b-a70e-4291-b42e-9fd7c2b58177","name":"success - empty purchases","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{host}}/partner/{{partner_id}}/order?from=2019-04-10T23:00:00Z&to=2019-09-10T23:00:00Z&kind=purchase","host":["{{host}}"],"path":["partner","{{partner_id}}","order"],"query":[{"key":"from","value":"2019-04-10T23:00:00Z"},{"key":"to","value":"2019-09-10T23:00:00Z"},{"key":"kind","value":"purchase"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"26"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 25 Jul 2019 14:09:36 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"125"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"8ecf7766-54fc-4a0c-8d44-93ad66bcc672"}],"id":"1d24df28-ea09-4d47-9b51-c30f30550ee4","description":"<p>This section contains all the endpoints that are related with products. Products are an essential part of Consentio, since they are the ones used for sellers to trade with their clients.</p>\n<h3 id=\"product-fields\">Product fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Example</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>type</strong></td>\n<td><strong>Yes</strong></td>\n<td>tomato</td>\n<td>Product type. The possible types are those defined in Appendix I. If desired type is not listed, use <code>-</code></td>\n</tr>\n<tr>\n<td><strong>variety</strong></td>\n<td>No (*)</td>\n<td>Raff</td>\n<td>Product Variety. Where <code>type</code> has the value <code>-</code> this field will be required. Maximum length: 64 characters</td>\n</tr>\n<tr>\n<td><strong>origin</strong></td>\n<td><strong>Yes</strong></td>\n<td>Spain</td>\n<td>Product's country of origin. Consentio requires the use of <a href=\"https://www.iso.org/obp/ui/#search\">2 character ISO codes</a> (ALPHA2) and additionally accepts the country name in any of the supported languages.</td>\n</tr>\n<tr>\n<td><strong>size</strong></td>\n<td>No</td>\n<td>MM</td>\n<td>Product size. Free alpha-numeric field to indicate product size. Maximum length: 16 characters</td>\n</tr>\n<tr>\n<td><strong>category</strong></td>\n<td>No</td>\n<td>I</td>\n<td>Quality rating. Available values: I, II, III, extra, standard, Washington Extra Fancy, US Extra Fancy, US Fancy, US No.1, US No.2, Canada Extra Fancy, Canada Fancy, Canada commercial, Canada No.1, Canada No. 2</td>\n</tr>\n<tr>\n<td><strong>status</strong></td>\n<td><strong>Yes</strong></td>\n<td>active</td>\n<td>Indicates whether the product is available for sale. Available values: active, inactive, unavailable</td>\n</tr>\n<tr>\n<td><strong>brand</strong></td>\n<td>No</td>\n<td>Jiménez</td>\n<td>Product brand (or producer) Maximum length: 64 characters</td>\n</tr>\n<tr>\n<td><strong>packaging</strong></td>\n<td>No</td>\n<td>Bulk</td>\n<td>Packaging in which the product is presented. It is a free text field that usually contains values such as <code>Bulk</code>, <code>Bunch</code>, <code>130g pack</code> Maximum length: 64 characters</td>\n</tr>\n<tr>\n<td><strong>sku</strong></td>\n<td>No</td>\n<td>TOMRAFES-623</td>\n<td>ERP unique product identifier. It is highly recommend to fill in this field as it will make provisioning more efficient and will guarantee traceability. Maximum length: 32 characters.</td>\n</tr>\n<tr>\n<td><strong>ean_code</strong></td>\n<td>No</td>\n<td>2345678900987</td>\n<td>EAN 13 code</td>\n</tr>\n<tr>\n<td><strong>organic</strong></td>\n<td>No</td>\n<td>organic</td>\n<td>Type of production used to grow the product. Available values: bio, conventional, conversion</td>\n</tr>\n<tr>\n<td><strong>price</strong></td>\n<td>No</td>\n<td>No</td>\n<td>Initial sale price. If blank or 0, the product will be considered to be P.O.R. (Price On Request) For further details see: <a href=\"#price-management-on-products\">price management</a>.</td>\n</tr>\n<tr>\n<td><strong>price_unit</strong></td>\n<td><strong>Yes</strong></td>\n<td>kg</td>\n<td>Unit in which the product is available for sale. Available values: piece, kg, box, pallet This field is required even for products marked as P.O.R. (Price On Request)</td>\n</tr>\n<tr>\n<td><strong>sale_units</strong></td>\n<td><strong>Yes</strong></td>\n<td>kg,box</td>\n<td>Product units in which the product is available for sale. Available values: piece, kg, box, pallet. Multiple units may be specified, separated by commas. If sale_unit is different from price_unit, converision units need to be used to calculate the sale price. See <a href=\"#unit-conversions\">conversion units</a></td>\n</tr>\n<tr>\n<td><strong>box_weight</strong></td>\n<td>No (*)</td>\n<td>4.5</td>\n<td>Approximate box Weight, in kg. If the weight varies a lot, the <em>more_info</em> field can be used to provide further information. This field will be required when needed for conversion. See <a href=\"#unit-conversions\">conversion units</a>.</td>\n</tr>\n<tr>\n<td><strong>box_type</strong></td>\n<td>No</td>\n<td>wood</td>\n<td>Box type Available values: carton, wood, plastic, eps, ifco, polystyrene</td>\n</tr>\n<tr>\n<td><strong>pieces_per_box</strong></td>\n<td>No (*)</td>\n<td>36</td>\n<td>Number of pieces in each box. This field will be required if a conversion needs to be made. See <a href=\"#unit-conversions\">conversion units.</a></td>\n</tr>\n<tr>\n<td><strong>pallet_type</strong></td>\n<td>No</td>\n<td>CHEPEURO</td>\n<td>Pallet type. Available values: EURO, US, DPA, LPR, POOL, CHEP, AIRCRAFT, AIRCRAFTX, CHEPEURO, EPALEURO, KOPA, KEURO, 1-WAY BLOK, 1-WAY EURO</td>\n</tr>\n<tr>\n<td><strong>boxes_per_pallet</strong></td>\n<td>No (*)</td>\n<td>120</td>\n<td>Number of boxes per EURO pallet. This field will be required if a conversion needs to be made. See <a href=\"#unit-conversions\">conversion units.</a></td>\n</tr>\n<tr>\n<td><strong>more_info</strong></td>\n<td>No</td>\n<td>Minimum order 6 boxes</td>\n<td>Free input field that gathers all other information that doesn't fit in any of the previous fields.</td>\n</tr>\n<tr>\n<td><strong>rate_</strong></td>\n<td>No</td>\n<td>3.45</td>\n<td>Price of a product inside a specific price group.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"price-group-inside-the-product-information\">Price group inside the product information</h3>\n<p>The seller can have different prices for the same product according to the rate that has been agreed with each client. This price strategy is supported in Consentio through the concept of price groups. A price group consists of:</p>\n<p>*   The name of the price group i.e. wholesaler_rate.\n*   The price of the product.</p>\n<p>The values that a price group can have inside the field are:</p>\n<p>*   <strong>VAR:</strong> VAR means that the product price is the same as when the product was created i.e. if we create a product with price 4.45, when it's VAR the product price is still 4.45.\n*   <strong>POR:</strong> POR means Price on Request. The product within the given price group doesn't have a price.\n*   <strong>A number:</strong> this means that the product has a price i.e. 9.45.\n*   <strong>Empty:</strong> leaving the field empty means that the product is not included in the pricegroup.</p>\n<p>A product can be inside as many price groups as the ERP provides to Consentio. Price groups are optional, meaning that it is still possible to upload products without including any price groups.</p>\n","_postman_id":"1d24df28-ea09-4d47-9b51-c30f30550ee4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}}},{"name":"Order","item":[{"name":"Get orders","id":"b58f6178-f6b1-490f-a189-1ef91d10a28c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}","description":"<p>Authentication and authorization header: must contain JWT access token retrieved in login call</p>\n"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/partner/:partner_id/order?from=2021-08-12T00:00:00Z&to=2023-06-12T23:00:00Z&kind=sale&status=incomplete","description":"<p>Retrieves orders created in a specific range of time.</p>\n<p>Contains a status filter, a string filtering orders by its status. Possible values are: empty, \"accepted\", \"incomplete\". If empty, will return accepted orders only.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["partner",":partner_id","order"],"host":["{{host}}"],"query":[{"key":"from","value":"2021-08-12T00:00:00Z"},{"key":"to","value":"2023-06-12T23:00:00Z"},{"key":"kind","value":"sale"},{"description":{"content":"<p>Status of the order. Possible values are: empty, \"accepted\", \"incomplete\". If empty, will return accepted orders only.</p>\n","type":"text/plain"},"key":"status","value":"incomplete"}],"variable":[{"type":"any","value":"{{partner_id}}","key":"partner_id"}]}},"response":[{"id":"8ff72c52-c228-4097-b8e8-7a134fa63922","name":"success - sales","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{host}}/partner/{{partner_id}}/order?from=2019-04-10T23:00:00Z&to=2019-09-10T23:00:00Z&kind=sale","host":["{{host}}"],"path":["partner","{{partner_id}}","order"],"query":[{"key":"from","value":"2019-04-10T23:00:00Z"},{"key":"to","value":"2019-09-10T23:00:00Z"},{"key":"kind","value":"sale"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"670"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 25 Jul 2019 14:07:51 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"125"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"ack_buyer\": false,\n        \"ack_seller\": false,\n        \"author_id\": 1286,\n        \"buyer_id\": 1307,\n        \"cloned_from\": null,\n        \"closed_at\": \"2019-11-06T10:09:38.686987Z\",\n        \"counteroffer_from_id\": null,\n        \"created_at\": \"2019-11-06T10:09:38.691368Z\",\n        \"custom_items\": [\n            {\n                \"id\": 7,\n                \"title\": \"shipping default\",\n                \"type\": \"shipping\",\n                \"price\": 50,\n                \"order_id\": 28,\n                \"created_at\": \"2019-11-06T10:09:38.696754Z\"\n            }\n        ],\n        \"delivery_estimated_at\": \"2019-11-20T00:00:00Z\",\n        \"delivery_estimated_schedule\": \"am\",\n        \"pickup_estimated_at\": \"2019-11-14T00:00:00Z\",\n        \"pickup_estimated_schedule\": \"pm\",\n        \"delivery_method\": \"shipping\",\n        \"order_direction\": 1,\n        \"hash_id\": \"E9N7GQMOG2\",\n        \"history\": [\n            {\n                \"id\": 61,\n                \"author_id\": 1286,\n                \"order_id\": 28,\n                \"price\": 1772,\n                \"status\": \"accepted\",\n                \"items\": [\n                    {\n                        \"id\": 110,\n                        \"order_history_id\": 61,\n                        \"order_item_id\": 49,\n                        \"price\": 14,\n                        \"amount\": 123\n                    }\n                ],\n                \"created_at\": \"2019-11-06T10:09:38.698364Z\"\n            }\n        ],\n        \"id\": 28,\n        \"incoterms\": [\n            \"EXW\"\n        ],\n        \"items\": [\n            {\n                \"amount\": 123,\n                \"boxes_per_pallet\": 72,\n                \"box_type\": \"\",\n                \"box_weight\": 15,\n                \"brand\": \"Sentilver Fruit\",\n                \"category\": \"1\",\n                \"created_at\": \"2019-11-06T10:09:38.695044Z\",\n                \"ean_code\": \"\",\n                \"external_id_buyer\": \"\",\n                \"external_id_seller\": \"\",\n                \"favorite_hash\": \"c10c89e38fdb80294135debc6b2aaac3\",\n                \"group\": \"vegetable\",\n                \"id\": 49,\n                \"images\": null,\n                \"is_por\": false,\n                \"more_info\": \"\",\n                \"order_id\": 28,\n                \"organic\": \"\",\n                \"origin\": \"ES\",\n                \"packaging\": \"\",\n                \"pallet_type\": \"\",\n                \"pieces_per_box\": 0,\n                \"price\": 14,\n                \"price_unit\": \"box\",\n                \"child_id\": 10401,\n                \"sale_unit\": \"box\",\n                \"size\": \"60\",\n                \"sku\": \"LEMON-1\",\n                \"title\": \"Verna Lemon\",\n                \"total_price\": 1722,\n                \"type\": \"lemon\",\n                \"tax\": 0,\n                \"price_hash\": \"\"\n            }\n        ],\n        \"legacy_id\": null,\n        \"more_info\": \"My supper comments\",\n        \"pallet_amount\": 1.7083334,\n        \"pallet_amount_accuracy\": \"full\",\n        \"pickup_from\": {\n            \"id\": 55,\n            \"country\": \"\",\n            \"display_name\": \"\",\n            \"zip\": \"\",\n            \"city\": \"\",\n            \"rest\": \"Calle la plata, Torrijos, 123, España\",\n            \"created_at\": \"2019-11-06T10:09:38.687845Z\",\n            \"updated_at\": \"2019-11-06T10:09:38.687845Z\",\n            \"external_id\": \"\"\n        },\n        \"pickup_from_id\": 55,\n        \"price\": 1772,\n        \"price_mode\": \"none\",\n        \"seller_id\": 1286,\n        \"deliver_to\": {\n            \"id\": 56,\n            \"country\": \"\",\n            \"display_name\": \"\",\n            \"zip\": \"\",\n            \"city\": \"\",\n            \"rest\": \"Calle la mata, Madrid, 45123, España\",\n            \"created_at\": \"2019-11-06T10:09:38.689789Z\",\n            \"updated_at\": \"2019-11-06T10:09:38.689789Z\",\n            \"external_id\": \"\"\n        },\n        \"deliver_to_id\": 56,\n        \"status\": \"accepted\",\n        \"updated_at\": \"2019-11-06T10:09:38.691368Z\",\n        \"weight\": 1845,\n        \"weight_accuracy\": \"full\",\n        \"counterpart_id\": \"\",\n        \"external_id\": \"\",\n        \"pickup_location\": \"Calle la plata, Torrijos, 123, España\",\n        \"shipping_address\": \"Calle la mata, Madrid, 45123, España\"\n    }\n]"},{"id":"2082d9ec-4214-4ed2-bbf4-5e0452de77ba","name":"Errror - bad time","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{host}}/partner/{{partner_id}}/order?from=2019-04-10T23:00:0&to=2019-09-10T23:00:00Z&kind=purchase","host":["{{host}}"],"path":["partner","{{partner_id}}","order"],"query":[{"key":"from","value":"2019-04-10T23:00:0"},{"key":"to","value":"2019-09-10T23:00:00Z"},{"key":"kind","value":"purchase"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"plain","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"66"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Date","value":"Thu, 25 Jul 2019 14:10:05 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"125"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"Invalid from param, expected RFC3339 time\n"},{"id":"90189e1c-961a-4780-a543-61d7ee036805","name":"success - empty purchases","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{host}}/partner/{{partner_id}}/order?from=2019-04-10T23:00:00Z&to=2019-09-10T23:00:00Z&kind=purchase","host":["{{host}}"],"path":["partner","{{partner_id}}","order"],"query":[{"key":"from","value":"2019-04-10T23:00:00Z"},{"key":"to","value":"2019-09-10T23:00:00Z"},{"key":"kind","value":"purchase"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"26"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 25 Jul 2019 14:09:36 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"125"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"b58f6178-f6b1-490f-a189-1ef91d10a28c"},{"name":"Update external id and external status","id":"48015e24-668c-4fc2-b4ea-89a2c0a6464d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"<p>Authentication and authorization header: must contain JWT access token retrieved in login call</p>\n","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 28,\n        \"external_id\": \"123123\",\n        \"external_status\": \"delivered\"\n    }\n]"},"url":"{{host}}/partner/{{partner_id}}/order/external","description":"<p>This request is used for:</p>\n<ul>\n<li>Upload the ERP's external id</li>\n<li>Upload the external status of the ERP. This external status is related to shipping</li>\n</ul>\n<p>Note: it is not needed to upload the whole order structure. The necessary fields are:</p>\n<ul>\n<li>order id</li>\n<li>external id</li>\n<li>external status</li>\n</ul>\n<p>The external status indicates the status of the order inside the ERP. The different status that are allowed are:</p>\n<ul>\n<li><code>unknown</code></li>\n<li><code>preparing</code></li>\n<li><code>sent</code></li>\n<li><code>delivered</code></li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["partner","{{partner_id}}","order","external"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"d490d054-1abf-4997-be84-953791cdd4bd","name":"Updates orders with external ID","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"Authentication and authorization header: must contain JWT access token retrieved in login call","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 28,\n        \"external_id\": \"123123\",\n        \"external_status\": \"delivered\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{partner_id}}/order/external"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"48015e24-668c-4fc2-b4ea-89a2c0a6464d"},{"name":"Create new order client by email","id":"aa83f75e-eb2a-4d45-95e0-eb31fbf9722e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"<p>Authentication and authorization header: must contain JWT access token retrieved in login call</p>\n","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"buyer_email\":\"jacinto_garcia@consnetio.co\", \"order\":{\"author_id\":1350,\"buyer_id\":0,\"catalog_id\":168,\"catalog_hash\":\"V3G62E74DP\",\"currency\":\"EUR\",\"custom_items\":[],\"deliver_to\":{\"additional_info\":\"\",\"city\":\"Moscow\",\"country\":\"russia\",\"display_name\":\"mosku\",\"external_id\":\"\",\"latitude\":0,\"longitude\":0,\"place_id\":\"\",\"rest\":\"Moscow\",\"transport_cost_unit\":\"box\",\"transport_cost\":0,\"zip\":\"109012\"},\"delivery_estimated_at\":\"2022-08-22T11:57:39.254Z\",\"delivery_estimated_schedule\":\"unknown\",\"delivery_estimated_time_range\":[],\"delivery_method\":\"shipping\",\"export_error_buyer\":\"\",\"export_error_seller\":\"\",\"external_id_buyer\":\"\",\"external_id_seller\":\"\",\"external_status_buyer\":\"unknown\",\"external_status_seller\":\"unknown\",\"hash_id\":\"\",\"id\":0,\"incoterms\":[],\"issues\":[],\"items\":[{\"amount\":11,\"box_type\":\"\",\"box_weight\":null,\"boxes_per_pallet\":null,\"brand\":\"\",\"catalog_id\":168,\"category\":\"\",\"child_id\":428,\"created_at\":\"2022-07-05T10:19:17.316355Z\",\"currency\":\"EUR\",\"ean_code\":\"bgbtytyygg\",\"favorite_hash\":\"f340db2c78f22dd4b2447372110d3f6a\",\"group\":\"vegetable\",\"images\":[],\"is_por\":false,\"is_prepared\":false,\"modified_after_prepared\":false,\"more_info\":\"\",\"order_id\":0,\"organic\":\"\",\"origin\":\"\",\"packaging\":\"\",\"pallet_height\":0,\"pallet_type\":\"\",\"pieces_per_box\":0,\"price_hash\":\"\",\"price_unit\":\"box\",\"price\":1,\"product_hash_id\":\"E9N7GNZOG2\",\"region\":\"\",\"sale_unit\":\"box\",\"sale_units\":[\"box\"],\"served_price\":1,\"served_quantity\":11,\"served_sale_unit\":\"box\",\"served_weight\":0,\"size\":\"\",\"sku\":\"\",\"tags\":[\"CNSTTAG\"],\"tare\":0,\"tax\":0,\"title\":\"Ui\",\"total_price\":11,\"type\":\"swiss_chard\",\"weight_unit\":\"kg\"},{\"amount\":1,\"box_type\":\"\",\"box_weight\":12,\"boxes_per_pallet\":12,\"brand\":\"\",\"catalog_id\":168,\"category\":\"\",\"child_id\":425,\"created_at\":\"2022-07-05T10:19:17.323021Z\",\"currency\":\"EUR\",\"ean_code\":\"vdfvddfvf\",\"favorite_hash\":\"e5fdb5620b0fe1dacec9bb42fba3198b\",\"group\":\"vegetable\",\"images\":[],\"is_por\":false,\"is_prepared\":false,\"modified_after_prepared\":false,\"more_info\":\"\",\"order_id\":0,\"organic\":\"\",\"origin\":\"\",\"packaging\":\"\",\"pallet_height\":0,\"pallet_type\":\"\",\"pieces_per_box\":12,\"price_hash\":\"\",\"price_unit\":\"piece\",\"price\":12,\"product_hash_id\":\"PYN7599OR5\",\"region\":\"\",\"sale_unit\":\"pallet\",\"sale_units\":[\"piece\",\"kg\",\"box\",\"pallet\"],\"served_price\":12,\"served_quantity\":1,\"served_sale_unit\":\"pallet\",\"served_weight\":0,\"size\":\"\",\"sku\":\"\",\"tags\":[\"CNSTTAG\"],\"tare\":0,\"tax\":0,\"title\":\"Achifaifa Black\",\"total_price\":1728,\"type\":\"olive\",\"weight_unit\":\"kg\"}],\"last_author_id\":0,\"more_info\":\"\",\"origin\":\"internal\",\"pickup_estimated_at\":\"2022-08-23T11:57:39.254Z\",\"pickup_estimated_schedule\":\"unknown\",\"pickup_estimated_time_range\":[],\"pickup_from\":{\"city\":\"\",\"country\":\"\",\"display_name\":\"\",\"external_id\":\"\",\"id\":0,\"rest\":\"\",\"zip\":\"\"},\"price_mode\":\"edit\",\"price_precision\":2,\"price\":1739,\"seller_id\":1350,\"served_flow_enabled\":false,\"status\":\"pending\",\"total_attachments\":0,\"total_comments\":0,\"total_updates\":0,\"transport_details\":\"\",\"weight_unit\":\"kg\",\"initial_comments\":[]}}"},"url":"{{host}}/partner/{{partner_id}}/promoted-order","description":"<p>This request is used for:</p>\n<p>*   Send new orders from Consentio to clients outside Consentio.</p>\n<p>There are two parameters that it is necessary to be received in order body for the call to work:</p>\n<p>*   <strong>Email:</strong> Buyer identification email that relates with the buyer_id that it is returned in the order response.\n*   <strong>Order:</strong> Offers the complete order model of this order. The catalog_id is the same as the partnerID in the url, the buyer_id is 0 and the author_id is the same of the seller_id, being the ID in Consentio of the provider.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["partner","{{partner_id}}","promoted-order"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"aa83f75e-eb2a-4d45-95e0-eb31fbf9722e"},{"name":"Mark Order as Prepared (prepare order)","id":"f3c21e4b-5608-46dc-b93a-95d089aa966e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"<p>Authentication and authorization header: must contain JWT access token retrieved in login call</p>\n","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"buyer_email\":\"jacinto_garcia@consnetio.co\", \"order\":{\"author_id\":1350,\"buyer_id\":0,\"catalog_id\":168,\"catalog_hash\":\"V3G62E74DP\",\"currency\":\"EUR\",\"custom_items\":[],\"deliver_to\":{\"additional_info\":\"\",\"city\":\"Moscow\",\"country\":\"russia\",\"display_name\":\"mosku\",\"external_id\":\"\",\"latitude\":0,\"longitude\":0,\"place_id\":\"\",\"rest\":\"Moscow\",\"transport_cost_unit\":\"box\",\"transport_cost\":0,\"zip\":\"109012\"},\"delivery_estimated_at\":\"2022-08-22T11:57:39.254Z\",\"delivery_estimated_schedule\":\"unknown\",\"delivery_estimated_time_range\":[],\"delivery_method\":\"shipping\",\"export_error_buyer\":\"\",\"export_error_seller\":\"\",\"external_id_buyer\":\"\",\"external_id_seller\":\"\",\"external_status_buyer\":\"unknown\",\"external_status_seller\":\"unknown\",\"hash_id\":\"\",\"id\":0,\"incoterms\":[],\"issues\":[],\"items\":[{\"amount\":11,\"box_type\":\"\",\"box_weight\":null,\"boxes_per_pallet\":null,\"brand\":\"\",\"catalog_id\":168,\"category\":\"\",\"child_id\":428,\"created_at\":\"2022-07-05T10:19:17.316355Z\",\"currency\":\"EUR\",\"ean_code\":\"bgbtytyygg\",\"favorite_hash\":\"f340db2c78f22dd4b2447372110d3f6a\",\"group\":\"vegetable\",\"images\":[],\"is_por\":false,\"is_prepared\":false,\"modified_after_prepared\":false,\"more_info\":\"\",\"order_id\":0,\"organic\":\"\",\"origin\":\"\",\"packaging\":\"\",\"pallet_height\":0,\"pallet_type\":\"\",\"pieces_per_box\":0,\"price_hash\":\"\",\"price_unit\":\"box\",\"price\":1,\"product_hash_id\":\"E9N7GNZOG2\",\"region\":\"\",\"sale_unit\":\"box\",\"sale_units\":[\"box\"],\"served_price\":1,\"served_quantity\":11,\"served_sale_unit\":\"box\",\"served_weight\":0,\"size\":\"\",\"sku\":\"\",\"tags\":[\"CNSTTAG\"],\"tare\":0,\"tax\":0,\"title\":\"Ui\",\"total_price\":11,\"type\":\"swiss_chard\",\"weight_unit\":\"kg\"},{\"amount\":1,\"box_type\":\"\",\"box_weight\":12,\"boxes_per_pallet\":12,\"brand\":\"\",\"catalog_id\":168,\"category\":\"\",\"child_id\":425,\"created_at\":\"2022-07-05T10:19:17.323021Z\",\"currency\":\"EUR\",\"ean_code\":\"vdfvddfvf\",\"favorite_hash\":\"e5fdb5620b0fe1dacec9bb42fba3198b\",\"group\":\"vegetable\",\"images\":[],\"is_por\":false,\"is_prepared\":false,\"modified_after_prepared\":false,\"more_info\":\"\",\"order_id\":0,\"organic\":\"\",\"origin\":\"\",\"packaging\":\"\",\"pallet_height\":0,\"pallet_type\":\"\",\"pieces_per_box\":12,\"price_hash\":\"\",\"price_unit\":\"piece\",\"price\":12,\"product_hash_id\":\"PYN7599OR5\",\"region\":\"\",\"sale_unit\":\"pallet\",\"sale_units\":[\"piece\",\"kg\",\"box\",\"pallet\"],\"served_price\":12,\"served_quantity\":1,\"served_sale_unit\":\"pallet\",\"served_weight\":0,\"size\":\"\",\"sku\":\"\",\"tags\":[\"CNSTTAG\"],\"tare\":0,\"tax\":0,\"title\":\"Achifaifa Black\",\"total_price\":1728,\"type\":\"olive\",\"weight_unit\":\"kg\"}],\"last_author_id\":0,\"more_info\":\"\",\"origin\":\"internal\",\"pickup_estimated_at\":\"2022-08-23T11:57:39.254Z\",\"pickup_estimated_schedule\":\"unknown\",\"pickup_estimated_time_range\":[],\"pickup_from\":{\"city\":\"\",\"country\":\"\",\"display_name\":\"\",\"external_id\":\"\",\"id\":0,\"rest\":\"\",\"zip\":\"\"},\"price_mode\":\"edit\",\"price_precision\":2,\"price\":1739,\"seller_id\":1350,\"served_flow_enabled\":false,\"status\":\"pending\",\"total_attachments\":0,\"total_comments\":0,\"total_updates\":0,\"transport_details\":\"\",\"weight_unit\":\"kg\",\"initial_comments\":[]}}"},"url":"{{host}}/partner/:partnerId/order/:orderHashID/prepare","description":"<p>This request has not a real change of status in consentio order. It just triggers a notification in order's buyer order card.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["partner",":partnerId","order",":orderHashID","prepare"],"host":["{{host}}"],"query":[{"disabled":true,"key":"","value":null}],"variable":[{"type":"any","value":"{{partner_id}}","key":"partnerId"},{"type":"any","value":"B5O9ZX4QOW","key":"orderHashID"}]}},"response":[{"id":"a3e2b34e-7229-47ba-a804-163277eb8f07","name":"Updates orders with external ID","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"Authentication and authorization header: must contain JWT access token retrieved in login call","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 28,\n        \"external_id\": \"123123\",\n        \"external_status\": \"delivered\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{partner_id}}/order/external"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f3c21e4b-5608-46dc-b93a-95d089aa966e"}],"id":"e6e142ab-6b40-41d9-a499-899c9b4d621e","description":"<p>This is the main folder where all order endpoints are located.</p>\n<p>Below we will describe how the order structure is composed and what are the most important fields related to orders.</p>\n<h2 id=\"order-fields\">Order fields</h2>\n<p>Inside the base structure of the order, there are a set of fields that are important for performing the integration. The field names, alongside the description of the fields can be found below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Example</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td>12345</td>\n<td>Unique identifier of order</td>\n</tr>\n<tr>\n<td><strong>buyer_id</strong></td>\n<td>12345234</td>\n<td>ID of buyer user</td>\n</tr>\n<tr>\n<td><strong>seller_id</strong></td>\n<td>12345234</td>\n<td>ID of seller user</td>\n</tr>\n<tr>\n<td><strong>author_id</strong></td>\n<td>12345235</td>\n<td>ID of the user who started the transaction. They have to be either the <code>seller_id</code> or <code>buyer_id</code></td>\n</tr>\n<tr>\n<td><strong>counterpart_id</strong></td>\n<td>KAB0432</td>\n<td>External ID from the client. It can be used by partners to keep track of the client</td>\n</tr>\n<tr>\n<td><strong>external_id</strong></td>\n<td>CPE1231</td>\n<td>External ID from the order used to track the order.</td>\n</tr>\n<tr>\n<td><strong>deliver_to</strong></td>\n<td>\"C/La Toja\"</td>\n<td>The delivery address for the order. The structure can be seen at <a href=\"#order-addresses\">order addresses</a></td>\n</tr>\n<tr>\n<td><strong>pickup_from</strong></td>\n<td>\"C/ Buenavista\"</td>\n<td>Where the order must be picked up. The structure can be seen at <a href=\"#order-addresses\">order addresses</a></td>\n</tr>\n<tr>\n<td><strong>external_status</strong></td>\n<td>preparing</td>\n<td>The status of the order in the ERP. Allowed values:<code>unknown</code>, <code>preparing</code>, <code>sent</code>, <code>delivered</code></td>\n</tr>\n<tr>\n<td><strong>items</strong></td>\n<td></td>\n<td>The items contained inside the order. The structure can be seen at <a href=\"#order-items\">order items</a></td>\n</tr>\n<tr>\n<td><strong>custom items</strong></td>\n<td></td>\n<td>All the costs/discounts that don't belong to the order items. The structure/information can be seen at <a href=\"#custom-items\">custom items</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"order-items\">Order items</h2>\n<p>Order items are the elements that are sold inside an order. The description can be found below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Example</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>type</strong></td>\n<td><strong>Yes</strong></td>\n<td>tomato</td>\n<td>Product type. The possible types are those defined in Appendix I. If desired type is not listed, use <code>-</code></td>\n</tr>\n<tr>\n<td><strong>variety</strong></td>\n<td>No (*)</td>\n<td>Raff</td>\n<td>Product Variety. For products where <code>type</code> has the value <code>-</code> this field will be required. Maximum length: 64 characters</td>\n</tr>\n<tr>\n<td><strong>size</strong></td>\n<td>No</td>\n<td>MM</td>\n<td>Product size. Free alpha-numeric field to indicate product size. Maximum length: 16 characters</td>\n</tr>\n<tr>\n<td><strong>amount</strong></td>\n<td><strong>Yes</strong></td>\n<td>12.5</td>\n<td>Item's amount represents the quantity of the order item in sale units</td>\n</tr>\n<tr>\n<td><strong>sale_unit</strong></td>\n<td><strong>Yes</strong></td>\n<td>box</td>\n<td>Product units in which the product has been sold. If sale_unit is different from price_unit, conversion units will be used to compute the sale price. See <a href=\"#unit-conversions\">conversion units</a></td>\n</tr>\n<tr>\n<td><strong>price_unit</strong></td>\n<td><strong>Yes</strong></td>\n<td>kg</td>\n<td>Unit in which the price for the product has been set. Available values: piece, kg, box, pallet This field is required even for products marked as P.O.R. (Price On Request)</td>\n</tr>\n<tr>\n<td><strong>brand</strong></td>\n<td>No</td>\n<td>Jumbalay</td>\n<td>Product brand (or producer) Maximum length: 64 characters</td>\n</tr>\n<tr>\n<td><strong>category</strong></td>\n<td>No</td>\n<td>I</td>\n<td>Quality rating. Available values: I, II, III, extra, standard, Fancy, US Extra Fancy, US Fancy, US No.1, US No.2, Canada extra Fancy, Canada Fancy, Canada commercial, Canada No. 1, Canada No. 2</td>\n</tr>\n<tr>\n<td><strong>ean_code</strong></td>\n<td>No</td>\n<td>2345678900987</td>\n<td>EAN 13 code</td>\n</tr>\n<tr>\n<td><strong>sku</strong></td>\n<td>No</td>\n<td>TOMRAFES-623</td>\n<td>ERP unique product identifier. It is highly recommended to fill in this field as it will make provisioning more efficient, and will guarantee traceability. Maximum length: 32 characters.</td>\n</tr>\n<tr>\n<td><strong>is_por</strong></td>\n<td>No</td>\n<td>true</td>\n<td>Price On Request. Order negotiation will begin without an initial price, and the price will be set in at a later stage. Available values: true, false</td>\n</tr>\n<tr>\n<td><strong>more_info</strong></td>\n<td>No</td>\n<td>Without pesticides</td>\n<td>Free input field that gathers all other useful product information. Maximum length: 512 characters</td>\n</tr>\n<tr>\n<td><strong>order_id</strong></td>\n<td><strong>Yes</strong></td>\n<td>45</td>\n<td>Represents the order identification</td>\n</tr>\n<tr>\n<td><strong>organic</strong></td>\n<td>No</td>\n<td>organic</td>\n<td>Represents the product type of production. Available values: conventional, conversion or organic. If not present then get an unknow organic type</td>\n</tr>\n<tr>\n<td><strong>origin</strong></td>\n<td><strong>Yes</strong></td>\n<td>Spain</td>\n<td>Product's country of origin. Consentio requires the use of 2 character ISO codes (ALPHA2) and additionally accepts the country name in any of the supported languages</td>\n</tr>\n<tr>\n<td><strong>packaging</strong></td>\n<td>No</td>\n<td>Bulk</td>\n<td>Packaging in which the product is presented. It is a free text field that usually contains values such as Bulk, Bunch, 130g pack. Maximum length: 64 characters</td>\n</tr>\n<tr>\n<td><strong>pallet_type</strong></td>\n<td>No</td>\n<td>CHEPEURO</td>\n<td>Pallet type. Available values: EURO, US, DPA, LPR, POOL, CHEP, AIRCRAFT, AIRCRAFTX, CHEPEURO, EPALEURO, KOPA, KEURO, 1-WAY BLOK, 1-WAY EURO</td>\n</tr>\n<tr>\n<td><strong>box_type</strong></td>\n<td>No</td>\n<td>wood</td>\n<td>Box type Available values: carton, wood, plastic, eps, ifco, polystyrene</td>\n</tr>\n<tr>\n<td><strong>box_weight</strong></td>\n<td>No (/*)</td>\n<td>4.5</td>\n<td>Approximate box Weight, in kg. If the weight varies a lot, the more_info field can be used to provide further information. This field will be required when needed for conversion. See <a href=\"#unit-conversions\">conversion units</a>.</td>\n</tr>\n<tr>\n<td><strong>boxes_per_pallet</strong></td>\n<td>No (/*)</td>\n<td>120</td>\n<td>Number of boxes per EURO pallet. This field will be required when needed for conversion. See <a href=\"#unit-conversions\">conversion units</a>.</td>\n</tr>\n<tr>\n<td><strong>pieces_per_box</strong></td>\n<td>No (/*)</td>\n<td>36</td>\n<td>Number of pieces in each box. This field will be required when needed for conversion. See <a href=\"#unit-conversions\">conversion units.</a></td>\n</tr>\n<tr>\n<td><strong>total_price</strong></td>\n<td>No</td>\n<td>12.5</td>\n<td>Product's quantity per price, converting between quantity and price units. This is an auto-calculated field.</td>\n</tr>\n<tr>\n<td><strong>title</strong></td>\n<td>No</td>\n<td>Beef Tomatoes</td>\n<td>Name of the order item in a non-informatic language.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"custom-items\">Custom items</h2>\n<p>Custom items are the items that incur into a cost/discount that do not belong to the order items e.g. could be extra costs for delivery.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Example</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>title</strong></td>\n<td>\"shipping default\"</td>\n<td>The title for the extra cost</td>\n</tr>\n<tr>\n<td><strong>price</strong></td>\n<td>12345234</td>\n<td>The price</td>\n</tr>\n<tr>\n<td><strong>type</strong></td>\n<td>12345234</td>\n<td>The type of cost e.g. \"shipping\"</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"order-addresses\">Order addresses</h2>\n<p>An order has two different structures for address for manage addressess:</p>\n<ul>\n<li><strong>pickup_from</strong>: indicates the location where the order must be.</li>\n<li><strong>deliver_to</strong>: indicates the location where the order should be delivered.</li>\n</ul>\n<p>Those two fields are not required to create the order. However, if they do are indicated, it gives information about the delivery/pickup locations.</p>\n<p>The structure of the order address can be found below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Example</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>external_id</strong></td>\n<td>KB405</td>\n<td>Unique identifier of the client address</td>\n</tr>\n<tr>\n<td><strong>id</strong></td>\n<td>1</td>\n<td>Consentio's address unique identifier</td>\n</tr>\n<tr>\n<td><strong>country</strong></td>\n<td>Spain</td>\n<td>The country to which the address belongs to</td>\n</tr>\n<tr>\n<td><strong>display_name</strong></td>\n<td>Calle La Toja</td>\n<td>The visible name for Consentio's user</td>\n</tr>\n<tr>\n<td><strong>zip</strong></td>\n<td>28045</td>\n<td>Postal code for delivery</td>\n</tr>\n<tr>\n<td><strong>city</strong></td>\n<td>Madrid.</td>\n<td>The city</td>\n</tr>\n<tr>\n<td><strong>rest</strong></td>\n<td>Calle La toja 45. Second floor</td>\n<td>Extra information for the address such as street, floor, etc.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"custom-items-1\">Custom items</h2>\n<p>Custom items are the items that incur into a cost/discount that do not belong to the order items e.g. could be extra costs for delivery.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Example</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>title</strong></td>\n<td>\"shipping default\"</td>\n<td>The title for the extra cost</td>\n</tr>\n<tr>\n<td><strong>price</strong></td>\n<td>12345234</td>\n<td>The price</td>\n</tr>\n<tr>\n<td><strong>type</strong></td>\n<td>12345234</td>\n<td>The type of cost e.g. \"shipping\"</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e6e142ab-6b40-41d9-a499-899c9b4d621e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}}},{"name":"Client","item":[{"name":"Add external clients","id":"e9b2235d-e373-4172-bc65-e1f1708c62ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"client_external_id\": \"KAB0432\",\n        \"client_name\": \"LA TOJA FOO INC\"\n    },\n    {\n        \"client_external_id\": \"KC21312\",\n        \"client_name\": \"FRUTAS ANTONIO S.L.\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{partner_id}}/client","description":"<p>This request is used to upload external clients to Consentio</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["partner","{{partner_id}}","client"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"bd7f7fc1-84ab-48b1-ba9c-437f2c60f91f","name":"Sucess with JSON","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"client_external_id\": \"KAB0432\",\n        \"client_name\": \"LA TOJA FOO INC\"\n    },\n    {\n        \"client_external_id\": \"KC21312\",\n        \"client_name\": \"FRUTAS ANTONIO S.L.\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{partner_id}}/client"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"165"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 14 Oct 2019 09:09:06 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"155"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"client_external_id\": \"KAB0432\",\n        \"client_name\": \"LA TOJA FOO INC\",\n        \"created_at\": \"2019-10-14T09:09:06.003882774Z\",\n        \"updated_at\": \"2019-10-14T09:09:06.003882774Z\"\n    },\n    {\n        \"client_external_id\": \"KC21312\",\n        \"client_name\": \"FRUTAS ANTONIO S.L.\",\n        \"created_at\": \"2019-10-14T09:09:06.003882774Z\",\n        \"updated_at\": \"2019-10-14T09:09:06.003882774Z\"\n    }\n]"}],"_postman_id":"e9b2235d-e373-4172-bc65-e1f1708c62ff"},{"name":"Get external clients","id":"44f1b99a-c045-4e07-9620-15bed9a38043","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{host}}/organization/{{organizationID}}/client","description":"<p>This request is used to get external clients from Consentio</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["organization","{{organizationID}}","client"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"37a3021a-b945-40e3-9d98-ffd9eabb3a26","name":"Success with CSV","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/csv","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/organization/{{organizationID}}/client/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"client_external_id,client_name,created_at,updated_at\nKAB0432,LA TOJA FOO INC,2019-10-14T09:06:58.771499729Z,2019-10-14T09:06:58.771499729Z\nKC21312,FRUTAS ANTONIO S.L.,2019-10-14T09:06:58.771499729Z,2019-10-14T09:06:58.771499729Z"},{"id":"c3e9f625-4333-4b3b-ad75-b01a162668d3","name":"Success with JSON","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":{"raw":"{{host}}/organization/{{organizationID}}/client","host":["{{host}}"],"path":["organization","{{organizationID}}","client"],"query":[{"key":"","value":"","type":"text","disabled":true}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"client_external_id\": \"KAB0432\",\n        \"client_name\": \"LA TOJA FOO INC\",\n        \"created_at\": \"2019-10-14T09:09:06.003882774Z\",\n        \"updated_at\": \"2019-10-14T09:09:06.003882774Z\"\n    },\n    {\n        \"client_external_id\": \"KC21312\",\n        \"client_name\": \"FRUTAS ANTONIO S.L.\",\n        \"created_at\": \"2019-10-14T09:09:06.003882774Z\",\n        \"updated_at\": \"2019-10-14T09:09:06.003882774Z\"\n    }\n]"}],"_postman_id":"44f1b99a-c045-4e07-9620-15bed9a38043"}],"id":"41ed3e55-1a8b-4c49-8dee-2e925ccc1bde","description":"<p>It is possible for Partners to upload their external client ids to keep track of the client (in ERP language) when the order is created in Consentio. One of the benefits of the external client ids can be shown in the following flow:</p>\n<ul>\n<li>The client creates a new order, and sets the external client id</li>\n<li>The order is created</li>\n<li>The ERP asks for the order, and can obtain its client id, being able to manage deliveries, fill the order based on the contact information that the partner has, etc.</li>\n</ul>\n<h2 id=\"client-external-id-fields\">Client external id fields</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Example</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>client_external_id</strong></td>\n<td>KAB0432</td>\n<td>Unique external client identifier</td>\n</tr>\n<tr>\n<td><strong>client_name</strong></td>\n<td>LA TOJA FOO INC.</td>\n<td>Readable name for the client external id</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"exchange-format\">Exchange format</h2>\n<p>Client external ids will be sent in JSON format, encoded in UTF-8. The first row is a header with the field names, and each successive row represents a client external id.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n{\n    \"client_external_id\": \"KAB0432\",\n    \"client_name\": \"LA TOJA FOO INC\"\n},\n{\n    \"client_external_id\": \"KC21312\",\n    \"client_name\": \"FRUTAS ANTONIO S.L.\"\n}\n]\n\n</code></pre>\n","event":[{"listen":"prerequest","script":{"id":"ffc8b85c-42bd-4f86-8898-0dc6d806a36b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b19d3a68-260a-472a-af0f-69e92b99974b","type":"text/javascript","exec":[""]}}],"_postman_id":"41ed3e55-1a8b-4c49-8dee-2e925ccc1bde","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}}},{"name":"Addresses","item":[{"name":"Add addresses","id":"a67b4872-0664-4111-8b84-0af3bbc56843","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"external_id\": \"12345KB\",\n        \"client_external_id\": \"GF890\",\n        \"country\": \"Spain\",\n        \"display_name\": \"Calle Madrid\",\n        \"zip\": \"28045\",\n        \"city\": \"Madrid\",\n        \"rest\": \"Calle Madrid 45. Third floor, Consentio\"\n    },\n    {\n        \"external_id\": \"345EFG\",\n        \"client_external_id\": \"45123\",\n        \"country\": \"United States\",\n        \"display_name\": \"Chrysler Building\",\n        \"zip\": \"12345\",\n        \"city\": \"New York\",\n        \"rest\": \"Chrysler building 45. Third floor\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{partner_id}}/client/address","description":"<p>This request is used to upload client addresses to Consentio.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["partner","{{partner_id}}","client","address"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"01e78d18-cf92-4f14-b702-3f2ee17d027c","name":"Sucess with JSON","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"external_id\": \"12345KB\",\n        \"client_external_id\": \"GF890\",\n        \"country\": \"Spain\",\n        \"display_name\": \"Calle Madrid\",\n        \"zip\": \"28045\",\n        \"city\": \"Madrid\",\n        \"rest\": \"Calle Madrid 45. Third floor, Consentio\"\n    },\n    {\n        \"external_id\": \"345EFG\",\n        \"client_external_id\": \"45123\",\n        \"country\": \"United States\",\n        \"display_name\": \"Chrysler Building\",\n        \"zip\": \"12345\",\n        \"city\": \"New York\",\n        \"rest\": \"Chrysler building 45. Third floor\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{host}}/organization/{{organizationID}}/address"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"165"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 14 Oct 2019 09:09:06 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"155"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 5,\n        \"country\": \"Spain\",\n        \"display_name\": \"Calle Madrid\",\n        \"zip\": \"28045\",\n        \"city\": \"Madrid\",\n        \"rest\": \"Calle Madrid 45. Third floor, Consentio\",\n        \"created_at\": \"2019-10-22T14:54:12.097284Z\",\n        \"updated_at\": \"2019-10-22T14:54:12.097284Z\",\n        \"external_id\": \"12345KB\",\n        \"organization_id\": 0,\n        \"client_external_id\": \"GF890\"\n    },\n    {\n        \"id\": 6,\n        \"country\": \"United States\",\n        \"display_name\": \"Chrysler Building\",\n        \"zip\": \"12345\",\n        \"city\": \"New York\",\n        \"rest\": \"Chrysler building 45. Third floor\",\n        \"created_at\": \"2019-10-22T14:54:12.098041Z\",\n        \"updated_at\": \"2019-10-22T14:54:12.098041Z\",\n        \"external_id\": \"345EFG\",\n        \"organization_id\": 0,\n        \"client_external_id\": \"45123\"\n    }\n]"},{"id":"8938534d-6216-48b7-a2d1-ef84c0e2361f","name":"Success with CSV","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/csv","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"external_id,client_external_id,country,display_name,zip,city,rest\n12345KB,GF890,Spain,Calle Madrid,28045,Madrid,\"Calle Madrid 45.Third floor,Consentio\"\n345EFG,45123,United States,Chrysler Building,12345,New York,Chrysler building 45.Third floor"},"url":"{{host}}/organization/{{organizationID}}/address"},"code":201,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"id,country,display_name,zip,city,rest,created_at,updated_at,external_id,organization_id,client_external_id\n1,Spain,Calle Madrid,28045,Madrid,\"Calle Madrid 45. Third floor, Consentio\",2019-10-22T14:48:59.481448Z,2019-10-22T14:48:59.481448Z,12345KB,0,GF890\n2,United States,\" Chrysler Building\",\" 12345\",\" New York\",\" Chrysler building 45. Third floor\",2019-10-22T14:48:59.483744Z,2019-10-22T14:48:59.483744Z,345EFG,0,\" 45123\""}],"_postman_id":"a67b4872-0664-4111-8b84-0af3bbc56843"},{"name":"get addresses","id":"3fdb4b34-a49f-4b4b-ba6a-65063ac41829","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{host}}/partner/{{partner_id}}/client/address","description":"<p>This request is used to get external addresses from Consentio.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["partner","{{partner_id}}","client","address"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"d8af53a4-a0f2-4119-b836-72ffcdea7c0d","name":"Success with JSON","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":{"raw":"{{host}}/organization/{{organizationID}}/address","host":["{{host}}"],"path":["organization","{{organizationID}}","address"],"query":[{"key":"","value":"","type":"text","disabled":true}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 18,\n        \"country\": \"United States\",\n        \"display_name\": \"Chrysler Building\",\n        \"zip\": \"12345\",\n        \"city\": \"New York\",\n        \"rest\": \"Chrysler building 45.Third floor\",\n        \"created_at\": \"2019-10-22T14:57:02.674474Z\",\n        \"updated_at\": null,\n        \"external_id\": \"345EFG\",\n        \"organization_id\": 1,\n        \"client_external_id\": \"45123\"\n    },\n    {\n        \"id\": 17,\n        \"country\": \"Spain\",\n        \"display_name\": \"Calle Madrid\",\n        \"zip\": \"28045\",\n        \"city\": \"Madrid\",\n        \"rest\": \"Calle Madrid 45.Third floor,Consentio\",\n        \"created_at\": \"2019-10-22T14:57:02.673519Z\",\n        \"updated_at\": null,\n        \"external_id\": \"12345KB\",\n        \"organization_id\": 1,\n        \"client_external_id\": \"GF890\"\n    }\n]"}],"_postman_id":"3fdb4b34-a49f-4b4b-ba6a-65063ac41829"}],"id":"a3da9ea9-af30-4117-8b62-7a0d1ec7be29","description":"<h2 id=\"client-address-fields\">Client address fields</h2>\n<p>This are the fields used to insert a customer address in Consentio</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Example</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>external_id</strong></td>\n<td>KB405</td>\n<td>Unique identifier of the client address</td>\n</tr>\n<tr>\n<td><strong>client_external_id</strong></td>\n<td>KAB0432</td>\n<td>Unique identifier of client external id</td>\n</tr>\n<tr>\n<td><strong>country</strong></td>\n<td>Spain</td>\n<td>The country to which the address belongs to</td>\n</tr>\n<tr>\n<td><strong>display_name</strong></td>\n<td>Calle La Toja</td>\n<td>The visible name for Consentio's user</td>\n</tr>\n<tr>\n<td><strong>zip</strong></td>\n<td>28045</td>\n<td>Postal code for delivery</td>\n</tr>\n<tr>\n<td><strong>city</strong></td>\n<td>Madrid.</td>\n<td>The city</td>\n</tr>\n<tr>\n<td><strong>rest</strong></td>\n<td>Calle La toja 45. Second floor</td>\n<td>Extra information for the address such as street, floor, etc.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"client-address-exchange-format\">Client address exchange format</h2>\n<p>Client external ids can be sent in JSON, encoded in UTF-8. The first row is a header with the fields names, and each successive row represents a client external id.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">    [\n    {\n        \"external_id\": \"12345KB\",\n        \"client_external_id\": \"GF890\",\n        \"country\": \"Spain\",\n        \"display_name\": \"Calle Madrid\",\n        \"zip\": \"28045\",\n        \"city\": \"Madrid\",\n        \"rest\": \"Calle Madrid 45. Third floor, Consentio\"\n    },\n    {\n        \"external_id\": \"345EFG\",\n        \"client_external_id\": \"45123\",\n        \"country\": \"United States\",\n        \"display_name\": \"Chrysler Building\",\n        \"zip\": \"12345\",\n        \"city\": \"New York\",\n        \"rest\": \"Chrysler building 45. Third floor\"\n    }\n    ]\n\n</code></pre>\n","event":[{"listen":"prerequest","script":{"id":"d2c81de0-4ee0-42f4-a313-11f1474c71c8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"69f5cdf2-1cda-43ce-b106-28e44bc0742b","type":"text/javascript","exec":[""]}}],"_postman_id":"a3da9ea9-af30-4117-8b62-7a0d1ec7be29","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}}},{"name":"Pricegroups","item":[{"name":"Sync pricegroups","id":"1e1cce6b-23ca-4951-be45-7ba062d9b023","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"pricegroup_id\": \"95da30570f7a70f1aef3551d93a354ec\",\n        \"name\": \"DEMO\",\n        \"sku\": \"PF2057\",\n        \"option\": \"price\",\n        \"value\": \"1.2\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{partner_id}}/pricegroups/sync","description":"<p>This request is made to insert pricegroups into Consentio.</p>\n<p>By default, the price groups that are uploaded by the ERP to Consentio are our source of truth. This means that the price groups that you send will be updated if any change is made.</p>\n<p>The field descriptions of the price groups are:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pricegroup_id</td>\n<td>The id of the pricegroup that is located in the ERP</td>\n</tr>\n<tr>\n<td>name</td>\n<td>The name of the pricegroup that is located in the ERP. If empty, you can leave it blank</td>\n</tr>\n<tr>\n<td>sku</td>\n<td>The internal code of the product that is being referenced.</td>\n</tr>\n<tr>\n<td>option</td>\n<td>The option of the price. Will be explained further below</td>\n</tr>\n<tr>\n<td>value</td>\n<td>The value of the price.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The options available for a price are:</p>\n<ul>\n<li><code>price</code>: it means that the <code>value</code> will contain a price i.e. <code>3.4</code></li>\n<li><code>percentage</code>: the <code>value</code> will contain a percentage over the base price of the product i.e. <code>10</code> or <code>-10</code></li>\n<li><code>is_por</code>: it means the product is set as in price on request. <code>value</code> will not have any content at all.</li>\n<li><code>use_base</code>: the price set as default for the original product.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["partner","{{partner_id}}","pricegroups","sync"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1e1cce6b-23ca-4951-be45-7ba062d9b023"},{"name":"SyncPricegroupsJSON","id":"54367a6b-5abb-40ba-b84e-54feaedb2451","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"[{\n\t\t\"pricegroup_id\": \"PGA\",\n\t\t\"name\": \"pricegroupA\",\n\t\t\"sku\": \"garlfresh65/5kg\",\n\t\t\"option\": \"price\",\n\t\t\"value\": \"11.5\"\n\t},\n\t{\n\t\t\"pricegroup_id\": \"PGA\",\n\t\t\"name\": \"pricegroupA\",\n\t\t\"sku\": \"BIOCELWL1000\",\n\t\t\"option\": \"percentage\",\n\t\t\"value\": \"30\"\n\t},\n\t{\n\t\t\"pricegroup_id\": \"PGA\",\n\t\t\"name\": \"pricegroupA\",\n\t\t\"sku\": \"BIOSFBLUEBER12X125AR\",\n\t\t\"option\": \"is_por\",\n\t\t\"value\": \"true\"\n\t},\n\t{\n\t\t\"pricegroup_id\": \"PGA\",\n\t\t\"name\": \"pricegroupA\",\n\t\t\"sku\": \"AAAA2\",\n\t\t\"option\": \"use_base\",\n\t\t\"value\": \"true\"\n\t}\n\t]","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{partner_id}}/pricegroups/sync","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["partner","{{partner_id}}","pricegroups","sync"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"54367a6b-5abb-40ba-b84e-54feaedb2451"},{"name":"SyncPricegroupCSV","id":"933109bf-46d2-41c0-b5aa-c74cb5a3c2f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/csv","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"Price group ID,Price group name,SKU,Rank,Consentio ID,Product description,Adjustment type,Unit Price,Sale Unit\n8b407a96302282786269adb86ef39aef,CEBADELL,AFL01542,0,4406050,\" ARTICHAUT VIOLET\",por,0,piece\n8b407a96302282786269adb86ef39aef,CEBADELL,AFL01571,0,4408159,\" BETTERAVE SOUS VIDE 500GR GENERIQUE ES 12 I\",por,0,piece\nf28d4805da7d71127a012db3129a1fbc,Carrefour gangas,PDF01654,0,4410961,4G SALADE ORANGE EN MORCEAUX BARQ 2 KG,por,0,piece\nf28d4805da7d71127a012db3129a1fbc,Carrefour gangas,PDF01690,0,4405895,4G SALADE MELON 200 GR,por,0,piece\n\n","options":{"raw":{"language":"text"}}},"url":"{{host}}/partner/{{partner_id}}/pricegroups/sync","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["partner","{{partner_id}}","pricegroups","sync"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"933109bf-46d2-41c0-b5aa-c74cb5a3c2f8"}],"id":"d3c4d9de-ec19-4c54-8b69-8e572cbfd4f2","_postman_id":"d3c4d9de-ec19-4c54-8b69-8e572cbfd4f2","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}}},{"name":"Purchase Needs","item":[{"name":"create purchase needs","id":"6999d2cc-8879-423c-aa62-df179417a6c3","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":" {\n    \"purchase_needs\": [\n      {\n        \"code\": \"PN-2026-001\",\n        \"reference_code\": \"REF-STRAWBERRY-001\",\n        \"start_date\": \"2026-03-01\",\n        \"end_date\": \"2026-03-15\",\n        \"quantity\": 500,\n        \"quantity_unit\": \"kg\",\n        \"external_status\": \"open\",\n        \"storage_location_code\": \"WH-01\",\n        \"delivery_address_code\": \"ADDR-01\",\n        \"metadata\": {\"supplier_note\": \"organic only\"}\n      },\n      {\n        \"code\": \"PN-2026-002\",\n        \"reference_code\": \"REF-TOMATO-001\",\n        \"start_date\": \"2026-03-05\",\n        \"end_date\": \"2026-03-20\",\n        \"quantity\": 200,\n        \"quantity_unit\": \"box\",\n        \"external_status\": \"open\"\n      }\n    ]\n  }","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner//purchase-needs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["partner","","purchase-needs"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"99da2311-9bbe-491b-9340-b24a33321fe4","name":"create purchase needs","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":" {\n    \"purchase_needs\": [\n      {\n        \"code\": \"PN-2026-001\",\n        \"reference_code\": \"REF-STRAWBERRY-001\",\n        \"start_date\": \"2026-03-01\",\n        \"end_date\": \"2026-03-15\",\n        \"quantity\": 500,\n        \"quantity_unit\": \"kg\",\n        \"external_status\": \"open\",\n        \"storage_location_code\": \"WH-01\",\n        \"delivery_address_code\": \"ADDR-01\",\n        \"tender_kind\": \"open\",\n        \"metadata\": {\"supplier_note\": \"organic only\"}\n      },\n      {\n        \"code\": \"PN-2026-002\",\n        \"reference_code\": \"REF-TOMATO-001\",\n        \"start_date\": \"2026-03-05\",\n        \"end_date\": \"2026-03-20\",\n        \"quantity\": 200,\n        \"quantity_unit\": \"box\",\n        \"external_status\": \"open\",\n        \"tender_kind\": \"closed\"\n      }\n    ]\n  }","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner//purchase-needs"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0ea0f91a-87d6-4661-b475-faff3b429086","name":"create purchase needs","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":" {\n    \"purchase_needs\": [\n      {\n        \"code\": \"PN-2026-001\",\n        \"reference_code\": \"REF-STRAWBERRY-001\",\n        \"start_date\": \"2026-03-01\",\n        \"end_date\": \"2026-03-15\",\n        \"quantity\": 500,\n        \"quantity_unit\": \"kg\",\n        \"external_status\": \"open\",\n        \"storage_location_code\": \"WH-01\",\n        \"delivery_address_code\": \"ADDR-01\",\n        \"tender_kind\": \"open\",\n        \"metadata\": {\"supplier_note\": \"organic only\"}\n      },\n      {\n        \"code\": \"PN-2026-002\",\n        \"reference_code\": \"REF-TOMATO-001\",\n        \"start_date\": \"2026-03-05\",\n        \"end_date\": \"2026-03-20\",\n        \"quantity\": 200,\n        \"quantity_unit\": \"box\",\n        \"external_status\": \"open\",\n        \"tender_kind\": \"closed\"\n      }\n    ]\n  }","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner//purchase-needs"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6999d2cc-8879-423c-aa62-df179417a6c3"},{"name":"get purchase needs","id":"12f672b8-7c6f-4611-8682-3b2f45eadd9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner//purchase-needs?start_date=2026-03-16&end_date=2026-03-16","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["partner","","purchase-needs"],"host":["{{host}}"],"query":[{"key":"start_date","value":"2026-03-16"},{"key":"end_date","value":"2026-03-16"}],"variable":[]}},"response":[],"_postman_id":"12f672b8-7c6f-4611-8682-3b2f45eadd9c"},{"name":"POST /partner/{workspaceId}/purchase-needs","id":"1dd3d28d-003f-42f3-9d21-6d55ad51ee5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceId}}/purchase-needs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["partner","{{workspaceId}}","purchase-needs"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"4e026d37-930a-4692-aabb-16c8306a2f32","name":"AC-POST-1 — Create single purchase need (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211': validation failed\"]}"},{"id":"1dec040b-d809-4e99-86fa-1eeaddaa44ef","name":"AC-POST-2 — Create batch (5 items) (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"255347-002-20260211\",\n      \"reference_code\": \"00043875\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 440,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"48\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"255996-001-20260129\",\n      \"reference_code\": \"00074603\",\n      \"start_date\": \"2026-01-29\",\n      \"end_date\": \"2026-01-29\",\n      \"quantity\": 56,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0072\",\n      \"delivery_address_code\": \"072\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"072\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"256966-002-20260203\",\n      \"reference_code\": \"00076398\",\n      \"start_date\": \"2026-02-03\",\n      \"end_date\": \"2026-02-03\",\n      \"quantity\": 48,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0055\",\n      \"delivery_address_code\": \"055\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"055\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"257104-002-20260130\",\n      \"reference_code\": \"00076294\",\n      \"start_date\": \"2026-01-30\",\n      \"end_date\": \"2026-01-30\",\n      \"quantity\": 8,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0035\",\n      \"delivery_address_code\": \"035\",\n      \"logistics_unit_code\": \"02\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"035\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211': validation failed\"]}"},{"id":"f7fe994d-8614-4bb0-a32e-3ad27c9ca736","name":"AC-POST-3 — Upsert updates existing (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 10,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":10,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"0b62cead-debc-4ebd-968d-c746d2a0ce08","name":"AC-POST-4 — Upsert revives soft-deleted (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"fff54847-1ec7-4a3c-8a4a-7c5c09f4479f","name":"AC-POST-5 — Partial success (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"PARTIAL-VALID-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"reference_code\": \"00043875\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 440,\n      \"quantity_unit\": \"box\"\n    },\n    {\n      \"code\": \"PARTIAL-VALID-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"PARTIAL-INVALID-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": -5,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"PARTIAL-VALID-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"PARTIAL-VALID-1\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"},{\"id\":2,\"reference_code\":\"00043875\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":440,\"quantity_unit\":\"box\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"},{\"id\":3,\"code\":\"PARTIAL-VALID-3\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"},{\"id\":4,\"code\":\"PARTIAL-INVALID-4\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":-5,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[\"Item with code 'PARTIAL-VALID-5': validation failed\"]}"},{"id":"1f2b5e10-2dbf-4f90-b1fd-9b16ca549092","name":"AC-POST-6 — Optional fields stored (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"tender_kind\": \"standard\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"tender_kind\":\"standard\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"130251e3-222a-4613-ac3b-b2824c1f0b69","name":"AC-POST-7 — Defaults when omitted (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"MINIMAL-DEFAULTS-001\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"MINIMAL-DEFAULTS-001\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"88ef741c-e09b-458c-8c9f-545e57cb9237","name":"AC-POST-ERR-1 — Empty purchase_needs array (400 Bad Request)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": []\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"error\":\"purchase_needs must be a non-empty array\"}"},{"id":"e3ab7195-62fd-4fd8-a2f7-5b59e25037b5","name":"AC-POST-ERR-2 — Missing purchase_needs key (400 Bad Request)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"error\":\"bad request\"}"},{"id":"0fc2c43d-6e5a-45bf-a200-2462b73d247a","name":"AC-POST-ERR-3 — Over 1000 items (400 Bad Request)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"OVERFLOW-0000\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0001\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0002\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0003\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0004\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0005\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0006\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0007\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0008\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0009\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0010\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0011\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0012\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0013\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0014\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0015\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0016\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0017\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0018\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0019\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0020\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0021\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0022\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0023\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0024\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0025\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0026\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0027\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0028\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0029\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0030\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0031\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0032\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0033\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0034\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0035\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0036\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0037\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0038\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0039\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0040\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0041\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0042\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0043\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0044\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0045\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0046\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0047\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0048\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0049\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0050\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0051\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0052\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0053\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0054\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0055\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0056\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0057\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0058\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0059\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0060\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0061\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0062\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0063\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0064\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0065\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0066\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0067\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0068\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0069\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0070\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0071\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0072\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0073\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0074\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0075\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0076\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0077\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0078\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0079\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0080\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0081\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0082\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0083\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0084\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0085\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0086\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0087\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0088\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0089\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0090\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0091\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0092\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0093\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0094\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0095\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0096\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0097\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0098\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0099\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0100\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0101\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0102\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0103\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0104\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0105\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0106\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0107\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0108\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0109\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0110\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0111\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0112\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0113\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0114\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0115\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0116\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0117\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0118\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0119\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0120\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0121\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0122\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0123\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0124\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0125\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0126\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0127\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0128\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0129\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0130\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0131\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0132\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0133\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0134\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0135\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0136\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0137\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0138\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0139\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0140\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0141\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0142\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0143\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0144\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0145\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0146\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0147\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0148\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0149\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0150\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0151\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0152\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0153\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0154\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0155\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0156\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0157\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0158\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0159\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0160\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0161\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0162\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0163\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0164\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0165\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0166\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0167\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0168\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0169\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0170\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0171\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0172\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0173\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0174\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0175\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0176\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0177\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0178\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0179\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0180\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0181\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0182\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0183\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0184\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0185\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0186\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0187\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0188\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0189\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0190\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0191\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0192\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0193\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0194\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0195\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0196\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0197\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0198\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0199\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0200\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0201\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0202\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0203\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0204\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0205\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0206\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0207\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0208\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0209\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0210\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0211\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0212\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0213\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0214\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0215\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0216\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0217\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0218\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0219\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0220\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0221\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0222\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0223\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0224\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0225\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0226\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0227\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0228\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0229\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0230\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0231\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0232\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0233\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0234\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0235\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0236\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0237\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0238\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0239\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0240\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0241\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0242\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0243\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0244\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0245\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0246\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0247\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0248\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0249\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0250\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0251\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0252\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0253\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0254\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0255\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0256\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0257\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0258\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0259\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0260\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0261\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0262\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0263\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0264\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0265\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0266\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0267\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0268\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0269\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0270\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0271\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0272\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0273\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0274\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0275\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0276\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0277\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0278\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0279\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0280\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0281\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0282\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0283\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0284\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0285\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0286\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0287\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0288\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0289\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0290\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0291\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0292\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0293\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0294\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0295\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0296\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0297\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0298\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0299\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0300\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0301\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0302\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0303\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0304\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0305\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0306\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0307\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0308\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0309\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0310\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0311\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0312\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0313\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0314\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0315\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0316\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0317\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0318\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0319\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0320\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0321\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0322\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0323\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0324\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0325\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0326\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0327\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0328\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0329\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0330\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0331\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0332\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0333\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0334\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0335\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0336\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0337\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0338\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0339\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0340\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0341\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0342\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0343\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0344\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0345\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0346\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0347\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0348\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0349\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0350\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0351\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0352\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0353\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0354\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0355\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0356\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0357\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0358\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0359\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0360\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0361\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0362\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0363\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0364\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0365\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0366\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0367\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0368\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0369\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0370\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0371\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0372\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0373\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0374\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0375\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0376\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0377\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0378\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0379\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0380\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0381\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0382\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0383\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0384\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0385\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0386\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0387\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0388\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0389\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0390\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0391\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0392\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0393\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0394\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0395\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0396\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0397\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0398\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0399\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0400\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0401\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0402\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0403\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0404\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0405\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0406\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0407\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0408\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0409\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0410\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0411\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0412\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0413\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0414\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0415\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0416\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0417\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0418\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0419\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0420\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0421\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0422\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0423\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0424\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0425\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0426\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0427\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0428\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0429\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0430\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0431\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0432\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0433\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0434\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0435\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0436\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0437\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0438\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0439\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0440\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0441\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0442\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0443\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0444\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0445\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0446\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0447\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0448\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0449\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0450\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0451\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0452\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0453\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0454\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0455\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0456\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0457\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0458\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0459\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0460\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0461\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0462\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0463\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0464\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0465\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0466\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0467\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0468\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0469\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0470\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0471\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0472\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0473\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0474\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0475\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0476\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0477\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0478\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0479\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0480\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0481\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0482\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0483\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0484\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0485\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0486\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0487\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0488\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0489\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0490\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0491\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0492\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0493\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0494\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0495\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0496\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0497\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0498\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0499\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0500\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0501\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0502\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0503\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0504\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0505\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0506\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0507\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0508\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0509\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0510\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0511\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0512\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0513\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0514\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0515\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0516\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0517\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0518\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0519\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0520\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0521\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0522\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0523\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0524\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0525\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0526\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0527\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0528\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0529\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0530\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0531\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0532\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0533\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0534\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0535\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0536\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0537\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0538\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0539\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0540\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0541\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0542\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0543\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0544\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0545\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0546\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0547\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0548\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0549\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0550\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0551\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0552\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0553\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0554\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0555\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0556\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0557\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0558\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0559\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0560\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0561\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0562\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0563\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0564\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0565\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0566\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0567\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0568\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0569\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0570\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0571\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0572\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0573\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0574\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0575\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0576\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0577\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0578\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0579\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0580\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0581\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0582\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0583\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0584\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0585\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0586\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0587\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0588\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0589\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0590\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0591\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0592\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0593\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0594\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0595\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0596\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0597\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0598\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0599\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0600\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0601\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0602\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0603\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0604\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0605\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0606\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0607\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0608\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0609\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0610\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0611\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0612\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0613\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0614\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0615\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0616\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0617\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0618\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0619\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0620\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0621\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0622\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0623\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0624\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0625\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0626\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0627\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0628\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0629\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0630\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0631\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0632\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0633\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0634\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0635\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0636\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0637\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0638\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0639\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0640\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0641\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0642\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0643\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0644\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0645\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0646\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0647\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0648\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0649\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0650\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0651\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0652\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0653\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0654\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0655\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0656\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0657\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0658\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0659\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0660\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0661\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0662\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0663\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0664\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0665\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0666\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0667\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0668\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0669\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0670\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0671\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0672\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0673\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0674\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0675\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0676\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0677\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0678\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0679\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0680\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0681\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0682\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0683\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0684\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0685\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0686\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0687\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0688\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0689\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0690\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0691\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0692\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0693\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0694\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0695\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0696\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0697\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0698\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0699\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0700\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0701\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0702\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0703\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0704\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0705\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0706\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0707\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0708\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0709\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0710\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0711\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0712\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0713\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0714\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0715\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0716\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0717\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0718\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0719\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0720\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0721\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0722\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0723\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0724\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0725\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0726\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0727\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0728\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0729\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0730\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0731\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0732\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0733\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0734\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0735\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0736\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0737\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0738\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0739\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0740\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0741\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0742\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0743\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0744\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0745\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0746\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0747\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0748\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0749\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0750\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0751\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0752\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0753\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0754\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0755\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0756\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0757\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0758\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0759\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0760\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0761\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0762\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0763\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0764\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0765\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0766\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0767\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0768\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0769\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0770\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0771\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0772\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0773\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0774\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0775\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0776\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0777\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0778\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0779\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0780\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0781\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0782\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0783\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0784\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0785\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0786\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0787\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0788\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0789\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0790\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0791\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0792\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0793\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0794\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0795\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0796\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0797\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0798\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0799\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0800\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0801\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0802\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0803\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0804\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0805\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0806\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0807\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0808\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0809\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0810\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0811\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0812\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0813\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0814\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0815\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0816\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0817\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0818\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0819\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0820\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0821\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0822\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0823\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0824\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0825\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0826\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0827\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0828\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0829\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0830\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0831\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0832\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0833\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0834\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0835\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0836\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0837\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0838\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0839\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0840\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0841\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0842\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0843\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0844\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0845\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0846\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0847\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0848\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0849\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0850\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0851\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0852\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0853\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0854\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0855\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0856\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0857\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0858\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0859\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0860\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0861\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0862\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0863\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0864\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0865\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0866\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0867\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0868\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0869\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0870\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0871\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0872\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0873\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0874\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0875\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0876\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0877\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0878\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0879\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0880\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0881\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0882\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0883\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0884\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0885\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0886\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0887\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0888\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0889\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0890\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0891\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0892\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0893\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0894\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0895\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0896\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0897\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0898\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0899\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0900\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0901\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0902\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0903\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0904\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0905\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0906\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0907\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0908\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0909\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0910\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0911\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0912\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0913\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0914\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0915\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0916\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0917\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0918\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0919\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0920\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0921\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0922\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0923\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0924\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0925\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0926\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0927\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0928\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0929\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0930\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0931\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0932\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0933\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0934\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0935\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0936\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0937\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0938\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0939\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0940\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0941\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0942\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0943\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0944\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0945\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0946\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0947\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0948\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0949\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0950\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0951\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0952\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0953\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0954\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0955\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0956\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0957\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0958\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0959\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0960\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0961\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0962\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0963\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0964\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0965\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0966\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0967\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0968\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0969\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0970\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0971\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0972\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0973\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0974\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0975\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0976\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0977\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0978\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0979\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0980\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0981\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0982\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0983\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0984\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0985\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0986\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0987\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0988\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0989\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0990\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0991\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0992\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0993\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0994\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0995\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0996\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0997\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0998\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0999\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-1000\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"error\":\"purchase_needs array must not exceed 1000 items\"}"},{"id":"aa246271-4611-4199-ba13-8aadb5c110d2","name":"AC-POST-ERR-4 — Malformed JSON (400 Bad Request)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{invalid","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"error\":\"invalid JSON in request body\"}"},{"id":"007a7d27-4f1e-43f9-aac7-cce24e551c93","name":"AC-POST-ERR-8 — Non-existent workspace (403 Forbidden)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"error\":\"forbidden\"}"},{"id":"83573b69-da35-4274-adf4-5b08c372e8f6","name":"AC-POST-ERR-9 — Non-numeric workspace ID (400 Bad Request)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"error\":\"bad request\"}"},{"id":"7a664067-97b2-40a1-b8c6-ac94e1ec76ca","name":"FV-CODE-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"code: validation failed\"]}"},{"id":"3444a52e-2a2d-4887-ba69-ff81903e8a3a","name":"FV-CODE-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"code: validation failed\"]}"},{"id":"cd0911d0-5103-4ebe-977a-d0b0590d61ae","name":"FV-CODE-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"code: validation failed\"]}"},{"id":"d10721eb-369c-475d-9056-09b371cb76b0","name":"FV-CODE-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"4400dfe8-a56a-4f76-b953-6a710fbe3f7b","name":"FV-CODE-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-CODE-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-CODE-5\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"8fcf7f4d-621f-4c5e-a92e-37a3acb9b9c7","name":"FV-REF-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-REF-1\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-REF-1': field 'ref' validation failed\"]}"},{"id":"9e6ce910-ebcc-4eac-b2e3-850bd1cd9852","name":"FV-REF-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-REF-2\",\n      \"reference_code\": \"\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-REF-2': field 'ref' validation failed\"]}"},{"id":"1abe6969-25db-4541-acab-f96e3c5a987c","name":"FV-REF-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-REF-3\",\n      \"reference_code\": \"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-REF-3': field 'ref' validation failed\"]}"},{"id":"c5aa88cc-72b8-49ef-9ba4-cd4fe15359ca","name":"FV-REF-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-REF-4\",\n      \"reference_code\": \"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-REF-4\",\"reference_code\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"10cfbfab-ec44-40fd-9e90-0d17ade78e59","name":"FV-REF-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-REF-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-REF-5\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"d6687a60-329b-4959-acf6-068f32b93b59","name":"FV-SD-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SD-1\",\n      \"reference_code\": \"00081539\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-SD-1': start_date validation failed\"]}"},{"id":"c9e27c9a-2f93-4b9b-9e35-6e62fa6511a7","name":"FV-SD-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SD-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-SD-2': start_date validation failed\"]}"},{"id":"cd15cbd3-cd77-4ba9-adfb-910a9d956dc9","name":"FV-SD-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SD-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"20260211\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-SD-3': start_date validation failed\"]}"},{"id":"6592dc07-866c-46f1-9240-a4fc26e4ae20","name":"FV-SD-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SD-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"11/02/2026\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-SD-4': start_date validation failed\"]}"},{"id":"f0b33131-8380-4c63-b0d3-03ce4c920153","name":"FV-SD-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SD-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"02-11-2026\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-SD-5': start_date validation failed\"]}"},{"id":"17464c46-c95b-400e-a91d-7d80ac9c040f","name":"FV-SD-6 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SD-6\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-30\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-SD-6': start_date validation failed\"]}"},{"id":"2681f794-41d7-41d9-a81b-5553e5448f2c","name":"FV-SD-7 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SD-7\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-SD-7\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"2d9e812e-3a1f-4b8f-8156-355ff55783dc","name":"FV-ED-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ED-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-ED-1': end_date validation failed\"]}"},{"id":"7b25895b-d510-4c51-a19f-6980b5612629","name":"FV-ED-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ED-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-ED-2': end_date validation failed\"]}"},{"id":"04566090-15ee-4490-b121-1ca7e01e1f10","name":"FV-ED-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ED-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"20260211\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-ED-3': end_date validation failed\"]}"},{"id":"36de0edb-3a56-4215-b5a1-fa490c4c1840","name":"FV-ED-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ED-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-13-01\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-ED-4': end_date validation failed\"]}"},{"id":"330d34aa-4305-4c3d-a9b2-bbac000d8e46","name":"FV-ED-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ED-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-10\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-ED-5': end_date validation failed\"]}"},{"id":"22cabfad-14bf-4ec3-9d72-3168b75fadac","name":"FV-ED-6 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ED-6\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-ED-6\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"a9354f46-f9ce-4ebf-8fdc-712a7849b768","name":"FV-ED-7 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ED-7\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-15\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-ED-7\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-15\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"ab7d82eb-c3da-41c8-9e0a-021a398f6782","name":"FV-QTY-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QTY-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-QTY-1': quantity validation failed\"]}"},{"id":"e5c399c2-a4b7-4786-baa1-2e87b3e876c8","name":"FV-QTY-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QTY-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 0,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QTY-2\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":0,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"23435757-1819-4abe-8c55-207ff00b3c91","name":"FV-QTY-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QTY-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": -5,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-QTY-3': quantity validation failed\"]}"},{"id":"0ceeaabf-3a89-4798-8d04-189f2acfbfc3","name":"FV-QTY-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QTY-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": \"three\",\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-QTY-4': quantity validation failed\"]}"},{"id":"b4d84407-6c2b-4dfa-9a24-57b542f05dea","name":"FV-QTY-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QTY-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QTY-5\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"083960e3-54b0-431a-9118-6f856464d0bc","name":"FV-QTY-6 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QTY-6\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 1440,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QTY-6\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":1440,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"6d6b3f3d-7544-437f-a98a-484fc671f21e","name":"FV-QTY-7 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QTY-7\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 12.5,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QTY-7\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":12.5,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"1af3437c-35ba-4358-8a46-09395bceb4aa","name":"FV-QTY-8 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QTY-8\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": null,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-QTY-8': quantity validation failed\"]}"},{"id":"e42f5925-1908-4a7e-8c25-58ff6d51dff0","name":"FV-QU-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QU-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QU-1\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"e40d687d-acc3-4d90-be91-9d82439fe071","name":"FV-QU-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QU-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QU-2\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"fceb551b-cf49-42a9-8baa-1f8a1cf9ce5a","name":"FV-QU-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QU-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"pallet\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QU-3\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"pallet\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"8865b450-b454-445b-ab27-afdc9c1e12d8","name":"FV-QU-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QU-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"kg\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QU-4\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"kg\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"0bda492d-b2a4-48c7-b1ee-0ae89f50a60b","name":"FV-QU-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QU-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"piece\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QU-5\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"piece\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"aa53d369-6f42-4f87-a3bf-ae486499188d","name":"FV-QU-6 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QU-6\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"unknown\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QU-6\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"unknown\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"00eeaf3a-e6b2-47a0-b38f-abe3a85adea9","name":"FV-QU-7 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QU-7\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"ton\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-QU-7': quantity_unit validation failed\"]}"},{"id":"40622dd9-754c-47b5-8d4b-59e387f0b691","name":"FV-QU-8 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QU-8\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-QU-8': quantity_unit validation failed\"]}"},{"id":"456c8750-ba7e-4215-8e06-c3f6d041cdcf","name":"FV-ES-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ES-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-ES-1\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"16dfee25-5861-4707-b53b-8fb168b0830e","name":"FV-ES-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ES-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-ES-2\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"6d7d9125-bbeb-4586-8f3c-87e53ef77ec4","name":"FV-ES-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ES-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"P\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-ES-3\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"P\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"P\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"d7e6051b-310c-4ec3-8104-ed7f18dd947f","name":"FV-ES-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ES-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-ES-4\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"d43ebc0d-af1d-4812-8d82-6fb2e9d99cd8","name":"FV-ES-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ES-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-ES-5\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"e7e1da5d-a862-4c19-a03a-1406e44a99d7","name":"FV-ES-6 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ES-6\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-ES-6': external_status validation failed\"]}"},{"id":"83693a82-f3a5-4e51-8976-0e95c96995d0","name":"FV-SLC-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SLC-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-SLC-1\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"07cf803d-d140-495a-9ca9-850e44c30be5","name":"FV-SLC-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SLC-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-SLC-2\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"0021275d-e767-4e0a-b55f-6f7dc083e61a","name":"FV-SLC-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SLC-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"AAAAAAAAAA\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-SLC-3\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"AAAAAAAAAA\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"dd9008f9-2187-48f5-826c-9f7a22bba7db","name":"FV-SLC-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SLC-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"AAAAAAAAAAA\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-SLC-4': storage_location_code validation failed\"]}"},{"id":"86f332e7-df8e-461c-9692-58160feb24f5","name":"FV-DAC-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-DAC-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-DAC-1\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"86a3c275-c9f5-4e8a-b264-39eeae79e5b0","name":"FV-DAC-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-DAC-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-DAC-2\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"75d23a68-9c13-401f-83c9-3f5ead0a8963","name":"FV-DAC-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-DAC-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"AAAAAAAAAA\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-DAC-3\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"AAAAAAAAAA\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"d18945d0-bdf2-48cf-b316-18a1f63f9a05","name":"FV-DAC-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-DAC-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"AAAAAAAAAAA\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-DAC-4': delivery_address_code validation failed\"]}"},{"id":"81b0493c-973e-4b64-9f2e-6b1611740b25","name":"FV-LUC-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-LUC-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-LUC-1\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"35a9e220-6d9b-4eb4-a7a6-1d3b7d87d287","name":"FV-LUC-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-LUC-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-LUC-2\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"ca06d0f0-54fd-463d-b0ee-8adfd2e9f4b6","name":"FV-LUC-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-LUC-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"69\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-LUC-3\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"69\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"0e2b358b-12aa-4a86-8212-f0e57dcecb0c","name":"FV-LUC-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-LUC-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"AAAAAAAAAA\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-LUC-4\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"AAAAAAAAAA\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"ce541176-6e0d-4bb6-a149-d4680753515f","name":"FV-LUC-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-LUC-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"AAAAAAAAAAA\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-LUC-5': logistics_unit_code validation failed\"]}"},{"id":"73c2e67f-d72e-4c47-ac8d-9effc0b87f74","name":"FV-TK-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-TK-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-TK-1\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"86e66d9c-70e4-4fdc-b24e-b7873dea48b0","name":"FV-TK-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-TK-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"tender_kind\": \"standard\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-TK-2\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"tender_kind\":\"standard\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"e7d943ec-2678-452d-b5d0-f129aa218e90","name":"FV-TK-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-TK-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"tender_kind\": \"promotion\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-TK-3\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"tender_kind\":\"promotion\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"d784a0f6-fc89-4eac-893a-6e6a60eadadf","name":"FV-TK-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-TK-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"tender_kind\": \"regional_promotion\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-TK-4\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"tender_kind\":\"regional_promotion\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"cfc83653-f173-4010-8cd8-0fe376126c71","name":"FV-TK-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-TK-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"tender_kind\": \"weekend_flash_offer\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-TK-5\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"tender_kind\":\"weekend_flash_offer\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"f2853d19-dcd4-42a1-8b66-b1c993ac475b","name":"FV-TK-6 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-TK-6\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"tender_kind\": \"promotion_radio\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-TK-6\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"tender_kind\":\"promotion_radio\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"5ed0c35a-a674-4a7a-ab3d-7d01a1ed1f27","name":"FV-TK-7 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-TK-7\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"tender_kind\": \"promotion_leaflet\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-TK-7\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"tender_kind\":\"promotion_leaflet\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"6943c28e-68a1-4d5c-95ed-6cc945cde843","name":"FV-TK-8 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-TK-8\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"tender_kind\": \"clearance\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-TK-8': field 'tk' validation failed\"]}"},{"id":"a486537d-39e7-4229-945a-97a2bb19268e","name":"FV-TK-9 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-TK-9\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"tender_kind\": \"\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-TK-9': field 'tk' validation failed\"]}"},{"id":"54a65784-da7b-4256-bbba-a38fc75988bf","name":"FV-META-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-META-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-META-1\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"539ee1f8-75a7-4516-9a7f-f12442e41e50","name":"FV-META-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-META-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {}\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-META-2\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"e5f7d13d-64ed-463d-b332-86702beeb74a","name":"FV-META-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-META-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-META-3\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"3f0c96d2-afc9-4b91-aab4-f57baf225cc6","name":"FV-META-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-META-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"custom_field\": \"value\",\n        \"priority\": \"high\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-META-4\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"custom_field\":\"value\",\"priority\":\"high\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"d1b14034-e328-46c7-96ca-3698d7b0d434","name":"FV-META-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\"purchase_needs\":[{\"code\":\"255347-001-20260211-FV-META-5\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":\"not an object\"}]}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-META-5': metadata validation failed\"]}"},{"id":"1442d158-e851-40fe-aef1-44230e57724b","name":"FV-META-6 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\"purchase_needs\":[{\"code\":\"255347-001-20260211-FV-META-6\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":[1,2,3]}]}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-META-6': metadata validation failed\"]}"},{"id":"67a2b310-3e11-4281-88e6-65f08f312eb3","name":"FV-META-7 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\"purchase_needs\":[{\"code\":\"255347-001-20260211-FV-META-7\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":42}]}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-META-7': metadata validation failed\"]}"},{"id":"38a1decd-94d0-4fe9-bd48-a80fd4b75ef2","name":"FV-META-8 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-META-8\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"nested\": {\n          \"deep\": \"value\"\n        }\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-META-8\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"nested\":{\"deep\":\"value\"}},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"c14c4af6-2ef0-470f-a96f-2fdeb942640d","name":"FV-RO-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-RO-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"id\": 99999\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":99999,\"code\":\"255347-001-20260211-FV-RO-1\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"797e26e0-5be6-4953-af80-f1122046b489","name":"FV-RO-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-RO-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"created_at\": \"2020-01-01T00:00:00Z\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-RO-2\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"created_at\":\"2026-02-11T10:00:00Z\",\"status\":\"C\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"07eede02-c1b0-449d-89f5-20490ebb6288","name":"FV-RO-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-RO-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"updated_at\": \"2020-01-01T00:00:00Z\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-RO-3\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"updated_at\":\"2026-02-11T10:00:00Z\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"11ce9aa7-8b10-40de-900c-57f6257d96cf","name":"AC-CROSS-1 — api_key_identifier populated (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"CROSS-1-API-KEY\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"CROSS-1-API-KEY\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"581242bc-9a6a-4263-ab58-987a1b53a746","name":"AC-CROSS-2 — Read-only fields ignored (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"CROSS-2-READONLY\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"id\": 99999,\n      \"created_at\": \"2020-01-01T00:00:00Z\",\n      \"updated_at\": \"2020-01-01T00:00:00Z\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":99999,\"code\":\"CROSS-2-READONLY\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\",\"status\":\"C\"}],\"errors\":[]}"},{"id":"13a83867-f4a5-4e6e-b9b6-41d79847629e","name":"AC-CROSS-3 — Timestamps are UTC with Z suffix (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"CROSS-3-TIMESTAMPS\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"CROSS-3-TIMESTAMPS\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"71c307bb-dc67-44ea-89ef-1fe51f56089f","name":"AC-CROSS-4 — Wrong Content-Type (400 Bad Request)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner/{{workspaceID}}/purchase-needs"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"error\":\"Content-Type must be application/json\"}"}],"_postman_id":"1dd3d28d-003f-42f3-9d21-6d55ad51ee5a"},{"name":"GET /partner/{workspaceId}/purchase-needs","id":"d91bf91b-58d9-4239-8ad9-dc22efb52ead","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{host}}/partner/{{workspaceID}}/purchase-needs?start_date=2026-02-01&end_date=2026-02-28","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["partner","{{workspaceID}}","purchase-needs"],"host":["{{host}}"],"query":[{"key":"start_date","value":"2026-02-01"},{"key":"end_date","value":"2026-02-28"}],"variable":[]}},"response":[{"id":"331aed23-48f0-4cc2-86bb-f06e5f01c201","name":"AC-GET-1 — Get by date range (200 OK)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"url":{"raw":"{{host}}/partner/{{workspaceID}}/purchase-needs?start_date=2026-01-24&end_date=2026-02-28","host":["{{host}}"],"path":["partner","{{workspaceID}}","purchase-needs"],"query":[{"key":"start_date","value":"2026-01-24"},{"key":"end_date","value":"2026-02-28"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"},{\"id\":2,\"code\":\"255347-002-20260211\",\"reference_code\":\"00043875\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":440,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"48\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"pagination\":{\"total\":2,\"page\":1,\"per_page\":50}}"},{"id":"496582ab-79fc-49ff-a8b2-9626f9c33e88","name":"AC-GET-2 — Filter by status (200 OK)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"url":{"raw":"{{host}}/partner/{{workspaceID}}/purchase-needs?start_date=2026-01-24&end_date=2026-02-28&status=C","host":["{{host}}"],"path":["partner","{{workspaceID}}","purchase-needs"],"query":[{"key":"start_date","value":"2026-01-24"},{"key":"end_date","value":"2026-02-28"},{"key":"status","value":"C"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"pagination\":{\"total\":1,\"page\":1,\"per_page\":50}}"},{"id":"41146bbb-cab4-440d-8048-023c14f310be","name":"AC-GET-3 — Empty result (200 OK)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"url":{"raw":"{{host}}/partner/{{workspaceID}}/purchase-needs?start_date=2099-01-01&end_date=2099-12-31","host":["{{host}}"],"path":["partner","{{workspaceID}}","purchase-needs"],"query":[{"key":"start_date","value":"2099-01-01"},{"key":"end_date","value":"2099-12-31"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"pagination\":{\"total\":0,\"page\":1,\"per_page\":50}}"},{"id":"8d20254b-d03f-4e5f-bc53-20919862c4b5","name":"AC-GET-4 — Soft-deleted excluded (200 OK)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"url":{"raw":"{{host}}/partner/{{workspaceID}}/purchase-needs?start_date=2026-01-24&end_date=2026-02-28","host":["{{host}}"],"path":["partner","{{workspaceID}}","purchase-needs"],"query":[{"key":"start_date","value":"2026-01-24"},{"key":"end_date","value":"2026-02-28"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"pagination\":{\"total\":1,\"page\":1,\"per_page\":50}}"},{"id":"6e6c5a56-a809-4d1e-bb5b-f1ea06f4d54c","name":"AC-GET-ERR-1 — Missing from param (400 Bad Request)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"url":{"raw":"{{host}}/partner/{{workspaceID}}/purchase-needs?end_date=2026-02-28","host":["{{host}}"],"path":["partner","{{workspaceID}}","purchase-needs"],"query":[{"key":"end_date","value":"2026-02-28"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"error\":\"from query parameter is required\"}"},{"id":"e4a0a86f-56b7-4940-b702-bce69c0ad0c0","name":"AC-GET-ERR-2 — Missing to param (400 Bad Request)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"url":{"raw":"{{host}}/partner/{{workspaceID}}/purchase-needs?start_date=2026-01-24","host":["{{host}}"],"path":["partner","{{workspaceID}}","purchase-needs"],"query":[{"key":"start_date","value":"2026-01-24"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"error\":\"to query parameter is required\"}"},{"id":"504e2153-b85c-43f7-aab9-95479d693162","name":"AC-GET-ERR-3 — Invalid date format (400 Bad Request)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"url":{"raw":"{{host}}/partner/{{workspaceID}}/purchase-needs?start_date=not-a-date&end_date=2026-02-28","host":["{{host}}"],"path":["partner","{{workspaceID}}","purchase-needs"],"query":[{"key":"start_date","value":"not-a-date"},{"key":"end_date","value":"2026-02-28"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"error\":\"invalid date format, expected YYYY-MM-DD\"}"},{"id":"4c45f585-f91e-4eae-badc-e95f1ef8d5a7","name":"AC-GET-ERR-4 — from after to (400 Bad Request)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"url":{"raw":"{{host}}/partner/{{workspaceID}}/purchase-needs?start_date=2026-03-01&end_date=2026-02-01","host":["{{host}}"],"path":["partner","{{workspaceID}}","purchase-needs"],"query":[{"key":"start_date","value":"2026-03-01"},{"key":"end_date","value":"2026-02-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"error\":\"from date must not be after to date\"}"}],"_postman_id":"d91bf91b-58d9-4239-8ad9-dc22efb52ead"},{"name":"POST /v2/partner/{workspaceId}/purchase-needs","id":"dd416497-938d-4a48-b434-5a8dde089d95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/v2/partner/{{workspaceId}}/purchase-needs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["v2","partner","{{workspaceId}}","purchase-needs"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"80336837-8869-4873-987d-d1f9f0f55a51","name":"AC-POST-2 — Create batch (5 items) (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"255347-002-20260211\",\n      \"reference_code\": \"00043875\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 440,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"48\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"255996-001-20260129\",\n      \"reference_code\": \"00074603\",\n      \"start_date\": \"2026-01-29\",\n      \"end_date\": \"2026-01-29\",\n      \"quantity\": 56,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0072\",\n      \"delivery_address_code\": \"072\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"072\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"256966-002-20260203\",\n      \"reference_code\": \"00076398\",\n      \"start_date\": \"2026-02-03\",\n      \"end_date\": \"2026-02-03\",\n      \"quantity\": 48,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0055\",\n      \"delivery_address_code\": \"055\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"055\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"257104-002-20260130\",\n      \"reference_code\": \"00076294\",\n      \"start_date\": \"2026-01-30\",\n      \"end_date\": \"2026-01-30\",\n      \"quantity\": 8,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0035\",\n      \"delivery_address_code\": \"035\",\n      \"logistics_unit_code\": \"02\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"035\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211': validation failed\"]}"},{"id":"03410b5c-5bc2-458e-b207-57bed2369c68","name":"AC-POST-3 — Upsert updates existing (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 10,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":10,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"ef8a4ba2-a851-4a95-8a6d-a17c3e8a249d","name":"AC-POST-4 — Upsert revives soft-deleted (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"6fe7e71a-3f35-4a7b-8ee2-5d12f3cbe3fe","name":"AC-POST-5 — Partial success (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"PARTIAL-VALID-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"reference_code\": \"00043875\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 440,\n      \"quantity_unit\": \"box\"\n    },\n    {\n      \"code\": \"PARTIAL-VALID-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"PARTIAL-INVALID-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": -5,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"PARTIAL-VALID-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"PARTIAL-VALID-1\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"},{\"id\":2,\"reference_code\":\"00043875\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":440,\"quantity_unit\":\"box\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"},{\"id\":3,\"code\":\"PARTIAL-VALID-3\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"},{\"id\":4,\"code\":\"PARTIAL-INVALID-4\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":-5,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[\"Item with code 'PARTIAL-VALID-5': validation failed\"]}"},{"id":"b3554071-b474-40a3-b9ed-e13aa95d1c3d","name":"AC-POST-6 — Optional fields stored (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"tender_kind\": \"standard\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"tender_kind\":\"standard\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"3afc5d07-642b-46b1-aa22-963848350b28","name":"AC-POST-7 — Defaults when omitted (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"MINIMAL-DEFAULTS-001\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"MINIMAL-DEFAULTS-001\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"6d2141e7-d51b-4e91-af33-127b9942b017","name":"AC-POST-ERR-1 — Empty purchase_needs array (400 Bad Request)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": []\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"error\":\"purchase_needs must be a non-empty array\"}"},{"id":"b2b0ba8f-aaf3-40f2-9d4a-5fffbbb9c283","name":"AC-POST-ERR-2 — Missing purchase_needs key (400 Bad Request)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"error\":\"bad request\"}"},{"id":"65b647ad-d96f-4004-a756-621055c75170","name":"AC-POST-ERR-3 — Over 1000 items (400 Bad Request)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"OVERFLOW-0000\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0001\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0002\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0003\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0004\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0005\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0006\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0007\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0008\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0009\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0010\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0011\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0012\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0013\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0014\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0015\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0016\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0017\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0018\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0019\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0020\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0021\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0022\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0023\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0024\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0025\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0026\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0027\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0028\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0029\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0030\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0031\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0032\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0033\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0034\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0035\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0036\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0037\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0038\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0039\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0040\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0041\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0042\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0043\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0044\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0045\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0046\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0047\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0048\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0049\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0050\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0051\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0052\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0053\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0054\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0055\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0056\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0057\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0058\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0059\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0060\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0061\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0062\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0063\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0064\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0065\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0066\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0067\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0068\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0069\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0070\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0071\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0072\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0073\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0074\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0075\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0076\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0077\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0078\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0079\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0080\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0081\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0082\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0083\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0084\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0085\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0086\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0087\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0088\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0089\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0090\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0091\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0092\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0093\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0094\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0095\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0096\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0097\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0098\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0099\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0100\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0101\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0102\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0103\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0104\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0105\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0106\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0107\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0108\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0109\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0110\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0111\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0112\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0113\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0114\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0115\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0116\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0117\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0118\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0119\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0120\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0121\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0122\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0123\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0124\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0125\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0126\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0127\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0128\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0129\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0130\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0131\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0132\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0133\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0134\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0135\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0136\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0137\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0138\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0139\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0140\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0141\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0142\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0143\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0144\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0145\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0146\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0147\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0148\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0149\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0150\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0151\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0152\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0153\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0154\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0155\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0156\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0157\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0158\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0159\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0160\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0161\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0162\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0163\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0164\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0165\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0166\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0167\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0168\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0169\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0170\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0171\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0172\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0173\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0174\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0175\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0176\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0177\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0178\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0179\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0180\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0181\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0182\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0183\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0184\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0185\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0186\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0187\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0188\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0189\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0190\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0191\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0192\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0193\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0194\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0195\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0196\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0197\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0198\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0199\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0200\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0201\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0202\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0203\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0204\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0205\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0206\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0207\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0208\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0209\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0210\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0211\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0212\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0213\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0214\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0215\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0216\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0217\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0218\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0219\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0220\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0221\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0222\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0223\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0224\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0225\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0226\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0227\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0228\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0229\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0230\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0231\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0232\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0233\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0234\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0235\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0236\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0237\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0238\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0239\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0240\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0241\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0242\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0243\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0244\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0245\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0246\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0247\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0248\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0249\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0250\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0251\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0252\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0253\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0254\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0255\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0256\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0257\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0258\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0259\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0260\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0261\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0262\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0263\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0264\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0265\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0266\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0267\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0268\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0269\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0270\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0271\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0272\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0273\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0274\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0275\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0276\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0277\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0278\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0279\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0280\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0281\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0282\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0283\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0284\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0285\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0286\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0287\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0288\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0289\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0290\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0291\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0292\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0293\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0294\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0295\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0296\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0297\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0298\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0299\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0300\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0301\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0302\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0303\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0304\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0305\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0306\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0307\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0308\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0309\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0310\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0311\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0312\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0313\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0314\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0315\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0316\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0317\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0318\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0319\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0320\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0321\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0322\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0323\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0324\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0325\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0326\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0327\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0328\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0329\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0330\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0331\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0332\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0333\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0334\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0335\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0336\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0337\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0338\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0339\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0340\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0341\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0342\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0343\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0344\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0345\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0346\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0347\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0348\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0349\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0350\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0351\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0352\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0353\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0354\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0355\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0356\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0357\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0358\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0359\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0360\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0361\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0362\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0363\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0364\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0365\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0366\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0367\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0368\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0369\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0370\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0371\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0372\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0373\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0374\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0375\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0376\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0377\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0378\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0379\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0380\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0381\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0382\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0383\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0384\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0385\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0386\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0387\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0388\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0389\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0390\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0391\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0392\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0393\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0394\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0395\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0396\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0397\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0398\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0399\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0400\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0401\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0402\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0403\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0404\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0405\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0406\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0407\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0408\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0409\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0410\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0411\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0412\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0413\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0414\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0415\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0416\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0417\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0418\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0419\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0420\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0421\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0422\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0423\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0424\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0425\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0426\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0427\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0428\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0429\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0430\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0431\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0432\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0433\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0434\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0435\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0436\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0437\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0438\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0439\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0440\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0441\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0442\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0443\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0444\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0445\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0446\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0447\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0448\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0449\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0450\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0451\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0452\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0453\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0454\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0455\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0456\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0457\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0458\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0459\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0460\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0461\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0462\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0463\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0464\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0465\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0466\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0467\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0468\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0469\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0470\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0471\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0472\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0473\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0474\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0475\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0476\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0477\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0478\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0479\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0480\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0481\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0482\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0483\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0484\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0485\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0486\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0487\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0488\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0489\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0490\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0491\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0492\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0493\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0494\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0495\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0496\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0497\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0498\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0499\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0500\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0501\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0502\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0503\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0504\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0505\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0506\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0507\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0508\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0509\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0510\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0511\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0512\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0513\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0514\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0515\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0516\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0517\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0518\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0519\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0520\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0521\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0522\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0523\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0524\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0525\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0526\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0527\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0528\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0529\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0530\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0531\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0532\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0533\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0534\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0535\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0536\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0537\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0538\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0539\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0540\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0541\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0542\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0543\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0544\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0545\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0546\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0547\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0548\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0549\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0550\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0551\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0552\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0553\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0554\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0555\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0556\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0557\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0558\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0559\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0560\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0561\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0562\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0563\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0564\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0565\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0566\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0567\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0568\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0569\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0570\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0571\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0572\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0573\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0574\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0575\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0576\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0577\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0578\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0579\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0580\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0581\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0582\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0583\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0584\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0585\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0586\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0587\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0588\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0589\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0590\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0591\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0592\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0593\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0594\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0595\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0596\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0597\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0598\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0599\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0600\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0601\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0602\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0603\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0604\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0605\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0606\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0607\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0608\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0609\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0610\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0611\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0612\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0613\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0614\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0615\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0616\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0617\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0618\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0619\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0620\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0621\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0622\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0623\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0624\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0625\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0626\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0627\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0628\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0629\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0630\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0631\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0632\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0633\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0634\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0635\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0636\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0637\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0638\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0639\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0640\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0641\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0642\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0643\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0644\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0645\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0646\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0647\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0648\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0649\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0650\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0651\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0652\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0653\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0654\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0655\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0656\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0657\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0658\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0659\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0660\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0661\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0662\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0663\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0664\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0665\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0666\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0667\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0668\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0669\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0670\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0671\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0672\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0673\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0674\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0675\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0676\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0677\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0678\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0679\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0680\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0681\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0682\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0683\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0684\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0685\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0686\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0687\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0688\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0689\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0690\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0691\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0692\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0693\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0694\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0695\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0696\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0697\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0698\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0699\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0700\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0701\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0702\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0703\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0704\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0705\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0706\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0707\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0708\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0709\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0710\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0711\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0712\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0713\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0714\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0715\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0716\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0717\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0718\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0719\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0720\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0721\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0722\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0723\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0724\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0725\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0726\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0727\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0728\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0729\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0730\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0731\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0732\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0733\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0734\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0735\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0736\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0737\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0738\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0739\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0740\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0741\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0742\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0743\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0744\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0745\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0746\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0747\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0748\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0749\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0750\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0751\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0752\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0753\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0754\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0755\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0756\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0757\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0758\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0759\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0760\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0761\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0762\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0763\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0764\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0765\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0766\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0767\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0768\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0769\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0770\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0771\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0772\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0773\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0774\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0775\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0776\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0777\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0778\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0779\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0780\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0781\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0782\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0783\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0784\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0785\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0786\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0787\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0788\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0789\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0790\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0791\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0792\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0793\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0794\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0795\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0796\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0797\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0798\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0799\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0800\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0801\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0802\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0803\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0804\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0805\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0806\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0807\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0808\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0809\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0810\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0811\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0812\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0813\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0814\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0815\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0816\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0817\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0818\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0819\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0820\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0821\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0822\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0823\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0824\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0825\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0826\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0827\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0828\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0829\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0830\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0831\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0832\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0833\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0834\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0835\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0836\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0837\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0838\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0839\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0840\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0841\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0842\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0843\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0844\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0845\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0846\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0847\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0848\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0849\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0850\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0851\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0852\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0853\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0854\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0855\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0856\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0857\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0858\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0859\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0860\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0861\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0862\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0863\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0864\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0865\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0866\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0867\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0868\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0869\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0870\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0871\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0872\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0873\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0874\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0875\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0876\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0877\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0878\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0879\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0880\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0881\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0882\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0883\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0884\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0885\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0886\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0887\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0888\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0889\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0890\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0891\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0892\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0893\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0894\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0895\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0896\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0897\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0898\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0899\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0900\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0901\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0902\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0903\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0904\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0905\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0906\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0907\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0908\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0909\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0910\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0911\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0912\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0913\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0914\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0915\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0916\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0917\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0918\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0919\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0920\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0921\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0922\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0923\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0924\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0925\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0926\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0927\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0928\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0929\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0930\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0931\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0932\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0933\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0934\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0935\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0936\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0937\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0938\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0939\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0940\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0941\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0942\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0943\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0944\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0945\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0946\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0947\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0948\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0949\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0950\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0951\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0952\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0953\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0954\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0955\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0956\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0957\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0958\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0959\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0960\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0961\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0962\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0963\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0964\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0965\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0966\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0967\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0968\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0969\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0970\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0971\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0972\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0973\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0974\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0975\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0976\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0977\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0978\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0979\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0980\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0981\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0982\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0983\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0984\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0985\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0986\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0987\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0988\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0989\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0990\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0991\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0992\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0993\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0994\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0995\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0996\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0997\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0998\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-0999\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    },\n    {\n      \"code\": \"OVERFLOW-1000\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"error\":\"purchase_needs array must not exceed 1000 items\"}"},{"id":"83db01c6-9cf6-4734-abd9-bb764ac3b14a","name":"AC-POST-ERR-4 — Malformed JSON (400 Bad Request)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{invalid","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"error\":\"invalid JSON in request body\"}"},{"id":"1a9d7169-9823-41bc-910c-7fb7fa575459","name":"AC-POST-ERR-8 — Non-existent workspace (403 Forbidden)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"error\":\"forbidden\"}"},{"id":"ac0b6625-c2ec-4836-bda8-77cf4ad4a326","name":"AC-POST-ERR-9 — Non-numeric workspace ID (400 Bad Request)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"error\":\"bad request\"}"},{"id":"9996273b-4ef7-4b6f-8af4-417c9c8565c3","name":"FV-CODE-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"code: validation failed\"]}"},{"id":"322157a0-c8c6-45a4-86ae-117ca90faae3","name":"FV-CODE-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"code: validation failed\"]}"},{"id":"08ba20e9-b345-42fd-aaac-8537ec546d1b","name":"FV-CODE-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"code: validation failed\"]}"},{"id":"c6a86813-975a-4e43-9c73-ae21ea2a4ce7","name":"FV-CODE-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"07eb68f1-7ba6-4527-a94d-ef1ed545e6b2","name":"FV-CODE-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-CODE-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-CODE-5\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"f48d55e1-4cd0-4bf2-8a89-d62218eb1896","name":"FV-REF-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-REF-1\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-REF-1': field 'ref' validation failed\"]}"},{"id":"adce6bb2-ae31-4ad8-8263-b59fb7691f0c","name":"FV-REF-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-REF-2\",\n      \"reference_code\": \"\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-REF-2': field 'ref' validation failed\"]}"},{"id":"34c5273a-3acb-42e6-8e62-f2a657262241","name":"FV-REF-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-REF-3\",\n      \"reference_code\": \"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-REF-3': field 'ref' validation failed\"]}"},{"id":"a7aba3ab-a1d4-401c-ac5c-a03224216e99","name":"FV-REF-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-REF-4\",\n      \"reference_code\": \"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-REF-4\",\"reference_code\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"76d24f32-08cc-409b-8c22-29164061607c","name":"FV-REF-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-REF-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-REF-5\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"c59568a2-e0df-4e51-a03d-047052fc4644","name":"FV-SD-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SD-1\",\n      \"reference_code\": \"00081539\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-SD-1': start_date validation failed\"]}"},{"id":"31bd22b3-b697-4b6b-a2d3-721e5e527a2c","name":"FV-SD-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SD-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-SD-2': start_date validation failed\"]}"},{"id":"29110093-e085-47ca-9616-e71f7506dbd1","name":"FV-SD-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SD-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"20260211\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-SD-3': start_date validation failed\"]}"},{"id":"e30a58e0-642e-45bd-9990-36c40698afa4","name":"FV-SD-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SD-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"11/02/2026\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-SD-4': start_date validation failed\"]}"},{"id":"ec0bab52-2aab-4f58-a42d-8eca961e6b30","name":"FV-SD-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SD-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"02-11-2026\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-SD-5': start_date validation failed\"]}"},{"id":"0ebfac2b-08ab-4a4a-8229-257e0111aa63","name":"FV-SD-6 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SD-6\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-30\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-SD-6': start_date validation failed\"]}"},{"id":"1758538f-3e19-400c-a017-2781ea852ad4","name":"FV-SD-7 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SD-7\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-SD-7\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"55c3ac9e-2192-4b26-9374-c4199cc0ee8e","name":"FV-ED-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ED-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-ED-1': end_date validation failed\"]}"},{"id":"0067604e-c523-4f4e-96b6-0d6aa5589c7a","name":"FV-ED-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ED-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-ED-2': end_date validation failed\"]}"},{"id":"03381efc-c1d0-4bd6-9444-df638a7779f6","name":"FV-ED-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ED-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"20260211\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-ED-3': end_date validation failed\"]}"},{"id":"3c8f3426-9df7-472a-bee2-6d465dde3c98","name":"FV-ED-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ED-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-13-01\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-ED-4': end_date validation failed\"]}"},{"id":"7d39c624-ee10-4694-9d1c-a627c5f7c8ad","name":"FV-ED-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ED-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-10\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-ED-5': end_date validation failed\"]}"},{"id":"b98bd5cf-b72f-41e8-bbec-14c4636c889a","name":"FV-ED-6 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ED-6\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-ED-6\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"49df99f2-a243-4703-b56e-c680e577733a","name":"FV-ED-7 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ED-7\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-15\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-ED-7\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-15\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"8297ef37-5661-45ab-92be-e5b5b8340f68","name":"FV-QTY-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QTY-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-QTY-1': quantity validation failed\"]}"},{"id":"f914eec6-0e28-42c8-8f4b-f905d463e067","name":"FV-QTY-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QTY-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 0,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QTY-2\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":0,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"29c25657-a7b5-4f1c-9185-61abb5150248","name":"FV-QTY-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QTY-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": -5,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-QTY-3': quantity validation failed\"]}"},{"id":"968a82ac-de59-4593-8537-f70eda3b4c27","name":"FV-QTY-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QTY-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": \"three\",\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-QTY-4': quantity validation failed\"]}"},{"id":"fe64b9f9-4089-4dfd-abdd-7c147d0b939f","name":"FV-QTY-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QTY-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QTY-5\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"695cd005-a8f9-46d0-828f-380166f29b72","name":"FV-QTY-6 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QTY-6\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 1440,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QTY-6\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":1440,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"a1a7e7cc-4226-4243-a7e0-44892d79fc62","name":"FV-QTY-7 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QTY-7\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 12.5,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QTY-7\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":12.5,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"a1e577cc-3be0-4d1d-b691-d5d86712e7f1","name":"FV-QTY-8 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QTY-8\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": null,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-QTY-8': quantity validation failed\"]}"},{"id":"b9794d21-b82d-4b10-9cb9-a5224447ea95","name":"FV-QU-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QU-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QU-1\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"ef4ec114-98e9-4dbb-b426-5d53833bbcab","name":"FV-QU-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QU-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QU-2\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"fd7b050d-637b-4f09-be83-cff0caeef543","name":"FV-QU-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QU-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"pallet\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QU-3\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"pallet\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"c1b7b8ea-070a-4178-9554-031536960867","name":"FV-QU-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QU-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"kg\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QU-4\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"kg\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"43fb7432-5e9c-4e83-9dd0-2cd2a735a30a","name":"FV-QU-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QU-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"piece\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QU-5\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"piece\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"b0734959-728e-4527-9137-d3ff049f114c","name":"FV-QU-6 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QU-6\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"unknown\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-QU-6\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"unknown\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"4b6cc51e-424e-4c82-b2fb-492798a7fc1b","name":"FV-QU-7 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QU-7\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"ton\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-QU-7': quantity_unit validation failed\"]}"},{"id":"ae35d4f6-9f69-4983-a711-489e08f51718","name":"FV-QU-8 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-QU-8\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-QU-8': quantity_unit validation failed\"]}"},{"id":"ebacaad5-7455-4352-b89c-390e56aa59d6","name":"FV-ES-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ES-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-ES-1\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"dbf3012c-33a2-4280-bd10-254660f50efb","name":"FV-ES-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ES-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-ES-2\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"276503f9-743e-4e76-81e5-fa4610217a00","name":"FV-ES-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ES-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"P\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-ES-3\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"P\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"P\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"4944e167-f8d4-47cb-a836-7df81a4f501f","name":"FV-ES-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ES-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-ES-4\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"5a6719cf-0fb2-4f4d-a2a4-6fe0d4c6d896","name":"FV-ES-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ES-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-ES-5\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"f1b4c41a-e319-4f1c-8b6d-a99b5daf04b4","name":"FV-ES-6 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-ES-6\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-ES-6': external_status validation failed\"]}"},{"id":"f44e8f29-46d2-40e3-b5e7-a8863f5e5b4a","name":"FV-SLC-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SLC-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-SLC-1\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"495ca3cb-6561-42db-9e0e-69d5c96e22ff","name":"FV-SLC-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SLC-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-SLC-2\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"7dfa1921-fec0-4328-bb07-86b31eb21c15","name":"FV-SLC-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SLC-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"AAAAAAAAAA\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-SLC-3\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"AAAAAAAAAA\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"c328d0d9-162b-434d-95c5-3fb7637b1fbe","name":"FV-SLC-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-SLC-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"AAAAAAAAAAA\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-SLC-4': storage_location_code validation failed\"]}"},{"id":"6a29946e-20a2-4539-8b9a-89bbcbdc5821","name":"FV-DAC-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-DAC-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-DAC-1\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"d057e769-c3cf-4776-99d4-8c82f44b6fee","name":"FV-DAC-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-DAC-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-DAC-2\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"2c730558-419e-4840-bbde-f2c03f67050f","name":"FV-DAC-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-DAC-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"AAAAAAAAAA\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-DAC-3\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"AAAAAAAAAA\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"740377f6-f2f9-428c-b892-557440edc499","name":"FV-DAC-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-DAC-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"AAAAAAAAAAA\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-DAC-4': delivery_address_code validation failed\"]}"},{"id":"6b6e3806-621c-4c06-8c03-73a7c8df2ae7","name":"FV-LUC-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-LUC-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-LUC-1\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"032c1c75-ed5a-4b75-b405-764a38086f5e","name":"FV-LUC-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-LUC-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-LUC-2\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"b10c0ea4-64b1-42ae-a0df-89fbd5ddd899","name":"FV-LUC-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-LUC-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"69\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-LUC-3\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"69\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"d8be93d3-43a6-49ec-986d-24510ae59ad6","name":"FV-LUC-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-LUC-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"AAAAAAAAAA\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-LUC-4\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"AAAAAAAAAA\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"dc05bbdb-a572-4a05-a6e2-276de8253601","name":"FV-LUC-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-LUC-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"AAAAAAAAAAA\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-LUC-5': logistics_unit_code validation failed\"]}"},{"id":"fa56e88b-74d9-44ec-9da9-2a7295f3db04","name":"FV-TK-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-TK-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-TK-1\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"64ff28f6-212a-4006-a158-9414d4665f5a","name":"FV-TK-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-TK-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"tender_kind\": \"standard\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-TK-2\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"tender_kind\":\"standard\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"a62b575b-14f5-4196-a5db-b74b1803094e","name":"FV-TK-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-TK-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"tender_kind\": \"promotion\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-TK-3\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"tender_kind\":\"promotion\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"ab515895-d6f6-4eb1-84db-84d60e29df19","name":"FV-TK-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-TK-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"tender_kind\": \"regional_promotion\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-TK-4\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"tender_kind\":\"regional_promotion\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"12d738ac-791b-4077-8ee5-d55b231e01f5","name":"FV-TK-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-TK-5\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"tender_kind\": \"weekend_flash_offer\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-TK-5\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"tender_kind\":\"weekend_flash_offer\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"f5f38217-d6bf-4cde-b45c-1cb8d8f267c7","name":"FV-TK-6 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-TK-6\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"tender_kind\": \"promotion_radio\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-TK-6\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"tender_kind\":\"promotion_radio\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"9e9ca4c4-1aa2-4b79-bceb-4ff675476b67","name":"FV-TK-7 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-TK-7\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"tender_kind\": \"promotion_leaflet\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-TK-7\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"tender_kind\":\"promotion_leaflet\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"b8801b50-23f4-49a4-9277-97b9806b452f","name":"FV-TK-8 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-TK-8\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"tender_kind\": \"clearance\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-TK-8': field 'tk' validation failed\"]}"},{"id":"dfdd6fcf-8914-4dea-9fe8-a0819a1a813e","name":"FV-TK-9 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-TK-9\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"tender_kind\": \"\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-TK-9': field 'tk' validation failed\"]}"},{"id":"0bc430c9-5b0c-465a-9a0d-11b1c8321e9a","name":"FV-META-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-META-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-META-1\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"c9ab7d7b-5ee8-49fc-a69c-adadfc88ec6b","name":"FV-META-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-META-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {}\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-META-2\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"fdd4da01-5bc0-4571-bca1-2c5900fe07e0","name":"FV-META-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-META-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-META-3\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"60da23aa-60f1-49e8-a36a-d48da0328efb","name":"FV-META-4 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-META-4\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"custom_field\": \"value\",\n        \"priority\": \"high\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-META-4\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"custom_field\":\"value\",\"priority\":\"high\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"b68fd0d8-374a-496e-bd89-34a14db43278","name":"FV-META-5 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\"purchase_needs\":[{\"code\":\"255347-001-20260211-FV-META-5\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":\"not an object\"}]}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-META-5': metadata validation failed\"]}"},{"id":"92dbf86f-5919-41fc-99a0-6b749df3793a","name":"FV-META-6 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\"purchase_needs\":[{\"code\":\"255347-001-20260211-FV-META-6\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":[1,2,3]}]}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-META-6': metadata validation failed\"]}"},{"id":"b46270a2-7bcb-4992-83a8-d04fba97f9da","name":"FV-META-7 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\"purchase_needs\":[{\"code\":\"255347-001-20260211-FV-META-7\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":42}]}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[],\"errors\":[\"Item with code '255347-001-20260211-FV-META-7': metadata validation failed\"]}"},{"id":"3f1643c4-4fbd-4ef4-8a96-1767d28ec397","name":"FV-META-8 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-META-8\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"nested\": {\n          \"deep\": \"value\"\n        }\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-META-8\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"nested\":{\"deep\":\"value\"}},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"245655da-d4e6-4349-a186-bea545a5c4ca","name":"FV-RO-1 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-RO-1\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"id\": 99999\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":99999,\"code\":\"255347-001-20260211-FV-RO-1\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"5c506c79-b168-444d-b483-08c43825e21f","name":"FV-RO-2 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-RO-2\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"created_at\": \"2020-01-01T00:00:00Z\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-RO-2\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"created_at\":\"2026-02-11T10:00:00Z\",\"status\":\"C\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"9c933892-d423-4ae6-897c-fe30d3934224","name":"FV-RO-3 (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211-FV-RO-3\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"updated_at\": \"2020-01-01T00:00:00Z\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"255347-001-20260211-FV-RO-3\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"updated_at\":\"2026-02-11T10:00:00Z\",\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"47b3a150-6f66-4686-9e3b-48aba30b3b83","name":"AC-CROSS-1 — api_key_identifier populated (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"CROSS-1-API-KEY\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"CROSS-1-API-KEY\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"cba5ccb8-7108-4ec8-aab4-c03902d5722e","name":"AC-CROSS-2 — Read-only fields ignored (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"CROSS-2-READONLY\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      },\n      \"id\": 99999,\n      \"created_at\": \"2020-01-01T00:00:00Z\",\n      \"updated_at\": \"2020-01-01T00:00:00Z\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":99999,\"code\":\"CROSS-2-READONLY\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\",\"status\":\"C\"}],\"errors\":[]}"},{"id":"366df237-1c23-4d9d-90a5-521f9d807098","name":"AC-CROSS-3 — Timestamps are UTC with Z suffix (200 OK)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"CROSS-3-TIMESTAMPS\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"purchase_needs\":[{\"id\":1,\"code\":\"CROSS-3-TIMESTAMPS\",\"reference_code\":\"00081539\",\"start_date\":\"2026-02-11\",\"end_date\":\"2026-02-11\",\"quantity\":3,\"quantity_unit\":\"box\",\"external_status\":\"C\",\"storage_location_code\":\"0048\",\"delivery_address_code\":\"048\",\"logistics_unit_code\":\"01\",\"metadata\":{\"product_category_code\":\"4\",\"purchase_sector_code\":\"046\",\"purchase_office_code\":\"138\",\"request_date\":\"20260115\"},\"status\":\"C\",\"created_at\":\"2026-02-11T10:00:00Z\",\"updated_at\":\"2026-02-11T10:00:00Z\"}],\"errors\":[]}"},{"id":"65dbbdbd-73a9-41f3-918a-acd5b23507b4","name":"AC-CROSS-4 — Wrong Content-Type (400 Bad Request)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"purchase_needs\": [\n    {\n      \"code\": \"255347-001-20260211\",\n      \"reference_code\": \"00081539\",\n      \"start_date\": \"2026-02-11\",\n      \"end_date\": \"2026-02-11\",\n      \"quantity\": 3,\n      \"quantity_unit\": \"box\",\n      \"external_status\": \"C\",\n      \"storage_location_code\": \"0048\",\n      \"delivery_address_code\": \"048\",\n      \"logistics_unit_code\": \"01\",\n      \"metadata\": {\n        \"product_category_code\": \"4\",\n        \"purchase_sector_code\": \"046\",\n        \"purchase_office_code\": \"138\",\n        \"request_date\": \"20260115\"\n      }\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v2/partner/{{workspaceId}}/purchase-needs"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"error\":\"Content-Type must be application/json\"}"}],"_postman_id":"dd416497-938d-4a48-b434-5a8dde089d95"},{"name":"create purchase needs","id":"cd754c07-490f-454d-945e-92590d4d0b7f","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer {{partner_token}}","type":"text"}],"body":{"mode":"raw","raw":" {\n    \"purchase_needs\": [\n      {\n        \"code\": \"PN-2026-001\",\n        \"reference_code\": \"REF-STRAWBERRY-001\",\n        \"start_date\": \"2026-03-01\",\n        \"end_date\": \"2026-03-15\",\n        \"quantity\": 500,\n        \"quantity_unit\": \"kg\",\n        \"external_status\": \"C\",\n        \"storage_location_code\": \"WH-01\",\n        \"delivery_address_code\": \"ADDR-01\",\n        \"metadata\": {\"supplier_note\": \"organic only\"}\n      },\n      {\n        \"code\": \"PN-2026-002\",\n        \"reference_code\": \"REF-TOMATO-001\",\n        \"start_date\": \"2026-03-05\",\n        \"end_date\": \"2026-03-20\",\n        \"quantity\": 200,\n        \"quantity_unit\": \"box\",\n        \"external_status\": \"C\",\n        \"tender_kind\": \"closed\"\n      }\n    ]\n  }","options":{"raw":{"language":"json"}}},"url":"{{host}}/partner//purchase-needs","urlObject":{"path":["partner","","purchase-needs"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cd754c07-490f-454d-945e-92590d4d0b7f"}],"id":"f87ecb46-3f6e-4b0f-b7d3-9a3a57a51e04","_postman_id":"f87ecb46-3f6e-4b0f-b7d3-9a3a57a51e04","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}}}],"id":"c5399b04-b338-43b0-b5a4-e10830feb25b","_postman_id":"c5399b04-b338-43b0-b5a4-e10830feb25b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}}},{"name":"organization (deprecated)","item":[{"name":"auth","item":[{"name":"Login","event":[{"listen":"test","script":{"id":"f1b30737-15d3-4375-8a36-3271fd5e5294","exec":["var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"token\", jsonData.access_token);","postman.setEnvironmentVariable(\"refresh\", jsonData.refresh_token);"],"type":"text/javascript"}}],"id":"2d0fe123-e441-4668-acf9-d9e42c0bd692","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"api_key\": \"APIKEY\"\n}"},"url":"{{host}}/organization/{{organizationID}}/login","description":"<p>Authenticate as an organization, required step for any further action.</p>\n<p>An API key is needed to login and will return JWT tokens in response.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["organization","{{organizationID}}","login"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"3eb65962-aebf-4a9a-b0af-d3065a66f712","name":"Error: invalid key for organization","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"api_key\": \"THE-KEY\"\n}"},"url":"{{host}}/organization/{{organizationID}}/login"},"status":"Forbidden","code":403,"_postman_previewlanguage":"plain","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"25"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Date","value":"Thu, 25 Jul 2019 13:51:33 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"125"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"\n"},{"id":"8cda8b3b-2d15-4b99-8edf-d40fc09d688a","name":"Error: not found key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"api_key\": \"asdfghjk\"}"},"url":"{{host}}/organization/{{organizationID}}/login"},"status":"Not Found","code":404,"_postman_previewlanguage":"plain","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"125"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Date","value":"Thu, 25 Jul 2019 10:22:22 GMT"},{"key":"Content-Length","value":"43"},{"key":"Via","value":"1.1 google"}],"cookie":[],"responseTime":null,"body":"404 page not found\n"},{"id":"970b29ab-a159-4177-8f0f-2d549a20bb3f","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"api_key\": \"asdfghjk\"\n}"},"url":"{{host}}/organization/{{organizationID}}/login"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"386"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 25 Jul 2019 13:48:22 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"125"}],"cookie":[],"responseTime":null,"body":"{\n    \"organization\": {\n        \"id\": 1,\n        \"color\": \"\",\n        \"logo\": \"\",\n        \"name\": \"Consentio\",\n        \"description\": \"\",\n        \"images\": null,\n        \"orders_email\": \"\",\n        \"created_at\": \"2019-06-20T12:26:54Z\",\n        \"updated_at\": \"2019-06-20T12:26:54Z\",\n        \"address\": null\n    },\n    \"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjowLCJvcmdhbml6YXRpb25faWQiOjEsImlzX3JlZnJlc2giOmZhbHNlLCJleHAiOjE1NjQwNjI4MDJ9.JP4K8Zk1wKBZCS7OymvYEFaX4WJgdNLLYpFa0ndKSBM\",\n    \"refresh_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjowLCJvcmdhbml6YXRpb25faWQiOjEsImlzX3JlZnJlc2giOnRydWUsImV4cCI6MTU2NDE0ODkwMn0.F7STpaLCQZ3c9PzN8Qgsm22nZibXEVgjChCzt99u2ZA\"\n}"}],"_postman_id":"2d0fe123-e441-4668-acf9-d9e42c0bd692"},{"name":"Refresh","event":[{"listen":"test","script":{"id":"f50ca3e3-e330-4405-9788-0ed44a42a45b","exec":["//var jsonData = JSON.parse(responseBody);","//postman.setEnvironmentVariable(\"token\", jsonData.access_token);"],"type":"text/javascript"}}],"id":"788c56a0-c0ca-4a2d-839d-333f83ad4c8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{refresh}}","description":"<p>Authentication and authorization header: must contain JWT refresh token retrieved in login call</p>\n"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/refresh","description":"<p>Refresh access token based on a valid refresh token.</p>\n<p>Every time a JWT access token is expired, refresh should be called to get a new one.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["refresh"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"39d9753a-8a69-4365-94b8-4e7986495923","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{refresh}}"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/refresh"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"202"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 25 Jul 2019 13:52:19 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"125"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjowLCJvcmdhbml6YXRpb25faWQiOjEsImlzX3JlZnJlc2giOmZhbHNlLCJleHAiOjE1NjQwNjMwMzl9.CLBsmjDxtB-yyr4_rjv-0DQhucEW1XRhozH8nKFkQ_A\"\n}"},{"id":"e9207087-5eed-4bbd-b797-61956fd08342","name":"Error: unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjowLCJvcmdhbml6YXRpb25faWQiOjEsImlzX3JlZnJlc2giOmZhbHNlLCJleHAiOjE1NjQwNjMwODl9.exDZQptxXzuQyTEmhDMU-qMpq_ZaYe4mncpqwveJ_Kk"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/refresh"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"plain","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"25"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Date","value":"Thu, 25 Jul 2019 13:53:21 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"125"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"\n"}],"_postman_id":"788c56a0-c0ca-4a2d-839d-333f83ad4c8a"}],"id":"9c63558a-2aa5-4d3a-92a0-c1e4c9a8bf2b","_postman_id":"9c63558a-2aa5-4d3a-92a0-c1e4c9a8bf2b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}}},{"name":"product","item":[{"name":"Product creation","id":"d75d3ea7-cf9e-44bd-9a9c-c6d7826869d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}","description":"<p>Authentication and authorization header: must contain JWT access token retrieved in login call</p>\n"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/organization/{{organizationID}}/product","description":"<p>Bulk product creation endpoint.</p>\n<p>Work in a synchronous way. That means that you'll receive in the response the list of correctly entered products and theb list of errors to be fixed.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["organization","{{organizationID}}","product"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"07e36fc2-024c-403d-8a4a-369a51c078a4","name":"success: no errors","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"type,variety,origin,category,size,box_weight,boxes_per_amount,price,brand,status,price_unit,pieces_per_box,packaging,sales_unit,sku,ean_code,box_type,pallet_type,organic,more_info\nlemon,Verna Lemon,ES,I,60,15,72,14,Sentilver Fruit,active,box,,,box,LEMON-1,,,,,\nlemon,Verna Lemon,ES,I,70,15,72,15,Sentilver Fruit,active,box,,,box,LEMON-2,,,,,\nlemon,Verna Lemon,ES,I,80,15,72,16,Sentilver Fruit,active,box,,,box,LEMON-3,,,,,\nclementine,Satsuma,ZA,I,1XXX,10,104,12,Grown4U,active,box,,,box,CLEMENTINE-1,,,,,\nclementine,Satsuma,ZA,I,1XX,10,104,12,Grown4U,active,box,,,box,CLEMENTINE-2,,,,,\nclementine,Satsuma,ZA,I,1X,10,104,12.5,Grown4U,active,box,,,box,CLEMENTINE-3,,,,,\nclementine,Satsuma,ZA,I,1,10,104,13.5,Grown4U,active,box,,,box,CLEMENTINE-4,,,,,\norange,Valencia,EG,I,72,15,80,8,Daltex,active,box,,,box,ORANGE-1,,,,,\norange,Valencia,EG,I,80,15,80,8,Daltex,active,box,,,box,ORANGE-2,,,,,\norange,Valencia,EG,I,88,15,80,8,Daltex,active,box,,,box,ORANGE-3,,,,,"},"url":"{{host}}/organization/{{organizationID}}/product"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"1107"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 25 Jul 2019 13:54:28 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"125"}],"cookie":[],"responseTime":null,"body":"{\n    \"products\": [\n        {\n            \"id\": 679,\n            \"type_id\": 2331,\n            \"type\": {\n                \"id\": 2331,\n                \"group\": \"vegetable\",\n                \"variety\": \"Verna Lemon\",\n                \"type\": \"lemon\",\n                \"origin\": \"ES\",\n                \"created_at\": \"2019-07-25T13:54:28.609841Z\",\n                \"updated_at\": \"2019-07-25T13:54:28.609841Z\"\n            },\n            \"status\": \"active\",\n            \"size\": \"60\",\n            \"created_at\": \"2019-07-25T13:54:28.614743Z\",\n            \"images\": [],\n            \"box_weight\": 15,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"LEMON-1\",\n            \"organic\": \"\",\n            \"updated_at\": \"2019-07-25T13:54:28.614743Z\",\n            \"favorite_hash\": \"dd582736d8e9307555768ff47af96dcb\",\n            \"image\": null,\n            \"price\": 14,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"product_price_id\": 679,\n            \"user_id\": 1208,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Sentilver Fruit\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\"\n        },\n        {\n            \"id\": 680,\n            \"type_id\": 2332,\n            \"type\": {\n                \"id\": 2332,\n                \"group\": \"vegetable\",\n                \"variety\": \"Verna Lemon\",\n                \"type\": \"lemon\",\n                \"origin\": \"ES\",\n                \"created_at\": \"2019-07-25T13:54:28.621606Z\",\n                \"updated_at\": \"2019-07-25T13:54:28.621606Z\"\n            },\n            \"status\": \"active\",\n            \"size\": \"70\",\n            \"created_at\": \"2019-07-25T13:54:28.624094Z\",\n            \"images\": [],\n            \"box_weight\": 15,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"LEMON-2\",\n            \"organic\": \"\",\n            \"updated_at\": \"2019-07-25T13:54:28.624094Z\",\n            \"favorite_hash\": \"680f2739bb6c4f22fbab8308369d4d5b\",\n            \"image\": null,\n            \"price\": 15,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"product_price_id\": 680,\n            \"user_id\": 1208,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Sentilver Fruit\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\"\n        },\n        {\n            \"id\": 681,\n            \"type_id\": 2333,\n            \"type\": {\n                \"id\": 2333,\n                \"group\": \"vegetable\",\n                \"variety\": \"Verna Lemon\",\n                \"type\": \"lemon\",\n                \"origin\": \"ES\",\n                \"created_at\": \"2019-07-25T13:54:28.630358Z\",\n                \"updated_at\": \"2019-07-25T13:54:28.630358Z\"\n            },\n            \"status\": \"active\",\n            \"size\": \"80\",\n            \"created_at\": \"2019-07-25T13:54:28.633069Z\",\n            \"images\": [],\n            \"box_weight\": 15,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"LEMON-3\",\n            \"organic\": \"\",\n            \"updated_at\": \"2019-07-25T13:54:28.633069Z\",\n            \"favorite_hash\": \"6c7d176f68a35befa4470df56d52d01b\",\n            \"image\": null,\n            \"price\": 16,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"product_price_id\": 681,\n            \"user_id\": 1208,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Sentilver Fruit\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\"\n        },\n        {\n            \"id\": 682,\n            \"type_id\": 2334,\n            \"type\": {\n                \"id\": 2334,\n                \"group\": \"vegetable\",\n                \"variety\": \"Satsuma\",\n                \"type\": \"clementine\",\n                \"origin\": \"ZA\",\n                \"created_at\": \"2019-07-25T13:54:28.639547Z\",\n                \"updated_at\": \"2019-07-25T13:54:28.639547Z\"\n            },\n            \"status\": \"active\",\n            \"size\": \"1XXX\",\n            \"created_at\": \"2019-07-25T13:54:28.642202Z\",\n            \"images\": [],\n            \"box_weight\": 10,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"CLEMENTINE-1\",\n            \"organic\": \"\",\n            \"updated_at\": \"2019-07-25T13:54:28.642202Z\",\n            \"favorite_hash\": \"ac6df2581d99129d45c4104ca4721e34\",\n            \"image\": null,\n            \"price\": 12,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"product_price_id\": 682,\n            \"user_id\": 1208,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Grown4u\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\"\n        },\n        {\n            \"id\": 683,\n            \"type_id\": 2335,\n            \"type\": {\n                \"id\": 2335,\n                \"group\": \"vegetable\",\n                \"variety\": \"Satsuma\",\n                \"type\": \"clementine\",\n                \"origin\": \"ZA\",\n                \"created_at\": \"2019-07-25T13:54:28.648479Z\",\n                \"updated_at\": \"2019-07-25T13:54:28.648479Z\"\n            },\n            \"status\": \"active\",\n            \"size\": \"1XX\",\n            \"created_at\": \"2019-07-25T13:54:28.65053Z\",\n            \"images\": [],\n            \"box_weight\": 10,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"CLEMENTINE-2\",\n            \"organic\": \"\",\n            \"updated_at\": \"2019-07-25T13:54:28.65053Z\",\n            \"favorite_hash\": \"ddcefd9e62365118b610db36887b911d\",\n            \"image\": null,\n            \"price\": 12,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"product_price_id\": 683,\n            \"user_id\": 1208,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Grown4u\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\"\n        },\n        {\n            \"id\": 684,\n            \"type_id\": 2336,\n            \"type\": {\n                \"id\": 2336,\n                \"group\": \"vegetable\",\n                \"variety\": \"Satsuma\",\n                \"type\": \"clementine\",\n                \"origin\": \"ZA\",\n                \"created_at\": \"2019-07-25T13:54:28.6574Z\",\n                \"updated_at\": \"2019-07-25T13:54:28.6574Z\"\n            },\n            \"status\": \"active\",\n            \"size\": \"1X\",\n            \"created_at\": \"2019-07-25T13:54:28.659857Z\",\n            \"images\": [],\n            \"box_weight\": 10,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"CLEMENTINE-3\",\n            \"organic\": \"\",\n            \"updated_at\": \"2019-07-25T13:54:28.659857Z\",\n            \"favorite_hash\": \"c2ef235363357f0edb143c8a693962a4\",\n            \"image\": null,\n            \"price\": 12.5,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"product_price_id\": 684,\n            \"user_id\": 1208,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Grown4u\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\"\n        },\n        {\n            \"id\": 685,\n            \"type_id\": 2337,\n            \"type\": {\n                \"id\": 2337,\n                \"group\": \"vegetable\",\n                \"variety\": \"Satsuma\",\n                \"type\": \"clementine\",\n                \"origin\": \"ZA\",\n                \"created_at\": \"2019-07-25T13:54:28.665499Z\",\n                \"updated_at\": \"2019-07-25T13:54:28.665499Z\"\n            },\n            \"status\": \"active\",\n            \"size\": \"1\",\n            \"created_at\": \"2019-07-25T13:54:28.669031Z\",\n            \"images\": [],\n            \"box_weight\": 10,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"CLEMENTINE-4\",\n            \"organic\": \"\",\n            \"updated_at\": \"2019-07-25T13:54:28.669031Z\",\n            \"favorite_hash\": \"1d3dbbff783437da9a878014b7edc503\",\n            \"image\": null,\n            \"price\": 13.5,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"product_price_id\": 685,\n            \"user_id\": 1208,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Grown4u\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\"\n        },\n        {\n            \"id\": 686,\n            \"type_id\": 2338,\n            \"type\": {\n                \"id\": 2338,\n                \"group\": \"vegetable\",\n                \"variety\": \"Valencia\",\n                \"type\": \"orange\",\n                \"origin\": \"EG\",\n                \"created_at\": \"2019-07-25T13:54:28.677705Z\",\n                \"updated_at\": \"2019-07-25T13:54:28.677705Z\"\n            },\n            \"status\": \"active\",\n            \"size\": \"72\",\n            \"created_at\": \"2019-07-25T13:54:28.681153Z\",\n            \"images\": [],\n            \"box_weight\": 15,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"ORANGE-1\",\n            \"organic\": \"\",\n            \"updated_at\": \"2019-07-25T13:54:28.681153Z\",\n            \"favorite_hash\": \"ac9a6132b9ca93b8ca7c6e8405f31da8\",\n            \"image\": null,\n            \"price\": 8,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"product_price_id\": 686,\n            \"user_id\": 1208,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Daltex\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\"\n        },\n        {\n            \"id\": 687,\n            \"type_id\": 2339,\n            \"type\": {\n                \"id\": 2339,\n                \"group\": \"vegetable\",\n                \"variety\": \"Valencia\",\n                \"type\": \"orange\",\n                \"origin\": \"EG\",\n                \"created_at\": \"2019-07-25T13:54:28.687382Z\",\n                \"updated_at\": \"2019-07-25T13:54:28.687382Z\"\n            },\n            \"status\": \"active\",\n            \"size\": \"80\",\n            \"created_at\": \"2019-07-25T13:54:28.689878Z\",\n            \"images\": [],\n            \"box_weight\": 15,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"ORANGE-2\",\n            \"organic\": \"\",\n            \"updated_at\": \"2019-07-25T13:54:28.689878Z\",\n            \"favorite_hash\": \"5ef8e8dba961d2727826affac981f9e4\",\n            \"image\": null,\n            \"price\": 8,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"product_price_id\": 687,\n            \"user_id\": 1208,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Daltex\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\"\n        },\n        {\n            \"id\": 688,\n            \"type_id\": 2340,\n            \"type\": {\n                \"id\": 2340,\n                \"group\": \"vegetable\",\n                \"variety\": \"Valencia\",\n                \"type\": \"orange\",\n                \"origin\": \"EG\",\n                \"created_at\": \"2019-07-25T13:54:28.696657Z\",\n                \"updated_at\": \"2019-07-25T13:54:28.696657Z\"\n            },\n            \"status\": \"active\",\n            \"size\": \"88\",\n            \"created_at\": \"2019-07-25T13:54:28.699201Z\",\n            \"images\": [],\n            \"box_weight\": 15,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"ORANGE-3\",\n            \"organic\": \"\",\n            \"updated_at\": \"2019-07-25T13:54:28.699201Z\",\n            \"favorite_hash\": \"6fc4ad4d7bf20f98d16b292f100e1500\",\n            \"image\": null,\n            \"price\": 8,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"product_price_id\": 688,\n            \"user_id\": 1208,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Daltex\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\"\n        }\n    ],\n    \"errors\": null\n}"},{"id":"98eccd72-65d3-4d28-bc76-9c6c0631c77f","name":"only errors","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"type,variety,origin,category,size,box_weight,boxes_per_amount,price,brand,status,price_unit,pieces_per_box,packaging,sales_unit,sku,ean_code,box_type,pallet_type,organic,more_info\nlemon,Verna Lemon,FAKE,I,60,15,72,14,Sentilver Fruit,active,box,,,box,LEMON-1,,,,,\nfake,Valencia,EG,I,88,15,80,8,Daltex,active,box,,,box,ORANGE-3,,,,,"},"url":"{{host}}/organization/{{organizationID}}/product"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"168"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 25 Jul 2019 13:56:04 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"125"}],"cookie":[],"responseTime":null,"body":"{\n    \"products\": null,\n    \"errors\": [\n        \"NewProductFromFlat failed: transformOrigin failed: Unable to match 'FAKE' (lemon-Verna Lemon-60)\",\n        \"NewProductFromFlat failed: transformType failed: Unable to match 'fake' (fake-Valencia-88)\"\n    ]\n}"},{"id":"daa96610-451d-4124-852c-f78113009e5d","name":"success + error","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"type,variety,origin,category,size,box_weight,boxes_per_amount,price,brand,status,price_unit,pieces_per_box,packaging,sales_unit,sku,ean_code,box_type,pallet_type,organic,more_info\nlemon,Verna Lemon,ES,I,60,15,72,14,Sentilver Fruit,active,box,,,box,LEMON-1,,,,,\nfake,Valencia,EG,I,88,15,80,8,Daltex,active,box,,,box,ORANGE-3,,,,,"},"url":"{{host}}/organization/{{organizationID}}/product"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"491"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 25 Jul 2019 13:55:15 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"125"}],"cookie":[],"responseTime":null,"body":"{\n    \"products\": [\n        {\n            \"id\": 698,\n            \"type_id\": 2350,\n            \"type\": {\n                \"id\": 2350,\n                \"group\": \"vegetable\",\n                \"variety\": \"Verna Lemon\",\n                \"type\": \"lemon\",\n                \"origin\": \"ES\",\n                \"created_at\": \"2019-07-25T13:55:15.589378Z\",\n                \"updated_at\": \"2019-07-25T13:55:15.589378Z\"\n            },\n            \"status\": \"active\",\n            \"size\": \"60\",\n            \"created_at\": \"2019-07-25T13:55:15.59886Z\",\n            \"images\": [],\n            \"box_weight\": 15,\n            \"boxes_per_pallet\": null,\n            \"packaging\": \"\",\n            \"sale_units\": [\n                \"box\"\n            ],\n            \"price_state\": \"state-none\",\n            \"ean_code\": \"\",\n            \"sku\": \"LEMON-1\",\n            \"organic\": \"\",\n            \"updated_at\": \"2019-07-25T13:55:15.59886Z\",\n            \"favorite_hash\": \"dd582736d8e9307555768ff47af96dcb\",\n            \"image\": null,\n            \"price\": 14,\n            \"price_unit\": \"box\",\n            \"is_por\": false,\n            \"product_price_id\": 698,\n            \"user_id\": 1208,\n            \"category\": \"1\",\n            \"more_info\": \"\",\n            \"brand\": \"Sentilver Fruit\",\n            \"pieces_per_box\": 0,\n            \"box_type\": \"\",\n            \"pallet_type\": \"\"\n        }\n    ],\n    \"errors\": [\n        \"NewProductFromFlat failed: transformType failed: Unable to match 'fake' (fake-Valencia-88)\"\n    ]\n}"}],"_postman_id":"d75d3ea7-cf9e-44bd-9a9c-c6d7826869d2"}],"id":"9eb0daf3-38d5-4bac-ab57-679dfca3ac63","_postman_id":"9eb0daf3-38d5-4bac-ab57-679dfca3ac63","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}}},{"name":"order","item":[{"name":"Get accepted orders","id":"6644700b-6943-4c5a-9e17-1a87388e8687","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}","description":"<p>Authentication and authorization header: must contain JWT access token retrieved in login call</p>\n"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/organization/{{organizationID}}/order?from=2020-04-29T00:00:00Z&to=2020-04-29T23:00:00Z&kind=sale","description":"<p>Retrieves accepted orders done in a range of time.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["organization","{{organizationID}}","order"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Since you want orders in RFC3339 standard format (2002-10-02T15:00:00Z)</p>\n","type":"text/plain"},"key":"from","value":"2020-04-29T00:00:00Z"},{"description":{"content":"<p>Until you want orders in RFC3339 standard format (2002-10-02T15:00:00Z)</p>\n","type":"text/plain"},"key":"to","value":"2020-04-29T23:00:00Z"},{"description":{"content":"<p>Kind of orders you want: sale<code>or</code>purchase`</p>\n","type":"text/plain"},"key":"kind","value":"sale"}],"variable":[]}},"response":[{"id":"862dc2a6-a791-45b3-8f26-c8ca8e0aa88d","name":"Errror - bad time","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{host}}/organization/{{organizationID}}/order?from=2019-04-10T23:00:0&to=2019-09-10T23:00:00Z&kind=purchase","host":["{{host}}"],"path":["organization","{{organizationID}}","order"],"query":[{"key":"from","value":"2019-04-10T23:00:0"},{"key":"to","value":"2019-09-10T23:00:00Z"},{"key":"kind","value":"purchase"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"plain","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"66"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Date","value":"Thu, 25 Jul 2019 14:10:05 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"125"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"Invalid from param, expected RFC3339 time\n"},{"id":"8e5fc9bd-83b5-43bd-b08a-78c64619f1b5","name":"success - sales","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{host}}/organization/{{organizationID}}/order?from=2019-04-10T23:00:00Z&to=2019-09-10T23:00:00Z&kind=sale","host":["{{host}}"],"path":["organization","{{organizationID}}","order"],"query":[{"key":"from","value":"2019-04-10T23:00:00Z"},{"key":"to","value":"2019-09-10T23:00:00Z"},{"key":"kind","value":"sale"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"670"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 25 Jul 2019 14:07:51 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"125"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"ack_buyer\": false,\n        \"ack_seller\": false,\n        \"author_id\": 1286,\n        \"buyer_id\": 1307,\n        \"cloned_from\": null,\n        \"closed_at\": \"2019-11-06T10:09:38.686987Z\",\n        \"counteroffer_from_id\": null,\n        \"created_at\": \"2019-11-06T10:09:38.691368Z\",\n        \"custom_items\": [\n            {\n                \"id\": 7,\n                \"title\": \"shipping default\",\n                \"type\": \"shipping\",\n                \"price\": 50,\n                \"order_id\": 28,\n                \"created_at\": \"2019-11-06T10:09:38.696754Z\"\n            }\n        ],\n        \"delivery_estimated_at\": \"2019-11-20T00:00:00Z\",\n        \"delivery_estimated_schedule\": \"am\",\n        \"pickup_estimated_at\": \"2019-11-14T00:00:00Z\",\n        \"pickup_estimated_schedule\": \"pm\",\n        \"delivery_method\": \"shipping\",\n        \"order_direction\": 1,\n        \"hash_id\": \"E9N7GQMOG2\",\n        \"history\": [\n            {\n                \"id\": 61,\n                \"author_id\": 1286,\n                \"order_id\": 28,\n                \"price\": 1772,\n                \"status\": \"accepted\",\n                \"items\": [\n                    {\n                        \"id\": 110,\n                        \"order_history_id\": 61,\n                        \"order_item_id\": 49,\n                        \"price\": 14,\n                        \"amount\": 123\n                    }\n                ],\n                \"created_at\": \"2019-11-06T10:09:38.698364Z\"\n            }\n        ],\n        \"id\": 28,\n        \"incoterms\": [\n            \"EXW\"\n        ],\n        \"items\": [\n            {\n                \"amount\": 123,\n                \"boxes_per_pallet\": 72,\n                \"box_type\": \"\",\n                \"box_weight\": 15,\n                \"brand\": \"Sentilver Fruit\",\n                \"category\": \"1\",\n                \"created_at\": \"2019-11-06T10:09:38.695044Z\",\n                \"ean_code\": \"\",\n                \"external_id_buyer\": \"\",\n                \"external_id_seller\": \"\",\n                \"favorite_hash\": \"c10c89e38fdb80294135debc6b2aaac3\",\n                \"group\": \"vegetable\",\n                \"id\": 49,\n                \"images\": null,\n                \"is_por\": false,\n                \"more_info\": \"\",\n                \"order_id\": 28,\n                \"organic\": \"\",\n                \"origin\": \"ES\",\n                \"packaging\": \"\",\n                \"pallet_type\": \"\",\n                \"pieces_per_box\": 0,\n                \"price\": 14,\n                \"price_unit\": \"box\",\n                \"child_id\": 10401,\n                \"sale_unit\": \"box\",\n                \"size\": \"60\",\n                \"sku\": \"LEMON-1\",\n                \"title\": \"Verna Lemon\",\n                \"total_price\": 1722,\n                \"type\": \"lemon\",\n                \"tax\": 0,\n                \"price_hash\": \"\"\n            }\n        ],\n        \"legacy_id\": null,\n        \"more_info\": \"My supper comments\",\n        \"pallet_amount\": 1.7083334,\n        \"pallet_amount_accuracy\": \"full\",\n        \"pickup_from\": {\n            \"id\": 55,\n            \"country\": \"\",\n            \"display_name\": \"\",\n            \"zip\": \"\",\n            \"city\": \"\",\n            \"rest\": \"Calle la plata, Torrijos, 123, España\",\n            \"created_at\": \"2019-11-06T10:09:38.687845Z\",\n            \"updated_at\": \"2019-11-06T10:09:38.687845Z\",\n            \"external_id\": \"\"\n        },\n        \"pickup_from_id\": 55,\n        \"price\": 1772,\n        \"price_mode\": \"none\",\n        \"seller_id\": 1286,\n        \"deliver_to\": {\n            \"id\": 56,\n            \"country\": \"\",\n            \"display_name\": \"\",\n            \"zip\": \"\",\n            \"city\": \"\",\n            \"rest\": \"Calle la mata, Madrid, 45123, España\",\n            \"created_at\": \"2019-11-06T10:09:38.689789Z\",\n            \"updated_at\": \"2019-11-06T10:09:38.689789Z\",\n            \"external_id\": \"\"\n        },\n        \"deliver_to_id\": 56,\n        \"status\": \"accepted\",\n        \"updated_at\": \"2019-11-06T10:09:38.691368Z\",\n        \"weight\": 1845,\n        \"weight_accuracy\": \"full\",\n        \"counterpart_id\": \"\",\n        \"external_id\": \"\",\n        \"pickup_location\": \"Calle la plata, Torrijos, 123, España\",\n        \"shipping_address\": \"Calle la mata, Madrid, 45123, España\"\n    }\n]"},{"id":"be5d7c83-84fd-4ced-9c40-6af6fd0ff620","name":"success - empty purchases","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{host}}/organization/{{organizationID}}/order?from=2019-04-10T23:00:00Z&to=2019-09-10T23:00:00Z&kind=purchase","host":["{{host}}"],"path":["organization","{{organizationID}}","order"],"query":[{"key":"from","value":"2019-04-10T23:00:00Z"},{"key":"to","value":"2019-09-10T23:00:00Z"},{"key":"kind","value":"purchase"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"26"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 25 Jul 2019 14:09:36 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"125"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"6644700b-6943-4c5a-9e17-1a87388e8687"},{"name":"Update external id and external status","id":"a752710a-c7a7-4972-81c6-8c1e6f3311e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"<p>Authentication and authorization header: must contain JWT access token retrieved in login call</p>\n","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 28,\n        \"external_id\": \"123123\",\n        \"external_status\": \"delivered\"\n    }\n]"},"url":"{{host}}/organization/{{organizationID}}/order/external","description":"<p>This request is used for:</p>\n<ul>\n<li>Upload the ERP's external id</li>\n<li>Upload the external status of the ERP. This external status is related to shipping</li>\n</ul>\n<p>Note: it is not needed to upload the whole order structure. The necessary fields are:</p>\n<ul>\n<li>order id</li>\n<li>external id</li>\n<li>external status</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["organization","{{organizationID}}","order","external"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"008899a1-5533-42a9-a190-f871b2c1629b","name":"Updates orders with external ID","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"Authentication and authorization header: must contain JWT access token retrieved in login call","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 28,\n        \"external_id\": \"123123\",\n        \"external_status\": \"delivered\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{host}}/organization/{{organizationID}}/order/external"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a752710a-c7a7-4972-81c6-8c1e6f3311e8"}],"id":"bb619f10-d3dc-48b0-baac-fde1678e084b","_postman_id":"bb619f10-d3dc-48b0-baac-fde1678e084b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}}},{"name":"external clients","item":[{"name":"Add external clients","id":"4cd4d4b8-37af-48f7-b3c3-cfd61f37709f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"text/csv","type":"text"}],"body":{"mode":"raw","raw":"client_external_id,client_name,phones\nKAB0432,LA TOJA FOO INC,\"123123,123123,123123\"\nKC21312,FRUTAS ANTONIO S.L.,"},"url":"{{host}}/organization/{{organizationID}}/client","description":"<p>This request is used to upload external clients to Consentio</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["organization","{{organizationID}}","client"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"ae82830b-abed-4d89-9132-f668bf9a3b05","name":"Sucess with JSON","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"client_external_id\": \"KAB0432\",\n        \"client_name\": \"LA TOJA FOO INC\"\n    },\n    {\n        \"client_external_id\": \"KC21312\",\n        \"client_name\": \"FRUTAS ANTONIO S.L.\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{host}}/organization/{{organizationID}}/client"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"165"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 14 Oct 2019 09:09:06 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"155"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"client_external_id\": \"KAB0432\",\n        \"client_name\": \"LA TOJA FOO INC\",\n        \"created_at\": \"2019-10-14T09:09:06.003882774Z\",\n        \"updated_at\": \"2019-10-14T09:09:06.003882774Z\"\n    },\n    {\n        \"client_external_id\": \"KC21312\",\n        \"client_name\": \"FRUTAS ANTONIO S.L.\",\n        \"created_at\": \"2019-10-14T09:09:06.003882774Z\",\n        \"updated_at\": \"2019-10-14T09:09:06.003882774Z\"\n    }\n]"},{"id":"eefc1bba-4bfa-486f-af0f-6f4f63ec4419","name":"Success with CSV","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/csv","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"client_external_id,client_name\nKAB0432,LA TOJA FOO INC\nKC21312,FRUTAS ANTONIO S.L."},"url":"{{host}}/organization/{{organizationID}}/client/"},"code":201,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"client_external_id,client_name,created_at,updated_at\nKAB0432,LA TOJA FOO INC,2019-10-14T09:06:58.771499729Z,2019-10-14T09:06:58.771499729Z\nKC21312,FRUTAS ANTONIO S.L.,2019-10-14T09:06:58.771499729Z,2019-10-14T09:06:58.771499729Z"}],"_postman_id":"4cd4d4b8-37af-48f7-b3c3-cfd61f37709f"},{"name":"Get external clients","id":"bd93b930-1c06-4720-838c-360aff023093","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{host}}/organization/{{organizationID}}/client","description":"<p>This request is used to get external clients from Consentio</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["organization","{{organizationID}}","client"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"1d615560-c055-43af-ab60-87754a256583","name":"Success with JSON","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":{"raw":"{{host}}/organization/{{organizationID}}/client","host":["{{host}}"],"path":["organization","{{organizationID}}","client"],"query":[{"key":"","value":"","type":"text","disabled":true}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"client_external_id\": \"KAB0432\",\n        \"client_name\": \"LA TOJA FOO INC\",\n        \"created_at\": \"2019-10-14T09:09:06.003882774Z\",\n        \"updated_at\": \"2019-10-14T09:09:06.003882774Z\"\n    },\n    {\n        \"client_external_id\": \"KC21312\",\n        \"client_name\": \"FRUTAS ANTONIO S.L.\",\n        \"created_at\": \"2019-10-14T09:09:06.003882774Z\",\n        \"updated_at\": \"2019-10-14T09:09:06.003882774Z\"\n    }\n]"},{"id":"c532b24a-62d7-4801-b315-85a9ab01fbd2","name":"Success with CSV","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/csv","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/organization/{{organizationID}}/client/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"client_external_id,client_name,created_at,updated_at\nKAB0432,LA TOJA FOO INC,2019-10-14T09:06:58.771499729Z,2019-10-14T09:06:58.771499729Z\nKC21312,FRUTAS ANTONIO S.L.,2019-10-14T09:06:58.771499729Z,2019-10-14T09:06:58.771499729Z"}],"_postman_id":"bd93b930-1c06-4720-838c-360aff023093"}],"id":"6e6eef54-7fe7-4da4-a109-b7b52d0e28fd","event":[{"listen":"prerequest","script":{"id":"adf48182-3ecc-4a89-8e51-8900bf25631b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3d470104-211d-4d2f-bcd0-32fc7359583b","type":"text/javascript","exec":[""]}}],"_postman_id":"6e6eef54-7fe7-4da4-a109-b7b52d0e28fd","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}}},{"name":"external_address","item":[{"name":"Add addresses","id":"9541df96-c3e8-4ecc-8145-7d3603f9c98a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"text/csv"}],"body":{"mode":"raw","raw":"external_id,client_external_id,country,display_name,zip,city,rest\n12345KB,KC21312,Spain,Calle Madrid,28045,Madrid,\"Calle Madrid 45.Third floor,Consentio\"\n345EFG,45123,United States,Chrysler Building,12345,New York,Chrysler building 45.Third floor","options":{"raw":{"language":"json"}}},"url":"{{host}}/organization/{{organizationID}}/address","description":"<p>This request is used to upload client addresses to Consentio. Note that the request can be made either with JSON or with CSV</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["organization","{{organizationID}}","address"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"55bba607-cbc0-4492-b797-6a262f76752e","name":"Sucess with JSON","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"external_id\": \"12345KB\",\n        \"client_external_id\": \"GF890\",\n        \"country\": \"Spain\",\n        \"display_name\": \"Calle Madrid\",\n        \"zip\": \"28045\",\n        \"city\": \"Madrid\",\n        \"rest\": \"Calle Madrid 45. Third floor, Consentio\"\n    },\n    {\n        \"external_id\": \"345EFG\",\n        \"client_external_id\": \"45123\",\n        \"country\": \"United States\",\n        \"display_name\": \"Chrysler Building\",\n        \"zip\": \"12345\",\n        \"city\": \"New York\",\n        \"rest\": \"Chrysler building 45. Third floor\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{host}}/organization/{{organizationID}}/address"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Length","value":"165"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 14 Oct 2019 09:09:06 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Consentio-Minbuild","value":"155"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 5,\n        \"country\": \"Spain\",\n        \"display_name\": \"Calle Madrid\",\n        \"zip\": \"28045\",\n        \"city\": \"Madrid\",\n        \"rest\": \"Calle Madrid 45. Third floor, Consentio\",\n        \"created_at\": \"2019-10-22T14:54:12.097284Z\",\n        \"updated_at\": \"2019-10-22T14:54:12.097284Z\",\n        \"external_id\": \"12345KB\",\n        \"organization_id\": 0,\n        \"client_external_id\": \"GF890\"\n    },\n    {\n        \"id\": 6,\n        \"country\": \"United States\",\n        \"display_name\": \"Chrysler Building\",\n        \"zip\": \"12345\",\n        \"city\": \"New York\",\n        \"rest\": \"Chrysler building 45. Third floor\",\n        \"created_at\": \"2019-10-22T14:54:12.098041Z\",\n        \"updated_at\": \"2019-10-22T14:54:12.098041Z\",\n        \"external_id\": \"345EFG\",\n        \"organization_id\": 0,\n        \"client_external_id\": \"45123\"\n    }\n]"},{"id":"debae60a-e48c-43d3-938b-80af5b3cd0fd","name":"Success with CSV","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/csv","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"external_id,client_external_id,country,display_name,zip,city,rest\n12345KB,GF890,Spain,Calle Madrid,28045,Madrid,\"Calle Madrid 45.Third floor,Consentio\"\n345EFG,45123,United States,Chrysler Building,12345,New York,Chrysler building 45.Third floor"},"url":"{{host}}/organization/{{organizationID}}/address"},"code":201,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"id,country,display_name,zip,city,rest,created_at,updated_at,external_id,organization_id,client_external_id\n1,Spain,Calle Madrid,28045,Madrid,\"Calle Madrid 45. Third floor, Consentio\",2019-10-22T14:48:59.481448Z,2019-10-22T14:48:59.481448Z,12345KB,0,GF890\n2,United States,\" Chrysler Building\",\" 12345\",\" New York\",\" Chrysler building 45. Third floor\",2019-10-22T14:48:59.483744Z,2019-10-22T14:48:59.483744Z,345EFG,0,\" 45123\""}],"_postman_id":"9541df96-c3e8-4ecc-8145-7d3603f9c98a"},{"name":"get addresses","id":"fc24e969-bb40-4dd3-8028-f62e4a6113f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"},{"key":"Accept","value":"text/csv","type":"text"}],"url":"{{host}}/organization/{{organizationID}}/address","description":"<p>This request is used to get external addresses from Consentio. the response can be either via JSON or via CSV</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}},"urlObject":{"path":["organization","{{organizationID}}","address"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"0f76382f-8134-4e32-9669-0169123fb5b9","name":"Success with CSV","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/csv","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/organization/{{organizationID}}/address"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"id,country,display_name,zip,city,rest,created_at,updated_at,external_id,organization_id,client_external_id\n18,United States,Chrysler Building,12345,New York,Chrysler building 45.Third floor,2019-10-22T14:57:02.674474Z,,345EFG,1,45123\n17,Spain,Calle Madrid,28045,Madrid,\"Calle Madrid 45.Third floor,Consentio\",2019-10-22T14:57:02.673519Z,,12345KB,1,GF890"},{"id":"987cfd30-4940-43ae-851d-2591799ea8a0","name":"Success with JSON","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":{"raw":"{{host}}/organization/{{organizationID}}/address","host":["{{host}}"],"path":["organization","{{organizationID}}","address"],"query":[{"key":"","value":"","type":"text","disabled":true}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 18,\n        \"country\": \"United States\",\n        \"display_name\": \"Chrysler Building\",\n        \"zip\": \"12345\",\n        \"city\": \"New York\",\n        \"rest\": \"Chrysler building 45.Third floor\",\n        \"created_at\": \"2019-10-22T14:57:02.674474Z\",\n        \"updated_at\": null,\n        \"external_id\": \"345EFG\",\n        \"organization_id\": 1,\n        \"client_external_id\": \"45123\"\n    },\n    {\n        \"id\": 17,\n        \"country\": \"Spain\",\n        \"display_name\": \"Calle Madrid\",\n        \"zip\": \"28045\",\n        \"city\": \"Madrid\",\n        \"rest\": \"Calle Madrid 45.Third floor,Consentio\",\n        \"created_at\": \"2019-10-22T14:57:02.673519Z\",\n        \"updated_at\": null,\n        \"external_id\": \"12345KB\",\n        \"organization_id\": 1,\n        \"client_external_id\": \"GF890\"\n    }\n]"}],"_postman_id":"fc24e969-bb40-4dd3-8028-f62e4a6113f1"}],"id":"d13ac106-412b-47f6-a30f-18c1f027f2fe","event":[{"listen":"prerequest","script":{"id":"adf48182-3ecc-4a89-8e51-8900bf25631b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3d470104-211d-4d2f-bcd0-32fc7359583b","type":"text/javascript","exec":[""]}}],"_postman_id":"d13ac106-412b-47f6-a30f-18c1f027f2fe","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}}}],"id":"9cfe0e0a-9f74-4f18-b53e-7ffb8f990dcc","description":"<p>This folder contains the endpoints for organization logic. This endpoints are currently deprecated, and kept for maintenance purposes</p>\n","_postman_id":"9cfe0e0a-9f74-4f18-b53e-7ffb8f990dcc","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":true,"source":{"_postman_id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","id":"7f2e5739-d036-4fea-9bdf-182a3bd1d060","name":"Consentio-Partners-API EN v2","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]}},"event":[{"listen":"prerequest","script":{"id":"179e3033-e4fc-4097-ae25-acad06fe766d","type":"text/javascript","requests":{},"exec":["const apiKey = pm.environment.get('partner_api_key');","const partnerId = pm.environment.get('partner_id');","","pm.sendRequest({","    url: pm.environment.get('host') + '/partner/' + partnerId + '/login',","    method: 'POST',","    header: {","        'Content-Type': 'application/json'","    },","    body: {","        mode: 'raw',","        raw: JSON.stringify({","            api_key: apiKey","        })","    }","}, function (err, res) {","    if (err) {","        console.log('Login error:', err);","        return;","    }","","    // Keep response token for env.","    const jsonResponse = res.json();","    const token = jsonResponse.token || jsonResponse.access_token;","","    if (token) {","        pm.environment.set('auth_token', token);","    } else {","        console.log('No token found in login response :()');","        return","    }","","    const workspaceID = jsonResponse.catalog.id;","    if (workspaceID) {","        pm.environment.set('partnerID', workspaceID);","        pm.environment.set('workspaceId', workspaceID);","    } else {","        console.log('No user id found in login response :()');","        return","    }","","    console.info(\"Logged as partner or workspaceID\", partnerID)","","    const refreshToken = jsonResponse.refresh_token;","    if (refreshToken) {","        pm.environment.set('refresh_token', refreshToken);","    }","});",""]}},{"listen":"test","script":{"id":"22d3253d-6aa2-44e2-ac8a-c89ba119e97e","type":"text/javascript","requests":{},"exec":[""]}}],"variable":[{"key":"partnerID","value":"{{partner_id}}"},{"key":"workspaceId","value":"{{workspaceId}}"},{"key":"buyer_workspace_id","value":"{{workspaceId}}"},{"key":"buyerWorkspaceID","value":""},{"value":""}]}