{"id":7269,"date":"2026-03-07T00:25:32","date_gmt":"2026-03-07T00:25:32","guid":{"rendered":"https:\/\/tequilatradingpartners.com\/?page_id=7269"},"modified":"2026-03-07T17:05:46","modified_gmt":"2026-03-07T17:05:46","slug":"inventory","status":"publish","type":"page","link":"https:\/\/tequilatradingpartners.com\/es\/inventory\/","title":{"rendered":"INVENTARIO"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"7269\" class=\"elementor elementor-7269\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-72853f2b e-flex e-con-boxed e-con e-parent\" data-id=\"72853f2b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6878a398 elementor-widget elementor-widget-text-editor\" data-id=\"6878a398\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t\n<p>\u00a0<\/p>\n<p><style>\n    body {\n      font-family: Arial, sans-serif;\n      padding: 20px;\n    }\n    h2 {\n      text-align: center;\n      color: #444;\n    }\n    table {\n      width: 100%;\n      border-collapse: collapse;\n      margin-top: 20px;\n    }\n    thead {\n      background-color: #444;\n      color: white;\n    }\n    th, td {\n      padding: 12px;\n      border: 1px solid #ccc;\n      text-align: center;\n    }\n    tfoot {\n      font-weight: bold;\n      background-color: #eee;\n    }\n    tbody tr:nth-child(even) {\n      background-color: #f9f9f9;\n    }\n    tbody tr:hover {\n      background-color: #f1f1f1;\n    }\n  <\/style><\/p>\n<h2>Barrel Aging Status by Batch<\/h2>\n<table id=\"agingTable\">\n<thead>\n<tr>\n<th>Batch<\/th>\n<th>Entry Date<\/th>\n<th>Current Date<\/th>\n<th>Days in Aging<\/th>\n<th>Months in Aging<\/th>\n<th>Barrels<\/th>\n<th>Liters<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>L-075<\/td>\n<td>2024-08-17<\/td>\n<td>\u00a0<\/td>\n<td>\u00a0<\/td>\n<td>\u00a0<\/td>\n<td>152<\/td>\n<td>34256<\/td>\n<\/tr>\n<tr>\n<td>L-080<\/td>\n<td>2024-08-23<\/td>\n<td>\u00a0<\/td>\n<td>\u00a0<\/td>\n<td>\u00a0<\/td>\n<td>64<\/td>\n<td>14325<\/td>\n<\/tr>\n<tr>\n<td>L-081<\/td>\n<td>2024-09-23<\/td>\n<td>\u00a0<\/td>\n<td>\u00a0<\/td>\n<td>\u00a0<\/td>\n<td>124<\/td>\n<td>24167<\/td>\n<\/tr>\n<tr>\n<td>L-082<\/td>\n<td>2024-09-24<\/td>\n<td>\u00a0<\/td>\n<td>\u00a0<\/td>\n<td>\u00a0<\/td>\n<td>123<\/td>\n<td>23911<\/td>\n<\/tr>\n<tr>\n<td>L-083<\/td>\n<td>2024-09-27<\/td>\n<td>\u00a0<\/td>\n<td>\u00a0<\/td>\n<td>\u00a0<\/td>\n<td>131<\/td>\n<td>24644<\/td>\n<\/tr>\n<tr>\n<td>L-084<\/td>\n<td>2024-09-30<\/td>\n<td>\u00a0<\/td>\n<td>\u00a0<\/td>\n<td>\u00a0<\/td>\n<td>63<\/td>\n<td>11211<\/td>\n<\/tr>\n<tr>\n<td>L-088<\/td>\n<td>2024-10-30<\/td>\n<td>\u00a0<\/td>\n<td>\u00a0<\/td>\n<td>\u00a0<\/td>\n<td>268<\/td>\n<td>53054<\/td>\n<\/tr>\n<tr>\n<td>L-092<\/td>\n<td>2025-01-03<\/td>\n<td>\u00a0<\/td>\n<td>\u00a0<\/td>\n<td>\u00a0<\/td>\n<td>74<\/td>\n<td>14180<\/td>\n<\/tr>\n<tr>\n<td>L-093<\/td>\n<td>2025-01-11<\/td>\n<td>\u00a0<\/td>\n<td>\u00a0<\/td>\n<td>\u00a0<\/td>\n<td>89<\/td>\n<td>17041<\/td>\n<\/tr>\n<\/tbody>\n<tfoot>\n<tr>\n<td colspan=\"5\">Total<\/td>\n<td id=\"totalBarrels\">0<\/td>\n<td id=\"totalLiters\">0<\/td>\n<\/tr>\n<\/tfoot>\n<\/table>\n<p><script>\n  const rows = document.querySelectorAll(\"#agingTable tbody tr\");\n  const today = new Date();\n  const todayStr = today.toISOString().split(\"T\")[0];\n\n  let totalBarrels = 0;\n  let totalLiters = 0;\n\n  rows.forEach(row => {\n    const entryDateCell = row.cells[1];\n    const currentDateCell = row.cells[2];\n    const daysCell = row.cells[3];\n    const monthsCell = row.cells[4];\n    const barrels = parseInt(row.cells[5].textContent);\n    const liters = parseInt(row.cells[6].textContent);\n\n    const entryDate = new Date(entryDateCell.textContent);\n    const diffTime = today - entryDate;\n    const days = Math.floor(diffTime \/ (1000 * 60 * 60 * 24));\n    const months = (days \/ 30.44).toFixed(1);\n\n    currentDateCell.textContent = todayStr;\n    daysCell.textContent = days;\n    monthsCell.textContent = months;\n\n    totalBarrels += barrels;\n    totalLiters += liters;\n  });\n\n  document.getElementById(\"totalBarrels\").textContent = totalBarrels;\n  document.getElementById(\"totalLiters\").textContent = totalLiters.toLocaleString();\n<\/script><\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-af9c884 e-flex e-con-boxed e-con e-parent\" data-id=\"af9c884\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2319fcf elementor-widget elementor-widget-text-editor\" data-id=\"2319fcf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<h2 data-section-id=\"zmt90v\" data-start=\"50\" data-end=\"93\">Reliable Supply for Brands and Importers<\/h2>\n<p data-start=\"95\" data-end=\"263\">Through our network of partner distilleries in Mexico, Tequila Trading Partners (TTP) provides access to bulk agave spirits for export, bottling, and brand development.<\/p>\n<h2 data-section-id=\"7h893x\" data-start=\"265\" data-end=\"297\">100% Agave Tequila Inventory<\/h2>\n<p data-start=\"299\" data-end=\"445\"><strong data-start=\"299\" data-end=\"309\">Blanco<\/strong><br data-start=\"309\" data-end=\"312\" \/>Fresh and vibrant, highlighting the natural character of Blue Weber agave. Ideal for new brands, cocktail programs, and future aging.<\/p>\n<p data-start=\"447\" data-end=\"578\"><strong data-start=\"447\" data-end=\"459\">Reposado<\/strong><br data-start=\"459\" data-end=\"462\" \/>Oak-aged for a minimum of two months, adding light vanilla, caramel, and oak notes while preserving agave character.<\/p>\n<p data-start=\"580\" data-end=\"692\"><strong data-start=\"580\" data-end=\"589\">A\u00f1ejo<\/strong><br data-start=\"589\" data-end=\"592\" \/>Aged at least one year in oak barrels, creating deeper color, richer flavor, and a smoother profile.<\/p>\n<p data-start=\"694\" data-end=\"848\"><strong data-start=\"694\" data-end=\"713\">Why it matters:<\/strong><br data-start=\"713\" data-end=\"716\" \/>Bulk tequila sourcing helps brands secure reliable supply, control timelines, and scale with confidence under CRT and NOM standards.<\/p>\n<h2 data-section-id=\"13gukux\" data-start=\"850\" data-end=\"876\">Tequila Mixto Inventory<\/h2>\n<p data-start=\"878\" data-end=\"986\">Tequila Mixto offers a flexible, cost-efficient solution for high-volume brands and price-sensitive markets.<\/p>\n<p data-start=\"988\" data-end=\"1001\">Key features:<\/p>\n<ul>\n<li data-start=\"1004\" data-end=\"1039\">Minimum 51% Blue Weber Agave sugars<\/li>\n<li data-start=\"1004\" data-end=\"1039\">Smooth, mixable profile<\/li>\n<li data-start=\"1004\" data-end=\"1039\">Ideal for cocktails, RTDs, and large-scale distribution<\/li>\n<li data-start=\"1004\" data-end=\"1039\">Available in totes or tanker shipments<\/li>\n<\/ul>\n<p data-start=\"1166\" data-end=\"1284\"><strong data-start=\"1166\" data-end=\"1185\">Why it matters:<\/strong><br data-start=\"1185\" data-end=\"1188\" \/>Mixto gives brands a more competitive cost structure while remaining within tequila regulations.<\/p>\n<h2 data-section-id=\"vzzu6r\" data-start=\"1286\" data-end=\"1317\">Destilado de Agave Inventory<\/h2>\n<p data-start=\"1319\" data-end=\"1452\">Destilado de Agave offers a flexible agave spirits option for brands that need international bottling and greater production freedom.<\/p>\n<p data-start=\"1454\" data-end=\"1467\">Key features:<\/p>\n<ul>\n<li data-start=\"1470\" data-end=\"1510\">Produced from Blue Weber Agave in Mexico<\/li>\n<li data-start=\"1513\" data-end=\"1562\">Made using traditional agave distillation methods<\/li>\n<li data-start=\"1565\" data-end=\"1608\">Exported in bulk for international bottling<\/li>\n<li data-start=\"1611\" data-end=\"1648\">Ideal for global agave spirits brands<\/li>\n<\/ul>\n<p data-start=\"1650\" data-end=\"1809\"><strong data-start=\"1650\" data-end=\"1669\">Why it matters:<\/strong><br data-start=\"1669\" data-end=\"1672\" \/>Destilado de Agave gives brands more control over bottling, packaging, and distribution while still delivering an authentic agave spirit.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>\u00a0 Barrel Aging Status by Batch Batch Entry Date Current Date Days in Aging Months in Aging Barrels Liters L-075 2024-08-17 \u00a0 \u00a0 \u00a0 152 34256 L-080 2024-08-23 \u00a0 \u00a0 \u00a0 64 14325 L-081 2024-09-23 \u00a0 \u00a0 \u00a0 124 24167 L-082 2024-09-24 \u00a0 \u00a0 \u00a0 123 23911 L-083 2024-09-27 \u00a0 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"inspiro_page_layout":"narrow","inspiro_hide_title":false,"footnotes":""},"class_list":["post-7269","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>INVENTORY - TEQUILA TRADING PARTNERS<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tequilatradingpartners.com\/es\/inventory\/\" \/>\n<meta property=\"og:locale\" content=\"es_MX\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"INVENTORY - TEQUILA TRADING PARTNERS\" \/>\n<meta property=\"og:description\" content=\"\u00a0 Barrel Aging Status by Batch Batch Entry Date Current Date Days in Aging Months in Aging Barrels Liters L-075 2024-08-17 \u00a0 \u00a0 \u00a0 152 34256 L-080 2024-08-23 \u00a0 \u00a0 \u00a0 64 14325 L-081 2024-09-23 \u00a0 \u00a0 \u00a0 124 24167 L-082 2024-09-24 \u00a0 \u00a0 \u00a0 123 23911 L-083 2024-09-27 \u00a0 [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tequilatradingpartners.com\/es\/inventory\/\" \/>\n<meta property=\"og:site_name\" content=\"TEQUILA TRADING PARTNERS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/people\/Tequila-Trading-Partners\/100091366012253\/\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-07T17:05:46+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/tequilatradingpartners.com\\\/inventory\\\/\",\"url\":\"https:\\\/\\\/tequilatradingpartners.com\\\/inventory\\\/\",\"name\":\"INVENTORY - TEQUILA TRADING PARTNERS\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/tequilatradingpartners.com\\\/#website\"},\"datePublished\":\"2026-03-07T00:25:32+00:00\",\"dateModified\":\"2026-03-07T17:05:46+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/tequilatradingpartners.com\\\/inventory\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/tequilatradingpartners.com\\\/inventory\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/tequilatradingpartners.com\\\/inventory\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/tequilatradingpartners.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"INVENTORY\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/tequilatradingpartners.com\\\/#website\",\"url\":\"https:\\\/\\\/tequilatradingpartners.com\\\/\",\"name\":\"TEQUILA TRADING PARTNERS\",\"description\":\"TEQUILA TRADING PARTNERS\",\"publisher\":{\"@id\":\"https:\\\/\\\/tequilatradingpartners.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/tequilatradingpartners.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/tequilatradingpartners.com\\\/#organization\",\"name\":\"TEQUILA TRADING PARTNERS\",\"url\":\"https:\\\/\\\/tequilatradingpartners.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/tequilatradingpartners.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/tequilatradingpartners.com\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/cropped-cropped-R-TTP_single_blue_icon_round_Instagram_003-1-1.png\",\"contentUrl\":\"https:\\\/\\\/tequilatradingpartners.com\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/cropped-cropped-R-TTP_single_blue_icon_round_Instagram_003-1-1.png\",\"width\":511,\"height\":512,\"caption\":\"TEQUILA TRADING PARTNERS\"},\"image\":{\"@id\":\"https:\\\/\\\/tequilatradingpartners.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/people\\\/Tequila-Trading-Partners\\\/100091366012253\\\/\",\"https:\\\/\\\/www.instagram.com\\\/tequila_trading_partners\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"INVENTORY - TEQUILA TRADING PARTNERS","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/tequilatradingpartners.com\/es\/inventory\/","og_locale":"es_MX","og_type":"article","og_title":"INVENTORY - TEQUILA TRADING PARTNERS","og_description":"\u00a0 Barrel Aging Status by Batch Batch Entry Date Current Date Days in Aging Months in Aging Barrels Liters L-075 2024-08-17 \u00a0 \u00a0 \u00a0 152 34256 L-080 2024-08-23 \u00a0 \u00a0 \u00a0 64 14325 L-081 2024-09-23 \u00a0 \u00a0 \u00a0 124 24167 L-082 2024-09-24 \u00a0 \u00a0 \u00a0 123 23911 L-083 2024-09-27 \u00a0 [&hellip;]","og_url":"https:\/\/tequilatradingpartners.com\/es\/inventory\/","og_site_name":"TEQUILA TRADING PARTNERS","article_publisher":"https:\/\/www.facebook.com\/people\/Tequila-Trading-Partners\/100091366012253\/","article_modified_time":"2026-03-07T17:05:46+00:00","twitter_card":"summary_large_image","twitter_misc":{"Tiempo de lectura":"2 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/tequilatradingpartners.com\/inventory\/","url":"https:\/\/tequilatradingpartners.com\/inventory\/","name":"INVENTORY - TEQUILA TRADING PARTNERS","isPartOf":{"@id":"https:\/\/tequilatradingpartners.com\/#website"},"datePublished":"2026-03-07T00:25:32+00:00","dateModified":"2026-03-07T17:05:46+00:00","breadcrumb":{"@id":"https:\/\/tequilatradingpartners.com\/inventory\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tequilatradingpartners.com\/inventory\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/tequilatradingpartners.com\/inventory\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tequilatradingpartners.com\/"},{"@type":"ListItem","position":2,"name":"INVENTORY"}]},{"@type":"WebSite","@id":"https:\/\/tequilatradingpartners.com\/#website","url":"https:\/\/tequilatradingpartners.com\/","name":"TEQUILA TRADING PARTNERS","description":"TEQUILA TRADING PARTNERS","publisher":{"@id":"https:\/\/tequilatradingpartners.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tequilatradingpartners.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/tequilatradingpartners.com\/#organization","name":"TEQUILA TRADING PARTNERS","url":"https:\/\/tequilatradingpartners.com\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/tequilatradingpartners.com\/#\/schema\/logo\/image\/","url":"https:\/\/tequilatradingpartners.com\/wp-content\/uploads\/2026\/03\/cropped-cropped-R-TTP_single_blue_icon_round_Instagram_003-1-1.png","contentUrl":"https:\/\/tequilatradingpartners.com\/wp-content\/uploads\/2026\/03\/cropped-cropped-R-TTP_single_blue_icon_round_Instagram_003-1-1.png","width":511,"height":512,"caption":"TEQUILA TRADING PARTNERS"},"image":{"@id":"https:\/\/tequilatradingpartners.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/people\/Tequila-Trading-Partners\/100091366012253\/","https:\/\/www.instagram.com\/tequila_trading_partners"]}]}},"featured_media_urls":[],"_links":{"self":[{"href":"https:\/\/tequilatradingpartners.com\/es\/wp-json\/wp\/v2\/pages\/7269","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tequilatradingpartners.com\/es\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/tequilatradingpartners.com\/es\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/tequilatradingpartners.com\/es\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tequilatradingpartners.com\/es\/wp-json\/wp\/v2\/comments?post=7269"}],"version-history":[{"count":21,"href":"https:\/\/tequilatradingpartners.com\/es\/wp-json\/wp\/v2\/pages\/7269\/revisions"}],"predecessor-version":[{"id":7388,"href":"https:\/\/tequilatradingpartners.com\/es\/wp-json\/wp\/v2\/pages\/7269\/revisions\/7388"}],"wp:attachment":[{"href":"https:\/\/tequilatradingpartners.com\/es\/wp-json\/wp\/v2\/media?parent=7269"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}