Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
JSON Parse vs StructuredClone bigger object 2
(version: 1)
Comparses JSON.parse(JSON.stringify()) vs structuredClone on a bigger JSON object
Comparing performance of:
strucutredClone vs JSON.parse(JSON.stringify())
Created:
18 days ago
by:
Guest
Jump to the latest result
Script Preparation code:
var object = { "idPage": "3bd53e-8432-5681-ed8c-f4c7226d2e", "idApplication": "H6B7F8B35CC0346", "dsName": "OrdendeCompra", "dsDisplayName": "Orden de Compra", "dsDescription": "", "title": null, "url": null, "image": { "resolution": null, "type": null, "fileId": null, "publicLink": null }, "accessLevel": 0, "sourceCode": "const observer = new window.PerformanceObserver((list) => {\n for (const entry of list.getEntries()) {\n if (entry.name === 'first-contentful-paint') {\n console.timeEnd(\"paint\");\n // FCP event logic goes here\n observer.disconnect(); // Stop observing after FCP is recorded\n }\n }\n});\n\n// Start observing the paint entries\nobserver.observe({ type: 'paint', buffered: true });\n\n// This method is called after the page load, before any rendering\n //$d.getVariable(\"idPurchaseOrderInt\").setValue($d.getInput(\"id\").getValue());\nwindow.top?.logEndTime?.(false, \"Servidor + red hasta inicio de react\");\nfunction onInit() {\n console.timeEnd(\"onInit\");\n console.time(\"afterViewInit\");\n \n window.top?.logEndTime?.(false, \"Procesamiento previo al on init\"); //-> le restariamos el timpo del inico \n \n // const lang = $d.getCurrentUser().getLanguage();\n // const myvar = $d.getVariable(\"myvar\").getValue();\n \n\n $d.getVariable(\"entityTitle\").setValue($d.getEntity().getDescriptiveName());\n $d.getVariable(\"entityIcon\").setValue($d.getEntity().getIcon());\n $d.getVariable(\"entityDescription\").setValue($d.getEntity().getInstanceDescription());\n $d.getVariable(\"supplier\").setValue($d.getInput(\"supplier\").getValue());\n $d.getVariable(\"orderType\").setValue($d.getInput(\"purchaseOrderType\").getValue());\n $d.getVariable(\"orderDate\").setValue(formatDateDDMMYYYY($d.getInput(\"orderDate\").getValue()));\n $d.getVariable(\"deliveryDate\").setValue(formatDateDDMMYYYY($d.getInput(\"deliveryDate\").getValue()));\n \n \n if($d.getInput(\"id\").getValue()==null || $d.getInput(\"id\").getValue()==\"\" ){\n $d.getVariable(\"idPurchaseOrder\").setValue(1);\n }else{\n $d.getVariable(\"idPurchaseOrder\").setValue($d.getInput(\"id\").getValue());\n $d.getVariable(\"idPurchaseOrderInt\").setValue($d.getInput(\"id\").getValue());\n }\n\n loadEntityDescription();\n \n let activityNum = $d.getEntity().getCdActivity();\n\n if($d.getEntity().isExecutingCase()){\n $d.getLayout(\"btnProcesos\").setVisible(true);\n if (window.innerWidth <= 768) {\n $d.getLayout(\"btnProcesos_mobile\").setVisible(true);\n $d.getLayout(\"btnProcesos\").setVisible(false);\n }\n}\nif(!$d.getEntity().isExecutingCase()){\n if (window.innerWidth <= 768) {\n $d.getLayout(\"btnABM_mobile\").setVisible(true);\n $d.getLayout(\"btnABM\").setVisible(false);\n }\n}\n\n updateVisibilityByActivity(activityNum);\n\n window.top?.logEndTime?.(false, \"Procesamiento del on init\");\n}\n\n\n// This method is called after the page is rendered\nfunction afterViewInit() {\n console.timeEnd(\"afterViewInit\");\n console.time(\"paint\");\n \n applyNavSectionState();\n window.top?.logEndTime?.(true, \"Procesamiento hasta llegar al affter\"); // -> cuando termina y a veo algo \n\n}\n\n// This method is called when the page is about to be unloaded\nfunction beforeViewUnload() {\n\n}\nfunction formatDateDDMMYYYY(timestamp) {\n let d = new Date(timestamp);\n let dia = String(d.getDate()).padStart(2, '0');\n let mes = String(d.getMonth() + 1).padStart(2, '0');\n let anio = d.getFullYear();\n return dia + \"/\" + mes + \"/\" + anio;\n}\n\nfunction icon28_onClick(event) {\n console.log(\"genero impresion\");\n $d.getInput(\"pDF\").getDOMElement().click();\n}\n\nfunction aprobar_onClick(event) {\n document.querySelector('[data-test-id=\"aprobar-Aprobar\"]')?.click();\n}\n\nfunction corregir_onClick(event) {\n document.querySelector('[data-test-id=\"corregir-Corregir\"]')?.click();\n\n}\n\nfunction aceptar_onClick(event) {\n document.querySelector('[data-test-id=\"aceptar-Aceptar\"]')?.click();\n}\n\nfunction cancelar_onClick(event) {\n document.querySelector('[data-test-id=\"cancelar-Cancelar\"]')?.click();\n}\n\nfunction enviar_onClick(event) {\n document.querySelector('[data-test-id=\"enviar-Enviar\"]')?.click();\n}\n//btns mobile\nfunction aprobar2_onClick(event) {\n document.querySelector('[data-test-id=\"aprobar-Aprobar\"]')?.click();\n}\nfunction corregir2_onClick(event) {\n document.querySelector('[data-test-id=\"corregir-Corregir\"]')?.click();\n\n}\nfunction aceptar2_onClick(event) {\n document.querySelector('[data-test-id=\"aceptar-Aceptar\"]')?.click();\n}\nfunction cancelar2_onClick(event) {\n document.querySelector('[data-test-id=\"cancelar-Cancelar\"]')?.click();\n}\nfunction enviar2_onClick(event) {\n document.querySelector('[data-test-id=\"enviar-Enviar\"]')?.click();\n}\nfunction updateVisibilityByActivity(activityNum) {\n\n const activityItemsMap = {\n 3: ['item240', 'item241'],\n 6: ['item236', 'item239'],\n 2: ['item242'],\n 5: ['item240', 'item241'],\n };\n\n // Ocultar todos los tems controlados\n Object.values(activityItemsMap)\n .flat()\n .forEach(id => $d.getItem(id).setVisible(false));\n\n // Mostrar solo los correspondientes a la actividad actual\n if (activityItemsMap[activityNum]) {\n activityItemsMap[activityNum]\n .forEach(id => $d.getItem(id).setVisible(true));\n }\n}\nfunction loadEntityDescription(){\n \n let activityName = null;\n if ($d.getEntity().getCurrentActivity()) {\n activityName = $d.getEntity().getCurrentActivity().dsShortName;\n activityNumer = $d.getEntity().getCurrentActivity()?.cdActivity;\n }\n let idCurrentInstance = $d.getInput(\"id\").getValue();\n let isNotCreated = ((idCurrentInstance == null) || (idCurrentInstance == undefined));\n let prefix;\n if (isNotCreated) {\n prefix = \"Orden de Compra\";\n } else {\n prefix = \"Orden de Compra Nro: \" + $d.getInput(\"id\").getValue();\n }\n if (activityName) {\n $d.getVariable(\"entityDescription\").setValue(activityName +\" \" +prefix);\n } else {\n $d.getVariable(\"entityDescription\").setValue(prefix);\n }\n\n console.log(\"valor de entity description \",$d.getVariable(\"entityDescription\").getValue());\n\n}\n//side panel\nlet isNavCollapsed = window.innerWidth <= 1024;\nfunction applyNavSectionState() {\n\tdocument.querySelectorAll(\".i2, .i2_l4, .i_columna2\").forEach(el => {\n\t\tel.classList.toggle(\"hidden-toggle\", isNavCollapsed);\n\t});\n\n\tdocument.querySelectorAll(\".secciondenavegacin1\").forEach(section => {\n\t\tsection.classList.toggle(\"nav-collapsed\", isNavCollapsed);\n\t});\n\n\tdocument.querySelectorAll(\".icon1\").forEach(icon => {\n\t\ticon.classList.toggle(\"icon-rotated\", isNavCollapsed);\n\t});\n}\nfunction toggleNavSection() {\n\tisNavCollapsed = !isNavCollapsed;\n\tapplyNavSectionState();\n}\nfunction button2_onClick(event) {\n\ttoggleNavSection();\n}\n\nfunction icon1_onClick(event) {\n\ttoggleNavSection();\n}\n//tabs\nfunction menu_item6_onClick(event) {\n $d.getVariable(\"showInfo\").setValue(true);\n}\nfunction menu_item1_onClick_1(event) {\n\t$d.getVariable(\"showInfo\").setValue(false);\n\tsetTimeout(() => {\n\t\tapplyNavSectionState();\n\t}, 0);\n}\nfunction menu_item2_onClick_1(event) {\n\t$d.getVariable(\"showInfo\").setValue(false);\n\tsetTimeout(() => {\n\t\tapplyNavSectionState();\n\t}, 0);\n}\nfunction button11_onClick(event) {\n\tconsole.log(\"cancelo\");\n window.history.back();\n}\nfunction button8_onClick(event) {\n\tconsole.log(\"cancelo\");\n window.history.back();\n}\n//todo \nfunction button5_onClick(event) {\n\tstartCase('9c486fbd59b44ba9854b294d1a44e2b6');\n}\nfunction goTo(url){\n const nuSecHidden =window.top.document.getElementById(\"nuSecHidden\").value;\n const APPLICATION_ID =window.top.document.getElementById(\"app-deyel\").value;\n console.log(\"link finak-\"+url+'&nuSecHidden='+nuSecHidden+'&app-deyel='+APPLICATION_ID+'&isEmbed=false&APP');\n window.top.actualizarDiv(url+'&nuSecHidden='+nuSecHidden+'&app-deyel='+APPLICATION_ID+'&isEmbed=false&APP');\n}\nfunction goToPage(idPage){ \n goTo('SLPage?idPage='+idPage);\n}\nfunction startCase(idProcces){\n goTo('SLPlayActivityDispatcher?cdAsunto='+idProcces+'&cdProcess='+idProcces+'@|@1&button=new'); \n} \nfunction goToGrid(idForm){ \n goTo(\"SLGenericDocumentSearch?&cdDocumentNameHidden=\"+idForm);\n}\n//btn back solo en mobile\nfunction button10_onClick(event) {\n\t window.history.back();\n}", "globalStyles": ".layout9, .layout107 {\n overflow-y: auto !important;\n}\n.item34, .i2_l4 {\noverflow: hidden;\n}\n@media (max-width: 768px) {\n\t.layout9 {\n\t\toverflow: visible !important;\n\t}\nhtml body {\n\toverflow: auto !important;\n}\n.btnProcesos > div > div {\n\tposition: fixed !important;\n}\n.layout1 > div > div {\nposition: fixed !important;\t\n}\n}\n\n.container1 > div {\n\tz-index: 9999;\n}\n.layout45 {\n display: none;\n position: relative;\n z-index: 500 !important;\n}\n\n\n.secciondenavegacin1 > div {\n\toverflow-y: auto !important;\n}\n.BhzHN {\n gap: 0px !important;\n}\n\n.btnProcesos > div > div {\n\tposition: sticky !important;\n}\n\n.layout1 > div > div {\nposition: sticky !important;\t\n}\n\n.hidden-toggle {\n\tdisplay: none !important;\n}\n\n.secciondenavegacin1.nav-collapsed {\n\tpadding-right: 0px !important;\n}\n\n.secciondenavegacin1.nav-collapsed > div {\n\tpadding-right: 64px !important;\n}\nbody {\n\toverflow: hidden !important;\n}\n\n.icon1 {\n transition: transform 0.2s ease;\n}\n\n.icon1.icon-rotated {\n transform: rotate(180deg);\n}\n.GridHeaderTabs__StyledTab-bFIuRQ {\n\tdisplay: none !important;\n}\n#header-grid {\n\tbackground-color: #f8fafc !important;\n}\n.hTomxm.vendor {\n\tpadding: 0px 0px 24px !important;\n}\n.gKbDwo.vendor {\n\tpadding-top: 40px 0px 0px !important;\n}\n.fforKJ::after {\n\tborder-radius: 8px 8px 0px 0px !important;\n}", "params": [ { "uuid": "_idActivity", "id": "_idActivity", "name": "_idActivity", "type": "string", "defaultValue": null } ], "variables": [ { "uuid": "ba851-22-e731-f137-e35c0027be5", "id": "entityTitle", "name": "entityTitle", "type": "string", "initialValue": null }, { "uuid": "4cf3ad6-7cd6-730-21f7-82d22d14731b", "id": "entityDescription", "name": "entityDescription", "type": "string", "initialValue": null }, { "uuid": "4cf3ad6-7cd6-730-21f7-82d22d44731b", "id": "entityIcon", "name": "entityIcon", "type": "string", "initialValue": "deyel,icon-deyel_modelador-entidades" }, { "uuid": "ead71b2-17f0-20bd-41f5-68bed5d30e3", "id": "supplier", "name": "supplier", "type": "string", "initialValue": null }, { "uuid": "e53e38d-e06-46b4-ab04-4d26a4ea451d", "id": "orderType", "name": "orderType", "type": "string", "initialValue": null }, { "uuid": "bc55088-eb26-b5a8-50be-244f5dc62527", "id": "orderDate", "name": "orderDate", "type": "string", "initialValue": null }, { "uuid": "42df63-c6d3-608b-b55b-6480167d8b21", "id": "deliveryDate", "name": "deliveryDate", "type": "string", "initialValue": null }, { "uuid": "e6e42-8cab-1ac6-1a-fd82c28a781c", "id": "idPurchaseOrder", "name": "idPurchaseOrder", "type": "string", "initialValue": null }, { "uuid": "2bad86-56f3-5a8-b0ce-3bae1aa8af0", "id": "balanceDue", "name": "balanceDue", "type": "string", "initialValue": null }, { "uuid": "728e6aa-b5d5-acd0-a22e-b673584485", "id": "paymentDue", "name": "paymentDue", "type": "string", "initialValue": null }, { "uuid": "ed8ef75-825d-33ce-1cc5-fd4fd2223f8", "id": "billingPending", "name": "billingPending", "type": "string", "initialValue": null }, { "uuid": "ec15c0d-63ba-4c2-d1ab-cebb57b138e", "id": "showInfo", "name": "showInfo", "type": "boolean", "initialValue": "true" }, { "uuid": "01f5dc3-72aa-7c35-a754-383dd13e560", "id": "idPurchaseOrderInt", "name": "idPurchaseOrderInt", "type": "number", "initialValue": "1" }, { "uuid": "e606bb8-db41-14fa-7e44-13c61823c2f", "id": "showmobile", "name": "showmobile", "type": "boolean", "initialValue": "false" } ], "dataSources": [ { "uuid": "0561b8-6d27-c8c6-ff67-2e311d8761d5", "id": "Usuarios", "name": "Usuarios", "type": "FORM", "source": "UU0", "select": [ "dsFirstName", "dsEmail", "dsLastName", "cdUser" ], "count": 0, "filters": [], "order": null, "cache": false, "initialExecute": true }, { "uuid": "eed0db-283f-1a65-33f3-f24005b7a8b7", "id": "SelfPurchaseOrder", "name": "Self Purchase Order", "type": "FORM", "source": "ORDE1698431606", "select": [ "status", "purchaseOrderType", "supplier", "__supplier" ], "count": 0, "filters": [ { "code": "id", "operation": [ "eq" ], "value": [ "e6e42-8cab-1ac6-1a-fd82c28a781c" ], "type": "CONTEXT", "filterEmpty": false } ], "order": null, "cache": false, "initialExecute": true }, { "uuid": "fc8a737-c1d3-8222-cc06-57caf811c14d", "id": "indicadores", "name": "indicadores", "type": "RULE", "source": "getWidgetPurchaseOrder-1", "select": [ "balanceDue", "billingPending", "currency", "paymentDue" ], "count": 0, "filters": [ { "code": "id", "operation": [ "eq" ], "value": [ "e6e42-8cab-1ac6-1a-fd82c28a781c" ], "type": "CONTEXT", "filterEmpty": false } ], "order": null, "cache": false, "initialExecute": true }, { "uuid": "73533ac-ded6-5a80-ff84-dacabae78734", "id": "Recepciones", "name": "Recepciones", "type": "FORM", "source": "RECE1657307069", "select": [ "__ordenDeCompra", "receptionDate", "status", "__nRecepcion", "COUNT*", "__id", "currency", "__netPrice", "netPrice" ], "count": 0, "filters": [ { "code": "ordenDeCompra", "operation": [ "eq" ], "value": [ "01f5dc3-72aa-7c35-a754-383dd13e560" ], "type": "CONTEXT", "filterEmpty": false } ], "order": null, "cache": false, "initialExecute": true }, { "uuid": "7e02471-f06c-e524-6267-01fb6f64ffc", "id": "Comprobantes", "name": "Comprobantes", "type": "FORM", "source": "COMP1659651803", "select": [ "status", "__ordenDeCompra", "COUNT*", "__numeroComprobante", "fechaComprobante", "__id", "moneda", "__netPrice", "netPrice" ], "count": 0, "filters": [ { "code": "ordenDeCompra", "operation": [ "eq" ], "value": [ "01f5dc3-72aa-7c35-a754-383dd13e560" ], "type": "CONTEXT", "filterEmpty": false } ], "order": null, "cache": false, "initialExecute": true }, { "uuid": "a1af5a8-1f-57a6-5506-31ab3f46d04", "id": "OrdenDePago", "name": "OrdenDePago", "type": "RULE", "source": "getPaymentOrdenFromPurchaseOrder-1", "select": [ "cantidad", "fechaPago", "idOP", "monto", "status" ], "count": 0, "filters": [ { "code": "idOc", "operation": [ "eq" ], "value": [ "01f5dc3-72aa-7c35-a754-383dd13e560" ], "type": "CONTEXT", "filterEmpty": false } ], "order": { "code": "idOP", "order": "ASC" }, "cache": false, "initialExecute": true } ], "linkDependencies": { "b4dc042-f242-4bc-8711-ab83e14e1e": { "id": "b4dc042-f242-4bc-8711-ab83e14e1e", "idElement": "b108c84-7fb-81dd-f370-af78ee162a37", "link": { "type": "ENTITY", "idObject": "176717", "operation": "SHOW", "params": [], "layout": null, "finalLink": null } }, "0bcfcf-ac75-30a-f2f1-cc66ca556b": { "id": "0bcfcf-ac75-30a-f2f1-cc66ca556b", "idElement": "d20710d-fe3-be1-7d1c-070ef8da661", "link": { "type": "ENTITY", "idObject": "902028", "operation": "SHOW", "params": [], "layout": null, "finalLink": null } }, "70b58fe-44f4-c71-ff7-0b5e2805bd7": { "id": "70b58fe-44f4-c71-ff7-0b5e2805bd7", "idElement": "1dd625b-eec-1a6a-fc2b-280a40e0e28", "link": { "type": "ENTITY", "idObject": "030400", "operation": "SHOW", "params": [], "layout": null, "finalLink": null } }, "f8e3d3-4256-17e0-0012-c83d2106e47": { "id": "f8e3d3-4256-17e0-0012-c83d2106e47", "idElement": "071ffc-5307-c04-e416-66b825c1f32d", "link": { "type": "ENTITY", "idObject": "902028", "operation": "SHOW", "params": [], "layout": null, "finalLink": null } }, "4c357c-ccdd-5b03-fff0-4adca10288": { "id": "4c357c-ccdd-5b03-fff0-4adca10288", "idElement": "c83d45f-06e0-1426-deb2-a5da70f036a4", "link": { "type": "ENTITY", "idObject": "717019", "operation": "SHOW", "params": [], "layout": null, "finalLink": null } }, "ac0040-58e-dc07-5ccf-c07df5c83780": { "id": "ac0040-58e-dc07-5ccf-c07df5c83780", "idElement": "e3ca60-54-d084-76f7-2cbe2778ee3", "link": { "type": "PROCESS", "idObject": "9c486fbd59b44ba9854b294d1a44e2b6", "operation": "START_CASE", "params": [], "layout": null, "finalLink": null } } }, "buildingBlocks": [], "isBuildingBlock": false, "isReferable": true, "images": { "6e5dca4-bcab-0744-3fec-424213cf0e1d": { "resolution": null, "type": "LINK", "fileId": "&cdRepositorio=PS3&dsFilename=202603/12/4a815d2c30184d54a7d9e40ef99ec433.png&dsOriginalFilename=0 (1).png", "publicLink": "https://deyel-pub-sto-o.s3.us-east-2.amazonaws.com/NoProduction1-2/vendor2/202603/12/4a815d2c30184d54a7d9e40ef99ec433.png" }, "2a14ae1-aff2-84b5-e01-eddbe13bd434": { "resolution": null, "type": "LINK", "fileId": "&cdRepositorio=PS3&dsFilename=202603/12/035d50ccaaf34222abe06829832a7def.png&dsOriginalFilename=1 (1).png", "publicLink": "https://deyel-pub-sto-o.s3.us-east-2.amazonaws.com/NoProduction1-2/vendor2/202603/12/035d50ccaaf34222abe06829832a7def.png" }, "6865a2a-ebde-0b25-a718-844782123e2c": { "resolution": null, "type": "LINK", "fileId": "&cdRepositorio=PS3&dsFilename=202603/12/102287724bf2476fb65bd4177cf38aca.png&dsOriginalFilename=2 (1).png", "publicLink": "https://deyel-pub-sto-o.s3.us-east-2.amazonaws.com/NoProduction1-2/vendor2/202603/12/102287724bf2476fb65bd4177cf38aca.png" }, "c07117d-b31b-048b-ff3-268a1c0ca53": { "resolution": null, "type": "LINK", "fileId": "&cdRepositorio=PS3&dsFilename=202603/12/6559c0fe1ec2473fb07f9493055ff600.png&dsOriginalFilename=3 (1).png", "publicLink": "https://deyel-pub-sto-o.s3.us-east-2.amazonaws.com/NoProduction1-2/vendor2/202603/12/6559c0fe1ec2473fb07f9493055ff600.png" }, "417fac1-6315-5720-3af7-111c5cbf6016": { "resolution": null, "type": "LINK", "fileId": "&cdRepositorio=PS3&dsFilename=202603/12/a686dbcf426642a2b5c3b4bad531984c.png&dsOriginalFilename=4 (1).png", "publicLink": "https://deyel-pub-sto-o.s3.us-east-2.amazonaws.com/NoProduction1-2/vendor2/202603/12/a686dbcf426642a2b5c3b4bad531984c.png" }, "27cc186-311a-22aa-868-cdf68d43c3b": { "resolution": null, "type": "LINK", "fileId": "&cdRepositorio=PS3&dsFilename=202603/12/22dff22ee18945b6933a025cc9d78da5.png&dsOriginalFilename=5 (1).png", "publicLink": "https://deyel-pub-sto-o.s3.us-east-2.amazonaws.com/NoProduction1-2/vendor2/202603/12/22dff22ee18945b6933a025cc9d78da5.png" } }, "translatable": false, "translatedObjects": {}, "cdState": -1, "events": { "beforeViewUnload": "beforeViewUnload", "onInit": "onInit", "afterViewInit": "afterViewInit" }, "lsPermissionAssignment": [], "cdUserLastUpdate": null, "dtLastUpdate": null, "cdUserStore": null, "dtStore": null, "ssr": false, "elements": { "root": [ "a257b74-5703-7225-353-e8da4eeb5a", "067b2ed-dfbf-b6c8-88a5-4d278a233fa", "5fbaf2-d867-1ff1-1a3-6c8c2f0321d4", "ad743cc-d33b-feb-a3e7-5dbaae77ddd6", "b0a3c1b-acbb-3b3-f22e-2b60f1f660", "45a3a66-6822-d818-ebc-ecaadbf34ca", "1501be4-b05-d15-0144-5ca30a03ded", "d2c55ed-01dc-84-7803-2e8a7bd25bfb", "8e4e1c6-1c76-233f-ecf-3cecfe0deb" ], "components": { "1078d2c-5022-572e-d0a-e6b3584a25c": { "layout": { "DESKTOP": { "structure": { "size": { "width": "12%", "maxWidth": "unset" }, "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "start", "marginBottom": 0, "position": "relative", "marginTop": "20px", "marginLeft": "17%" } }, "style": { "font": { "family": "$font.secondary" }, "label": { "family": "$font.secondary" }, "placeholder": { "opacity": "ff" }, "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "padding": { "0": "$", "1": "t", "2": "h", "3": "e", "4": "m", "5": "e", "6": "_", "7": "i", "8": "n", "9": "p", "10": "u", "11": "t", "12": "_", "13": "p", "14": "a", "15": "d", "16": "d", "17": "i", "18": "n", "19": "g", "20": "/", "21": "p", "22": "a", "23": "d", "24": "d", "25": "i", "26": "n", "27": "g", "paddingLabel": "5px", "paddingRight": "7px", "paddingLeft": "7px" }, "background": { "color": "#ffffff", "opacity": "ff" }, "icons": { "leadingIconColor": "$color.senary.color", "trailingIconColor": "$color.senary.color" }, "border": { "bottom": { "opacity": "64" } }, "radius": { "topLeft": "3px", "topRight": "3px", "bottomRight": "0px", "bottomLeft": "0px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "#ffffff", "opacity": "ff", "type": "gradient" }, "border": { "top": { "width": "1px" }, "right": { "width": "1px" }, "bottom": { "width": "2px", "color": "$color.senary.color", "opacity": "80" }, "left": { "width": "1px" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "#ff0000", "opacity": "80" } } } }, "visible": false } }, "subtype": "datetime", "design": "datetime", "name": "dtStore", "subitems": [], "id": "dtStore", "type": "input", "uuid": "1078d2c-5022-572e-d0a-e6b3584a25c", "relatedAttribute": {}, "events": {}, "props": { "contentType": "localDatetime", "helpText": "", "cantModifyField": true, "prefix": "", "sufix": "", "description": "", "placeholder": "", "label": "Fecha Creacion", "value": { "type": "LITERAL", "props": {} }, "cantDeleteField": true } }, "1501be4-b05-d15-0144-5ca30a03ded": { "layout": { "DESKTOP": { "style": { "padding": { "paddingTop": "0px", "paddingRight": "0px", "paddingBottom": "0px", "paddingLeft": "0px" }, "background": { "color": "#ffffff", "url": "" }, "border": { "top": { "color": "$color.senary.color" }, "right": { "color": "$color.senary.color" }, "bottom": { "color": "$color.senary.color" }, "left": { "color": "$color.senary.color" } }, "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "radius": { "bottomLeft": "0px", "bottomRight": "0px", "topLeft": "0px", "topRight": "0px" } }, "visible": false, "structure": { "size": { "minHeight": "85vh", "maxHeight": "unset", "width": "100%", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "section", "name": "section1", "subitems": [ "a51080-7fde-be8-6e-e48cea43db2", "81de13-fda-3454-52b-2628856ec130", "fa51aee-fb3d-120e-4fda-112d1ab837fc", "f17e03-cd3e-f13f-e4b-c1fcc015113", "1078d2c-5022-572e-d0a-e6b3584a25c", "5ac3b7-d6bc-ae61-1376-03f3a44470e8" ], "id": "section1", "type": "section", "uuid": "1501be4-b05-d15-0144-5ca30a03ded", "events": {} }, "6ec4816-2747-cba7-8783-c215b5601da7": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "opacity": "ff", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": false, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item3", "subitems": [ "82eb65-88d7-f3-e471-75571e181de8" ], "id": "item3", "type": "item", "uuid": "6ec4816-2747-cba7-8783-c215b5601da7", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": { "view": [ { "formActions": [ "ALL" ], "idTarget": "item3", "new": false, "expression": { "ast": { "sourceType": "script", "range": [ 0, 25 ], "type": "Program", "body": [ { "expression": { "callee": { "name": "OR", "range": [ 0, 2 ], "type": "ExcelFunctionIdentifier" }, "range": [ 0, 25 ], "arguments": [ { "callee": { "name": "isDelete", "range": [ 3, 11 ], "type": "ExcelFunctionIdentifier" }, "range": [ 3, 13 ], "arguments": [], "type": "CallExpression" }, { "callee": { "name": "isShow", "range": [ 16, 22 ], "type": "ExcelFunctionIdentifier" }, "range": [ 16, 24 ], "arguments": [], "type": "CallExpression" } ], "type": "CallExpression" }, "range": [ 0, 25 ], "type": "ExpressionStatement" } ] }, "value": "OR(isDelete() , isShow())" }, "formName": "ORDE1698431606", "action": "view", "readOnly": false, "tpRule": "VIEW", "enabled": true, "expressionParser": "OR(isDelete() , isShow())", "order": -1 } ] } } }, "fa51aee-fb3d-120e-4fda-112d1ab837fc": { "relationConfig": { "search": true, "idKey": "cdUser", "dsName": "cdUserStore", "cdForm": "UU0", "show": true, "idObject": "UU0", "lsFilters": [], "type": "ENTITY", "idRelation": "10d7b65d4dad7114a3e5eaa352c2" }, "type": "input", "uuid": "fa51aee-fb3d-120e-4fda-112d1ab837fc", "relatedAttribute": {}, "props": { "maxPerList": 5, "helpText": "", "prefix": "", "description": "", "label": "Usuario Creacion", "disabledMap": {}, "perPage": 20, "cantModifyField": true, "sufix": "", "placeholder": "", "value": { "type": "LITERAL", "props": { "value": "" } }, "cantDeleteField": true }, "layout": { "DESKTOP": { "structure": { "size": { "width": "12%", "maxWidth": "unset" }, "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "start", "marginBottom": 0, "position": "relative", "marginTop": "20px", "marginLeft": "47%" } }, "style": { "font": { "family": "$font.secondary" }, "label": { "family": "$font.secondary" }, "placeholder": { "opacity": "ff" }, "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "padding": { "0": "$", "1": "t", "2": "h", "3": "e", "4": "m", "5": "e", "6": "_", "7": "i", "8": "n", "9": "p", "10": "u", "11": "t", "12": "_", "13": "p", "14": "a", "15": "d", "16": "d", "17": "i", "18": "n", "19": "g", "20": "/", "21": "p", "22": "a", "23": "d", "24": "d", "25": "i", "26": "n", "27": "g", "paddingLabel": "5px", "paddingRight": "7px", "paddingLeft": "7px" }, "background": { "color": "#ffffff", "opacity": "ff" }, "icons": { "leadingIconColor": "$color.senary.color", "trailingIconColor": "$color.senary.color" }, "border": { "bottom": { "opacity": "64" } }, "radius": { "topLeft": "3px", "topRight": "3px", "bottomRight": "0px", "bottomLeft": "0px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "#ffffff", "opacity": "ff", "type": "gradient" }, "border": { "top": { "width": "1px" }, "right": { "width": "1px" }, "bottom": { "width": "2px", "color": "$color.senary.color", "opacity": "80" }, "left": { "width": "1px" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "#ff0000", "opacity": "80" } } } }, "visible": false } }, "subtype": "text", "design": "text", "name": "cdUserStore", "subitems": [], "id": "cdUserStore", "events": {} }, "5ac3b7-d6bc-ae61-1376-03f3a44470e8": { "relationConfig": { "type": "WITHOUT_RELATION" }, "type": "input", "uuid": "5ac3b7-d6bc-ae61-1376-03f3a44470e8", "relatedAttribute": {}, "props": { "contentType": "integer", "helpText": "", "cantModifyField": true, "prefix": "", "sufix": "", "description": "", "placeholder": "", "label": "Identificador", "value": { "type": "LITERAL", "props": { "value": "" } }, "cantDeleteField": true }, "layout": { "DESKTOP": { "structure": { "size": { "width": "12%" }, "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "start", "marginBottom": 0, "position": "relative", "marginTop": "20px", "marginLeft": "2%" } }, "style": { "font": { "family": "$font.secondary", "align": "left" }, "label": { "family": "$font.secondary" }, "placeholder": { "opacity": "ff" }, "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "padding": { "0": "$", "1": "t", "2": "h", "3": "e", "4": "m", "5": "e", "6": "_", "7": "i", "8": "n", "9": "p", "10": "u", "11": "t", "12": "_", "13": "p", "14": "a", "15": "d", "16": "d", "17": "i", "18": "n", "19": "g", "20": "/", "21": "p", "22": "a", "23": "d", "24": "d", "25": "i", "26": "n", "27": "g", "paddingLabel": "5px", "paddingRight": "7px", "paddingLeft": "7px" }, "background": { "color": "#ffffff", "opacity": "ff" }, "icons": { "leadingIconColor": "$color.senary.color", "trailingIconColor": "$color.senary.color" }, "border": { "bottom": { "opacity": "64" } }, "radius": { "topLeft": "3px", "topRight": "3px", "bottomRight": "0px", "bottomLeft": "0px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "#ffffff", "opacity": "ff", "type": "gradient" }, "border": { "top": { "width": "1px" }, "right": { "width": "1px" }, "bottom": { "width": "2px", "color": "$color.senary.color", "opacity": "80" }, "left": { "width": "1px" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "#ff0000", "opacity": "80" } } } }, "visible": true } }, "subtype": "number", "design": "number", "name": "identificador", "subitems": [], "id": "id", "events": {} }, "a51080-7fde-be8-6e-e48cea43db2": { "relationConfig": { "search": true, "idKey": "cdUser", "dsName": "cdInstanceOwner", "cdForm": "UU0", "show": true, "idObject": "UU0", "lsFilters": [], "type": "ENTITY", "idRelation": "f805260752ca11e37d6b1bb86240" }, "type": "input", "uuid": "a51080-7fde-be8-6e-e48cea43db2", "relatedAttribute": {}, "props": { "maxPerList": 5, "helpText": "", "perPage": 20, "prefix": "", "sufix": "", "description": "", "placeholder": "", "label": "Propietario de Instancia", "value": { "type": "LITERAL", "props": { "value": "" } }, "cantDeleteField": true }, "layout": { "DESKTOP": { "structure": { "size": { "width": "12%", "maxWidth": "unset" }, "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "start", "marginBottom": 0, "position": "relative", "marginTop": "20px", "marginLeft": "77%" } }, "style": { "font": { "family": "$font.secondary" }, "label": { "family": "$font.secondary" }, "placeholder": { "opacity": "ff" }, "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "padding": { "0": "$", "1": "t", "2": "h", "3": "e", "4": "m", "5": "e", "6": "_", "7": "i", "8": "n", "9": "p", "10": "u", "11": "t", "12": "_", "13": "p", "14": "a", "15": "d", "16": "d", "17": "i", "18": "n", "19": "g", "20": "/", "21": "p", "22": "a", "23": "d", "24": "d", "25": "i", "26": "n", "27": "g", "paddingLabel": "5px", "paddingRight": "7px", "paddingLeft": "7px" }, "background": { "color": "#ffffff", "opacity": "ff" }, "icons": { "leadingIconColor": "$color.senary.color", "trailingIconColor": "$color.senary.color" }, "border": { "bottom": { "opacity": "64" } }, "radius": { "topLeft": "3px", "topRight": "3px", "bottomRight": "0px", "bottomLeft": "0px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "#ffffff", "opacity": "ff", "type": "gradient" }, "border": { "top": { "width": "1px" }, "right": { "width": "1px" }, "bottom": { "width": "2px", "color": "$color.senary.color", "opacity": "80" }, "left": { "width": "1px" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "#ff0000", "opacity": "80" } } } }, "visible": false } }, "subtype": "text", "design": "text", "name": "instanceOwner", "subitems": [], "id": "cdInstanceOwner", "events": {}, "modifiedName": true }, "5b40820-3e3e-e1a5-ea22-6f5715d51b8": { "modifiedName": false, "type": "button", "uuid": "5b40820-3e3e-e1a5-ea22-6f5715d51b8", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Aceptar" } }, "rules": { "view": [] } }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "pointer" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "Crear", "subitems": [], "id": "Crear", "modifiedId": false, "events": {}, "hyperLink": { "link": { "type": "ENTITY", "operation": "CREATE" }, "showLoading": true, "destinityType": "_self" } }, "81de13-fda-3454-52b-2628856ec130": { "relationConfig": { "search": true, "idKey": "cdUser", "dsName": "cdUserLastUpdate", "cdForm": "UU0", "show": true, "idObject": "UU0", "lsFilters": [], "type": "ENTITY", "idRelation": "ad5e3d131e37a5ffb76377d2e66e2" }, "type": "input", "uuid": "81de13-fda-3454-52b-2628856ec130", "relatedAttribute": {}, "props": { "maxPerList": 5, "helpText": "", "prefix": "", "description": "", "label": "Usuario Ultima Modificacion", "disabledMap": {}, "perPage": 20, "cantModifyField": true, "sufix": "", "placeholder": "", "value": { "type": "LITERAL", "props": { "value": "" } }, "cantDeleteField": true }, "layout": { "DESKTOP": { "structure": { "size": { "width": "12%", "maxWidth": "unset" }, "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "start", "marginBottom": 0, "position": "relative", "marginTop": "20px", "marginLeft": "62%" } }, "style": { "font": { "family": "$font.secondary" }, "label": { "family": "$font.secondary" }, "placeholder": { "opacity": "ff" }, "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "padding": { "0": "$", "1": "t", "2": "h", "3": "e", "4": "m", "5": "e", "6": "_", "7": "i", "8": "n", "9": "p", "10": "u", "11": "t", "12": "_", "13": "p", "14": "a", "15": "d", "16": "d", "17": "i", "18": "n", "19": "g", "20": "/", "21": "p", "22": "a", "23": "d", "24": "d", "25": "i", "26": "n", "27": "g", "paddingLabel": "5px", "paddingRight": "7px", "paddingLeft": "7px" }, "background": { "color": "#ffffff", "opacity": "ff" }, "icons": { "leadingIconColor": "$color.senary.color", "trailingIconColor": "$color.senary.color" }, "border": { "bottom": { "opacity": "64" } }, "radius": { "topLeft": "3px", "topRight": "3px", "bottomRight": "0px", "bottomLeft": "0px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "#ffffff", "opacity": "ff", "type": "gradient" }, "border": { "top": { "width": "1px" }, "right": { "width": "1px" }, "bottom": { "width": "2px", "color": "$color.senary.color", "opacity": "80" }, "left": { "width": "1px" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "#ff0000", "opacity": "80" } } } }, "visible": false } }, "subtype": "text", "design": "text", "name": "cdUserLastUpdate", "subitems": [], "id": "cdUserLastUpdate", "events": {} }, "b457fe-ca8b-0ad2-d448-aea62db737b": { "modifiedName": true, "type": "layout", "uuid": "b457fe-ca8b-0ad2-d448-aea62db737b", "props": { "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "isExecutingCase() == false", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "BinaryExpression", "operator": "==", "left": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isExecutingCase", "range": [ 0, 15 ] }, "arguments": [], "range": [ 0, 17 ] }, "right": { "type": "Literal", "value": false, "raw": "false", "range": [ 21, 26 ] }, "range": [ 0, 26 ] }, "range": [ 0, 26 ] } ], "sourceType": "script", "range": [ 0, 26 ] } }, "readOnly": false, "expressionParser": "isExecutingCase() == false", "idTarget": "layout1", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false } ] } }, "layout": { "DESKTOP": { "style": { "gap": "8px", "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "padding": { "paddingTop": "8px", "paddingRight": "8px", "paddingBottom": "8px", "paddingLeft": "8px" }, "background": { "color": "$color.tertiary.color", "opacity": "$color.tertiary.opacity", "url": "" }, "shadow": { "y": "5px", "blur": "5px", "spread": "5px", "opacity": "0c" }, "radius": { "topRight": "8px", "topLeft": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" } }, "visible": false, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "alignSelf": "end", "justifySelf": "end", "position": "relative", "marginBottom": 0, "marginRight": "40px" } } }, "TABLET": { "structure": { "position": { "marginRight": "5vw" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "gap": "12px", "justifyContent": "end" }, "structure": { "position": { "justifySelf": "center", "marginRight": "0vw", "marginBottom": "0px" }, "size": { "width": "100vw" } } } }, "subtype": "normal", "design": "row", "name": "layout1botonesABM", "subitems": [ "7c4e5f1-de34-7c3e-54e4-fb52c614c35", "6ec4816-2747-cba7-8783-c215b5601da7", "7c45aa0-c522-1aee-ba20-d516726f806", "8fa4064-64dd-7581-22f5-06107a57ecb", "36cdd1e-3b8-52ad-252a-c21240860c13", "b704d80-5f6-533d-24bf-255f3c208d25" ], "id": "layout1", "modifiedId": false, "events": {}, "hyperLink": { "destinityType": "_self" } }, "f17e03-cd3e-f13f-e4b-c1fcc015113": { "layout": { "DESKTOP": { "structure": { "size": { "width": "12%", "maxWidth": "unset" }, "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "start", "marginBottom": 0, "position": "relative", "marginTop": "20px", "marginLeft": "32%" } }, "style": { "font": { "family": "$font.secondary" }, "label": { "family": "$font.secondary" }, "placeholder": { "opacity": "ff" }, "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "padding": { "0": "$", "1": "t", "2": "h", "3": "e", "4": "m", "5": "e", "6": "_", "7": "i", "8": "n", "9": "p", "10": "u", "11": "t", "12": "_", "13": "p", "14": "a", "15": "d", "16": "d", "17": "i", "18": "n", "19": "g", "20": "/", "21": "p", "22": "a", "23": "d", "24": "d", "25": "i", "26": "n", "27": "g", "paddingLabel": "5px", "paddingRight": "7px", "paddingLeft": "7px" }, "background": { "color": "#ffffff", "opacity": "ff" }, "icons": { "leadingIconColor": "$color.senary.color", "trailingIconColor": "$color.senary.color" }, "border": { "bottom": { "opacity": "64" } }, "radius": { "topLeft": "3px", "topRight": "3px", "bottomRight": "0px", "bottomLeft": "0px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "#ffffff", "opacity": "ff", "type": "gradient" }, "border": { "top": { "width": "1px" }, "right": { "width": "1px" }, "bottom": { "width": "2px", "color": "$color.senary.color", "opacity": "80" }, "left": { "width": "1px" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "#ff0000", "opacity": "80" } } } }, "visible": false } }, "subtype": "datetime", "design": "datetime", "name": "dtLastUpdate", "subitems": [], "id": "dtLastUpdate", "type": "input", "uuid": "f17e03-cd3e-f13f-e4b-c1fcc015113", "relatedAttribute": {}, "events": {}, "props": { "contentType": "localDatetime", "helpText": "", "cantModifyField": true, "prefix": "", "sufix": "", "description": "", "placeholder": "", "label": "Fecha Ultima Modificacion", "value": { "type": "LITERAL", "props": {} }, "cantDeleteField": true } }, "acbe72-44be-a7a-d04e-a58cf4777e02": { "modifiedName": false, "type": "button", "uuid": "acbe72-44be-a7a-d04e-a58cf4777e02", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Modificar" } }, "rules": { "view": [] } }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "pointer" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "Modificar", "subitems": [], "id": "Modificar", "modifiedId": false, "events": {}, "hyperLink": { "link": { "type": "ENTITY", "operation": "MODIFY" }, "showLoading": true, "destinityType": "_self" } }, "7c45aa0-c522-1aee-ba20-d516726f806": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": false, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item1", "subitems": [ "5b40820-3e3e-e1a5-ea22-6f5715d51b8" ], "id": "item1", "type": "item", "uuid": "7c45aa0-c522-1aee-ba20-d516726f806", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": { "view": [ { "formActions": [ "ALL" ], "idTarget": "item1", "new": false, "expression": { "ast": { "sourceType": "script", "range": [ 0, 10 ], "type": "Program", "body": [ { "expression": { "callee": { "name": "isCreate", "range": [ 0, 8 ], "type": "ExcelFunctionIdentifier" }, "range": [ 0, 10 ], "arguments": [], "type": "CallExpression" }, "range": [ 0, 10 ], "type": "ExpressionStatement" } ] }, "value": "isCreate()" }, "formName": "ORDE1698431606", "action": "view", "readOnly": false, "tpRule": "VIEW", "enabled": true, "expressionParser": "isCreate()", "order": -1 } ] } } }, "root": { "uuid": "root", "id": "root", "name": "root", "type": "root", "subtype": "normal", "design": "root", "subitems": [], "layout": { "DESKTOP": { "style": { "background": { "url": "" }, "tooltip": { "border": { "color": "$color.contenedorborde.color", "width": "1px", "style": "solid", "opacity": "$color.contenedorborde.opacity", "radius": "0px" }, "padding": "0px", "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" }, "position": "top", "font": { "spacing": "0px", "size": "13px", "weight": "400", "family": "Roboto" } } }, "structure": { "size": { "width": "100%", "height": "auto" }, "position": {} }, "visible": true } } }, "36cdd1e-3b8-52ad-252a-c21240860c13": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "opacity": "ff", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": false, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item2", "subitems": [ "acbe72-44be-a7a-d04e-a58cf4777e02" ], "id": "item2", "type": "item", "uuid": "36cdd1e-3b8-52ad-252a-c21240860c13", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "isShow()", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isShow", "range": [ 0, 6 ] }, "arguments": [], "range": [ 0, 8 ] }, "range": [ 0, 8 ] } ], "sourceType": "script", "range": [ 0, 8 ] } }, "readOnly": false, "expressionParser": "isShow()", "idTarget": "item2", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false } ] } } }, "82eb65-88d7-f3-e471-75571e181de8": { "modifiedName": false, "type": "button", "uuid": "82eb65-88d7-f3-e471-75571e181de8", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Eliminar" } }, "rules": { "view": [] } }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "pointer" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "Eliminar", "subitems": [], "id": "Eliminar", "modifiedId": false, "events": {}, "hyperLink": { "link": { "type": "ENTITY", "operation": "DELETE" }, "showLoading": true, "destinityType": "_self" } }, "b1b5ac-e712-3606-128-d4f662e17b": { "uuid": "b1b5ac-e712-3606-128-d4f662e17b", "id": "l2", "name": "l2", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "835fe87-8528-e3ab-f232-0fcc8eb5542", "acca58-b737-11d-73c5-2afd50f55d4", "7f4b68-53dd-8102-0f12-a68c8c27fa3" ], "layout": { "DESKTOP": { "style": { "regular": { "padding": { "paddingTop": "18px", "paddingRight": "64px", "paddingLeft": "64px" }, "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" }, "shadow": { "y": "5px", "blur": "10px", "spread": "5px", "opacity": "0c" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "TABLET": { "style": { "regular": { "padding": { "paddingTop": "12px", "paddingRight": "12px", "paddingLeft": "12px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "c282ea-58db-7cb-b537-3ffa151c1f32": { "uuid": "c282ea-58db-7cb-b537-3ffa151c1f32", "id": "layout10", "name": "layout10", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "610bf74-72e-31c1-dab5-622caa0420ec", "c38361a-c6e3-b80e-f51-4d7cdd72348", "13d33b7-b8e0-ae4a-4c74-4d38b86ae77" ], "layout": { "DESKTOP": { "style": { "gap": "8px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } }, "MOBILE": { "visible": true } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "610bf74-72e-31c1-dab5-622caa0420ec": { "uuid": "610bf74-72e-31c1-dab5-622caa0420ec", "id": "item21", "name": "item21", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "dd735d0-141-ed4a-ed26-856d23456da6", "46cef06-0ca-10c2-4ae0-fa0fd1a07c18" ], "layout": { "DESKTOP": { "style": { "regular": { "background": { "color": "$color.tertiary.color" }, "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": false }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "46cef06-0ca-10c2-4ae0-fa0fd1a07c18": { "uuid": "46cef06-0ca-10c2-4ae0-fa0fd1a07c18", "id": "icon2", "name": "icon2", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "12px", "height": "12px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "color": { "color": "$color.tertiary.color", "opacity": "$color.tertiary.opacity" }, "cursor": "pointer" } } }, "props": { "value": { "props": { "value": { "type": "fontawesome", "value": [ "far", "envelope" ] } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_modal", "link": { "operation": "SEND_EMAIL", "type": "ENTITY" }, "modalSize": { "x": "md", "y": "70vh" } }, "modifiedName": false, "modifiedId": false }, "835fe87-8528-e3ab-f232-0fcc8eb5542": { "uuid": "835fe87-8528-e3ab-f232-0fcc8eb5542", "id": "item35", "name": "item35", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "ab320a-5e5d-87a2-171a-4b28457ad3a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } }, "TABLET": { "visible": true } }, "hyperLink": { "destinityType": "_self" } }, "ab320a-5e5d-87a2-171a-4b28457ad3a": { "uuid": "ab320a-5e5d-87a2-171a-4b28457ad3a", "id": "layout19", "name": "layout19", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "a53bfe8-e8fa-c606-67b-3668b3dd1d1", "3380e03-e34f-dd36-83da-7440d51bfc64" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "gap": "4px" } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "a53bfe8-e8fa-c606-67b-3668b3dd1d1": { "uuid": "a53bfe8-e8fa-c606-67b-3668b3dd1d1", "id": "item36", "name": "item36", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "43651d6-4852-748d-bf48-345136bdd1cd" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "width": "80%" } } }, "MOBILE": { "structure": { "size": { "width": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "43651d6-4852-748d-bf48-345136bdd1cd": { "uuid": "43651d6-4852-748d-bf48-345136bdd1cd", "id": "layout44", "name": "layout44", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "a51232b-a813-e380-8850-26b48ce7328c", "3a3d24f-8ce-d56c-b737-8030b84c11e" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "TABLET": { "style": { "gap": "4px" } }, "MOBILE": { "style": { "props": { "type": "ROW" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "a51232b-a813-e380-8850-26b48ce7328c": { "uuid": "a51232b-a813-e380-8850-26b48ce7328c", "id": "item78", "name": "item78", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "528b71-5fe0-ab30-4c21-6bc1baac61e4", "1c2661b-102c-cdfd-e286-d687ef4163" ], "layout": { "DESKTOP": { "style": { "regular": { "background": { "color": "$color.primary.color" }, "radius": { "topRight": "8px", "topLeft": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "100%", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": false }, "TABLET": { "style": { "regular": { "padding": { "paddingTop": "4px", "paddingBottom": "4px", "paddingLeft": "4px", "paddingRight": "4px" } } } }, "MOBILE": { "style": { "regular": { "padding": { "paddingTop": "0px", "paddingRight": "0px", "paddingBottom": "0px", "paddingLeft": "0px" } } }, "visible": true } }, "hyperLink": { "destinityType": "_self" } }, "1c2661b-102c-cdfd-e286-d687ef4163": { "uuid": "1c2661b-102c-cdfd-e286-d687ef4163", "id": "icon10", "name": "icon10", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "color": { "color": "$color.tertiary.color", "opacity": "$color.tertiary.opacity" }, "cursor": "auto" } }, "MOBILE": { "structure": { "size": { "height": "8px", "width": "8px" } } } }, "props": { "value": { "props": { "value": { "type": "deyel", "value": "icon-deyel_chevron-left" } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "3a3d24f-8ce-d56c-b737-8030b84c11e": { "uuid": "3a3d24f-8ce-d56c-b737-8030b84c11e", "id": "item91", "name": "item91", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "b35af67-77a7-c14c-817-a5d124fa8cb" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "b35af67-77a7-c14c-817-a5d124fa8cb": { "uuid": "b35af67-77a7-c14c-817-a5d124fa8cb", "id": "layout46", "name": "layout46", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "eb2151a-c324-b651-3d1c-6ae01cf64e2", "7a5b23d-022-5d8e-cb1d-d2b03cdba06" ], "layout": { "DESKTOP": { "style": { "gap": "20px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "TABLET": { "style": { "gap": "12px" } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "7a5b23d-022-5d8e-cb1d-d2b03cdba06": { "uuid": "7a5b23d-022-5d8e-cb1d-d2b03cdba06", "id": "sectionView", "name": "sectionView", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "db1bc2-af70-c7e-0f-1fcd2bab7f" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": true } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true, "props": { "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "NOT(SI(OR(isCreate(), isUpdate()), true, false))", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "NOT", "range": [ 0, 3 ] }, "arguments": [ { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "SI", "range": [ 4, 6 ] }, "arguments": [ { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "OR", "range": [ 7, 9 ] }, "arguments": [ { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isCreate", "range": [ 10, 18 ] }, "arguments": [], "range": [ 10, 20 ] }, { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isUpdate", "range": [ 22, 30 ] }, "arguments": [], "range": [ 22, 32 ] } ], "range": [ 7, 33 ] }, { "type": "Literal", "value": true, "raw": "true", "range": [ 35, 39 ] }, { "type": "Literal", "value": false, "raw": "false", "range": [ 41, 46 ] } ], "range": [ 4, 47 ] } ], "range": [ 0, 48 ] }, "range": [ 0, 48 ] } ], "sourceType": "script", "range": [ 0, 48 ] } }, "readOnly": false, "idTarget": "sectionView", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false, "expressionParser": "NOT(SI(OR(isCreate(), isUpdate()), true, false))" } ] } } }, "db1bc2-af70-c7e-0f-1fcd2bab7f": { "uuid": "db1bc2-af70-c7e-0f-1fcd2bab7f", "id": "layout52", "name": "layout52", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "8e4b3fe-c3d1-16b-046a-c06b83524218", "d120c5c-4e1f-7bb-4de8-c778fb1c0c22", "a7083f-1e45-7efb-0443-b57be3d5f7c2" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "8e4b3fe-c3d1-16b-046a-c06b83524218": { "uuid": "8e4b3fe-c3d1-16b-046a-c06b83524218", "id": "item79", "name": "item79", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "fd2a371-e627-f514-416-5f52b81624e3" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "fd2a371-e627-f514-416-5f52b81624e3": { "uuid": "fd2a371-e627-f514-416-5f52b81624e3", "id": "layout53", "name": "layout53", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "4fcdac1-cd6c-e2b3-521d-0eafac54eaf5" ], "layout": { "DESKTOP": { "style": { "justifyContent": "start", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "TABLET": { "style": { "gap": "4px" } }, "MOBILE": { "style": { "props": { "type": "ROW" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "4fcdac1-cd6c-e2b3-521d-0eafac54eaf5": { "uuid": "4fcdac1-cd6c-e2b3-521d-0eafac54eaf5", "id": "item114", "name": "item114", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "3eb7d1a-6126-c452-a1d3-b11dfaaaa6f5" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "visible": true } }, "hyperLink": { "destinityType": "_self" } }, "402c6b-b6b1-3583-6cd6-6f7ce556534": { "uuid": "402c6b-b6b1-3583-6cd6-6f7ce556534", "id": "icon9", "name": "icon9", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "10px", "height": "10px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "color": { "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity" }, "cursor": "auto" } }, "MOBILE": { "structure": { "position": { "justifySelf": "start" } } } }, "props": { "value": { "props": { "value": { "type": "fontawesome", "value": [ "far", "user" ] } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "f3f8350-f06-56dc-b0e3-de7de54c15a": { "uuid": "f3f8350-f06-56dc-b0e3-de7de54c15a", "id": "text26", "name": "text26", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start", "marginLeft": 0, "marginRight": 0 } }, "style": { "maxLines": 1 } }, "TABLET": { "style": { "regular": { "font": { "size": "11px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "10px" } } } } }, "props": { "value": { "props": { "value": "<p><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px; font-family: var(--design-font-primary);\">Proveedor </span><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px; font-family: var(--design-font-primary);\"><datasource value=\"supplier\" datasource=\"eed0db-283f-1a65-33f3-f24005b7a8b7\" type=\"Nativestring\"/></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false, "tooltip": { "text": "" } }, "d120c5c-4e1f-7bb-4de8-c778fb1c0c22": { "uuid": "d120c5c-4e1f-7bb-4de8-c778fb1c0c22", "id": "item130", "name": "item130", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "003d7bd-12a-d2b-38fa-26118f6822a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "003d7bd-12a-d2b-38fa-26118f6822a": { "uuid": "003d7bd-12a-d2b-38fa-26118f6822a", "id": "layout54", "name": "layout54", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "d77df3c-367a-aa7f-63ee-3f05fee0605f" ], "layout": { "DESKTOP": { "style": { "justifyContent": "start", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "TABLET": { "style": { "gap": "4px" } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "d77df3c-367a-aa7f-63ee-3f05fee0605f": { "uuid": "d77df3c-367a-aa7f-63ee-3f05fee0605f", "id": "item131", "name": "item131", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "d758c5-a4fe-73-558e-cb224cd30cf5" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {}, "visible": true } }, "hyperLink": { "destinityType": "_self" } }, "862d8a-40ce-0cc0-b02e-828a5de38ba": { "uuid": "862d8a-40ce-0cc0-b02e-828a5de38ba", "id": "text33", "name": "text33", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "style": { "maxLines": 1 } }, "TABLET": { "style": { "regular": { "font": { "size": "11px" } }, "maxLines": -1 }, "structure": { "size": { "width": "100%" } } }, "MOBILE": { "style": { "regular": { "font": { "size": "10px" } } } } }, "props": { "value": { "props": { "value": "<p><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px; font-family: var(--design-font-primary);\">Tipo de orden: </span><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px; font-family: var(--design-font-primary);\"><datasource value=\"purchaseOrderType\" datasource=\"eed0db-283f-1a65-33f3-f24005b7a8b7\" type=\"Nativestring\"/></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "3380e03-e34f-dd36-83da-7440d51bfc64": { "uuid": "3380e03-e34f-dd36-83da-7440d51bfc64", "id": "panelDerechoHeader", "name": "panel_derecho_header", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "8a578b-b3d-fc18-e8c4-dc0f2303351" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": true }, "MOBILE": { "structure": { "size": { "width": "auto" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true, "props": { "rules": { "view": [] } } }, "8a578b-b3d-fc18-e8c4-dc0f2303351": { "uuid": "8a578b-b3d-fc18-e8c4-dc0f2303351", "id": "layout24", "name": "layout24", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "b0c76-0b7b-b46f-23f-26a82caf0ef", "f20ae1-4b28-3b44-f6e4-b41d58c6565" ], "layout": { "DESKTOP": { "style": { "gap": "8px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "TABLET": { "structure": { "position": { "justifySelf": "end" } } }, "MOBILE": { "structure": { "size": { "minWidth": "unset", "width": "auto" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "f20ae1-4b28-3b44-f6e4-b41d58c6565": { "uuid": "f20ae1-4b28-3b44-f6e4-b41d58c6565", "id": "item41", "name": "item41", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "c06bab-c1b2-527-423b-6de85f18043" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "visible": false } }, "hyperLink": { "destinityType": "_self" }, "props": { "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "NOT(SI(OR(isCreate(), isUpdate()), true, false))", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "NOT", "range": [ 0, 3 ] }, "arguments": [ { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "SI", "range": [ 4, 6 ] }, "arguments": [ { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "OR", "range": [ 7, 9 ] }, "arguments": [ { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isCreate", "range": [ 10, 18 ] }, "arguments": [], "range": [ 10, 20 ] }, { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isUpdate", "range": [ 22, 30 ] }, "arguments": [], "range": [ 22, 32 ] } ], "range": [ 7, 33 ] }, { "type": "Literal", "value": true, "raw": "true", "range": [ 35, 39 ] }, { "type": "Literal", "value": false, "raw": "false", "range": [ 41, 46 ] } ], "range": [ 4, 47 ] } ], "range": [ 0, 48 ] }, "range": [ 0, 48 ] } ], "sourceType": "script", "range": [ 0, 48 ] } }, "readOnly": false, "idTarget": "item41", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false, "expressionParser": "NOT(SI(OR(isCreate(), isUpdate()), true, false))" } ] } } }, "dc85ec4-e3a8-3268-b60b-ae40262f8373": { "uuid": "dc85ec4-e3a8-3268-b60b-ae40262f8373", "id": "layout20", "name": "layout20", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "2d82477-1d8e-be8e-e22-e223ba7ae85e", "d8bff7-13a-313d-303a-b2fa17d627a", "0206de-273-ae40-82c6-f4a40ca1c8a" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end", "marginLeft": 0, "marginRight": "-2px" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "2d82477-1d8e-be8e-e22-e223ba7ae85e": { "uuid": "2d82477-1d8e-be8e-e22-e223ba7ae85e", "id": "item122", "name": "item122", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "81c24f6-c28f-2030-3a44-c6ed43bfe0ad" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "81c24f6-c28f-2030-3a44-c6ed43bfe0ad": { "uuid": "81c24f6-c28f-2030-3a44-c6ed43bfe0ad", "id": "layout49", "name": "layout49", "type": "layout", "subtype": "normal", "design": "disenoconsombra", "subitems": [ "36ec88-7dea-f508-b7b-14cea61114b" ], "layout": { "DESKTOP": { "style": { "regular": { "padding": { "paddingTop": "4px", "paddingRight": "4px", "paddingBottom": "4px", "paddingLeft": "4px" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "TABLET": { "style": { "regular": { "padding": { "paddingTop": "8px", "paddingRight": "8px", "paddingBottom": "8px", "paddingLeft": "8px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "36ec88-7dea-f508-b7b-14cea61114b": { "uuid": "36ec88-7dea-f508-b7b-14cea61114b", "id": "item123", "name": "item123", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "35ddf7f-0c26-82d1-68a6-66fea666dea" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "35ddf7f-0c26-82d1-68a6-66fea666dea": { "uuid": "35ddf7f-0c26-82d1-68a6-66fea666dea", "id": "layout50", "name": "layout50", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "1002a7c-e4f-d04d-ea7b-2b3d044710", "e5d026b-ee45-6b38-cbe-1d805d6db45" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "1002a7c-e4f-d04d-ea7b-2b3d044710": { "uuid": "1002a7c-e4f-d04d-ea7b-2b3d044710", "id": "item124", "name": "item124", "type": "item", "subtype": "normal", "design": "item", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "background": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "radius": { "topRight": "2px", "topLeft": "2px", "bottomRight": "2px", "bottomLeft": "2px" }, "cursor": "auto" } }, "structure": { "size": { "width": "10px", "height": "10px", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "style": { "regular": { "radius": { "topRight": "0px", "topLeft": "0px", "bottomRight": "0px", "bottomLeft": "0px" } } }, "structure": { "size": { "width": "14px", "height": "14px" } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "e5d026b-ee45-6b38-cbe-1d805d6db45": { "uuid": "e5d026b-ee45-6b38-cbe-1d805d6db45", "id": "item125", "name": "item125", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "5722bb7-4662-4cd-524b-48daf767800" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "5722bb7-4662-4cd-524b-48daf767800": { "uuid": "5722bb7-4662-4cd-524b-48daf767800", "id": "text23", "name": "text23", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "TABLET": { "style": { "regular": { "font": { "size": "11px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "10px" } } } } }, "props": { "value": { "props": { "value": "<p><span style=\"color: var(--design-solid-color-lightmode); font-size: 10px; font-family: var(--design-font-primary);\"><strong>Saldo Pendiente</strong></span></p>\n<p><span style=\"font-size: 10px; font-family: var(--design-font-primary);\"><strong>$</strong></span><span style=\"font-size: 10px; font-family: var(--design-font-primary);\"><strong><datasource value=\"balanceDue\" datasource=\"fc8a737-c1d3-8222-cc06-57caf811c14d\" type=\"undefined\"/></strong></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "d8bff7-13a-313d-303a-b2fa17d627a": { "uuid": "d8bff7-13a-313d-303a-b2fa17d627a", "id": "item40", "name": "item40", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "ba7b73-a6ad-a862-bd8-15d0f583ad" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "ba7b73-a6ad-a862-bd8-15d0f583ad": { "uuid": "ba7b73-a6ad-a862-bd8-15d0f583ad", "id": "layout27", "name": "layout27", "type": "layout", "subtype": "normal", "design": "disenoconsombra", "subitems": [ "d8d426e-5f4-722-7b72-e8b027568760" ], "layout": { "DESKTOP": { "style": { "regular": { "padding": { "paddingTop": "4px", "paddingRight": "4px", "paddingBottom": "4px", "paddingLeft": "4px" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "position": "relative", "alignSelf": "start", "justifySelf": "center" } } }, "TABLET": { "style": { "regular": { "padding": { "paddingTop": "8px", "paddingRight": "8px", "paddingBottom": "8px", "paddingLeft": "8px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "d8d426e-5f4-722-7b72-e8b027568760": { "uuid": "d8d426e-5f4-722-7b72-e8b027568760", "id": "item54", "name": "item54", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "27f35f-fcd3-3761-67e-38f00d22183" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "27f35f-fcd3-3761-67e-38f00d22183": { "uuid": "27f35f-fcd3-3761-67e-38f00d22183", "id": "layout40", "name": "layout40", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "6071d23-72b-6e28-26c7-3f7c174ad7c", "c01affb-3131-adb8-6b33-da0d15832ed" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "6071d23-72b-6e28-26c7-3f7c174ad7c": { "uuid": "6071d23-72b-6e28-26c7-3f7c174ad7c", "id": "item55", "name": "item55", "type": "item", "subtype": "normal", "design": "item", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "background": { "color": "$color.warning.color", "opacity": "$color.warning.opacity" }, "radius": { "topRight": "2px", "topLeft": "2px", "bottomRight": "2px", "bottomLeft": "2px" }, "cursor": "auto" } }, "structure": { "size": { "width": "10px", "height": "10px", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "style": { "regular": { "radius": { "topRight": "0px", "topLeft": "0px", "bottomRight": "0px", "bottomLeft": "0px" } } }, "structure": { "size": { "width": "14px", "height": "14px" } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "c01affb-3131-adb8-6b33-da0d15832ed": { "uuid": "c01affb-3131-adb8-6b33-da0d15832ed", "id": "item56", "name": "item56", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "2b5b8bf-a00-b31c-1cb8-bb736cee1b1b" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "2b5b8bf-a00-b31c-1cb8-bb736cee1b1b": { "uuid": "2b5b8bf-a00-b31c-1cb8-bb736cee1b1b", "id": "text21", "name": "text21", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "TABLET": { "style": { "regular": { "font": { "size": "11px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "10px" } } } } }, "props": { "value": { "props": { "value": "<p><span style=\"color: var(--design-solid-color-lightmode); font-size: 10px; font-family: var(--design-font-primary);\"><strong>Pago Pendiente</strong></span></p>\n<p><span style=\"font-size: 10px; font-family: var(--design-font-primary);\"><strong>$</strong></span><span style=\"font-size: 10px; font-family: var(--design-font-primary);\"><strong><datasource value=\"paymentDue\" datasource=\"fc8a737-c1d3-8222-cc06-57caf811c14d\" type=\"undefined\"/></strong></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "0206de-273-ae40-82c6-f4a40ca1c8a": { "uuid": "0206de-273-ae40-82c6-f4a40ca1c8a", "id": "item38", "name": "item38", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "f5a2bc4-a4cc-6f6f-c30d-2cf232af0fd5" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "110%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "f5a2bc4-a4cc-6f6f-c30d-2cf232af0fd5": { "uuid": "f5a2bc4-a4cc-6f6f-c30d-2cf232af0fd5", "id": "layout26", "name": "layout26", "type": "layout", "subtype": "normal", "design": "disenoconsombra", "subitems": [ "64ba6ba-81e5-5833-031-24df2b32d66" ], "layout": { "DESKTOP": { "style": { "regular": { "padding": { "paddingTop": "4px", "paddingRight": "4px", "paddingBottom": "4px", "paddingLeft": "4px" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "position": "relative", "alignSelf": "start", "justifySelf": "center" } } }, "TABLET": { "style": { "regular": { "padding": { "paddingTop": "8px", "paddingRight": "8px", "paddingBottom": "8px", "paddingLeft": "8px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "64ba6ba-81e5-5833-031-24df2b32d66": { "uuid": "64ba6ba-81e5-5833-031-24df2b32d66", "id": "item39", "name": "item39", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "d14f0f2-744-67d8-db40-4efaa0cce" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "d14f0f2-744-67d8-db40-4efaa0cce": { "uuid": "d14f0f2-744-67d8-db40-4efaa0cce", "id": "layout41", "name": "layout41", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "bd4a1a-6dc3-6c10-f736-2c8bf40b24a", "a3ac86a-c2a2-4b-5271-316b21e6d53e" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "bd4a1a-6dc3-6c10-f736-2c8bf40b24a": { "uuid": "bd4a1a-6dc3-6c10-f736-2c8bf40b24a", "id": "item53", "name": "item53", "type": "item", "subtype": "normal", "design": "item", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "background": { "color": "$color.error.color", "opacity": "$color.error.opacity" }, "radius": { "topRight": "2px", "topLeft": "2px", "bottomRight": "2px", "bottomLeft": "2px" }, "cursor": "auto" } }, "structure": { "size": { "width": "10px", "height": "10px", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "style": { "regular": { "radius": { "topRight": "0px", "topLeft": "0px", "bottomRight": "0px", "bottomLeft": "0px" } } }, "structure": { "size": { "width": "auto", "height": "14px", "minWidth": "14px" } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "a3ac86a-c2a2-4b-5271-316b21e6d53e": { "uuid": "a3ac86a-c2a2-4b-5271-316b21e6d53e", "id": "item58", "name": "item58", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "0e02be8-2576-0aec-8105-131ed8e4ee5a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "0e02be8-2576-0aec-8105-131ed8e4ee5a": { "uuid": "0e02be8-2576-0aec-8105-131ed8e4ee5a", "id": "text20", "name": "text20", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "TABLET": { "style": { "regular": { "font": { "size": "11px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "10px" } } } } }, "props": { "value": { "props": { "value": "<p><span style=\"color: var(--design-solid-color-lightmode); font-size: 10px; font-family: var(--design-font-primary);\"><strong>Facturacion Pendiente</strong></span></p>\n<p><span style=\"font-size: 10px; font-family: var(--design-font-primary);\"><strong>$</strong></span><span style=\"font-size: 10px; font-family: var(--design-font-primary);\"><strong><datasource value=\"billingPending\" datasource=\"fc8a737-c1d3-8222-cc06-57caf811c14d\" type=\"undefined\"/></strong></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "acca58-b737-11d-73c5-2afd50f55d4": { "uuid": "acca58-b737-11d-73c5-2afd50f55d4", "id": "sectionEdit", "name": "sectionEdit", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "afb0a3-d1e-6aed-5a4d-a78d61365b4f" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } }, "visible": false } }, "hyperLink": { "destinityType": "_self" }, "props": { "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "SI(OR(isCreate(), isUpdate()), true, false)", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "SI", "range": [ 0, 2 ] }, "arguments": [ { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "OR", "range": [ 3, 5 ] }, "arguments": [ { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isCreate", "range": [ 6, 14 ] }, "arguments": [], "range": [ 6, 16 ] }, { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isUpdate", "range": [ 18, 26 ] }, "arguments": [], "range": [ 18, 28 ] } ], "range": [ 3, 29 ] }, { "type": "Literal", "value": true, "raw": "true", "range": [ 31, 35 ] }, { "type": "Literal", "value": false, "raw": "false", "range": [ 37, 42 ] } ], "range": [ 0, 43 ] }, "range": [ 0, 43 ] } ], "sourceType": "script", "range": [ 0, 43 ] } }, "readOnly": false, "idTarget": "sectionEdit", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false, "expressionParser": "SI(OR(isCreate(), isUpdate()), true, false)" } ] } }, "modifiedName": true, "modifiedId": true }, "467fde5-c8a2-4e0d-8dd3-6ba56038f70": { "uuid": "467fde5-c8a2-4e0d-8dd3-6ba56038f70", "id": "repetidorDeItems", "name": "repetidorDeItems", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "f028c1-aaad-871b-31c-b88f244c615", "cec426-e14-5448-2d3-e77237ed3afa" ], "layout": { "DESKTOP": { "style": { "gap": "0px", "regular": { "border": { "top": { "width": "0.5px", "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity" }, "right": { "width": "0.5px", "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity" }, "bottom": { "width": "0.5px", "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity" }, "left": { "width": "0.5px", "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity" } }, "radius": { "topRight": "8px", "topLeft": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "f028c1-aaad-871b-31c-b88f244c615": { "uuid": "f028c1-aaad-871b-31c-b88f244c615", "id": "item25", "name": "item25", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "ab40a7c-1e8e-ebdd-fe6c-7567c067efdd" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "COLUMN" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "ab40a7c-1e8e-ebdd-fe6c-7567c067efdd": { "uuid": "ab40a7c-1e8e-ebdd-fe6c-7567c067efdd", "id": "layout2", "name": "layout2", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "c772af4-860f-cae1-cccd-0578fa487b5", "103a87-c18-7e32-73e2-bfab7c20084" ], "layout": { "DESKTOP": { "style": { "gap": "16px", "justifyContent": "start", "regular": { "padding": { "paddingTop": "12px", "paddingRight": "12px", "paddingBottom": "12px", "paddingLeft": "12px" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "center" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "gap": "12px", "regular": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "c772af4-860f-cae1-cccd-0578fa487b5": { "uuid": "c772af4-860f-cae1-cccd-0578fa487b5", "id": "item26", "name": "item26", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "38aa27a-7d3-0a-0c73-4822f867c5e0" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "38aa27a-7d3-0a-0c73-4822f867c5e0": { "uuid": "38aa27a-7d3-0a-0c73-4822f867c5e0", "id": "text1", "name": "text1", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } } }, "TABLET": { "style": { "regular": { "font": { "size": "18px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "16px" } } } } }, "props": { "value": { "props": { "value": "<p><span style=\"color: var(--design-solid-color-neutralgrey); font-size: 14px; font-family: var(--design-font-primary);\"><strong>Items</strong></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "103a87-c18-7e32-73e2-bfab7c20084": { "uuid": "103a87-c18-7e32-73e2-bfab7c20084", "id": "item5", "name": "item5", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "fe52b76-3e42-cee7-f72f-a4b1d6871400" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "fe52b76-3e42-cee7-f72f-a4b1d6871400": { "uuid": "fe52b76-3e42-cee7-f72f-a4b1d6871400", "id": "button1", "name": "button1", "type": "button", "subtype": "normal", "design": "tertiary", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } }, "style": { "regular": { "cursor": "pointer" }, "disabled": { "font": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" }, "cursor": "default" } } } }, "props": { "initialState": "regular", "value": { "props": { "value": "+ Agregar" }, "type": "LITERAL" }, "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "SI(OR(isCreate(), isUpdate()), true, false)", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "SI", "range": [ 0, 2 ] }, "arguments": [ { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "OR", "range": [ 3, 5 ] }, "arguments": [ { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isCreate", "range": [ 6, 14 ] }, "arguments": [], "range": [ 6, 16 ] }, { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isUpdate", "range": [ 18, 26 ] }, "arguments": [], "range": [ 18, 28 ] } ], "range": [ 3, 29 ] }, { "type": "Literal", "value": true, "raw": "true", "range": [ 31, 35 ] }, { "type": "Literal", "value": false, "raw": "false", "range": [ 37, 42 ] } ], "range": [ 0, 43 ] }, "range": [ 0, 43 ] } ], "sourceType": "script", "range": [ 0, 43 ] } }, "readOnly": false, "idTarget": "button1", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false, "expressionParser": "SI(OR(isCreate(), isUpdate()), true, false)" } ] } }, "relatedAttribute": {}, "hyperLink": { "order": "start", "destinityType": "_self", "link": { "operation": "CREATE", "type": "REPEATER", "idObject": "11f700e-eb4f-4e2-8d12-de471ff22836" } }, "modifiedName": false, "modifiedId": false, "events": { "onClick": "button1_onClick" } }, "cec426-e14-5448-2d3-e77237ed3afa": { "uuid": "cec426-e14-5448-2d3-e77237ed3afa", "id": "item42", "name": "item42", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "12c5a1-6fce-df4f-d2c4-0a82cfee6ac2" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "COLUMN" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "12c5a1-6fce-df4f-d2c4-0a82cfee6ac2": { "uuid": "12c5a1-6fce-df4f-d2c4-0a82cfee6ac2", "id": "layout3", "name": "layout3", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "4f41e6-5e6e-5e36-21c8-8157bb248d7e", "35ce145-efb-6c5-e53-d8b071dac00", "33ceb-3a45-7b6-bb8c-af3ef0c242a", "b826dc0-ba75-146-4ae2-2288bd3e4e62", "eff4f1e-2e2e-d180-abeb-02bc062583b" ], "layout": { "DESKTOP": { "style": { "gap": "0px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "center" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "4f41e6-5e6e-5e36-21c8-8157bb248d7e": { "uuid": "4f41e6-5e6e-5e36-21c8-8157bb248d7e", "id": "item4", "name": "item4", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "0564805-e51e-076e-8540-be04644280a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "COLUMN" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } }, "MOBILE": { "visible": false } }, "hyperLink": { "destinityType": "_self" } }, "0564805-e51e-076e-8540-be04644280a": { "uuid": "0564805-e51e-076e-8540-be04644280a", "id": "layout4", "name": "layout4", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "8f1f28-0c5-54c8-6b7d-7a3a0ebeea84", "a38f17-f0dc-efb-e1c-7eabf50bc7c3", "84481a-05f4-06a-6548-8525ea418d06", "da65624-10cc-d423-e6a-c37f71cad77", "d67dd8-6cf-51d-6833-23d207db61c", "3803e30-3a4e-18f7-fe14-0b52d4ce1", "b74e66a-4316-cf6b-4baa-5c7d4df67b", "1f73aa8-67e6-f26-acb-a455ede08" ], "layout": { "DESKTOP": { "style": { "justifyContent": "start", "regular": { "padding": { "paddingTop": "12px", "paddingRight": "12px", "paddingBottom": "12px", "paddingLeft": "12px" }, "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" }, "radius": { "topRight": "8px", "topLeft": "8px" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "8f1f28-0c5-54c8-6b7d-7a3a0ebeea84": { "uuid": "8f1f28-0c5-54c8-6b7d-7a3a0ebeea84", "id": "item6", "name": "item6", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "20148-b0d8-ca86-fac2-47305af180" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "150%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "20148-b0d8-ca86-fac2-47305af180": { "uuid": "20148-b0d8-ca86-fac2-47305af180", "id": "nitemLabelItem", "name": "nitemLabelItem", "type": "text", "subtype": "normal", "design": "normal", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "font": { "family": "$font.secondary" }, "regular": { "font": { "size": "12px" }, "cursor": "auto" } } } }, "props": { "value": { "props": { "value": "Descripción" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "3803e30-3a4e-18f7-fe14-0b52d4ce1": { "uuid": "3803e30-3a4e-18f7-fe14-0b52d4ce1", "id": "item8", "name": "item8", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "12eb62-bc56-a7a3-077e-2a74806e7" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "50%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "12eb62-bc56-a7a3-077e-2a74806e7": { "uuid": "12eb62-bc56-a7a3-077e-2a74806e7", "id": "code", "name": "code", "type": "text", "subtype": "normal", "design": "normal", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "font": { "family": "$font.secondary", "align": "right" }, "regular": { "font": { "size": "12px" }, "cursor": "auto" } } } }, "props": { "value": { "props": { "value": "Entrega" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "da65624-10cc-d423-e6a-c37f71cad77": { "uuid": "da65624-10cc-d423-e6a-c37f71cad77", "id": "item10", "name": "item10", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "0c14f62-7dee-aff6-4580-5103eb3435c" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "36%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "0c14f62-7dee-aff6-4580-5103eb3435c": { "uuid": "0c14f62-7dee-aff6-4580-5103eb3435c", "id": "text3", "name": "text3", "type": "text", "subtype": "normal", "design": "normal", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "auto" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } }, "style": { "font": { "family": "$font.secondary", "align": "right" }, "regular": { "font": { "size": "12px" }, "cursor": "auto" } } }, "TABLET": { "structure": { "size": { "width": "100%" } } } }, "props": { "value": { "props": { "value": "Precio Unitario" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "a38f17-f0dc-efb-e1c-7eabf50bc7c3": { "uuid": "a38f17-f0dc-efb-e1c-7eabf50bc7c3", "id": "item11", "name": "item11", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "8fdd20c-262f-da22-d6b4-7c75c70dbadf" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "30%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "8fdd20c-262f-da22-d6b4-7c75c70dbadf": { "uuid": "8fdd20c-262f-da22-d6b4-7c75c70dbadf", "id": "quantityLabelItem", "name": "quantityLabelItem", "type": "text", "subtype": "normal", "design": "normal", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "auto" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } }, "style": { "font": { "family": "$font.secondary", "align": "right" }, "regular": { "font": { "size": "12px" }, "cursor": "auto" } } } }, "props": { "value": { "props": { "value": "Cantidad" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "84481a-05f4-06a-6548-8525ea418d06": { "uuid": "84481a-05f4-06a-6548-8525ea418d06", "id": "item108", "name": "item108", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "f17e7a-6070-ab2-0cf-d7f0ec7af12f" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "25%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "f17e7a-6070-ab2-0cf-d7f0ec7af12f": { "uuid": "f17e7a-6070-ab2-0cf-d7f0ec7af12f", "id": "measureUnitLabelItem", "name": "measureUnitLabelItem", "type": "text", "subtype": "normal", "design": "normal", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "auto" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "font": { "family": "$font.secondary" }, "regular": { "font": { "size": "12px" }, "cursor": "auto" } } } }, "props": { "value": { "props": { "value": "Un." }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "d67dd8-6cf-51d-6833-23d207db61c": { "uuid": "d67dd8-6cf-51d-6833-23d207db61c", "id": "item109", "name": "item109", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "206ff5-0b74-fa31-3b-bfc7bec75b17" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "30%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } }, "TABLET": { "structure": { "size": { "width": "31%" } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "206ff5-0b74-fa31-3b-bfc7bec75b17": { "uuid": "206ff5-0b74-fa31-3b-bfc7bec75b17", "id": "tax", "name": "tax", "type": "text", "subtype": "normal", "design": "normal", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "auto" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } }, "style": { "font": { "family": "$font.secondary", "align": "right" }, "regular": { "font": { "size": "12px" }, "cursor": "auto" } } }, "TABLET": { "structure": { "size": { "width": "100%" } } } }, "props": { "value": { "props": { "value": "Impuesto" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "b74e66a-4316-cf6b-4baa-5c7d4df67b": { "uuid": "b74e66a-4316-cf6b-4baa-5c7d4df67b", "id": "item14", "name": "item14", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "e056a75-346-100f-ffc-7feae2c17885" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "50%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "e056a75-346-100f-ffc-7feae2c17885": { "uuid": "e056a75-346-100f-ffc-7feae2c17885", "id": "total", "name": "total", "type": "text", "subtype": "normal", "design": "normal", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } }, "style": { "font": { "family": "$font.secondary", "align": "right" }, "regular": { "font": { "size": "12px" }, "cursor": "auto" } } }, "TABLET": { "structure": { "position": { "marginLeft": 0 } } } }, "props": { "value": { "props": { "value": "Total" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "35ce145-efb-6c5-e53-d8b071dac00": { "uuid": "35ce145-efb-6c5-e53-d8b071dac00", "id": "item7", "name": "item7", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "11f700e-eb4f-4e2-8d12-de471ff22836" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "COLUMN" }, "hover": { "background": { "color": "$color.tertiary.color", "opacity": "$color.tertiary.opacity" } } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "25px" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } }, "MOBILE": { "visible": true, "structure": { "size": { "minHeight": "unset" } } } }, "hyperLink": { "destinityType": "_self" } }, "33ceb-3a45-7b6-bb8c-af3ef0c242a": { "uuid": "33ceb-3a45-7b6-bb8c-af3ef0c242a", "id": "mobile_Tupla", "name": "mobile_Tupla", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "303a62-1fd4-d0-6bd6-6436cb8b6f" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "COLUMN" }, "hover": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" } } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "25px" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } }, "visible": false } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "303a62-1fd4-d0-6bd6-6436cb8b6f": { "uuid": "303a62-1fd4-d0-6bd6-6436cb8b6f", "id": "layout43", "name": "layout43", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "e28a2a1-eaaa-e1-cde-c8d174d17af7", "fd3fd6-be2c-3c64-f6e-d0abbec5b0a", "db0bd7d-2158-0c0f-562-7f1b52efdf24" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "e28a2a1-eaaa-e1-cde-c8d174d17af7": { "uuid": "e28a2a1-eaaa-e1-cde-c8d174d17af7", "id": "item76", "name": "item76", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "61f8f6-f234-bd20-c283-da4dac863b40" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "auto", "height": "100%", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } }, "TABLET": { "structure": { "size": { "width": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "61f8f6-f234-bd20-c283-da4dac863b40": { "uuid": "61f8f6-f234-bd20-c283-da4dac863b40", "id": "layout56", "name": "layout56", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "e056f3f-0d6e-e84-f030-d3537365b", "0ab0aa-7287-c53a-4444-e4687134137", "e1050e7-0d13-2174-5323-3b403d3af56" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "gap": "4px", "regular": { "padding": { "paddingTop": "12px", "paddingLeft": "12px", "paddingRight": "12px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "e056f3f-0d6e-e84-f030-d3537365b": { "uuid": "e056f3f-0d6e-e84-f030-d3537365b", "id": "input3", "name": "input3", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "f748a32-e1d5-f00-054-f3f114bf23f" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "structure": { "size": { "minWidth": "unset", "width": "auto" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "f748a32-e1d5-f00-054-f3f114bf23f": { "uuid": "f748a32-e1d5-f00-054-f3f114bf23f", "id": "idMobile", "name": "idMobile", "type": "input", "subtype": "text", "design": "text", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "unset" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "regular": { "padding": { "paddingLeft": "4px" }, "cursor": "auto" }, "disabled": { "background": { "opacity": "00" }, "border": { "top": { "width": "0px" }, "right": { "width": "0px" }, "bottom": { "width": "0px" }, "left": { "width": "0px" } }, "cursor": "default" } } }, "MOBILE": { "structure": { "position": { "marginLeft": 0, "marginRight": 0, "alignSelf": "start" } }, "style": { "regular": { "font": { "weight": "bold" } }, "disabled": { "font": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" }, "padding": { "paddingLeft": "0px" } } } } }, "props": { "label": "", "initialState": "disabled", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "1", "type": "Nativestring", "dataSource": "056822-85d-5866-385-608b2f7c207", "desc": "desc_cdUser" }, "type": "LITERAL" }, "maxLength": 100 }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "modifiedName": true, "modifiedId": true }, "0ab0aa-7287-c53a-4444-e4687134137": { "uuid": "0ab0aa-7287-c53a-4444-e4687134137", "id": "item143", "name": "item143", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "2fbc611-07ae-c1f2-a572-d0ad8fabbae0" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "2fbc611-07ae-c1f2-a572-d0ad8fabbae0": { "uuid": "2fbc611-07ae-c1f2-a572-d0ad8fabbae0", "id": "codeMobile", "name": "codeMobile", "type": "input", "subtype": "text", "design": "text", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "unset" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "regular": { "padding": { "paddingLeft": "4px" }, "cursor": "auto" }, "disabled": { "background": { "opacity": "00" }, "border": { "top": { "width": "0px" }, "right": { "width": "0px" }, "bottom": { "width": "0px" }, "left": { "width": "0px" } }, "cursor": "default" } } }, "MOBILE": { "structure": { "position": { "alignSelf": "start" } }, "style": { "disabled": { "font": { "weight": "bold", "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" } } } } }, "props": { "label": "", "initialState": "disabled", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "HC837", "type": "Nativestring", "dataSource": "056822-85d-5866-385-608b2f7c207", "desc": "desc_dsFirstName" }, "type": "LITERAL" }, "maxLength": 100 }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "modifiedName": true, "modifiedId": true }, "e1050e7-0d13-2174-5323-3b403d3af56": { "uuid": "e1050e7-0d13-2174-5323-3b403d3af56", "id": "item144", "name": "item144", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "71b4663-f2d-0be1-2d4-eab350d07c" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "71b4663-f2d-0be1-2d4-eab350d07c": { "uuid": "71b4663-f2d-0be1-2d4-eab350d07c", "id": "statusMobile", "name": "statusMobile", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "81a7238-612b-20a4-5a-fef1c3efc2", "ea10a3b-6e26-7e2-c725-1d301fbcf53" ], "layout": { "DESKTOP": { "style": { "regular": { "padding": { "paddingTop": "4px", "paddingRight": "8px", "paddingBottom": "4px", "paddingLeft": "8px" }, "background": { "color": "$color.secondary.color", "opacity": "0c" }, "border": { "top": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "right": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "bottom": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "left": { "color": "$color.success.color", "opacity": "$color.success.opacity" } }, "radius": { "topRight": "20px", "topLeft": "20px", "bottomRight": "20px", "bottomLeft": "20px" }, "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } } }, "TABLET": { "style": { "gap": "4px" }, "structure": { "size": { "width": "100%" } } }, "MOBILE": { "style": { "props": { "type": "ROW" } }, "structure": { "size": { "width": "auto" }, "position": { "justifySelf": "end" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "81a7238-612b-20a4-5a-fef1c3efc2": { "uuid": "81a7238-612b-20a4-5a-fef1c3efc2", "id": "item120", "name": "item120", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "805b262-e40a-487c-4655-43a4acdb3bb" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "805b262-e40a-487c-4655-43a4acdb3bb": { "uuid": "805b262-e40a-487c-4655-43a4acdb3bb", "id": "icon6", "name": "icon6", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "color": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "cursor": "auto" } } }, "props": { "value": { "props": { "value": { "type": "deyel", "value": "icon-deyel_circ-check-filled" } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "ea10a3b-6e26-7e2-c725-1d301fbcf53": { "uuid": "ea10a3b-6e26-7e2-c725-1d301fbcf53", "id": "item138", "name": "item138", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "60ed25c-aadc-2210-dfb6-c4e1d3c71f4" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "60ed25c-aadc-2210-dfb6-c4e1d3c71f4": { "uuid": "60ed25c-aadc-2210-dfb6-c4e1d3c71f4", "id": "text29", "name": "text29", "type": "text", "subtype": "normal", "design": "normal", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "regular": { "font": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "cursor": "text" } } } }, "props": { "value": { "props": { "value": "Activo" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "fd3fd6-be2c-3c64-f6e-d0abbec5b0a": { "uuid": "fd3fd6-be2c-3c64-f6e-d0abbec5b0a", "id": "item112", "name": "item112", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "ac6ff4d-ea5c-0435-b1b2-d2f255d750b4" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "auto", "height": "100%", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "ac6ff4d-ea5c-0435-b1b2-d2f255d750b4": { "uuid": "ac6ff4d-ea5c-0435-b1b2-d2f255d750b4", "id": "layout57", "name": "layout57", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "55daa70-088-30f6-358f-ca8bf4ddb4d", "5f805ba-b62-bf-a44f-044d7de84ee", "d2e8f-dfb6-35db-0faa-45bede55822c" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "gap": "4px", "regular": { "padding": { "paddingBottom": "12px", "paddingLeft": "12px", "paddingRight": "12px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "55daa70-088-30f6-358f-ca8bf4ddb4d": { "uuid": "55daa70-088-30f6-358f-ca8bf4ddb4d", "id": "item145", "name": "item145", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "61ea3f-3445-6a2e-cd42-e2f7ce258f" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "minHeight": "58px" } } }, "MOBILE": { "structure": { "size": { "width": "auto", "height": "100%", "minHeight": "unset" } } } }, "hyperLink": { "destinityType": "_self" } }, "61ea3f-3445-6a2e-cd42-e2f7ce258f": { "uuid": "61ea3f-3445-6a2e-cd42-e2f7ce258f", "id": "quantityMobile", "name": "quantityMobile", "type": "input", "subtype": "number", "design": "number", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } } } }, "props": { "label": "Cantidad", "initialState": "disabled", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "6.00" }, "type": "LITERAL" }, "decimals": 2 }, "modifiedName": true, "modifiedId": true }, "5f805ba-b62-bf-a44f-044d7de84ee": { "uuid": "5f805ba-b62-bf-a44f-044d7de84ee", "id": "item146", "name": "item146", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "4fcfe20-bf5e-444e-5b0-6671adb351d" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "minHeight": "58px" } } }, "MOBILE": { "structure": { "size": { "width": "auto", "height": "100%", "minHeight": "unset" } } } }, "hyperLink": { "destinityType": "_self" } }, "4fcfe20-bf5e-444e-5b0-6671adb351d": { "uuid": "4fcfe20-bf5e-444e-5b0-6671adb351d", "id": "unitMobile", "name": "unitMobile", "type": "input", "subtype": "text", "design": "text", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "font": { "align": "right" }, "regular": { "cursor": "auto" }, "disabled": { "border": { "top": { "width": "1.1px" }, "right": { "width": "1.1px" }, "bottom": { "width": "1.1px" }, "left": { "width": "1.1px" } }, "padding": { "paddingLeft": "0px" }, "cursor": "default" } } }, "MOBILE": { "style": { "disabled": { "font": { "weight": "bold" }, "label": { "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity" } }, "font": { "align": "left" } } } }, "props": { "label": "Unidad", "initialState": "disabled", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "Unidad", "type": "Nativestring", "dataSource": "056822-85d-5866-385-608b2f7c207", "desc": "desc_dsEmail" }, "type": "LITERAL" }, "maxLength": 100 }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "modifiedName": true, "modifiedId": true }, "d2e8f-dfb6-35db-0faa-45bede55822c": { "uuid": "d2e8f-dfb6-35db-0faa-45bede55822c", "id": "item147", "name": "item147", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "bcf604-f826-efc5-17-6df2ad2f118f" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "minHeight": "58px" } } }, "MOBILE": { "structure": { "size": { "width": "auto", "height": "100%", "minHeight": "unset" } } } }, "hyperLink": { "destinityType": "_self" } }, "bcf604-f826-efc5-17-6df2ad2f118f": { "uuid": "bcf604-f826-efc5-17-6df2ad2f118f", "id": "taxMobile", "name": "taxMobile", "type": "input", "subtype": "number", "design": "number", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } } } }, "props": { "label": "Impuesto", "initialState": "disabled", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "0.00" }, "type": "LITERAL" }, "decimals": 2 }, "modifiedName": true, "modifiedId": true }, "db0bd7d-2158-0c0f-562-7f1b52efdf24": { "uuid": "db0bd7d-2158-0c0f-562-7f1b52efdf24", "id": "item142", "name": "item142", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "7d3b66-5a55-c878-a4b3-e35ef638b81" ], "layout": { "DESKTOP": { "style": { "regular": { "padding": { "paddingTop": "12px", "paddingRight": "12px", "paddingBottom": "12px", "paddingLeft": "12px" }, "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" }, "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "80%", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "7d3b66-5a55-c878-a4b3-e35ef638b81": { "uuid": "7d3b66-5a55-c878-a4b3-e35ef638b81", "id": "text31", "name": "text31", "type": "text", "subtype": "normal", "design": "normal", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } }, "style": { "font": { "family": "$font.secondary" }, "regular": { "cursor": "auto" } } } }, "props": { "value": { "props": { "value": "Total $100,00" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "b826dc0-ba75-146-4ae2-2288bd3e4e62": { "uuid": "b826dc0-ba75-146-4ae2-2288bd3e4e62", "id": "item13", "name": "item13", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "aac40e5-d33c-5c68-0ef1-7737fb67bd78" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "COLUMN" }, "hover": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" } } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } }, "visible": false } }, "hyperLink": { "destinityType": "_self" } }, "aac40e5-d33c-5c68-0ef1-7737fb67bd78": { "uuid": "aac40e5-d33c-5c68-0ef1-7737fb67bd78", "id": "layout11", "name": "layout11", "type": "layout", "subtype": "normal", "design": "column", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "50px", "minWidth": "unset" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "visible": false } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "eff4f1e-2e2e-d180-abeb-02bc062583b": { "uuid": "eff4f1e-2e2e-d180-abeb-02bc062583b", "id": "item43", "name": "item43", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "aef3df1-4c75-fe74-a23-2bbad313b55" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "COLUMN" }, "hover": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" } } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "25px" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "aef3df1-4c75-fe74-a23-2bbad313b55": { "uuid": "aef3df1-4c75-fe74-a23-2bbad313b55", "id": "layout13", "name": "layout13", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "145e6bf-2d00-02d7-e003-7cf4e0ce231" ], "layout": { "DESKTOP": { "style": { "gap": "16px", "justifyContent": "start", "regular": { "padding": { "paddingTop": "4px", "paddingRight": "12px", "paddingBottom": "4px", "paddingLeft": "12px" }, "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } } }, "MOBILE": { "style": { "gap": "12px" } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "145e6bf-2d00-02d7-e003-7cf4e0ce231": { "uuid": "145e6bf-2d00-02d7-e003-7cf4e0ce231", "id": "item48", "name": "item48", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "f8c31c7-ef3-d4f4-6c2b-de8b3e03268e" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "100%", "height": "auto", "minWidth": "unset", "minHeight": "16px" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "573d02d-6bd1-da3-f286-50da77ad6b8": { "uuid": "573d02d-6bd1-da3-f286-50da77ad6b8", "id": "layout35", "name": "layout35", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "2ee405-bc2c-2c5e-7426-76b01d0e4c2", "ff37ecb-57d2-0bd-dbe2-bee6de6a4" ], "layout": { "DESKTOP": { "style": { "gap": "16px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "2ee405-bc2c-2c5e-7426-76b01d0e4c2": { "uuid": "2ee405-bc2c-2c5e-7426-76b01d0e4c2", "id": "item86", "name": "item86", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "b76c262-cd11-a825-338-415ff447c70c" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "height": "100%", "minHeight": "53px" } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "b76c262-cd11-a825-338-415ff447c70c": { "uuid": "b76c262-cd11-a825-338-415ff447c70c", "id": "layout34", "name": "layout34", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "ada7e6-6761-3ce-a856-ce6aa5e5677", "d62c7c7-ea44-0b2a-3aa1-5a86742dbee" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "ada7e6-6761-3ce-a856-ce6aa5e5677": { "uuid": "ada7e6-6761-3ce-a856-ce6aa5e5677", "id": "item101", "name": "item101", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "44fb0f7-f3d2-7c3a-6c0a-33fbe71db35" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "100%", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "44fb0f7-f3d2-7c3a-6c0a-33fbe71db35": { "uuid": "44fb0f7-f3d2-7c3a-6c0a-33fbe71db35", "id": "commercialCondition", "name": "commercialCondition", "type": "text", "subtype": "normal", "design": "cardtitle", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginRight": 0, "marginLeft": 0, "marginTop": 0, "marginBottom": 0 } }, "style": { "regular": { "cursor": "auto" } } } }, "props": { "value": { "props": { "value": "Condiciones Comerciales" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "d62c7c7-ea44-0b2a-3aa1-5a86742dbee": { "uuid": "d62c7c7-ea44-0b2a-3aa1-5a86742dbee", "id": "item102", "name": "item102", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "bae47-d8-8753-45e0-d0032ba211a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "height": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "bae47-d8-8753-45e0-d0032ba211a": { "uuid": "bae47-d8-8753-45e0-d0032ba211a", "id": "layout39", "name": "layout39", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "0ebaf-c0a7-7dd2-f676-7f326cde2ca0", "b678251-dc43-6c7c-280-828a0146db0" ], "layout": { "DESKTOP": { "style": { "justifyContent": "start", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "0ebaf-c0a7-7dd2-f676-7f326cde2ca0": { "uuid": "0ebaf-c0a7-7dd2-f676-7f326cde2ca0", "id": "item103", "name": "item103", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "11f0cc3-3b73-76fa-ec8d-7748400ff475" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "11f0cc3-3b73-76fa-ec8d-7748400ff475": { "uuid": "11f0cc3-3b73-76fa-ec8d-7748400ff475", "id": "layout58", "name": "layout58", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "fbc30f-2fae-3c38-df00-24622c264de" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "b678251-dc43-6c7c-280-828a0146db0": { "uuid": "b678251-dc43-6c7c-280-828a0146db0", "id": "item150", "name": "item150", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "3f5670c-00ac-20d0-8e3-fdcef54d3f04" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "3f5670c-00ac-20d0-8e3-fdcef54d3f04": { "uuid": "3f5670c-00ac-20d0-8e3-fdcef54d3f04", "id": "layout62", "name": "layout62", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "24674d-4cc-0038-0f1f-bd57edbd371c" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "24674d-4cc-0038-0f1f-bd57edbd371c": { "uuid": "24674d-4cc-0038-0f1f-bd57edbd371c", "id": "item151", "name": "item151", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "3b8ade-5a-fd3e-08ce-ac5c3650540" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "3b8ade-5a-fd3e-08ce-ac5c3650540": { "uuid": "3b8ade-5a-fd3e-08ce-ac5c3650540", "id": "paymentTerms", "name": "paymentTerms", "type": "input", "subtype": "text", "design": "text", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } } }, "TABLET": { "structure": { "size": { "maxWidth": "unset" } } } }, "props": { "label": "Condicion de Pago", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "maxLength": 100, "disabledMap": {}, "perPage": 20, "maxPerList": 5 }, "relationConfig": { "type": "ENTITY", "idObject": "790363", "cdForm": "VM_PAYMENT_TERMS", "idRelation": "faa5f6c16458a5f3c8074d140f261ca", "dsName": "RelationPaymentCondition1", "show": false, "search": false, "lsFilters": [], "idKey": "id" }, "relatedAttribute": {}, "modifiedName": true, "modifiedId": true }, "ff37ecb-57d2-0bd-dbe2-bee6de6a4": { "uuid": "ff37ecb-57d2-0bd-dbe2-bee6de6a4", "id": "item87", "name": "item87", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "2ab82d2-7bf-5213-6dd3-25fdc55c846" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "height": "100%", "minHeight": "53px" } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "2ab82d2-7bf-5213-6dd3-25fdc55c846": { "uuid": "2ab82d2-7bf-5213-6dd3-25fdc55c846", "id": "layout36", "name": "layout36", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "bd2a2b6-f87-3db8-f06c-22384ca3ccf", "f342ef3-b124-1731-a656-10e61e40ab86" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "bd2a2b6-f87-3db8-f06c-22384ca3ccf": { "uuid": "bd2a2b6-f87-3db8-f06c-22384ca3ccf", "id": "item90", "name": "item90", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "b7a4e2-b806-1c1-f5cb-bbfda86f86d" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "100%", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "b7a4e2-b806-1c1-f5cb-bbfda86f86d": { "uuid": "b7a4e2-b806-1c1-f5cb-bbfda86f86d", "id": "deliveryConditions", "name": "deliveryConditions", "type": "text", "subtype": "normal", "design": "cardtitle", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginRight": 0, "marginLeft": 0, "marginTop": 0, "marginBottom": 0 } }, "style": { "regular": { "cursor": "auto" } } } }, "props": { "value": { "props": { "value": "Condiciones de Entrega" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "f342ef3-b124-1731-a656-10e61e40ab86": { "uuid": "f342ef3-b124-1731-a656-10e61e40ab86", "id": "item99", "name": "item99", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "f5ddd3-76ca-3bd2-72c-804cd4cbd3" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "height": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "f5ddd3-76ca-3bd2-72c-804cd4cbd3": { "uuid": "f5ddd3-76ca-3bd2-72c-804cd4cbd3", "id": "layout37", "name": "layout37", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "cf7812c-5d4-e13c-250d-c8d58e4b623" ], "layout": { "DESKTOP": { "style": { "justifyContent": "start", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "cf7812c-5d4-e13c-250d-c8d58e4b623": { "uuid": "cf7812c-5d4-e13c-250d-c8d58e4b623", "id": "item100", "name": "item100", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "5025c0-148-1204-d5c-04dce7e485e" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "5025c0-148-1204-d5c-04dce7e485e": { "uuid": "5025c0-148-1204-d5c-04dce7e485e", "id": "layout60", "name": "layout60", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "427213c-f735-5450-d6e2-ca3e1eff1851" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "427213c-f735-5450-d6e2-ca3e1eff1851": { "uuid": "427213c-f735-5450-d6e2-ca3e1eff1851", "id": "item139", "name": "item139", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "c58816a-26c8-b3a1-4bd-3fabcaef6716" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "c58816a-26c8-b3a1-4bd-3fabcaef6716": { "uuid": "c58816a-26c8-b3a1-4bd-3fabcaef6716", "id": "deliveryAddress", "name": "deliveryAddress", "type": "input", "subtype": "text", "design": "text", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } } }, "TABLET": { "structure": { "size": { "maxWidth": "unset" } } } }, "props": { "label": "Direccion de Entrega", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "maxLength": 100 }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "modifiedName": true, "modifiedId": true }, "770361-a7de-82a0-d802-1416c73c668": { "uuid": "770361-a7de-82a0-d802-1416c73c668", "id": "comentarioss", "name": "comentarioss", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "3f708f6-256b-5706-db7f-54ef665ed2d", "63c501-b30e-00-b68e-85f20aa648a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "3f708f6-256b-5706-db7f-54ef665ed2d": { "uuid": "3f708f6-256b-5706-db7f-54ef665ed2d", "id": "item44", "name": "item44", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "e26aad-0674-eabc-3367-2a301160db3c" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "100%", "minHeight": "unset", "minWidth": "768px" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "minWidth": "unset" } } } }, "hyperLink": { "destinityType": "_self" } }, "e26aad-0674-eabc-3367-2a301160db3c": { "uuid": "e26aad-0674-eabc-3367-2a301160db3c", "id": "termsConditions", "name": "termsConditions", "type": "text", "subtype": "normal", "design": "cardtitle", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginRight": 0, "marginLeft": 0, "marginTop": 0, "marginBottom": 0 } }, "style": { "regular": { "cursor": "auto" } } } }, "props": { "value": { "props": { "value": "Terminos y Condiciones" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "63c501-b30e-00-b68e-85f20aa648a": { "uuid": "63c501-b30e-00-b68e-85f20aa648a", "id": "item45", "name": "item45", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "8a3c416-48c6-2bba-f2c8-6f322f6164f" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "height": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "8a3c416-48c6-2bba-f2c8-6f322f6164f": { "uuid": "8a3c416-48c6-2bba-f2c8-6f322f6164f", "id": "layout21", "name": "layout21", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "311f6f5-2da-8bdf-50f4-2d0858685f" ], "layout": { "DESKTOP": { "style": { "justifyContent": "start", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "311f6f5-2da-8bdf-50f4-2d0858685f": { "uuid": "311f6f5-2da-8bdf-50f4-2d0858685f", "id": "item46", "name": "item46", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "88a7b36-c1a8-7302-574d-d1ce47847571" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "88a7b36-c1a8-7302-574d-d1ce47847571": { "uuid": "88a7b36-c1a8-7302-574d-d1ce47847571", "id": "layout22", "name": "layout22", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "1bfd53c-df80-e354-acf-b57b163a6cc" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "1bfd53c-df80-e354-acf-b57b163a6cc": { "uuid": "1bfd53c-df80-e354-acf-b57b163a6cc", "id": "item47", "name": "item47", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "bbe5677-cf64-1837-5726-1a151720174d" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "70px" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "bbe5677-cf64-1837-5726-1a151720174d": { "uuid": "bbe5677-cf64-1837-5726-1a151720174d", "id": "comen", "name": "comen", "type": "input", "subtype": "textarea", "design": "textarea", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "minWidth": "unset", "maxWidth": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } } } }, "props": { "label": "Comentarios", "contentType": "normal", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "maxLength": "1000" }, "modifiedName": true, "modifiedId": true }, "b0c76-0b7b-b46f-23f-26a82caf0ef": { "uuid": "b0c76-0b7b-b46f-23f-26a82caf0ef", "id": "item20", "name": "item20", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "c282ea-58db-7cb-b537-3ffa151c1f32" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "minWidth": "unset" } } }, "MOBILE": { "structure": { "size": { "width": "auto" } } } }, "hyperLink": { "destinityType": "_self" } }, "3deb2-4e81-caa1-4463-16e31b78a": { "uuid": "3deb2-4e81-caa1-4463-16e31b78a", "id": "status", "name": "status", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "font": { "align": "left" }, "regular": { "cursor": "auto" }, "disabled": { "border": { "top": { "width": "0.5px" }, "right": { "width": "0.5px" }, "bottom": { "width": "0.5px" }, "left": { "width": "0.5px" } }, "cursor": "default" } }, "visible": true } }, "modifiedName": true, "modifiedId": true, "subtype": "number", "props": { "contentType": "integer", "label": "Estado", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "rules": { "calc": [] }, "perPage": 20, "maxPerList": 5 }, "relationConfig": { "type": "VALUE_LIST", "idRelation": "60bae5f-36a1-de2c-272e-e2a6d3e5ff62", "idObject": "a37b80e0-f1c2-49ec-b9d7-ea413b277a5c", "showIcon": false }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "number" }, "afb0a3-d1e-6aed-5a4d-a78d61365b4f": { "uuid": "afb0a3-d1e-6aed-5a4d-a78d61365b4f", "id": "layout12", "name": "layout12", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "88ef86d-f1ff-acbf-3cd-d4e44ad2", "e44052-e177-380e-b103-f0dedf3a2cad", "ee66ff3-4c6c-4ecf-e28a-21e8702d730" ], "layout": { "DESKTOP": { "style": { "props": { "type": "ROW" }, "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "TABLET": { "style": { "props": { "type": "COLUMN" }, "gap": "4px" } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "88ef86d-f1ff-acbf-3cd-d4e44ad2": { "uuid": "88ef86d-f1ff-acbf-3cd-d4e44ad2", "id": "item52", "name": "item52", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "c2a7267-4e3c-7453-675-30ed1eb5c658" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "c2a7267-4e3c-7453-675-30ed1eb5c658": { "uuid": "c2a7267-4e3c-7453-675-30ed1eb5c658", "id": "layout14", "name": "layout14", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "542642-236b-c71-8806-eb60a4cc7aab" ], "layout": { "DESKTOP": { "style": { "justifyContent": "start", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "TABLET": { "style": { "gap": "4px", "props": { "type": "COLUMN" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "542642-236b-c71-8806-eb60a4cc7aab": { "uuid": "542642-236b-c71-8806-eb60a4cc7aab", "id": "item62", "name": "item62", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "260c384-5a60-c2f-7207-c7381148fd" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "minHeight": "14px", "minWidth": "unset" } }, "style": {} }, "MOBILE": { "structure": { "size": { "width": "auto", "height": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "e44052-e177-380e-b103-f0dedf3a2cad": { "uuid": "e44052-e177-380e-b103-f0dedf3a2cad", "id": "item63", "name": "item63", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "2b2a35d-28f7-0dbc-4676-84532fb257c" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "2b2a35d-28f7-0dbc-4676-84532fb257c": { "uuid": "2b2a35d-28f7-0dbc-4676-84532fb257c", "id": "layout15", "name": "layout15", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "0112adf-bff7-613e-d303-70cf8b8b337d", "dfcca76-3b3-b5f8-a26d-c4244ce3503c", "3e3f0f3-af58-c868-a537-5d84a7136e" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "TABLET": { "style": { "gap": "4px", "props": { "type": "COLUMN" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "0112adf-bff7-613e-d303-70cf8b8b337d": { "uuid": "0112adf-bff7-613e-d303-70cf8b8b337d", "id": "item65", "name": "item65", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "1831bf-534-b7ef-8de-7c7050fea2d" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "width": "auto", "minWidth": "150px" } }, "style": {} }, "MOBILE": { "structure": { "size": { "height": "100%", "minWidth": "unset" } } } }, "hyperLink": { "destinityType": "_self" } }, "1831bf-534-b7ef-8de-7c7050fea2d": { "uuid": "1831bf-534-b7ef-8de-7c7050fea2d", "id": "purchaseOrderType", "name": "purchaseOrderType", "type": "input", "subtype": "text", "design": "text", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } } } }, "props": { "label": "Tipo de Orden", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "maxLength": 100, "disabledMap": {}, "perPage": 20, "maxPerList": 5 }, "relationConfig": { "type": "VALUE_LIST", "idObject": "e4b0325-d43b-681f-d7e-21776c555cd", "idRelation": "5b3c823d5280a7b184827c6e1be", "showIcon": false }, "relatedAttribute": {}, "modifiedName": true, "modifiedId": true }, "260c384-5a60-c2f-7207-c7381148fd": { "uuid": "260c384-5a60-c2f-7207-c7381148fd", "id": "supplier", "name": "supplier", "type": "input", "subtype": "text", "design": "text", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } } } }, "props": { "label": "Razon Social", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "maxLength": 100, "disabledMap": {}, "perPage": 20, "maxPerList": 5, "rules": { "view": [] } }, "relationConfig": { "type": "ENTITY", "idObject": "030400", "cdForm": "PROV1654870424", "idRelation": "b7c15abaaa4447e537fe4d2fe803", "dsName": "RelationSupplier", "show": false, "search": false, "lsFilters": [], "idKey": "id" }, "relatedAttribute": {}, "modifiedName": true, "modifiedId": true }, "48d27e-b081-2655-8a42-d22ba48eb2b7": { "uuid": "48d27e-b081-2655-8a42-d22ba48eb2b7", "id": "orderDate", "name": "orderDate", "type": "input", "subtype": "datetime", "design": "datetime", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } } } }, "props": { "contentType": "date", "label": "Fecha de Confirmacion", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": {}, "type": "LITERAL" } }, "modifiedName": true, "modifiedId": true, "storageType": "Timestamp", "length": "10", "minLength": "10", "prefix": "", "autonumeric": false, "autoincremental": false, "grid": { "include": false, "order": "-1", "columnWidth": "1", "filter": "none", "filterOrder": "-1", "inGeneralSearch": false, "showIcon": false, "showText": true }, "isNew": false, "multiline": false }, "dfcca76-3b3-b5f8-a26d-c4244ce3503c": { "uuid": "dfcca76-3b3-b5f8-a26d-c4244ce3503c", "id": "item59", "name": "item59", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "48d27e-b081-2655-8a42-d22ba48eb2b7" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "style": {} }, "MOBILE": { "structure": { "size": { "width": "auto", "height": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "34283a-4081-1a6e-02f-45fab325afc2": { "uuid": "34283a-4081-1a6e-02f-45fab325afc2", "id": "deliveryDate", "name": "deliveryDate", "type": "input", "subtype": "datetime", "design": "datetime", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } } } }, "props": { "contentType": "date", "label": "Fecha de Entrega", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": {}, "type": "LITERAL" } }, "modifiedName": true, "modifiedId": true, "storageType": "Timestamp", "length": "10", "minLength": "10", "prefix": "", "autonumeric": false, "autoincremental": false, "grid": { "include": false, "order": "-1", "columnWidth": "1", "filter": "none", "filterOrder": "-1", "inGeneralSearch": false, "showIcon": false, "showText": true }, "isNew": false, "multiline": false }, "ee66ff3-4c6c-4ecf-e28a-21e8702d730": { "uuid": "ee66ff3-4c6c-4ecf-e28a-21e8702d730", "id": "item61", "name": "item61", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "45cc1-8125-101d-62e8-64a5d7a1285" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": false }, "TABLET": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "45cc1-8125-101d-62e8-64a5d7a1285": { "uuid": "45cc1-8125-101d-62e8-64a5d7a1285", "id": "layout16", "name": "layout16", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "7f2128-57f5-db86-c4f8-acc7ed822" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "TABLET": { "style": { "gap": "4px", "props": { "type": "COLUMN" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "7f2128-57f5-db86-c4f8-acc7ed822": { "uuid": "7f2128-57f5-db86-c4f8-acc7ed822", "id": "item66", "name": "item66", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "3deb2-4e81-caa1-4463-16e31b78a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": false }, "TABLET": { "style": {} }, "MOBILE": { "structure": { "size": { "width": "auto", "height": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "24d7c-e875-8468-cadb-f0d58ac0e128": { "uuid": "24d7c-e875-8468-cadb-f0d58ac0e128", "id": "item12", "name": "item12", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "55ad07-67ff-f17d-a163-cd50441f5aa8" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "f8c31c7-ef3-d4f4-6c2b-de8b3e03268e": { "uuid": "f8c31c7-ef3-d4f4-6c2b-de8b3e03268e", "id": "layout6", "name": "layout6", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "24d7c-e875-8468-cadb-f0d58ac0e128", "f085b-c2ee-1835-615b-b85b8a7a70ad" ], "layout": { "DESKTOP": { "style": { "gap": "0px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end", "marginRight": "10px" } } }, "MOBILE": { "structure": { "position": { "marginRight": 0 } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "0700774-614f-2d-8d7-67bad3ac5d36": { "uuid": "0700774-614f-2d-8d7-67bad3ac5d36", "id": "item28", "name": "item28", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "68bb8-505-658a-6b41-f863bfd4f1d" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "2fdf41-354a-7c75-86dc-5134a1ebc02e": { "uuid": "2fdf41-354a-7c75-86dc-5134a1ebc02e", "id": "item30", "name": "item30", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "a283ad-0acd-4b7c-fa0f-7e7311e172f8" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "23580ef-de3-48dd-fc0d-d8aa2a2dfa8": { "uuid": "23580ef-de3-48dd-fc0d-d8aa2a2dfa8", "id": "layout17", "name": "layout17", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "0700774-614f-2d-8d7-67bad3ac5d36", "2fdf41-354a-7c75-86dc-5134a1ebc02e" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "justifyContent": "end", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } }, "MOBILE": { "style": { "props": { "type": "ROW" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "68bb8-505-658a-6b41-f863bfd4f1d": { "uuid": "68bb8-505-658a-6b41-f863bfd4f1d", "id": "text5", "name": "text5", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "80px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } } }, "TABLET": { "style": { "regular": { "font": { "size": "18px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "16px" } } } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:right;\"><span style=\"color: var(--design-solid-color-neutralgrey); font-size: 12px; font-family: var(--design-font-primary);\"><strong>Subtotal</strong></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "a283ad-0acd-4b7c-fa0f-7e7311e172f8": { "uuid": "a283ad-0acd-4b7c-fa0f-7e7311e172f8", "id": "netTotalAmount", "name": "netTotalAmount", "type": "input", "subtype": "number", "design": "number", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "70px", "height": "25px" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } }, "style": { "regular": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" }, "font": { "size": "12px", "weight": "600", "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity" }, "border": { "top": { "width": "0px" }, "right": { "width": "0px" }, "bottom": { "width": "0px" }, "left": { "width": "0px" } }, "cursor": "auto" }, "focus": { "border": { "top": { "width": "0px" }, "right": { "width": "0px" }, "left": { "width": "0px" } } }, "disabled": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" }, "border": { "top": { "width": "0px" }, "right": { "width": "0px" }, "bottom": { "width": "0px" }, "left": { "width": "0px" } }, "cursor": "default", "padding": { "paddingRight": "0px", "paddingLeft": "0px" } } } } }, "props": { "label": "", "initialState": "disabled", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "decimals": 2, "rules": { "calc": [] } }, "relatedAttribute": {}, "modifiedName": true, "modifiedId": true }, "aed06a-ea3-7487-4a20-bfbd662db1": { "uuid": "aed06a-ea3-7487-4a20-bfbd662db1", "id": "layout23", "name": "layout23", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "be3e523-d-cb07-f27-becbdbb6bdb5", "65bf252-bd18-7f73-2a3-65dbd07e31b" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "justifyContent": "end", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end", "marginLeft": 0, "marginRight": "0px" } } }, "MOBILE": { "style": { "props": { "type": "ROW" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "be3e523-d-cb07-f27-becbdbb6bdb5": { "uuid": "be3e523-d-cb07-f27-becbdbb6bdb5", "id": "item31", "name": "item31", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "c201cca-cefb-06e-bf23-bd656ccfd0" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "c201cca-cefb-06e-bf23-bd656ccfd0": { "uuid": "c201cca-cefb-06e-bf23-bd656ccfd0", "id": "text6", "name": "text6", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "80px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } } }, "TABLET": { "style": { "regular": { "font": { "size": "18px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "16px" } } } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:right;\"><span style=\"color: var(--design-solid-color-neutralgrey); font-size: 12px; font-family: var(--design-font-primary);\"><strong>Impuesto</strong></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "65bf252-bd18-7f73-2a3-65dbd07e31b": { "uuid": "65bf252-bd18-7f73-2a3-65dbd07e31b", "id": "item32", "name": "item32", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "d61433d-8b61-6b80-eb06-bb5057a7e417" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "hover": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" } } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "d61433d-8b61-6b80-eb06-bb5057a7e417": { "uuid": "d61433d-8b61-6b80-eb06-bb5057a7e417", "id": "totaVat", "name": "totaVat", "type": "input", "subtype": "number", "design": "number", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "70px", "height": "25px" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } }, "style": { "regular": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" }, "font": { "size": "12px", "weight": "600", "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity" }, "border": { "top": { "width": "0px" }, "right": { "width": "0px" }, "bottom": { "width": "0px" }, "left": { "width": "0px" } }, "cursor": "auto" }, "focus": { "border": { "top": { "width": "0px" }, "right": { "width": "0px" }, "left": { "width": "0px" } } }, "disabled": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" }, "border": { "top": { "width": "0px" }, "right": { "width": "0px" }, "bottom": { "width": "0px" }, "left": { "width": "0px" } }, "cursor": "default", "padding": { "paddingRight": "0px", "paddingLeft": "0px" } } } } }, "props": { "label": "", "initialState": "disabled", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "decimals": 2, "rules": { "calc": [] } }, "relatedAttribute": {}, "modifiedName": true, "modifiedId": true }, "f085b-c2ee-1835-615b-b85b8a7a70ad": { "uuid": "f085b-c2ee-1835-615b-b85b8a7a70ad", "id": "item33", "name": "item33", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "f737d85-7ae0-dab6-108-34df66483c7b" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "f737d85-7ae0-dab6-108-34df66483c7b": { "uuid": "f737d85-7ae0-dab6-108-34df66483c7b", "id": "layout25", "name": "layout25", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "4cc552-13ae-00f-bcc0-bb8bcef54cd7", "81e21d1-d32-040-42e-1753307c1147" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "justifyContent": "end", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } }, "MOBILE": { "style": { "props": { "type": "ROW" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "4cc552-13ae-00f-bcc0-bb8bcef54cd7": { "uuid": "4cc552-13ae-00f-bcc0-bb8bcef54cd7", "id": "item67", "name": "item67", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "0df3517-168-f4fa-4436-d634a3237417" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "0df3517-168-f4fa-4436-d634a3237417": { "uuid": "0df3517-168-f4fa-4436-d634a3237417", "id": "text7", "name": "text7", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "80px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } }, "style": { "tooltip": { "color": { "color": "#000000" } } } }, "TABLET": { "style": { "regular": { "font": { "size": "18px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "16px" } } } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:right;\"><span style=\"color: var(--design-solid-color-neutral); font-size: 14px; font-family: var(--design-font-primary);\"><strong>Total Neto</strong></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "81e21d1-d32-040-42e-1753307c1147": { "uuid": "81e21d1-d32-040-42e-1753307c1147", "id": "item68", "name": "item68", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "0a4facb-67b6-f438-0eb-a7ecc771ad5" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "hover": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" } } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "0a4facb-67b6-f438-0eb-a7ecc771ad5": { "uuid": "0a4facb-67b6-f438-0eb-a7ecc771ad5", "id": "netPrice", "name": "netPrice", "type": "input", "subtype": "number", "design": "number", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "70px", "height": "25px" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } }, "style": { "regular": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" }, "font": { "weight": "600" }, "border": { "top": { "width": "0px" }, "right": { "width": "0px" }, "bottom": { "width": "0px" }, "left": { "width": "0px" } }, "cursor": "auto" }, "focus": { "border": { "top": { "width": "0px" }, "right": { "width": "0px" }, "left": { "width": "0px" } } }, "disabled": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" }, "border": { "top": { "width": "0px" }, "right": { "width": "0px" }, "bottom": { "width": "0px" }, "left": { "width": "0px" } }, "cursor": "default", "padding": { "paddingRight": "0px", "paddingLeft": "0px" } } } } }, "props": { "label": "", "initialState": "disabled", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "decimals": 2, "rules": { "calc": [] } }, "relatedAttribute": {}, "modifiedName": true, "modifiedId": true }, "11f700e-eb4f-4e2-8d12-de471ff22836": { "template": "repeater", "layout": { "DESKTOP": { "style": { "pagination": { "arrows": { "color": "$color.neutral.color" }, "pages": { "selectedBackgroundColor": "$color.primary.color", "selectedBackgroundOpacity": "$color.primary.opacity", "disabledFontColor": "$color.primary.color", "disabledFontOpacity": "$color.primary.opacity" } }, "gap": "1px", "props": { "type": "TAPE", "scroll": "none", "direction": "column", "scrollPos": false, "scrollAlign": "end", "columns": 1, "orientation": "top" }, "regular": { "padding": { "paddingTop": "0px", "paddingRight": "0px", "paddingBottom": "0px", "paddingLeft": "0px" }, "background": { "url": "" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "minWidth": "unset", "height": "auto", "maxWidth": "unset", "minHeight": "unset", "maxHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "visible": true }, "TABLET": { "structure": { "size": { "minWidth": "0px" }, "position": { "justifySelf": "center", "marginTop": 0 } } }, "MOBILE": { "style": { "regular": { "padding": { "paddingTop": "0px", "paddingRight": "0px", "paddingBottom": "0px", "paddingLeft": "0px" } }, "props": { "rows": 3 } }, "structure": { "size": { "minWidth": "unset", "height": "130auto" } } } }, "modifiedName": true, "subtype": "normal", "name": "commentsItems", "subitems": [ "d225eb-a4fd-18bb-c6cb-bb51cafa14d1" ], "id": "commentsItems", "type": "repeater", "uuid": "11f700e-eb4f-4e2-8d12-de471ff22836", "modifiedId": true, "props": { "initialItem": true, "fillPage": false, "canModify": true, "dataSource": "EMPTY_DATASOURCE" }, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "card" }, "d225eb-a4fd-18bb-c6cb-bb51cafa14d1": { "layout": { "DESKTOP": { "style": { "regular": { "background": { "color": "#eceeee", "url": "" }, "cursor": "auto" }, "props": { "type": "TAPE" } }, "structure": { "size": { "width": "100%", "height": "100%", "minHeight": "unset", "minWidth": "unset", "maxWidth": "unset", "maxHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } }, "visible": true, "subtype": "TAPE" }, "TABLET": { "structure": { "size": { "minHeight": "32px" } } }, "MOBILE": { "style": { "regular": { "padding": { "paddingBottom": "4px" } } }, "structure": { "size": { "width": "auto", "minHeight": "unset" } } } }, "subtype": "normal", "name": "item", "subitems": [ "1ac255-8f35-3324-0346-441e083b407f", "ef313a8-d8b-c3f0-ae-ceb5d500e5" ], "id": "item", "type": "item", "uuid": "d225eb-a4fd-18bb-c6cb-bb51cafa14d1", "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "item", "modifiedName": true, "modifiedId": true }, "1ac255-8f35-3324-0346-441e083b407f": { "uuid": "1ac255-8f35-3324-0346-441e083b407f", "id": "layoutTupla", "name": "layoutTupla", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "b1e2f16-e6cd-43f4-70f-f2c564cbf11", "b0df16-1c44-340-8df1-77fa5f6b4772", "c0ac0d-8416-c3df-e0f7-621fbe07a2d4", "e747368-271b-e033-6c18-c3262f7dff8b", "87d5e70-10d6-7484-51ca-1fb617ec5e4", "043f-2e1-83a7-2715-a34433ebe68", "b12dad8-1270-db24-07a-11dd40b7310d", "cbfa0-7360-fa13-4e45-33fcd3af0" ], "layout": { "DESKTOP": { "style": { "justifyContent": "start", "regular": { "padding": { "paddingTop": "8px", "paddingRight": "12px", "paddingBottom": "8px", "paddingLeft": "12px" }, "cursor": "auto" }, "hover": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" } } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "style": { "gap": "16px" } }, "MOBILE": { "style": { "gap": "8px", "regular": { "padding": { "paddingTop": "0px", "paddingBottom": "0px", "paddingLeft": "0px", "paddingRight": "0px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "b0df16-1c44-340-8df1-77fa5f6b4772": { "uuid": "b0df16-1c44-340-8df1-77fa5f6b4772", "id": "item9", "name": "item9", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "cd8ef07-57ae-74a-cac-88347154dfa1" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "150%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": { "regular": { "padding": { "paddingRight": "12px", "paddingLeft": "12px" } } }, "structure": { "size": { "width": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "cd8ef07-57ae-74a-cac-88347154dfa1": { "uuid": "cd8ef07-57ae-74a-cac-88347154dfa1", "id": "nItem", "name": "nItem", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "marginLeft": 0, "marginRight": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "font": { "align": "left" }, "tooltip": { "color": { "color": "$color.tertiary.color", "opacity": "$color.tertiary.opacity" }, "background": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" }, "border": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity", "radius": "4px" } }, "regular": { "padding": { "paddingLeft": "4px" }, "icons": { "leadingIconColor": "$color.primary.color", "trailingIconColor": "$color.primary.color" }, "cursor": "auto" }, "disabled": { "background": { "opacity": "00" }, "border": { "top": { "width": "0px" }, "right": { "width": "0px" }, "bottom": { "width": "0px" }, "left": { "width": "0px" } }, "cursor": "default" } }, "visible": true }, "MOBILE": { "style": { "regular": { "padding": { "paddingLeft": "0px" } }, "font": { "family": "$font.secondary" } } } }, "modifiedName": true, "modifiedId": true, "subtype": "number", "props": { "contentType": "integer", "label": "", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "rules": {}, "perPage": 20, "maxPerList": 5 }, "relationConfig": { "type": "ENTITY", "idObject": "796037", "cdForm": "WMS_ITEM", "idRelation": "db0fade-ce35-72f-32ad-af5428d5802", "dsName": "relItem11", "show": true, "search": false, "lsFilters": [ { "cdField": "cbIsActive", "cdValue": "true", "type": "TP_VALUE", "filterCondition": "EQ" }, { "cdField": "purchaseItem", "cdValue": "true", "type": "TP_VALUE", "filterCondition": "EQ" } ], "idKey": "idItem" }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "number", "tooltip": { "text": "07000004 - ACCESO A INTERNET DE ALTA VELOCIDAD Y SOPORTE TÉCNICO" } }, "e747368-271b-e033-6c18-c3262f7dff8b": { "uuid": "e747368-271b-e033-6c18-c3262f7dff8b", "id": "item15", "name": "item15", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "bca342-a5a1-b0e6-1b05-046e56dc5bb" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "55%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {}, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" } } } }, "hyperLink": { "destinityType": "_self" } }, "145fb33-33d-5c4-513e-5ee3d7fe04": { "uuid": "145fb33-33d-5c4-513e-5ee3d7fe04", "id": "quantity", "name": "quantity", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "regular": { "padding": { "paddingRight": "4px", "paddingLeft": "4px" }, "cursor": "auto" }, "disabled": { "background": { "opacity": "00" }, "border": { "top": { "width": "0px" }, "right": { "width": "0px" }, "bottom": { "width": "0px" }, "left": { "width": "0px" } }, "cursor": "default", "padding": { "paddingRight": "0px", "paddingLeft": "0px" } } }, "visible": true }, "MOBILE": { "style": { "font": { "align": "left" } } } }, "modifiedName": true, "modifiedId": true, "subtype": "number", "props": { "label": "", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "trailingIcon": {}, "value": { "props": { "value": "" }, "type": "LITERAL" }, "decimals": 2, "required": false, "rules": {} }, "hyperLink": { "destinityType": "_self" }, "events": { "onChange": "quantity_onChange" }, "design": "number" }, "f0a66e-4a57-e4d4-b73b-be26ec0b713": { "uuid": "f0a66e-4a57-e4d4-b73b-be26ec0b713", "id": "measureUnit", "name": "measureUnit", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "background": { "opacity": "00" }, "border": { "top": { "width": "0px" }, "right": { "width": "0px" }, "bottom": { "width": "0px" }, "left": { "width": "0px" } }, "cursor": "default", "padding": { "paddingRight": "0px", "paddingLeft": "0px" } } }, "visible": true } }, "modifiedName": true, "modifiedId": true, "subtype": "text", "props": { "label": "", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "rules": {}, "perPage": 20, "maxPerList": 5, "maxLength": 100 }, "relationConfig": { "type": "RULE", "cdVersion": "1", "idObject": "wmsUnitOfMeasure", "lsFilters": [ { "cdParam": "itemId", "dataType": "java.lang.Integer", "cdValue": "cd8ef07-57ae-74a-cac-88347154dfa1", "type": "TP_FIELD" } ], "idRelation": "5dfd65f-57ef-65c8-30a5-b78d5364576" }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "storageType": "Nativestring", "length": "100", "prefix": "", "autonumeric": false, "autoincremental": false, "grid": { "include": false, "order": "-1", "columnWidth": "-1", "filter": "none", "filterOrder": "-1", "inGeneralSearch": false, "showIcon": false, "showText": true }, "isNew": false, "multiline": false, "design": "text" }, "043f-2e1-83a7-2715-a34433ebe68": { "uuid": "043f-2e1-83a7-2715-a34433ebe68", "id": "item17", "name": "item17", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "831c068-e3a4-2db8-b5b-7ac802c062e2" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "66%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {}, "structure": { "size": { "width": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "228c657-a8ad-d0f5-c665-ab6aecb3b3c2": { "uuid": "228c657-a8ad-d0f5-c665-ab6aecb3b3c2", "id": "unitPrice", "name": "unitPrice", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "regular": { "padding": { "paddingRight": "0px" }, "cursor": "auto" }, "disabled": { "background": { "opacity": "00" }, "border": { "top": { "width": "0px" }, "right": { "width": "0px" }, "bottom": { "width": "0px" }, "left": { "width": "0px" } }, "cursor": "default", "padding": { "paddingLeft": "0px" } } }, "visible": true }, "MOBILE": { "style": { "font": { "align": "left" } } } }, "modifiedName": true, "modifiedId": true, "subtype": "number", "props": { "label": "", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "trailingIcon": {}, "value": { "props": { "value": "" }, "type": "LITERAL" }, "decimals": 2, "required": false, "rules": { "calc": [] } }, "hyperLink": { "destinityType": "_self" }, "events": { "onChange": "unitPrice_onChange" }, "design": "number", "relatedAttribute": { "idRelation": "db0fade-ce35-72f-32ad-af5428d5802", "type": "VALUE", "contentType": "code", "cdForeignField": "replacementValue" } }, "ce45d2a-f6e8-57c7-e5e-03622165fd2": { "uuid": "ce45d2a-f6e8-57c7-e5e-03622165fd2", "id": "vatTax", "name": "vatTax", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } }, "style": { "regular": { "padding": { "paddingRight": "0px" }, "cursor": "auto" }, "disabled": { "background": { "opacity": "00" }, "border": { "top": { "width": "0px" }, "right": { "width": "0px" }, "bottom": { "width": "0px" }, "left": { "width": "0px" } }, "cursor": "default", "padding": { "paddingLeft": "0px" } } }, "visible": true }, "MOBILE": { "style": { "font": { "align": "left" } } } }, "modifiedName": true, "modifiedId": true, "subtype": "number", "props": { "label": "", "initialState": "disabled", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "decimals": 2, "rules": { "calc": [] } }, "hyperLink": { "destinityType": "_self" }, "design": "number", "events": { "onChange": "vatTax_onChange" } }, "b12dad8-1270-db24-07a-11dd40b7310d": { "uuid": "b12dad8-1270-db24-07a-11dd40b7310d", "id": "item27", "name": "item27", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "045337-2ac8-3b37-f85c-248f4b2de12" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "2cc1a8d-b520-2dab-e07f-6d082b604a08": { "uuid": "2cc1a8d-b520-2dab-e07f-6d082b604a08", "id": "itemDeliveryDate", "name": "itemDeliveryDate", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "font": { "align": "right" }, "regular": { "padding": { "paddingLeft": "4px" }, "icons": { "leadingIconColor": "$color.iconointerno.color", "trailingIconColor": "$color.iconointerno.color" }, "cursor": "auto" }, "disabled": { "background": { "opacity": "00" }, "border": { "top": { "width": "0px" }, "right": { "width": "0px" }, "bottom": { "width": "0px" }, "left": { "width": "0px" } }, "cursor": "default", "padding": { "paddingLeft": "0px", "paddingRight": "0px" } } }, "visible": true }, "MOBILE": { "style": { "font": { "align": "left" } } } }, "modifiedName": true, "modifiedId": true, "subtype": "datetime", "props": { "contentType": "date", "label": "", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": {}, "type": "LITERAL" }, "required": false, "rules": {} }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "datetime" }, "fc575d4-188e-2d73-d207-f236351cca7": { "uuid": "fc575d4-188e-2d73-d207-f236351cca7", "id": "totalPrice", "name": "totalPrice", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "regular": { "padding": { "paddingLabel": "0px", "paddingRight": "0px" }, "cursor": "auto" }, "disabled": { "background": { "opacity": "00" }, "border": { "top": { "width": "0px" }, "right": { "width": "0px" }, "bottom": { "width": "0px" }, "left": { "width": "0px" } }, "cursor": "default", "padding": { "paddingLeft": "0px" } } }, "visible": true } }, "modifiedName": true, "modifiedId": true, "subtype": "number", "props": { "label": "", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "trailingIcon": {}, "value": { "props": { "value": "" }, "type": "LITERAL" }, "decimals": 2, "required": false, "rules": { "calc": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "commentsItems.unitPrice.value * commentsItems.quantity.value", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "BinaryExpression", "operator": "*", "left": { "type": "MemberExpression", "computed": false, "object": { "type": "MemberExpression", "computed": false, "object": { "type": "PageElementIdentifier", "name": "commentsItems", "range": [ 0, 13 ], "code": "commentsItems", "elemType": "repeater" }, "property": { "type": "PageElementIdentifier", "name": "unitPrice", "range": [ 14, 23 ], "code": "unitPrice", "elemType": "input", "repeater": "commentsItems" }, "range": [ 0, 23 ] }, "property": { "type": "ElementPropertyIdentifier", "name": "value", "range": [ 24, 29 ], "propID": "value" }, "range": [ 0, 29 ] }, "right": { "type": "MemberExpression", "computed": false, "object": { "type": "MemberExpression", "computed": false, "object": { "type": "PageElementIdentifier", "name": "commentsItems", "range": [ 32, 45 ], "code": "commentsItems", "elemType": "repeater" }, "property": { "type": "PageElementIdentifier", "name": "quantity", "range": [ 46, 54 ], "code": "quantity", "elemType": "input", "repeater": "commentsItems" }, "range": [ 32, 54 ] }, "property": { "type": "ElementPropertyIdentifier", "name": "value", "range": [ 55, 60 ], "propID": "value" }, "range": [ 32, 60 ] }, "range": [ 0, 60 ] }, "range": [ 0, 60 ] } ], "sourceType": "script", "range": [ 0, 60 ] } }, "readOnly": false, "expressionParser": "commentsItems.unitPrice.value * commentsItems.quantity.value", "idTarget": "commentsItems/totalPrice", "formName": "ORDE1698431606", "action": "calc", "tpRule": "CALC", "new": false } ] } }, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "number" }, "7f4b68-53dd-8102-0f12-a68c8c27fa3": { "uuid": "7f4b68-53dd-8102-0f12-a68c8c27fa3", "id": "item72", "name": "item72", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "52a1a8-073-7077-ac7a-44d26b30c283" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } }, "TABLET": { "visible": true } }, "hyperLink": { "destinityType": "_self" } }, "c22165-e363-c0a-e16a-2748fdec752": { "uuid": "c22165-e363-c0a-e16a-2748fdec752", "id": "menu2", "name": "menu2", "type": "menu", "subtype": "normal", "design": "horizontal_menu", "subitems": [ "620b687-042-8c34-4661-ad1254e2234a", "e13ae-d76-52a2-236c-60854bb6a12e" ], "layout": { "DESKTOP": { "structure": { "size": { "width": "auto", "minWidth": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "visible": true }, "TABLET": { "structure": { "position": { "alignSelf": "end" } } } }, "props": { "minimized": false }, "modifiedName": false, "modifiedId": false }, "620b687-042-8c34-4661-ad1254e2234a": { "uuid": "620b687-042-8c34-4661-ad1254e2234a", "id": "menu_item6", "name": "menu_item6", "type": "menu_item", "subtype": "normal", "design": "menu_item", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "padding": { "paddingTop": "8px", "paddingBottom": "8px" }, "font": { "weight": "bold", "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" }, "border": { "bottom": { "width": "2px", "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" } }, "cursor": "pointer" }, "disabled": { "cursor": "default" } }, "structure": { "size": { "width": "auto" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "style": { "selected": { "border": { "bottom": { "width": "2px" } } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "12px" } } } } }, "props": { "submenuAction": "click", "value": { "props": { "value": "Info. general" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "events": { "onClick": "menu_item6_onClick" } }, "e13ae-d76-52a2-236c-60854bb6a12e": { "uuid": "e13ae-d76-52a2-236c-60854bb6a12e", "id": "menu_item10", "name": "menu_item10", "type": "menu_item", "subtype": "normal", "design": "menu_item", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "pointer" }, "disabled": { "cursor": "default" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "73px" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } }, "visible": false }, "MOBILE": { "style": { "hover": { "border": { "bottom": { "width": "2px" } } }, "selected": { "border": { "bottom": { "width": "2px" } } } } } }, "props": { "submenuAction": "click", "value": { "props": { "value": "Ver mas" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" } }, "1f73aa8-67e6-f26-acb-a455ede08": { "uuid": "1f73aa8-67e6-f26-acb-a455ede08", "id": "item51", "name": "item51", "type": "item", "subtype": "normal", "design": "item", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "10px", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } }, "TABLET": { "structure": { "size": { "width": "1px" } } }, "MOBILE": { "structure": { "size": { "width": "100%", "minWidth": "60px", "minHeight": "16px" } }, "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "cbfa0-7360-fa13-4e45-33fcd3af0": { "uuid": "cbfa0-7360-fa13-4e45-33fcd3af0", "id": "item73", "name": "item73", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "137e54d-a0b4-7f4-7eab-f1a15e110e0a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "1px", "height": "auto", "minHeight": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {}, "structure": { "size": { "width": "100%", "height": "100%" } }, "visible": false } }, "hyperLink": { "destinityType": "_self" } }, "137e54d-a0b4-7f4-7eab-f1a15e110e0a": { "uuid": "137e54d-a0b4-7f4-7eab-f1a15e110e0a", "id": "icon12", "name": "icon12", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "10px", "height": "10px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "cursor": "pointer" } }, "MOBILE": { "structure": { "position": { "justifySelf": "end" } } } }, "props": { "value": { "props": { "value": { "type": "fontawesome", "value": [ "far", "trash-alt" ] } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "order": "start", "destinityType": "_self", "link": { "operation": "DELETE", "type": "REPEATER", "idObject": "11f700e-eb4f-4e2-8d12-de471ff22836" } }, "modifiedName": false, "modifiedId": false }, "b0a3c1b-acbb-3b3-f22e-2b60f1f660": { "uuid": "b0a3c1b-acbb-3b3-f22e-2b60f1f660", "id": "cuerpo", "name": "cuerpo", "type": "section", "subtype": "normal", "design": "section", "subitems": [ "ef2b67d-c36-25f-2c-a4305a60be0" ], "layout": { "DESKTOP": { "style": { "padding": { "paddingTop": "0px", "paddingRight": "0px", "paddingBottom": "0px", "paddingLeft": "0px" } }, "structure": { "size": { "width": "100%", "height": "70vh", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } } }, "TABLET": { "style": { "padding": { "paddingTop": "0px", "paddingRight": "0px", "paddingBottom": "0px", "paddingLeft": "0px" } } }, "MOBILE": { "style": { "padding": { "paddingTop": "0px", "paddingBottom": "0px" } }, "structure": { "size": { "height": "auto" } } } }, "modifiedName": true, "modifiedId": true, "props": { "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "showInfo", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "PageVariableIdentifier", "name": "showInfo", "range": [ 0, 8 ], "code": "showInfo" }, "range": [ 0, 8 ] } ], "sourceType": "script", "range": [ 0, 8 ] } }, "readOnly": false, "expressionParser": "showInfo", "idTarget": "cuerpo", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false } ] } } }, "0d8170f-d5ca-cb15-2864-a071f2cca721": { "uuid": "0d8170f-d5ca-cb15-2864-a071f2cca721", "id": "i1", "name": "i1", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "bbab6df-dd0-7784-81ac-2f314b3157", "b457fe-ca8b-0ad2-d448-aea62db737b", "0e2d4e-e5b0-b721-8831-a13e55ad4e8d" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "5cf5b8f-d744-0633-eae-3b376224d8d8": { "uuid": "5cf5b8f-d744-0633-eae-3b376224d8d8", "id": "i2", "name": "i2", "type": "item", "subtype": "normal", "design": "item", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "28vw", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "width": "0px" } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "ef2b67d-c36-25f-2c-a4305a60be0": { "uuid": "ef2b67d-c36-25f-2c-a4305a60be0", "id": "body", "name": "columnas_cuerpo", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "0d8170f-d5ca-cb15-2864-a071f2cca721", "5cf5b8f-d744-0633-eae-3b376224d8d8" ], "layout": { "DESKTOP": { "style": { "gap": "0px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "e5f5d5-d6cd-a05-c861-2effae1877c": { "uuid": "e5f5d5-d6cd-a05-c861-2effae1877c", "id": "item74", "name": "l3_i1", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "467fde5-c8a2-4e0d-8dd3-6ba56038f70" ], "layout": { "DESKTOP": { "style": { "regular": { "padding": { "paddingTop": "32px", "paddingRight": "54px", "paddingBottom": "32px", "paddingLeft": "64px" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "style": { "regular": { "padding": { "paddingTop": "12px", "paddingBottom": "12px", "paddingLeft": "12px", "paddingRight": "12px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true }, "52807cc-27d3-df25-bb7b-5d8b1c0cca1": { "uuid": "52807cc-27d3-df25-bb7b-5d8b1c0cca1", "id": "item75", "name": "l3_i2", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "573d02d-6bd1-da3-f286-50da77ad6b8" ], "layout": { "DESKTOP": { "style": { "regular": { "padding": { "paddingTop": "32px", "paddingRight": "54px", "paddingBottom": "32px", "paddingLeft": "64px" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "style": { "regular": { "padding": { "paddingTop": "12px", "paddingRight": "12px", "paddingBottom": "12px", "paddingLeft": "12px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true }, "63b8805-7273-be14-23cf-e02d2f811352": { "uuid": "63b8805-7273-be14-23cf-e02d2f811352", "id": "item80", "name": "l3_i3", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "770361-a7de-82a0-d802-1416c73c668" ], "layout": { "DESKTOP": { "style": { "regular": { "padding": { "paddingTop": "32px", "paddingRight": "54px", "paddingBottom": "32px", "paddingLeft": "64px" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "style": { "regular": { "padding": { "paddingTop": "12px", "paddingBottom": "12px", "paddingLeft": "12px", "paddingRight": "12px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true }, "c8647d-cb0-3230-6e1d-7437ce3130a8": { "uuid": "c8647d-cb0-3230-6e1d-7437ce3130a8", "id": "l3", "name": "l_body3", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "e5f5d5-d6cd-a05-c861-2effae1877c", "52807cc-27d3-df25-bb7b-5d8b1c0cca1", "63b8805-7273-be14-23cf-e02d2f811352", "7c0cd1c-b4f0-c37c-265b-534eb865d5e6", "8b47d4b-acbf-5165-4c0f-a8c42223ea27", "7e26577-75da-3cd3-0423-525a6cc38d5" ], "layout": { "DESKTOP": { "style": { "gap": "0px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "7e26577-75da-3cd3-0423-525a6cc38d5": { "uuid": "7e26577-75da-3cd3-0423-525a6cc38d5", "id": "item81", "name": "item81", "type": "item", "subtype": "normal", "design": "item", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "padding": { "paddingRight": "54px", "paddingBottom": "32px", "paddingLeft": "64px" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "80px", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "style": { "regular": { "padding": { "paddingTop": "12px", "paddingRight": "12px", "paddingBottom": "12px", "paddingLeft": "12px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true }, "a0f0e53-eced-6b1a-c24-f378b8e480a4": { "uuid": "a0f0e53-eced-6b1a-c24-f378b8e480a4", "id": "item82", "name": "i1_l4", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "cc3202-cbaa-84e2-b618-a30eef2136d7" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "1px", "height": "92%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true }, "11075c6-7edc-0abe-4cb3-eba4c4bbe18": { "uuid": "11075c6-7edc-0abe-4cb3-eba4c4bbe18", "id": "item84", "name": "i2_l4", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "16d7328-5edb-8e6d-2126-112e88e8477e" ], "layout": { "DESKTOP": { "style": { "regular": { "padding": { "paddingTop": "16px", "paddingRight": "16px", "paddingBottom": "16px", "paddingLeft": "16px" }, "background": { "color": "$color.tertiary.color", "opacity": "$color.tertiary.opacity" }, "shadow": { "x": "5px", "blur": "10px", "spread": "5px", "inset": "inset", "opacity": "0f" }, "radius": { "topRight": "24px" }, "cursor": "auto" } }, "structure": { "size": { "width": "22vw", "height": "100vh" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "width": "40vw" } }, "visible": true }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true }, "45a3a66-6822-d818-ebc-ecaadbf34ca": { "uuid": "45a3a66-6822-d818-ebc-ecaadbf34ca", "id": "l4", "name": "l4", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "a0f0e53-eced-6b1a-c24-f378b8e480a4", "11075c6-7edc-0abe-4cb3-eba4c4bbe18" ], "layout": { "DESKTOP": { "style": { "gap": "0px", "justifyContent": "end", "regular": { "padding": { "paddingRight": "0%" }, "background": { "color": "$color.tertiary.color" }, "shadow": { "y": "5px", "blur": "10px", "spread": "5px" }, "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "100vh", "minWidth": "unset" }, "position": { "position": "fixed", "alignSelf": "start", "justifySelf": "end" } } }, "MOBILE": { "structure": { "size": { "width": "20%" } }, "visible": false } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true, "props": { "rules": { "view": [] } } }, "d50836-8b23-55db-cf12-b7c3885474e": { "uuid": "d50836-8b23-55db-cf12-b7c3885474e", "id": "button2", "name": "button2", "type": "button", "subtype": "normal", "design": "primarioiconografico", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "marginRight": "0px", "position": "relative", "alignSelf": "end", "justifySelf": "end", "marginLeft": 0, "marginTop": 0, "marginBottom": "0px" } }, "style": { "regular": { "font": { "color": "$color.tertiary.color", "opacity": "$color.tertiary.opacity" }, "cursor": "pointer" }, "disabled": { "cursor": "default" } } } }, "props": { "initialState": "regular", "value": { "props": { "value": "" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self", "scroll": { "behavior": "auto", "block": "nearest", "line": "nearest" } }, "modifiedName": false, "modifiedId": false, "events": { "onClick": "button2_onClick" } }, "dd735d0-141-ed4a-ed26-856d23456da6": { "uuid": "dd735d0-141-ed4a-ed26-856d23456da6", "id": "button6", "name": "button6", "type": "button", "subtype": "normal", "design": "primarioiconografico", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } }, "style": { "regular": { "cursor": "pointer" }, "hover": { "background": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "border": { "top": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "right": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "bottom": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "left": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "cursor": "default" } }, "visible": false } }, "props": { "initialState": "regular", "value": { "props": { "value": "" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_modal", "link": { "operation": "SEND_EMAIL", "type": "ENTITY" }, "modalSize": { "x": "md", "y": "70vh" } }, "modifiedName": false, "modifiedId": false }, "c38361a-c6e3-b80e-f51-4d7cdd72348": { "uuid": "c38361a-c6e3-b80e-f51-4d7cdd72348", "id": "item89", "name": "item89", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "a3e5ae0-476-e316-8e80-50ce7047178a", "14e3a28-b3b8-3a6b-1e8a-46dc260fef8c" ], "layout": { "DESKTOP": { "style": { "regular": { "background": { "color": "$color.tertiary.color" }, "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {}, "visible": false } }, "hyperLink": { "destinityType": "_self" } }, "a3e5ae0-476-e316-8e80-50ce7047178a": { "uuid": "a3e5ae0-476-e316-8e80-50ce7047178a", "id": "button7", "name": "button7", "type": "button", "subtype": "normal", "design": "primarioiconografico", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } }, "style": { "regular": { "cursor": "pointer" }, "hover": { "background": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "border": { "top": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "right": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "bottom": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "left": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "cursor": "default" } } } }, "props": { "initialState": "regular", "value": { "props": { "value": "" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "14e3a28-b3b8-3a6b-1e8a-46dc260fef8c": { "uuid": "14e3a28-b3b8-3a6b-1e8a-46dc260fef8c", "id": "icon28", "name": "icon28", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "12px", "height": "12px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "color": { "color": "$color.tertiary.color", "opacity": "$color.tertiary.opacity" }, "cursor": "auto" } } }, "props": { "value": { "props": { "value": { "type": "fontawesome", "value": [ "fas", "print" ] } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false, "events": { "onClick": "icon28_onClick" } }, "528b71-5fe0-ab30-4c21-6bc1baac61e4": { "uuid": "528b71-5fe0-ab30-4c21-6bc1baac61e4", "id": "button10", "name": "button10", "type": "button", "subtype": "normal", "design": "primarioiconografico", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } }, "style": { "regular": { "cursor": "pointer" }, "disabled": { "cursor": "default" } } }, "MOBILE": { "style": { "regular": { "padding": { "paddingTop": "9px", "paddingBottom": "9px", "paddingLeft": "9px", "paddingRight": "9px" } } } } }, "props": { "initialState": "regular", "value": { "props": { "value": "" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false, "events": { "onClick": "button10_onClick" } }, "7c0cd1c-b4f0-c37c-265b-534eb865d5e6": { "uuid": "7c0cd1c-b4f0-c37c-265b-534eb865d5e6", "id": "item23", "name": "item23", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "36d0610-f8f2-12d5-7da6-f0763b0edd3" ], "layout": { "DESKTOP": { "style": { "regular": { "padding": { "paddingTop": "32px", "paddingRight": "54px", "paddingBottom": "32px", "paddingLeft": "64px" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "style": { "regular": { "padding": { "paddingTop": "12px", "paddingRight": "12px", "paddingBottom": "12px", "paddingLeft": "12px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true }, "36d0610-f8f2-12d5-7da6-f0763b0edd3": { "uuid": "36d0610-f8f2-12d5-7da6-f0763b0edd3", "id": "layout86", "name": "layout86", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "12f3c74-27a5-a75d-77dc-bd7b25f8cc", "521a-8f3c-8b57-03f0-d021044e10ef" ], "layout": { "DESKTOP": { "style": { "gap": "16px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "12f3c74-27a5-a75d-77dc-bd7b25f8cc": { "uuid": "12f3c74-27a5-a75d-77dc-bd7b25f8cc", "id": "item24", "name": "item24", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "1ea32d2-42c5-03e6-21a4-2ae8c41f0510" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "height": "100%", "minHeight": "53px" } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "1ea32d2-42c5-03e6-21a4-2ae8c41f0510": { "uuid": "1ea32d2-42c5-03e6-21a4-2ae8c41f0510", "id": "layout87", "name": "layout87", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "b5d418-440f-e773-411a-7726dea64eb6", "bcd2ab1-218e-bc0-3d1a-55674ee41657" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "b5d418-440f-e773-411a-7726dea64eb6": { "uuid": "b5d418-440f-e773-411a-7726dea64eb6", "id": "item222", "name": "item222", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "0e0a0b-2eb6-b1c0-b32e-c6806c33f20" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "100%", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "0e0a0b-2eb6-b1c0-b32e-c6806c33f20": { "uuid": "0e0a0b-2eb6-b1c0-b32e-c6806c33f20", "id": "text36", "name": "text36", "type": "text", "subtype": "normal", "design": "cardtitle", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginRight": 0, "marginLeft": 0, "marginTop": 0, "marginBottom": 0 } }, "style": { "regular": { "cursor": "auto" } } } }, "props": { "value": { "props": { "value": "Cotización" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "bcd2ab1-218e-bc0-3d1a-55674ee41657": { "uuid": "bcd2ab1-218e-bc0-3d1a-55674ee41657", "id": "item223", "name": "item223", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "a077b-a463-50b1-7cfc-c005b44c86f" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "height": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "a077b-a463-50b1-7cfc-c005b44c86f": { "uuid": "a077b-a463-50b1-7cfc-c005b44c86f", "id": "layout88", "name": "layout88", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "763d7cc-846b-46d0-ee1-1b15e1412bb" ], "layout": { "DESKTOP": { "style": { "justifyContent": "start", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "763d7cc-846b-46d0-ee1-1b15e1412bb": { "uuid": "763d7cc-846b-46d0-ee1-1b15e1412bb", "id": "item224", "name": "item224", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "3a1acad-2c43-df46-de30-f25616e3c408" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "3a1acad-2c43-df46-de30-f25616e3c408": { "uuid": "3a1acad-2c43-df46-de30-f25616e3c408", "id": "layout89", "name": "layout89", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "d750d82-2e4d-f631-623d-cf3d01d3e65" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "d750d82-2e4d-f631-623d-cf3d01d3e65": { "uuid": "d750d82-2e4d-f631-623d-cf3d01d3e65", "id": "item225", "name": "item225", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "d456af1-caa-f0e4-fdae-d86f0ebf01d5" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "521a-8f3c-8b57-03f0-d021044e10ef": { "uuid": "521a-8f3c-8b57-03f0-d021044e10ef", "id": "item228", "name": "item228", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "37ecfe8-5d65-cf4-ddae-0a5d78f87b51" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "height": "100%", "minHeight": "53px" } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "37ecfe8-5d65-cf4-ddae-0a5d78f87b51": { "uuid": "37ecfe8-5d65-cf4-ddae-0a5d78f87b51", "id": "layout91", "name": "layout91", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "0c0e8ed-6ace-c30b-b23-b0bd3ee74687", "23a1aa-d88a-b5-0fe-8adaf7eabc7" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "0c0e8ed-6ace-c30b-b23-b0bd3ee74687": { "uuid": "0c0e8ed-6ace-c30b-b23-b0bd3ee74687", "id": "item229", "name": "item229", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "f2b652d-bafe-7c0c-40f-876c80db60" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "100%", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "f2b652d-bafe-7c0c-40f-876c80db60": { "uuid": "f2b652d-bafe-7c0c-40f-876c80db60", "id": "text37", "name": "text37", "type": "text", "subtype": "normal", "design": "cardtitle", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginRight": 0, "marginLeft": 0, "marginTop": 0, "marginBottom": 0 } }, "style": { "regular": { "cursor": "auto" } } } }, "props": { "value": { "props": { "value": "Otros Documentos" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "23a1aa-d88a-b5-0fe-8adaf7eabc7": { "uuid": "23a1aa-d88a-b5-0fe-8adaf7eabc7", "id": "item230", "name": "item230", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "13285a3-f85-8a4f-a7d-51cc0a823bcb" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "height": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "13285a3-f85-8a4f-a7d-51cc0a823bcb": { "uuid": "13285a3-f85-8a4f-a7d-51cc0a823bcb", "id": "layout92", "name": "layout92", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "c2ae562-c2b2-0020-b133-02d28b68e4" ], "layout": { "DESKTOP": { "style": { "justifyContent": "start", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "c2ae562-c2b2-0020-b133-02d28b68e4": { "uuid": "c2ae562-c2b2-0020-b133-02d28b68e4", "id": "item231", "name": "item231", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "e2da00e-1d56-237a-3a7d-773dd651aa2" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "e2da00e-1d56-237a-3a7d-773dd651aa2": { "uuid": "e2da00e-1d56-237a-3a7d-773dd651aa2", "id": "layout93", "name": "layout93", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "fffda43-f656-0251-5167-48f16e8fa80d" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "fffda43-f656-0251-5167-48f16e8fa80d": { "uuid": "fffda43-f656-0251-5167-48f16e8fa80d", "id": "item232", "name": "item232", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "c88f1-b754-1c6-d1a6-8cb72ddae24" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "c88f1-b754-1c6-d1a6-8cb72ddae24": { "uuid": "c88f1-b754-1c6-d1a6-8cb72ddae24", "id": "pDF", "name": "pDF", "type": "input", "subtype": "file", "design": "file", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" }, "padding": { "paddingLabel": "4px" } } } }, "props": { "label": "", "contentType": "normal", "initialState": "regular", "placeholder": "Suelte o Haga Clic para Subir", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" } }, "modifiedName": true, "modifiedId": true }, "8b47d4b-acbf-5165-4c0f-a8c42223ea27": { "uuid": "8b47d4b-acbf-5165-4c0f-a8c42223ea27", "id": "item226", "name": "item226", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "7c67e2b-6356-4058-5dbe-4cb2d52427f4" ], "layout": { "DESKTOP": { "style": { "regular": { "padding": { "paddingTop": "32px", "paddingRight": "54px", "paddingBottom": "32px", "paddingLeft": "64px" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "style": { "regular": { "padding": { "paddingTop": "12px", "paddingBottom": "12px", "paddingLeft": "12px", "paddingRight": "12px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true }, "7c67e2b-6356-4058-5dbe-4cb2d52427f4": { "uuid": "7c67e2b-6356-4058-5dbe-4cb2d52427f4", "id": "layout90", "name": "layout90", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "5ddf425-da8e-d2c-786b-c7705eeaf7", "0a6ab1d-000-a363-14c0-6fcec1a81ec5" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "5ddf425-da8e-d2c-786b-c7705eeaf7": { "uuid": "5ddf425-da8e-d2c-786b-c7705eeaf7", "id": "item227", "name": "item227", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "3b70505-2e5e-88be-fcea-225bcbbb47c6" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "100%", "minHeight": "unset", "minWidth": "768px" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "minWidth": "unset" } } } }, "hyperLink": { "destinityType": "_self" } }, "3b70505-2e5e-88be-fcea-225bcbbb47c6": { "uuid": "3b70505-2e5e-88be-fcea-225bcbbb47c6", "id": "text38", "name": "text38", "type": "text", "subtype": "normal", "design": "cardtitle", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginRight": 0, "marginLeft": 0, "marginTop": 0, "marginBottom": 0 } }, "style": { "regular": { "cursor": "auto" } } } }, "props": { "value": { "props": { "value": "Aprobación" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "0a6ab1d-000-a363-14c0-6fcec1a81ec5": { "uuid": "0a6ab1d-000-a363-14c0-6fcec1a81ec5", "id": "item233", "name": "item233", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "03c75a-872-01a6-6dc7-2d22a3faad6a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "height": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "03c75a-872-01a6-6dc7-2d22a3faad6a": { "uuid": "03c75a-872-01a6-6dc7-2d22a3faad6a", "id": "layout94", "name": "layout94", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "a7c4d7-64f-e60-ccf-e0d11a81e27" ], "layout": { "DESKTOP": { "style": { "justifyContent": "start", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "a7c4d7-64f-e60-ccf-e0d11a81e27": { "uuid": "a7c4d7-64f-e60-ccf-e0d11a81e27", "id": "item234", "name": "item234", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "6caf2ee-7a4d-e234-74ae-0b51bdb45ce1" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "6caf2ee-7a4d-e234-74ae-0b51bdb45ce1": { "uuid": "6caf2ee-7a4d-e234-74ae-0b51bdb45ce1", "id": "layout95", "name": "layout95", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "7e0c707-d2cc-4cc7-0041-de33fe367217" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "7e0c707-d2cc-4cc7-0041-de33fe367217": { "uuid": "7e0c707-d2cc-4cc7-0041-de33fe367217", "id": "item235", "name": "item235", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "538c8cf-87b4-f764-7600-6acad810873a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "538c8cf-87b4-f764-7600-6acad810873a": { "uuid": "538c8cf-87b4-f764-7600-6acad810873a", "id": "requestedModif", "name": "requestedModif", "type": "input", "subtype": "textarea", "design": "textarea", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "minWidth": "unset", "maxWidth": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } } } }, "props": { "label": "Modificaciones Solicitadas", "contentType": "normal", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "maxLength": 900 }, "modifiedName": true, "modifiedId": true }, "d456af1-caa-f0e4-fdae-d86f0ebf01d5": { "uuid": "d456af1-caa-f0e4-fdae-d86f0ebf01d5", "id": "quotePDF", "name": "quotePDF", "type": "input", "subtype": "file_preview", "design": "file_preview", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "regular": { "padding": { "paddingLabel": "4px" }, "cursor": "auto" }, "disabled": { "cursor": "default" } } } }, "props": { "label": "", "contentType": "normal", "initialState": "regular", "placeholder": "Suelte o Haga Clic para Subir", "description": "", "helpText": "", "prefix": "", "sufix": "", "leadingIcon": { "type": "deyel", "value": "icon-deyel_app-adjunto" }, "value": { "props": { "value": "" }, "type": "LITERAL" } }, "relatedAttribute": {}, "modifiedName": true, "modifiedId": true }, "3e4d66-ae16-2b8-b1b-433b1530e04": { "uuid": "3e4d66-ae16-2b8-b1b-433b1530e04", "id": "img0", "name": "img0", "type": "image", "subtype": "normal", "design": "square", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%", "height": "auto" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "radius": { "topRight": "8px", "topLeft": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "pointer" }, "visible": true } }, "props": { "value": { "props": { "value": "6e5dca4-bcab-0744-3fec-424213cf0e1d" }, "type": "LITERAL" }, "rules": { "view": [] } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "b524efe-1150-28d-8842-73d1511558": { "uuid": "b524efe-1150-28d-8842-73d1511558", "id": "img1", "name": "img1", "type": "image", "subtype": "normal", "design": "square", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%", "height": "auto" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "radius": { "topRight": "8px", "topLeft": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "pointer" }, "visible": false } }, "props": { "value": { "props": { "value": "2a14ae1-aff2-84b5-e01-eddbe13bd434" }, "type": "LITERAL" }, "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "isCreate()", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isCreate", "range": [ 0, 8 ] }, "arguments": [], "range": [ 0, 10 ] }, "range": [ 0, 10 ] } ], "sourceType": "script", "range": [ 0, 10 ] } }, "readOnly": false, "idTarget": "img1", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false, "expressionParser": "isCreate()" } ] } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "cd55b88-f68c-73-4f36-7a7c712bea2d": { "uuid": "cd55b88-f68c-73-4f36-7a7c712bea2d", "id": "img2", "name": "img2", "type": "image", "subtype": "normal", "design": "square", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%", "height": "auto" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "radius": { "topRight": "8px", "topLeft": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "pointer" }, "visible": false } }, "props": { "value": { "props": { "value": "6865a2a-ebde-0b25-a718-844782123e2c" }, "type": "LITERAL" }, "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "SI(status.value==3, true, false)", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "SI", "range": [ 0, 2 ] }, "arguments": [ { "type": "BinaryExpression", "operator": "==", "left": { "type": "MemberExpression", "computed": false, "object": { "type": "PageElementIdentifier", "name": "status", "range": [ 3, 9 ], "code": "status", "elemType": "input" }, "property": { "type": "ElementPropertyIdentifier", "name": "value", "range": [ 10, 15 ], "propID": "value" }, "range": [ 3, 15 ] }, "right": { "type": "Literal", "value": 3, "raw": "3", "range": [ 17, 18 ] }, "range": [ 3, 18 ] }, { "type": "Literal", "value": true, "raw": "true", "range": [ 20, 24 ] }, { "type": "Literal", "value": false, "raw": "false", "range": [ 26, 31 ] } ], "range": [ 0, 32 ] }, "range": [ 0, 32 ] } ], "sourceType": "script", "range": [ 0, 32 ] } }, "readOnly": false, "idTarget": "img2", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false, "expressionParser": "SI(status.value==3, true, false)" } ] } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "18b821e-ac34-82e3-db0f-4fdf2f468f3a": { "uuid": "18b821e-ac34-82e3-db0f-4fdf2f468f3a", "id": "img3", "name": "img3", "type": "image", "subtype": "normal", "design": "square", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%", "height": "auto" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "radius": { "topRight": "8px", "topLeft": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "pointer" }, "visible": false } }, "props": { "value": { "props": { "value": "c07117d-b31b-048b-ff3-268a1c0ca53" }, "type": "LITERAL" }, "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "SI(status.value==8, true, false)", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "SI", "range": [ 0, 2 ] }, "arguments": [ { "type": "BinaryExpression", "operator": "==", "left": { "type": "MemberExpression", "computed": false, "object": { "type": "PageElementIdentifier", "name": "status", "range": [ 3, 9 ], "code": "status", "elemType": "input" }, "property": { "type": "ElementPropertyIdentifier", "name": "value", "range": [ 10, 15 ], "propID": "value" }, "range": [ 3, 15 ] }, "right": { "type": "Literal", "value": 8, "raw": "8", "range": [ 17, 18 ] }, "range": [ 3, 18 ] }, { "type": "Literal", "value": true, "raw": "true", "range": [ 20, 24 ] }, { "type": "Literal", "value": false, "raw": "false", "range": [ 26, 31 ] } ], "range": [ 0, 32 ] }, "range": [ 0, 32 ] } ], "sourceType": "script", "range": [ 0, 32 ] } }, "readOnly": false, "idTarget": "img3", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false, "expressionParser": "SI(status.value==8, true, false)" } ] } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "7b37-8cd6-71c2-6a84-fb048a2054ab": { "uuid": "7b37-8cd6-71c2-6a84-fb048a2054ab", "id": "img4", "name": "img4", "type": "image", "subtype": "normal", "design": "square", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%", "height": "auto" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "radius": { "topRight": "8px", "topLeft": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "pointer" }, "visible": false } }, "props": { "value": { "props": { "value": "417fac1-6315-5720-3af7-111c5cbf6016" }, "type": "LITERAL" }, "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "SI(status.value==1, true, false)", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "SI", "range": [ 0, 2 ] }, "arguments": [ { "type": "BinaryExpression", "operator": "==", "left": { "type": "MemberExpression", "computed": false, "object": { "type": "PageElementIdentifier", "name": "status", "range": [ 3, 9 ], "code": "status", "elemType": "input" }, "property": { "type": "ElementPropertyIdentifier", "name": "value", "range": [ 10, 15 ], "propID": "value" }, "range": [ 3, 15 ] }, "right": { "type": "Literal", "value": 1, "raw": "1", "range": [ 17, 18 ] }, "range": [ 3, 18 ] }, { "type": "Literal", "value": true, "raw": "true", "range": [ 20, 24 ] }, { "type": "Literal", "value": false, "raw": "false", "range": [ 26, 31 ] } ], "range": [ 0, 32 ] }, "range": [ 0, 32 ] } ], "sourceType": "script", "range": [ 0, 32 ] } }, "readOnly": false, "idTarget": "img4", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false, "expressionParser": "SI(status.value==1, true, false)" } ] } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "88c6c3-fa37-a183-584d-53f5b844c1fc": { "uuid": "88c6c3-fa37-a183-584d-53f5b844c1fc", "id": "img5", "name": "img5", "type": "image", "subtype": "normal", "design": "square", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%", "height": "auto" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "radius": { "topRight": "8px", "topLeft": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "pointer" }, "visible": false } }, "props": { "value": { "props": { "value": "27cc186-311a-22aa-868-cdf68d43c3b" }, "type": "LITERAL" }, "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "SI(status.value==7, true, false)", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "SI", "range": [ 0, 2 ] }, "arguments": [ { "type": "BinaryExpression", "operator": "==", "left": { "type": "MemberExpression", "computed": false, "object": { "type": "PageElementIdentifier", "name": "status", "range": [ 3, 9 ], "code": "status", "elemType": "input" }, "property": { "type": "ElementPropertyIdentifier", "name": "value", "range": [ 10, 15 ], "propID": "value" }, "range": [ 3, 15 ] }, "right": { "type": "Literal", "value": 7, "raw": "7", "range": [ 17, 18 ] }, "range": [ 3, 18 ] }, { "type": "Literal", "value": true, "raw": "true", "range": [ 20, 24 ] }, { "type": "Literal", "value": false, "raw": "false", "range": [ 26, 31 ] } ], "range": [ 0, 32 ] }, "range": [ 0, 32 ] } ], "sourceType": "script", "range": [ 0, 32 ] } }, "readOnly": false, "idTarget": "img5", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false, "expressionParser": "SI(status.value==7, true, false)" } ] } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "d223cc-fe06-1cff-2d1c-f3536c4a7ce": { "uuid": "d223cc-fe06-1cff-2d1c-f3536c4a7ce", "id": "layout31", "name": "layout31", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "b54b14f-43a2-1ce-037-4321da660cb6", "a5b8768-d558-d4fb-182-4c8af4fecee" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "b54b14f-43a2-1ce-037-4321da660cb6": { "uuid": "b54b14f-43a2-1ce-037-4321da660cb6", "id": "item85", "name": "header_listaOC", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "e252515-81bb-1d2b-476f-4f67115243cd" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true }, "e252515-81bb-1d2b-476f-4f67115243cd": { "uuid": "e252515-81bb-1d2b-476f-4f67115243cd", "id": "layout32", "name": "layout32", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "dd660f-73e0-46b3-5676-07affaf1c03c", "de15b3-be64-3d3c-8abe-42e7ad6adf05", "3c5b05-745d-2448-edf0-68a03ebb28f" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "MOBILE": { "style": { "props": { "type": "ROW" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "dd660f-73e0-46b3-5676-07affaf1c03c": { "uuid": "dd660f-73e0-46b3-5676-07affaf1c03c", "id": "item88", "name": "item88", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "5a5d5f1-b28a-e144-1a12-a4d6caf1be67" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "5a5d5f1-b28a-e144-1a12-a4d6caf1be67": { "uuid": "5a5d5f1-b28a-e144-1a12-a4d6caf1be67", "id": "icon17", "name": "icon17", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "auto" } } }, "props": { "value": { "props": { "value": { "type": "deyel", "value": "icon-deyel_mt-archivo" } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "de15b3-be64-3d3c-8abe-42e7ad6adf05": { "uuid": "de15b3-be64-3d3c-8abe-42e7ad6adf05", "id": "item119", "name": "item119", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "26a4ffd-355b-3ebe-2db0-a4eb546028e" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "pointer" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self", "scroll": { "behavior": "auto", "block": "nearest", "line": "nearest" }, "link": { "operation": "TOGGLE", "type": "ELEMENT", "idObject": [ "a5b8768-d558-d4fb-182-4c8af4fecee" ] } } }, "26a4ffd-355b-3ebe-2db0-a4eb546028e": { "uuid": "26a4ffd-355b-3ebe-2db0-a4eb546028e", "id": "layout7", "name": "layout7", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "fce3248-4d46-774f-8c51-20d06fec5e3", "f5276-62b-4725-8dd1-752e358b71d" ], "layout": { "DESKTOP": { "style": { "gap": "0px", "regular": { "cursor": "pointer" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "fce3248-4d46-774f-8c51-20d06fec5e3": { "uuid": "fce3248-4d46-774f-8c51-20d06fec5e3", "id": "item219", "name": "item219", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "e5e5462-3baf-6505-4b6-5587c5a1d4c0" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "100%", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "e5e5462-3baf-6505-4b6-5587c5a1d4c0": { "uuid": "e5e5462-3baf-6505-4b6-5587c5a1d4c0", "id": "text4", "name": "text4", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "pointer" } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"font-size: 12px;\">Recepciones<strong> </strong></span><span style=\"color: var(--design-solid-color-secondary); font-size: 12px;\"><strong>(</strong></span><span style=\"color: var(--design-solid-color-secondary); font-size: 12px;\"><strong><datasource value=\"COUNT*\" datasource=\"73533ac-ded6-5a80-ff84-dacabae78734\" type=\"undefined\"/></strong></span><span style=\"color: var(--design-solid-color-secondary); font-size: 12px;\"><strong>)</strong></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "f5276-62b-4725-8dd1-752e358b71d": { "uuid": "f5276-62b-4725-8dd1-752e358b71d", "id": "item221", "name": "item221", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "800c6c-7a56-fe8-4854-b6f4b43ce6" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "800c6c-7a56-fe8-4854-b6f4b43ce6": { "uuid": "800c6c-7a56-fe8-4854-b6f4b43ce6", "id": "icon14", "name": "icon14", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "pointer" } } }, "props": { "value": { "props": { "value": { "type": "fontawesome", "value": [ "fas", "angle-down" ] } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "3c5b05-745d-2448-edf0-68a03ebb28f": { "uuid": "3c5b05-745d-2448-edf0-68a03ebb28f", "id": "item105", "name": "item105", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "e3ca60-54-d084-76f7-2cbe2778ee3" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "a5b8768-d558-d4fb-182-4c8af4fecee": { "uuid": "a5b8768-d558-d4fb-182-4c8af4fecee", "id": "item106", "name": "lista_tarjetas", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "fe46077-f781-5ced-10d3-d515b37762f" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true }, "fe46077-f781-5ced-10d3-d515b37762f": { "uuid": "fe46077-f781-5ced-10d3-d515b37762f", "id": "repeater1", "name": "repeater_tarjetas", "type": "repeater", "subtype": "normal", "design": "card", "subitems": [ "b108c84-7fb-81dd-f370-af78ee162a37" ], "layout": { "DESKTOP": { "style": { "gap": "12px", "props": { "direction": "column", "scrollPos": "inside", "arrowsBehavior": "hide", "columns": 1, "rows": 2 }, "regular": { "padding": { "paddingTop": "0px", "paddingRight": "0px", "paddingBottom": "0px", "paddingLeft": "0px" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "minWidth": "unset", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "props": { "dataSource": "73533ac-ded6-5a80-ff84-dacabae78734", "canModify": true, "initialItem": false }, "modifiedName": true, "modifiedId": false }, "b108c84-7fb-81dd-f370-af78ee162a37": { "uuid": "b108c84-7fb-81dd-f370-af78ee162a37", "id": "item93", "name": "item_tarjetas", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "cfc0cc-d5a1-50a-1146-6d05fcf38140" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "pointer" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "minHeight": "130px" } } } }, "hyperLink": { "destinityType": "_self", "idDep": "b4dc042-f242-4bc-8711-ab83e14e1e", "link": { "operation": "CREATE", "type": "ENTITY" }, "params": [ { "id": "_idInstance", "props": { "value": "__id", "type": "Integer", "dataSource": "73533ac-ded6-5a80-ff84-dacabae78734", "desc": "identificador" }, "type": "SOURCE", "label": "id" } ], "modalSize": { "x": "md", "y": "md" } }, "modifiedName": true, "events": {} }, "cfc0cc-d5a1-50a-1146-6d05fcf38140": { "uuid": "cfc0cc-d5a1-50a-1146-6d05fcf38140", "id": "layout38", "name": "layout38", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "052557-c42c-76-82bc-67cbcbebe775", "15ab572-7a3f-0db3-e888-d06aac2dd7f" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "regular": { "padding": { "paddingTop": "12px", "paddingRight": "12px", "paddingBottom": "12px", "paddingLeft": "12px" }, "border": { "top": { "width": "1px", "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity" }, "right": { "width": "1px", "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity" }, "bottom": { "width": "1px", "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity" }, "left": { "width": "1px", "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity" } }, "radius": { "topRight": "8px", "topLeft": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "hover": { "border": { "top": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "right": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "bottom": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "left": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } }, "background": { "color": "$color.secondary.color", "opacity": "07" } } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "052557-c42c-76-82bc-67cbcbebe775": { "uuid": "052557-c42c-76-82bc-67cbcbebe775", "id": "item110", "name": "item110", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "8df6a42-b7-8fc4-d6bf-476eb222a7c8" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "auto", "height": "100%", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } }, "TABLET": { "structure": { "size": { "width": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "8df6a42-b7-8fc4-d6bf-476eb222a7c8": { "uuid": "8df6a42-b7-8fc4-d6bf-476eb222a7c8", "id": "layout51", "name": "layout51", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "ba28202-f582-02f2-671-4adb34e3e147", "a580b3-30fb-0bd-d87-6caffcd83e21" ], "layout": { "DESKTOP": { "style": { "gap": "0px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "gap": "4px", "regular": { "padding": { "paddingTop": "12px", "paddingLeft": "12px", "paddingRight": "12px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "ba28202-f582-02f2-671-4adb34e3e147": { "uuid": "ba28202-f582-02f2-671-4adb34e3e147", "id": "item111", "name": "item111", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "ead73be-b0e-a8bc-8ffa-f6ad5400a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "height": "31px" } } } }, "hyperLink": { "destinityType": "_self" } }, "ead73be-b0e-a8bc-8ffa-f6ad5400a": { "uuid": "ead73be-b0e-a8bc-8ffa-f6ad5400a", "id": "text8", "name": "text8", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "pointer" } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"font-size: 12px;\"><strong>Recepcion Nro: </strong></span><span style=\"font-size: 12px;\"><strong><datasource value=\"__nRecepcion\" datasource=\"73533ac-ded6-5a80-ff84-dacabae78734\" type=\"Nativestring\"/></strong></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "a580b3-30fb-0bd-d87-6caffcd83e21": { "uuid": "a580b3-30fb-0bd-d87-6caffcd83e21", "id": "item116", "name": "item116", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "a13c5b6-3581-3c73-7c58-08fe007766fa" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "60%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "a13c5b6-3581-3c73-7c58-08fe007766fa": { "uuid": "a13c5b6-3581-3c73-7c58-08fe007766fa", "id": "layout59", "name": "layout59", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "d10c4-bc-8dae-eb17-a83a68fbc0db", "e7c3de2-6a23-edc4-fc0d-afcf73852c81" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "regular": { "padding": { "paddingTop": "4px", "paddingRight": "8px", "paddingBottom": "4px", "paddingLeft": "8px" }, "background": { "color": "$color.secondary.color", "opacity": "0c" }, "border": { "top": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "right": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "bottom": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "left": { "color": "$color.success.color", "opacity": "$color.success.opacity" } }, "radius": { "topRight": "20px", "topLeft": "20px", "bottomRight": "20px", "bottomLeft": "20px" }, "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } }, "TABLET": { "structure": { "size": { "width": "100%" } } }, "MOBILE": { "style": { "props": { "type": "ROW" } }, "structure": { "size": { "width": "auto" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "d10c4-bc-8dae-eb17-a83a68fbc0db": { "uuid": "d10c4-bc-8dae-eb17-a83a68fbc0db", "id": "item129", "name": "item129", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "5a6b7ec-5815-88a7-434e-517aa058d65c" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "5a6b7ec-5815-88a7-434e-517aa058d65c": { "uuid": "5a6b7ec-5815-88a7-434e-517aa058d65c", "id": "icon16", "name": "icon16", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "8px", "height": "8px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "color": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "cursor": "auto" } } }, "props": { "value": { "props": { "value": { "type": "deyel", "value": "icon-deyel_circ-check-filled" } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "e7c3de2-6a23-edc4-fc0d-afcf73852c81": { "uuid": "e7c3de2-6a23-edc4-fc0d-afcf73852c81", "id": "item140", "name": "item140", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "1246af5-2cb3-17b7-46f-d21bda43f5a2" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "1246af5-2cb3-17b7-46f-d21bda43f5a2": { "uuid": "1246af5-2cb3-17b7-46f-d21bda43f5a2", "id": "text10", "name": "text10", "type": "text", "subtype": "normal", "design": "microcaption_1", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "maxLines": 2, "regular": { "font": { "weight": "600", "size": "8px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "cursor": "text" } } } }, "props": { "value": { "props": { "value": "status", "dataSource": "73533ac-ded6-5a80-ff84-dacabae78734", "desc": "desc_status", "type": "Nativestring" }, "type": "SOURCE" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "15ab572-7a3f-0db3-e888-d06aac2dd7f": { "uuid": "15ab572-7a3f-0db3-e888-d06aac2dd7f", "id": "item141", "name": "item141", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "f2701b-81d-723-fe60-2806583d20e1" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "100%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "f2701b-81d-723-fe60-2806583d20e1": { "uuid": "f2701b-81d-723-fe60-2806583d20e1", "id": "layout61", "name": "layout61", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "514c5f6-764e-2d51-68e-36788433dd17", "b1c7888-f15-ef34-1f0b-6eeef54f2ca", "78e686c-23f-610-0b8d-8d57b8e42f14" ], "layout": { "DESKTOP": { "style": { "gap": "2px", "props": { "type": "COLUMN" }, "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "regular": { "padding": { "paddingBottom": "12px", "paddingLeft": "12px", "paddingRight": "12px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "514c5f6-764e-2d51-68e-36788433dd17": { "uuid": "514c5f6-764e-2d51-68e-36788433dd17", "id": "item148", "name": "item148", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "83eb81-a871-2f8a-80c7-316b2edd36e" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "width": "auto" } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "83eb81-a871-2f8a-80c7-316b2edd36e": { "uuid": "83eb81-a871-2f8a-80c7-316b2edd36e", "id": "text9", "name": "text9", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "pointer" } }, "TABLET": { "style": { "regular": { "font": { "size": "11px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "10px" } } } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px;\">Nro OC </span><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px;\"><datasource value=\"__ordenDeCompra\" datasource=\"73533ac-ded6-5a80-ff84-dacabae78734\" type=\"Integer\"/></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "b1c7888-f15-ef34-1f0b-6eeef54f2ca": { "uuid": "b1c7888-f15-ef34-1f0b-6eeef54f2ca", "id": "item149", "name": "item149", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "103410d-18cd-60e3-8417-7f5c5ab4738b" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "width": "auto" } } }, "MOBILE": { "style": {}, "structure": { "size": { "height": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "103410d-18cd-60e3-8417-7f5c5ab4738b": { "uuid": "103410d-18cd-60e3-8417-7f5c5ab4738b", "id": "text11", "name": "text11", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "pointer" } }, "TABLET": { "style": { "regular": { "font": { "size": "11px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "10px" } } } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px;\">Recepci n: </span><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px;\"><datasource value=\"receptionDate\" datasource=\"73533ac-ded6-5a80-ff84-dacabae78734\" type=\"Nativestring\"/></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "bb51177-1b5-073-7c11-d133f7cf88af": { "uuid": "bb51177-1b5-073-7c11-d133f7cf88af", "id": "item19", "name": "i_header", "type": "item", "subtype": "normal", "design": "item", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": false } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true }, "abd128-8fd-81b1-6ebe-0381e6432c5": { "uuid": "abd128-8fd-81b1-6ebe-0381e6432c5", "id": "item34", "name": "i_body", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "88fde7-b12f-7f16-0ea-4c5b870dd867" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true }, "bbab6df-dd0-7784-81ac-2f314b3157": { "uuid": "bbab6df-dd0-7784-81ac-2f314b3157", "id": "layout8", "name": "l1_entidad", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "bb51177-1b5-073-7c11-d133f7cf88af", "abd128-8fd-81b1-6ebe-0381e6432c5" ], "layout": { "DESKTOP": { "style": { "gap": "0px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": false }, "31e2d06-e8c0-cce7-56fc-30d256e640a": { "uuid": "31e2d06-e8c0-cce7-56fc-30d256e640a", "id": "item22", "name": "i_body2", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "c8647d-cb0-3230-6e1d-7437ce3130a8", "6c6861c-2e7-1831-664-7bc18bda61" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true }, "88fde7-b12f-7f16-0ea-4c5b870dd867": { "uuid": "88fde7-b12f-7f16-0ea-4c5b870dd867", "id": "layout9", "name": "l_body2", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "31e2d06-e8c0-cce7-56fc-30d256e640a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": false }, "7828464-67b3-781-227f-3a6da816443": { "uuid": "7828464-67b3-781-227f-3a6da816443", "id": "item49", "name": "item49", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "23580ef-de3-48dd-fc0d-d8aa2a2dfa8" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "a2bf3a4-3d6-73c5-5243-051bf76a523": { "uuid": "a2bf3a4-3d6-73c5-5243-051bf76a523", "id": "item70", "name": "item70", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "aed06a-ea3-7487-4a20-bfbd662db1" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "55ad07-67ff-f17d-a163-cd50441f5aa8": { "uuid": "55ad07-67ff-f17d-a163-cd50441f5aa8", "id": "layout18", "name": "layout18", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "7828464-67b3-781-227f-3a6da816443", "a2bf3a4-3d6-73c5-5243-051bf76a523" ], "layout": { "DESKTOP": { "style": { "gap": "0px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "3416a3-32fa-4f4c-e6f2-d0a04f7142e2": { "uuid": "3416a3-32fa-4f4c-e6f2-d0a04f7142e2", "id": "item29", "name": "item29", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "402c6b-b6b1-3583-6cd6-6f7ce556534" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {}, "visible": false } }, "hyperLink": { "destinityType": "_self" } }, "370ef47-5552-bfc1-34e-242ff08e1bce": { "uuid": "370ef47-5552-bfc1-34e-242ff08e1bce", "id": "item64", "name": "item64", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "f3f8350-f06-56dc-b0e3-de7de54c15a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "3eb7d1a-6126-c452-a1d3-b11dfaaaa6f5": { "uuid": "3eb7d1a-6126-c452-a1d3-b11dfaaaa6f5", "id": "layout28", "name": "layout28", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "3416a3-32fa-4f4c-e6f2-d0a04f7142e2", "370ef47-5552-bfc1-34e-242ff08e1bce", "825fb13-e50d-6182-3a30-1030a7cf65e" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "justifyContent": "start", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "f1ef024-ddcc-6bfe-4f21-e1c40da01e78": { "uuid": "f1ef024-ddcc-6bfe-4f21-e1c40da01e78", "id": "item71", "name": "item71", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "16d1c-2df-bc6a-6e7b-e521a4d31f15" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "visible": false } }, "hyperLink": { "destinityType": "_self" } }, "21c8f4c-562d-7681-367b-8a0f32d27afc": { "uuid": "21c8f4c-562d-7681-367b-8a0f32d27afc", "id": "item77", "name": "item77", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "862d8a-40ce-0cc0-b02e-828a5de38ba" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "d758c5-a4fe-73-558e-cb224cd30cf5": { "uuid": "d758c5-a4fe-73-558e-cb224cd30cf5", "id": "layout29", "name": "layout29", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "f1ef024-ddcc-6bfe-4f21-e1c40da01e78", "21c8f4c-562d-7681-367b-8a0f32d27afc" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "MOBILE": { "style": { "props": { "type": "ROW" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "16d1c-2df-bc6a-6e7b-e521a4d31f15": { "uuid": "16d1c-2df-bc6a-6e7b-e521a4d31f15", "id": "icon3", "name": "icon3", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "10px", "height": "10px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "color": { "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity" }, "cursor": "auto" } } }, "props": { "value": { "props": { "value": { "type": "fontawesome", "value": [ "far", "copy" ] } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "a7083f-1e45-7efb-0443-b57be3d5f7c2": { "uuid": "a7083f-1e45-7efb-0443-b57be3d5f7c2", "id": "item50", "name": "item50", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "fa416b-ff7-81f5-a5b7-05e07edf3b65" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "fa416b-ff7-81f5-a5b7-05e07edf3b65": { "uuid": "fa416b-ff7-81f5-a5b7-05e07edf3b65", "id": "layout42", "name": "layout42", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "f588161-52fe-c8e8-0ef-058100e71d", "ffad4bd-dbfe-4386-fe60-2ee3d2a057" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "justifyContent": "start", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "TABLET": { "style": { "props": { "type": "COLUMN" } } }, "MOBILE": { "style": { "props": { "type": "ROW" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "f588161-52fe-c8e8-0ef-058100e71d": { "uuid": "f588161-52fe-c8e8-0ef-058100e71d", "id": "item135", "name": "item135", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "0f8604-031f-d1ae-f01a-6001386fdb47" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "style": {} }, "MOBILE": { "visible": true, "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "0f8604-031f-d1ae-f01a-6001386fdb47": { "uuid": "0f8604-031f-d1ae-f01a-6001386fdb47", "id": "layout64", "name": "layout64", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "5ceb6f-67ec-1772-62d2-35bf0f3bda85", "0e0f1-82f1-018-8e1e-b858d61ff704" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "justifyContent": "start", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "5ceb6f-67ec-1772-62d2-35bf0f3bda85": { "uuid": "5ceb6f-67ec-1772-62d2-35bf0f3bda85", "id": "item152", "name": "item152", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "f5ff55d-1f0-36d5-d61c-26d60f8e475d" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {}, "visible": false } }, "hyperLink": { "destinityType": "_self" } }, "f5ff55d-1f0-36d5-d61c-26d60f8e475d": { "uuid": "f5ff55d-1f0-36d5-d61c-26d60f8e475d", "id": "icon8", "name": "icon8", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "10px", "height": "10px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "color": { "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity" }, "cursor": "auto" } } }, "props": { "value": { "props": { "value": { "type": "fontawesome", "value": [ "far", "calendar" ] } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "0e0f1-82f1-018-8e1e-b858d61ff704": { "uuid": "0e0f1-82f1-018-8e1e-b858d61ff704", "id": "item153", "name": "item153", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "0167e8-56ad-ed1-5c-2d5ff3c003b" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "ffad4bd-dbfe-4386-fe60-2ee3d2a057": { "uuid": "ffad4bd-dbfe-4386-fe60-2ee3d2a057", "id": "item154", "name": "item154", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "0abcc6-03d-0bd7-0231-d4c58a205d" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "style": {} }, "MOBILE": { "structure": { "size": { "width": "auto", "height": "100%" } }, "visible": true, "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "0abcc6-03d-0bd7-0231-d4c58a205d": { "uuid": "0abcc6-03d-0bd7-0231-d4c58a205d", "id": "layout65", "name": "layout65", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "eedf3f4-f1d-82b-201e-7a4fe316da6e", "611131a-fc31-e2d-a565-e0e841bffc" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "eedf3f4-f1d-82b-201e-7a4fe316da6e": { "uuid": "eedf3f4-f1d-82b-201e-7a4fe316da6e", "id": "item155", "name": "item155", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "87c6ec-1e6b-8d0e-1772-d02bb1c1de" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {}, "visible": false } }, "hyperLink": { "destinityType": "_self" } }, "87c6ec-1e6b-8d0e-1772-d02bb1c1de": { "uuid": "87c6ec-1e6b-8d0e-1772-d02bb1c1de", "id": "icon18", "name": "icon18", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "10px", "height": "10px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "color": { "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity" }, "cursor": "auto" } } }, "props": { "value": { "props": { "value": { "type": "fontawesome", "value": [ "far", "calendar" ] } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "611131a-fc31-e2d-a565-e0e841bffc": { "uuid": "611131a-fc31-e2d-a565-e0e841bffc", "id": "item156", "name": "item156", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "72f03cd-25d7-3e2-0d7f-1e208551bb01" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "0167e8-56ad-ed1-5c-2d5ff3c003b": { "uuid": "0167e8-56ad-ed1-5c-2d5ff3c003b", "id": "text2", "name": "text2", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "126px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start", "marginLeft": 0, "marginRight": 0 } } }, "TABLET": { "style": { "regular": { "font": { "size": "11px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "10px" } } } } }, "props": { "value": { "props": { "value": "<p><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px; font-family: var(--design-font-primary);\">Entrega: </span><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px;\"><context value=\"42df63-c6d3-608b-b55b-6480167d8b21\"/></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "72f03cd-25d7-3e2-0d7f-1e208551bb01": { "uuid": "72f03cd-25d7-3e2-0d7f-1e208551bb01", "id": "text12", "name": "text12", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start", "marginLeft": 0, "marginRight": 0 } } }, "TABLET": { "style": { "regular": { "font": { "size": "11px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "10px" } } } } }, "props": { "value": { "props": { "value": "<p><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px; font-family: var(--design-font-primary);\">Confirmacion: </span><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px;\"><context value=\"bc55088-eb26-b5a8-50be-244f5dc62527\"/></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "eb2151a-c324-b651-3d1c-6ae01cf64e2": { "uuid": "eb2151a-c324-b651-3d1c-6ae01cf64e2", "id": "item83", "name": "item83", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "6f74a6c-8072-85e2-2ba7-5803db5e70" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "width": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "6f74a6c-8072-85e2-2ba7-5803db5e70": { "uuid": "6f74a6c-8072-85e2-2ba7-5803db5e70", "id": "layout30", "name": "layout30", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "8d1c548-b23-015c-80cc-765a07fcd3cc", "6ffaf8c-a0b0-55d1-420d-08d7a1bc2cc", "45b7af7-0ab-a1b-200-b04d21bbd2", "673becf-6bc-06a6-a251-8245563d5a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "TABLET": { "style": { "gap": "4px", "justifyContent": "start" }, "structure": { "size": { "width": "100%" } } }, "MOBILE": { "style": { "props": { "type": "ROW" } }, "structure": { "position": { "justifySelf": "end" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "8d1c548-b23-015c-80cc-765a07fcd3cc": { "uuid": "8d1c548-b23-015c-80cc-765a07fcd3cc", "id": "item95", "name": "item95", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "d7c1ab4-ead-da0-515-ee31555d2824" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": true }, "MOBILE": { "visible": false } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "d7c1ab4-ead-da0-515-ee31555d2824": { "uuid": "d7c1ab4-ead-da0-515-ee31555d2824", "id": "icon4", "name": "icon4", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "cursor": "auto" } }, "TABLET": { "structure": { "size": { "height": "10px", "width": "10px" } } } }, "props": { "value": { "props": { "value": { "type": "fontawesome", "value": [ "fas", "file" ] } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "6ffaf8c-a0b0-55d1-420d-08d7a1bc2cc": { "uuid": "6ffaf8c-a0b0-55d1-420d-08d7a1bc2cc", "id": "item96", "name": "item96", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "d150de-401b-21cd-b5c-a68b61bc430" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "structure": { "size": { "width": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "d150de-401b-21cd-b5c-a68b61bc430": { "uuid": "d150de-401b-21cd-b5c-a68b61bc430", "id": "text13", "name": "text13", "type": "text", "subtype": "normal", "design": "cardtitle", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start", "marginRight": 0, "marginLeft": 0 } } }, "TABLET": { "structure": { "position": { "alignSelf": "start" } } }, "MOBILE": { "style": { "regular": { "font": { "size": "14px" } } } } }, "props": { "value": { "props": { "value": "4cf3ad6-7cd6-730-21f7-82d22d14731b" }, "type": "CONTEXT" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "45b7af7-0ab-a1b-200-b04d21bbd2": { "uuid": "45b7af7-0ab-a1b-200-b04d21bbd2", "id": "item98", "name": "item98", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "3886f1-bb7d-75b7-816-855ed34f83c" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": true } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "3886f1-bb7d-75b7-816-855ed34f83c": { "uuid": "3886f1-bb7d-75b7-816-855ed34f83c", "id": "layout33", "name": "layout33", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "4072108-16ef-bead-5884-aa7c71d2788f", "5b23c-2f5a-da1-5f1e-b78bacef37f" ], "layout": { "DESKTOP": { "style": { "regular": { "padding": { "paddingTop": "4px", "paddingRight": "8px", "paddingBottom": "4px", "paddingLeft": "8px" }, "background": { "color": "$color.secondary.color", "opacity": "0c" }, "border": { "top": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "right": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "bottom": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "left": { "color": "$color.success.color", "opacity": "$color.success.opacity" } }, "radius": { "topRight": "20px", "topLeft": "20px", "bottomRight": "20px", "bottomLeft": "20px" }, "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginLeft": 0, "marginRight": 0 } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "gap": "4px" }, "structure": { "size": { "width": "100%" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "4072108-16ef-bead-5884-aa7c71d2788f": { "uuid": "4072108-16ef-bead-5884-aa7c71d2788f", "id": "item107", "name": "item107", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "0f412b3-67dc-1576-671b-ba00a2bcdd6" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "0f412b3-67dc-1576-671b-ba00a2bcdd6": { "uuid": "0f412b3-67dc-1576-671b-ba00a2bcdd6", "id": "icon7", "name": "icon7", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "color": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "cursor": "auto" } } }, "props": { "value": { "props": { "value": { "type": "deyel", "value": "icon-deyel_circ-check-filled" } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "5b23c-2f5a-da1-5f1e-b78bacef37f": { "uuid": "5b23c-2f5a-da1-5f1e-b78bacef37f", "id": "item115", "name": "item115", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "5facb6b-8e72-8835-141-05d172ac848" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "5facb6b-8e72-8835-141-05d172ac848": { "uuid": "5facb6b-8e72-8835-141-05d172ac848", "id": "text14", "name": "text14", "type": "text", "subtype": "normal", "design": "microcaption_1", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "regular": { "font": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "cursor": "text" } } }, "MOBILE": { "structure": { "size": { "width": "55px" } } } }, "props": { "value": { "props": { "value": "status", "type": "Nativestring", "dataSource": "eed0db-283f-1a65-33f3-f24005b7a8b7", "desc": "desc_status" }, "type": "SOURCE" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "673becf-6bc-06a6-a251-8245563d5a": { "uuid": "673becf-6bc-06a6-a251-8245563d5a", "id": "item126", "name": "item126", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "62af46b-5674-d4bd-1b3f-c6df022d568" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "466px" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": false }, "TABLET": { "structure": { "size": { "width": "50%", "minWidth": "unset" } } }, "MOBILE": { "structure": { "size": { "width": "auto", "minHeight": "unset" } }, "visible": true } }, "hyperLink": { "destinityType": "_self" } }, "62af46b-5674-d4bd-1b3f-c6df022d568": { "uuid": "62af46b-5674-d4bd-1b3f-c6df022d568", "id": "layout63", "name": "layout63", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "6d2870-5d1a-76a6-817-6aeca860a", "66f2506-3e6c-f0ac-32-ea73e7503f5" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "TABLET": { "style": { "gap": "4px" } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "justifyContent": "end" }, "structure": { "position": { "justifySelf": "end" }, "size": { "width": "auto" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "6d2870-5d1a-76a6-817-6aeca860a": { "uuid": "6d2870-5d1a-76a6-817-6aeca860a", "id": "item127", "name": "item127", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "226ba7a-85f5-b2ef-d45-1a2a736e427" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "220px", "minHeight": "48px" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "structure": { "size": { "minWidth": "unset", "minHeight": "unset" } } } }, "hyperLink": { "destinityType": "_self" } }, "226ba7a-85f5-b2ef-d45-1a2a736e427": { "uuid": "226ba7a-85f5-b2ef-d45-1a2a736e427", "id": "layout66", "name": "layout66", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "d338ce5-7dac-bc2c-50fa-8630108bda", "dfb3476-08a1-3fb0-1b57-04a82436adf" ], "layout": { "DESKTOP": { "style": { "regular": { "padding": { "paddingTop": "4px", "paddingRight": "8px", "paddingBottom": "4px", "paddingLeft": "8px" }, "background": { "color": "$color.secondary.color", "opacity": "0c" }, "border": { "top": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "right": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "bottom": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "left": { "color": "$color.success.color", "opacity": "$color.success.opacity" } }, "radius": { "topRight": "20px", "topLeft": "20px", "bottomRight": "20px", "bottomLeft": "20px" }, "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginLeft": 0, "marginRight": 0 } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "gap": "4px", "regular": { "padding": { "paddingLeft": "4px", "paddingRight": "4px" }, "background": { "color": "$color.informativa.color" }, "radius": { "topRight": "4px", "topLeft": "4px", "bottomRight": "4px", "bottomLeft": "4px" }, "border": { "top": { "color": "$color.informativa.color", "width": "0.5px", "opacity": "$color.informativa.opacity" }, "right": { "color": "$color.informativa.color", "width": "0.5px", "opacity": "$color.informativa.opacity" }, "bottom": { "color": "$color.informativa.color", "width": "0.5px", "opacity": "$color.informativa.opacity" }, "left": { "color": "$color.informativa.color", "width": "0.5px", "opacity": "$color.informativa.opacity" } } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "d338ce5-7dac-bc2c-50fa-8630108bda": { "uuid": "d338ce5-7dac-bc2c-50fa-8630108bda", "id": "item128", "name": "item128", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "a7617ef-d7cd-11dd-08b-ac7675736d" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "a7617ef-d7cd-11dd-08b-ac7675736d": { "uuid": "a7617ef-d7cd-11dd-08b-ac7675736d", "id": "icon13", "name": "icon13", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "color": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "cursor": "auto" } }, "MOBILE": { "style": { "color": { "color": "$color.informativa.color", "opacity": "$color.informativa.opacity" } } } }, "props": { "value": { "props": { "value": { "type": "deyel", "value": "icon-deyel_circ-check-filled" } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "dfb3476-08a1-3fb0-1b57-04a82436adf": { "uuid": "dfb3476-08a1-3fb0-1b57-04a82436adf", "id": "item132", "name": "item132", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "584203-0a-077-fd81-6fcb31a524e" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "584203-0a-077-fd81-6fcb31a524e": { "uuid": "584203-0a-077-fd81-6fcb31a524e", "id": "text15", "name": "text15", "type": "text", "subtype": "normal", "design": "microcaption_1", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "regular": { "cursor": "text" } } }, "MOBILE": { "style": { "regular": { "font": { "color": "$color.informativa.color", "opacity": "$color.informativa.opacity" } } }, "structure": { "size": { "width": "45px" } } } }, "props": { "value": { "props": { "value": "Paso 3/5" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "66f2506-3e6c-f0ac-32-ea73e7503f5": { "uuid": "66f2506-3e6c-f0ac-32-ea73e7503f5", "id": "item133", "name": "item133", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "bdbc151-a35d-abd3-1714-4b021834445" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "63px", "minHeight": "48px" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "structure": { "size": { "minWidth": "unset", "minHeight": "unset" } }, "visible": false } }, "hyperLink": { "destinityType": "_self" } }, "bdbc151-a35d-abd3-1714-4b021834445": { "uuid": "bdbc151-a35d-abd3-1714-4b021834445", "id": "icon19", "name": "icon19", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "cursor": "auto" } }, "MOBILE": { "structure": { "position": { "justifySelf": "end" } } } }, "props": { "value": { "props": { "value": { "type": "fontawesome", "value": [ "fas", "ellipsis-v" ] } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "cc3202-cbaa-84e2-b618-a30eef2136d7": { "uuid": "cc3202-cbaa-84e2-b618-a30eef2136d7", "id": "container1", "name": "container1", "type": "container", "subtype": "normal", "design": "simple", "subitems": [ "d50836-8b23-55db-cf12-b7c3885474e", "fbce243-5d1c-2ab-7f7-02665862478" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginRight": "15px", "position": "relative", "alignSelf": "end", "justifySelf": "center" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "fbce243-5d1c-2ab-7f7-02665862478": { "uuid": "fbce243-5d1c-2ab-7f7-02665862478", "id": "icon1", "name": "icon1", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "10px", "height": "10px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "color": { "color": "$color.tertiary.color", "opacity": "$color.tertiary.opacity" }, "cursor": "pointer" } } }, "props": { "value": { "props": { "value": { "type": "fontawesome", "value": [ "fas", "angle-right" ] } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self", "scroll": { "behavior": "auto", "block": "nearest", "line": "nearest" } }, "modifiedName": false, "modifiedId": false, "events": { "onClick": "icon1_onClick" } }, "fd6351a-bbb4-1317-d604-f5f0b604a5c": { "uuid": "fd6351a-bbb4-1317-d604-f5f0b604a5c", "id": "layout45", "name": "layout45", "type": "layout", "subtype": "normal", "design": "disenoconsombra", "subitems": [ "f2ba41-b0b8-d6b4-13f7-64aa53dfe0b" ], "layout": { "DESKTOP": { "style": { "gap": "0px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100.33%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": "40px", "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "visible": false } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "f2ba41-b0b8-d6b4-13f7-64aa53dfe0b": { "uuid": "f2ba41-b0b8-d6b4-13f7-64aa53dfe0b", "id": "item69", "name": "item69", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "f563c3-334-f013-53e5-0ffcc378683" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "f563c3-334-f013-53e5-0ffcc378683": { "uuid": "f563c3-334-f013-53e5-0ffcc378683", "id": "layout47", "name": "layout47", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "c8e284e-2d77-a46-5e6f-7f36dc61eff", "776bd6-645f-62ab-636-a7ec31e554f" ], "layout": { "DESKTOP": { "style": { "gap": "18px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "c8e284e-2d77-a46-5e6f-7f36dc61eff": { "uuid": "c8e284e-2d77-a46-5e6f-7f36dc61eff", "id": "item92", "name": "item92", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "e8456a6-33d6-2412-45f-c53bd142e0fa" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "e8456a6-33d6-2412-45f-c53bd142e0fa": { "uuid": "e8456a6-33d6-2412-45f-c53bd142e0fa", "id": "layout48", "name": "layout48", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "e262b38-4830-c53e-886-42da232fced", "f6e7704-8a7d-e887-0468-81f065203a" ], "layout": { "DESKTOP": { "style": { "gap": "8px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "position": "relative", "alignSelf": "start", "justifySelf": "center" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "e262b38-4830-c53e-886-42da232fced": { "uuid": "e262b38-4830-c53e-886-42da232fced", "id": "item94", "name": "item94", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "1425580-6b84-5a83-84fc-e1bf2e75fa" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "1425580-6b84-5a83-84fc-e1bf2e75fa": { "uuid": "1425580-6b84-5a83-84fc-e1bf2e75fa", "id": "layout55", "name": "layout55", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "fbc1af6-1131-c41-127d-356c078d6645", "8a2fec-7dd8-f51a-3b8-1f830a1730" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "fbc1af6-1131-c41-127d-356c078d6645": { "uuid": "fbc1af6-1131-c41-127d-356c078d6645", "id": "item97", "name": "item97", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "2734534-c1fc-ace8-cc66-5b0e3e460ca" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "2734534-c1fc-ace8-cc66-5b0e3e460ca": { "uuid": "2734534-c1fc-ace8-cc66-5b0e3e460ca", "id": "text24", "name": "text24", "type": "text", "subtype": "normal", "design": "cardtitle", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "regular": { "font": { "size": "14px" } } } } }, "props": { "value": { "props": { "value": "Progreso" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "8a2fec-7dd8-f51a-3b8-1f830a1730": { "uuid": "8a2fec-7dd8-f51a-3b8-1f830a1730", "id": "item113", "name": "item113", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "e760b8-17c3-13a4-55b2-731afd1a8846" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "e760b8-17c3-13a4-55b2-731afd1a8846": { "uuid": "e760b8-17c3-13a4-55b2-731afd1a8846", "id": "text25", "name": "text25", "type": "text", "subtype": "normal", "design": "cardtitle", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } }, "style": { "regular": { "font": { "size": "14px", "color": "$color.success.color", "opacity": "$color.success.opacity" } } } } }, "props": { "value": { "props": { "value": "%40" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "f6e7704-8a7d-e887-0468-81f065203a": { "uuid": "f6e7704-8a7d-e887-0468-81f065203a", "id": "item117", "name": "item117", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "c8536cb-4fcd-e007-4855-feb8de4f1ca3" ], "layout": { "DESKTOP": { "style": { "regular": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" }, "radius": { "topRight": "12px", "topLeft": "12px", "bottomRight": "12px", "bottomLeft": "12px" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "5px" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "c8536cb-4fcd-e007-4855-feb8de4f1ca3": { "uuid": "c8536cb-4fcd-e007-4855-feb8de4f1ca3", "id": "container2", "name": "container2", "type": "container", "subtype": "normal", "design": "simple", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "background": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "cursor": "auto" } }, "structure": { "size": { "width": "25%", "height": "100%", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "776bd6-645f-62ab-636-a7ec31e554f": { "uuid": "776bd6-645f-62ab-636-a7ec31e554f", "id": "item118", "name": "item118", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "0a6ae88-8aa6-421b-a364-64b820b2fae" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "0a6ae88-8aa6-421b-a364-64b820b2fae": { "uuid": "0a6ae88-8aa6-421b-a364-64b820b2fae", "id": "layout74", "name": "layout74", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "cafd57f-adcb-701-3a4e-ef600301ac1", "1dfd848-717e-caff-517-c88fda881e62", "a0d438-a647-bd8e-1c45-8f4ec8eaa104", "011fb2-a5e-d581-3c13-2548c00821b7" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "cafd57f-adcb-701-3a4e-ef600301ac1": { "uuid": "cafd57f-adcb-701-3a4e-ef600301ac1", "id": "item121", "name": "item121", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "c65f2fe-78-3fa2-5b0-c10cee13f7" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "c65f2fe-78-3fa2-5b0-c10cee13f7": { "uuid": "c65f2fe-78-3fa2-5b0-c10cee13f7", "id": "layout76", "name": "layout76", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "2c7e6d-da02-2d48-30de-065abe3a231", "6eec07-a5b-c8d-7663-12a631f21da6" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "2c7e6d-da02-2d48-30de-065abe3a231": { "uuid": "2c7e6d-da02-2d48-30de-065abe3a231", "id": "item134", "name": "item134", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "d5b2733-bc68-1cb3-a07e-f7017837f4a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "d5b2733-bc68-1cb3-a07e-f7017837f4a": { "uuid": "d5b2733-bc68-1cb3-a07e-f7017837f4a", "id": "layout77", "name": "layout77", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "0e3677-3145-d7a0-365-f08e2afd68b", "8b5480-37f-3b24-1b4c-aabee85bade", "2dae14a-8853-2f10-bab6-0241ec85a7e0" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "position": "relative", "alignSelf": "center", "justifySelf": "center" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "0e3677-3145-d7a0-365-f08e2afd68b": { "uuid": "0e3677-3145-d7a0-365-f08e2afd68b", "id": "item136", "name": "item136", "type": "item", "subtype": "normal", "design": "item", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "background": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "radius": { "topRight": "50px", "topLeft": "50px", "bottomRight": "50px", "bottomLeft": "50px" }, "cursor": "auto" } }, "structure": { "size": { "width": "20px", "height": "12px" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "8b5480-37f-3b24-1b4c-aabee85bade": { "uuid": "8b5480-37f-3b24-1b4c-aabee85bade", "id": "item137", "name": "item137", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "352c12-8f81-0b2f-8a6f-f2d6e713c38" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "55%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "352c12-8f81-0b2f-8a6f-f2d6e713c38": { "uuid": "352c12-8f81-0b2f-8a6f-f2d6e713c38", "id": "text27", "name": "text27", "type": "text", "subtype": "normal", "design": "normal", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "regular": { "font": { "size": "12px" } } } }, "TABLET": { "structure": { "position": { "alignSelf": "start" } } } }, "props": { "value": { "props": { "value": "Creada" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "2dae14a-8853-2f10-bab6-0241ec85a7e0": { "uuid": "2dae14a-8853-2f10-bab6-0241ec85a7e0", "id": "item171", "name": "item171", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "3b782b-3d-45e4-f24-e5b1cc2b2674" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "3b782b-3d-45e4-f24-e5b1cc2b2674": { "uuid": "3b782b-3d-45e4-f24-e5b1cc2b2674", "id": "text30", "name": "text30", "type": "text", "subtype": "normal", "design": "microcaption_1", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "regular": { "font": { "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity" } } } }, "TABLET": { "structure": { "position": { "alignSelf": "start" } } } }, "props": { "value": { "props": { "value": "Juan Perez 12/02/26" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "6eec07-a5b-c8d-7663-12a631f21da6": { "uuid": "6eec07-a5b-c8d-7663-12a631f21da6", "id": "item157", "name": "item157", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "5b7d2d1-03b-fb6a-fa6d-4a8b5dd8b435" ], "layout": { "DESKTOP": { "style": { "regular": { "background": { "color": "$color.success.color" }, "cursor": "auto" } }, "structure": { "size": { "width": "30%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": true }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "5b7d2d1-03b-fb6a-fa6d-4a8b5dd8b435": { "uuid": "5b7d2d1-03b-fb6a-fa6d-4a8b5dd8b435", "id": "layout78", "name": "layout78", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "70db28f-ddfa-8747-0bfa-048ea3808182" ], "layout": { "DESKTOP": { "style": { "justifyContent": "center", "regular": { "padding": { "paddingTop": "4px", "paddingRight": "8px", "paddingBottom": "4px", "paddingLeft": "8px" }, "background": { "color": "$color.success.color", "opacity": "19" }, "border": { "top": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "right": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "bottom": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "left": { "color": "$color.success.color", "opacity": "$color.success.opacity" } }, "radius": { "topRight": "20px", "topLeft": "20px", "bottomRight": "20px", "bottomLeft": "20px" }, "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "gap": "4px" } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "70db28f-ddfa-8747-0bfa-048ea3808182": { "uuid": "70db28f-ddfa-8747-0bfa-048ea3808182", "id": "item159", "name": "item159", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "a7787b-107-5013-13b4-36ef56ef1cdb" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "a7787b-107-5013-13b4-36ef56ef1cdb": { "uuid": "a7787b-107-5013-13b4-36ef56ef1cdb", "id": "text16", "name": "text16", "type": "text", "subtype": "normal", "design": "microcaption_1", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "font": { "align": "center" }, "regular": { "font": { "size": "10px", "color": "$color.success.color", "opacity": "$color.success.opacity" }, "cursor": "text" } } }, "MOBILE": { "structure": { "size": { "width": "30px" } } } }, "props": { "value": { "props": { "value": "Completado" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "1dfd848-717e-caff-517-c88fda881e62": { "uuid": "1dfd848-717e-caff-517-c88fda881e62", "id": "item172", "name": "item172", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "18c5e47-34f5-c673-a144-e48b334027ef" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "18c5e47-34f5-c673-a144-e48b334027ef": { "uuid": "18c5e47-34f5-c673-a144-e48b334027ef", "id": "layout79", "name": "layout79", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "c6e8f-5783-ad7c-531e-8fd5ebd4dd6f", "c84bd5-c15e-e22f-6502-2c2fdf72b23" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "c6e8f-5783-ad7c-531e-8fd5ebd4dd6f": { "uuid": "c6e8f-5783-ad7c-531e-8fd5ebd4dd6f", "id": "item178", "name": "item178", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "e0545e6-4823-d807-b4d0-7f01714a674f" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "e0545e6-4823-d807-b4d0-7f01714a674f": { "uuid": "e0545e6-4823-d807-b4d0-7f01714a674f", "id": "layout67", "name": "layout67", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "43e0484-8351-5473-614d-34e444a5d87", "ca4d5c-4e53-a686-5354-0c0e52a12bf4", "a2b67ac-1ec-6d2-3706-e5ee27deacd5" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "position": "relative", "alignSelf": "center", "justifySelf": "center" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "43e0484-8351-5473-614d-34e444a5d87": { "uuid": "43e0484-8351-5473-614d-34e444a5d87", "id": "item179", "name": "item179", "type": "item", "subtype": "normal", "design": "item", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "background": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "radius": { "topRight": "50px", "topLeft": "50px", "bottomRight": "50px", "bottomLeft": "50px" }, "cursor": "auto" } }, "structure": { "size": { "width": "20px", "height": "12px" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "ca4d5c-4e53-a686-5354-0c0e52a12bf4": { "uuid": "ca4d5c-4e53-a686-5354-0c0e52a12bf4", "id": "item160", "name": "item160", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "8286e8f-cee6-765-5c-e41583f06" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "55%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "8286e8f-cee6-765-5c-e41583f06": { "uuid": "8286e8f-cee6-765-5c-e41583f06", "id": "text17", "name": "text17", "type": "text", "subtype": "normal", "design": "normal", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "regular": { "font": { "size": "12px" } } } }, "TABLET": { "structure": { "position": { "alignSelf": "start" } } } }, "props": { "value": { "props": { "value": "Aprobada" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "a2b67ac-1ec-6d2-3706-e5ee27deacd5": { "uuid": "a2b67ac-1ec-6d2-3706-e5ee27deacd5", "id": "item161", "name": "item161", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "2be40e7-743a-7d20-7fad-8e003f0ac0e0" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "2be40e7-743a-7d20-7fad-8e003f0ac0e0": { "uuid": "2be40e7-743a-7d20-7fad-8e003f0ac0e0", "id": "text18", "name": "text18", "type": "text", "subtype": "normal", "design": "microcaption_1", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "regular": { "font": { "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity" } } } }, "TABLET": { "structure": { "position": { "alignSelf": "start" } } } }, "props": { "value": { "props": { "value": "Juan Perez 12/02/26" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "c84bd5-c15e-e22f-6502-2c2fdf72b23": { "uuid": "c84bd5-c15e-e22f-6502-2c2fdf72b23", "id": "item158", "name": "item158", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "13f7c21-af78-1e24-d4d5-c06da5ce8086" ], "layout": { "DESKTOP": { "style": { "regular": { "background": { "color": "$color.success.color" }, "cursor": "auto" } }, "structure": { "size": { "width": "30%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": true }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "13f7c21-af78-1e24-d4d5-c06da5ce8086": { "uuid": "13f7c21-af78-1e24-d4d5-c06da5ce8086", "id": "layout75", "name": "layout75", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "bb4ef0-e8ac-34a4-b5ed-e34ef202f135" ], "layout": { "DESKTOP": { "style": { "justifyContent": "center", "regular": { "padding": { "paddingTop": "4px", "paddingRight": "8px", "paddingBottom": "4px", "paddingLeft": "8px" }, "background": { "color": "$color.success.color", "opacity": "19" }, "border": { "top": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "right": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "bottom": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "left": { "color": "$color.success.color", "opacity": "$color.success.opacity" } }, "radius": { "topRight": "20px", "topLeft": "20px", "bottomRight": "20px", "bottomLeft": "20px" }, "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "gap": "4px" } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "bb4ef0-e8ac-34a4-b5ed-e34ef202f135": { "uuid": "bb4ef0-e8ac-34a4-b5ed-e34ef202f135", "id": "item181", "name": "item181", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "248d27-4cb5-7165-4bb-f51a46770a0" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "248d27-4cb5-7165-4bb-f51a46770a0": { "uuid": "248d27-4cb5-7165-4bb-f51a46770a0", "id": "text41", "name": "text41", "type": "text", "subtype": "normal", "design": "microcaption_1", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "font": { "align": "center" }, "regular": { "font": { "size": "10px", "color": "$color.success.color", "opacity": "$color.success.opacity" }, "cursor": "text" } } }, "MOBILE": { "structure": { "size": { "width": "30px" } } } }, "props": { "value": { "props": { "value": "Completado" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "a0d438-a647-bd8e-1c45-8f4ec8eaa104": { "uuid": "a0d438-a647-bd8e-1c45-8f4ec8eaa104", "id": "item165", "name": "item165", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "f84c5bc-524d-43d7-a7d5-0de1a1001f51" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "f84c5bc-524d-43d7-a7d5-0de1a1001f51": { "uuid": "f84c5bc-524d-43d7-a7d5-0de1a1001f51", "id": "layout69", "name": "layout69", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "3e6666f-3771-16f2-5cf-217077eb415", "b2c7c7d-0a35-af6e-a66e-033f2532c0" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "3e6666f-3771-16f2-5cf-217077eb415": { "uuid": "3e6666f-3771-16f2-5cf-217077eb415", "id": "item166", "name": "item166", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "1eee5ad-3de3-bb57-0541-b8fc4621e3" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "1eee5ad-3de3-bb57-0541-b8fc4621e3": { "uuid": "1eee5ad-3de3-bb57-0541-b8fc4621e3", "id": "layout70", "name": "layout70", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "645512a-74d0-00e-f703-2f4bd133edec", "86c60b0-3cb-c4c4-bc0c-a2f7b6b8be7f", "3cdbda-1f5c-ce87-83d0-1bc016efbe6" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "position": "relative", "alignSelf": "center", "justifySelf": "center" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "645512a-74d0-00e-f703-2f4bd133edec": { "uuid": "645512a-74d0-00e-f703-2f4bd133edec", "id": "item167", "name": "item167", "type": "item", "subtype": "normal", "design": "item", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "background": { "color": "$color.primary.color", "opacity": "$color.primary.opacity" }, "radius": { "topRight": "50px", "topLeft": "50px", "bottomRight": "50px", "bottomLeft": "50px" }, "cursor": "auto" } }, "structure": { "size": { "width": "20px", "height": "12px" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "86c60b0-3cb-c4c4-bc0c-a2f7b6b8be7f": { "uuid": "86c60b0-3cb-c4c4-bc0c-a2f7b6b8be7f", "id": "item168", "name": "item168", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "10ba6d-4b7d-4e7-f8fd-caa27118b7" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "55%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "10ba6d-4b7d-4e7-f8fd-caa27118b7": { "uuid": "10ba6d-4b7d-4e7-f8fd-caa27118b7", "id": "text22", "name": "text22", "type": "text", "subtype": "normal", "design": "normal", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "regular": { "font": { "size": "12px" } } } }, "TABLET": { "structure": { "position": { "alignSelf": "start" } } } }, "props": { "value": { "props": { "value": "Autorizada" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "3cdbda-1f5c-ce87-83d0-1bc016efbe6": { "uuid": "3cdbda-1f5c-ce87-83d0-1bc016efbe6", "id": "item169", "name": "item169", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "db1c2a0-d82-a61-cf84-3e1c85c746c3" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "db1c2a0-d82-a61-cf84-3e1c85c746c3": { "uuid": "db1c2a0-d82-a61-cf84-3e1c85c746c3", "id": "text28", "name": "text28", "type": "text", "subtype": "normal", "design": "microcaption_1", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "regular": { "font": { "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity" } } } }, "TABLET": { "structure": { "position": { "alignSelf": "start" } } } }, "props": { "value": { "props": { "value": "Juan Perez 12/02/26" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "b2c7c7d-0a35-af6e-a66e-033f2532c0": { "uuid": "b2c7c7d-0a35-af6e-a66e-033f2532c0", "id": "item162", "name": "item162", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "4fa3840-3220-51fc-245e-0d7185e84784" ], "layout": { "DESKTOP": { "style": { "regular": { "background": { "color": "$color.success.color" }, "cursor": "auto" } }, "structure": { "size": { "width": "30%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": true }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "4fa3840-3220-51fc-245e-0d7185e84784": { "uuid": "4fa3840-3220-51fc-245e-0d7185e84784", "id": "layout68", "name": "layout68", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "86a5fb1-85b2-2b-5f0e-c214b7ff3336" ], "layout": { "DESKTOP": { "style": { "justifyContent": "center", "regular": { "padding": { "paddingTop": "4px", "paddingRight": "8px", "paddingBottom": "4px", "paddingLeft": "8px" }, "background": { "color": "$color.primary.color", "opacity": "$color.primary.opacity" }, "border": { "top": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "right": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "bottom": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "left": { "color": "$color.success.color", "opacity": "$color.success.opacity" } }, "radius": { "topRight": "20px", "topLeft": "20px", "bottomRight": "20px", "bottomLeft": "20px" }, "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "gap": "4px" } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "86a5fb1-85b2-2b-5f0e-c214b7ff3336": { "uuid": "86a5fb1-85b2-2b-5f0e-c214b7ff3336", "id": "item163", "name": "item163", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "4fa0ba3-3ce2-dead-476a-0a1bbf20a11" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "4fa0ba3-3ce2-dead-476a-0a1bbf20a11": { "uuid": "4fa0ba3-3ce2-dead-476a-0a1bbf20a11", "id": "text19", "name": "text19", "type": "text", "subtype": "normal", "design": "microcaption_1", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "font": { "align": "center" }, "regular": { "font": { "size": "10px", "color": "$color.tertiary.color", "opacity": "$color.tertiary.opacity" }, "cursor": "text" } } }, "MOBILE": { "structure": { "size": { "width": "30px" } } } }, "props": { "value": { "props": { "value": "En Proceso" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "011fb2-a5e-d581-3c13-2548c00821b7": { "uuid": "011fb2-a5e-d581-3c13-2548c00821b7", "id": "item173", "name": "item173", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "50b580-ba68-56d4-06cc-ceee3fbd63d" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "50b580-ba68-56d4-06cc-ceee3fbd63d": { "uuid": "50b580-ba68-56d4-06cc-ceee3fbd63d", "id": "layout72", "name": "layout72", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "cc631a3-5d1-6d35-4d7-312eee1fe83", "3a2cfe4-b2f-73e4-e3ea-23b112dc7a47" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "cc631a3-5d1-6d35-4d7-312eee1fe83": { "uuid": "cc631a3-5d1-6d35-4d7-312eee1fe83", "id": "item174", "name": "item174", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "f6d5424-6e-2ef-6177-0e12d6e7047" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "f6d5424-6e-2ef-6177-0e12d6e7047": { "uuid": "f6d5424-6e-2ef-6177-0e12d6e7047", "id": "layout73", "name": "layout73", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "a425a6e-5f4f-07c-186b-c6728bdbba32", "7c81b71-4536-0fe4-ccb1-4040dfdefe8", "ec7168c-3166-5b80-2cf8-68c57c1468f" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "position": "relative", "alignSelf": "center", "justifySelf": "center" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "a425a6e-5f4f-07c-186b-c6728bdbba32": { "uuid": "a425a6e-5f4f-07c-186b-c6728bdbba32", "id": "item175", "name": "item175", "type": "item", "subtype": "normal", "design": "item", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "background": { "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity" }, "radius": { "topRight": "50px", "topLeft": "50px", "bottomRight": "50px", "bottomLeft": "50px" }, "cursor": "auto" } }, "structure": { "size": { "width": "20px", "height": "12px" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "7c81b71-4536-0fe4-ccb1-4040dfdefe8": { "uuid": "7c81b71-4536-0fe4-ccb1-4040dfdefe8", "id": "item176", "name": "item176", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "4407435-be57-b637-3ba-8b878211ded8" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "55%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "4407435-be57-b637-3ba-8b878211ded8": { "uuid": "4407435-be57-b637-3ba-8b878211ded8", "id": "text35", "name": "text35", "type": "text", "subtype": "normal", "design": "normal", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "regular": { "font": { "size": "12px", "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity" } } } }, "TABLET": { "structure": { "position": { "alignSelf": "start" } } } }, "props": { "value": { "props": { "value": "Recepcionada" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "ec7168c-3166-5b80-2cf8-68c57c1468f": { "uuid": "ec7168c-3166-5b80-2cf8-68c57c1468f", "id": "item177", "name": "item177", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "3c5574a-426d-035f-b330-67b25dbdb50" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "3c5574a-426d-035f-b330-67b25dbdb50": { "uuid": "3c5574a-426d-035f-b330-67b25dbdb50", "id": "text39", "name": "text39", "type": "text", "subtype": "normal", "design": "microcaption_1", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "regular": { "font": { "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity" } } } }, "TABLET": { "structure": { "position": { "alignSelf": "start" } } } }, "props": { "value": { "props": { "value": "Juan Perez 12/02/26" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "3a2cfe4-b2f-73e4-e3ea-23b112dc7a47": { "uuid": "3a2cfe4-b2f-73e4-e3ea-23b112dc7a47", "id": "item164", "name": "item164", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "ee310bd-660a-64c-ecd3-ade81ee8bd6" ], "layout": { "DESKTOP": { "style": { "regular": { "background": { "color": "$color.success.color" }, "cursor": "auto" } }, "structure": { "size": { "width": "30%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": true }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "ee310bd-660a-64c-ecd3-ade81ee8bd6": { "uuid": "ee310bd-660a-64c-ecd3-ade81ee8bd6", "id": "layout71", "name": "layout71", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "bde12aa-1577-4244-e86b-c2f08e688fc" ], "layout": { "DESKTOP": { "style": { "justifyContent": "center", "regular": { "padding": { "paddingTop": "4px", "paddingRight": "8px", "paddingBottom": "4px", "paddingLeft": "8px" }, "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" }, "border": { "top": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "right": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "bottom": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "left": { "color": "$color.success.color", "opacity": "$color.success.opacity" } }, "radius": { "topRight": "20px", "topLeft": "20px", "bottomRight": "20px", "bottomLeft": "20px" }, "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "gap": "4px" } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "bde12aa-1577-4244-e86b-c2f08e688fc": { "uuid": "bde12aa-1577-4244-e86b-c2f08e688fc", "id": "item170", "name": "item170", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "5d0cfc0-416b-8d6f-4d2a-100bcc8dfd15" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "5d0cfc0-416b-8d6f-4d2a-100bcc8dfd15": { "uuid": "5d0cfc0-416b-8d6f-4d2a-100bcc8dfd15", "id": "text32", "name": "text32", "type": "text", "subtype": "normal", "design": "microcaption_1", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "font": { "align": "center" }, "regular": { "font": { "size": "10px", "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity" }, "cursor": "text" } } }, "MOBILE": { "structure": { "size": { "width": "30px" } } } }, "props": { "value": { "props": { "value": "Pendiente" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "12e27db-d5d8-d6b-55f5-7e6661b80e": { "uuid": "12e27db-d5d8-d6b-55f5-7e6661b80e", "id": "item180", "name": "item180", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "d223cc-fe06-1cff-2d1c-f3536c4a7ce" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "50c66ca-abef-6737-3b5c-63be1b6e5be": { "uuid": "50c66ca-abef-6737-3b5c-63be1b6e5be", "id": "layout80", "name": "layout80", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "12e27db-d5d8-d6b-55f5-7e6661b80e", "5184f60-b67b-de0-c18b-3b0d1ab33aaf", "b05a8b-8384-e50-3a3-273747c5a12" ], "layout": { "DESKTOP": { "style": { "gap": "24px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "5184f60-b67b-de0-c18b-3b0d1ab33aaf": { "uuid": "5184f60-b67b-de0-c18b-3b0d1ab33aaf", "id": "item182", "name": "item182", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "fcec37a-5250-8fba-36e5-d2d6328c1da" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "fcec37a-5250-8fba-36e5-d2d6328c1da": { "uuid": "fcec37a-5250-8fba-36e5-d2d6328c1da", "id": "layout81", "name": "layout81", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "54e4ca2-bf33-661-130c-382df70f074", "7215cd0-1edc-30ca-d601-25ebcd752ee3" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "54e4ca2-bf33-661-130c-382df70f074": { "uuid": "54e4ca2-bf33-661-130c-382df70f074", "id": "item183", "name": "item183", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "04ee00f-a5-1781-cdd0-adc117c6c4a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true }, "04ee00f-a5-1781-cdd0-adc117c6c4a": { "uuid": "04ee00f-a5-1781-cdd0-adc117c6c4a", "id": "layout82", "name": "layout82", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "a671bcf-3a8a-d3c-3524-2fa40dd1a4fc", "0cfffe1-83c6-d5aa-765-a0884c82b8a8", "a58558f-6332-2a2f-b01b-471ca86e40dd" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "MOBILE": { "style": { "props": { "type": "ROW" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "a671bcf-3a8a-d3c-3524-2fa40dd1a4fc": { "uuid": "a671bcf-3a8a-d3c-3524-2fa40dd1a4fc", "id": "item184", "name": "item184", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "a76b8e6-3f3d-dd58-c55-1e1b2b42" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "a76b8e6-3f3d-dd58-c55-1e1b2b42": { "uuid": "a76b8e6-3f3d-dd58-c55-1e1b2b42", "id": "icon5", "name": "icon5", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "auto" } } }, "props": { "value": { "props": { "value": { "type": "deyel", "value": "icon-deyel_mt-archivo" } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "0cfffe1-83c6-d5aa-765-a0884c82b8a8": { "uuid": "0cfffe1-83c6-d5aa-765-a0884c82b8a8", "id": "item185", "name": "item185", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "71aa5b4-51d-53aa-a3fe-0b4116053622" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "pointer" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self", "scroll": { "behavior": "auto", "block": "nearest", "line": "nearest" }, "link": { "operation": "TOGGLE", "type": "ELEMENT", "idObject": [ "7215cd0-1edc-30ca-d601-25ebcd752ee3" ] } } }, "71aa5b4-51d-53aa-a3fe-0b4116053622": { "uuid": "71aa5b4-51d-53aa-a3fe-0b4116053622", "id": "layout83", "name": "layout83", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "d7e207-88f3-f010-c86-62ff2ef2bba8", "0740ba-8201-ad6-4486-8a57f5b00ca6" ], "layout": { "DESKTOP": { "style": { "gap": "0px", "regular": { "cursor": "pointer" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "d7e207-88f3-f010-c86-62ff2ef2bba8": { "uuid": "d7e207-88f3-f010-c86-62ff2ef2bba8", "id": "item186", "name": "item186", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "487c63-6d84-7473-0d0d-28cfafbed27f" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "100%", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "487c63-6d84-7473-0d0d-28cfafbed27f": { "uuid": "487c63-6d84-7473-0d0d-28cfafbed27f", "id": "text34", "name": "text34", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "pointer" } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"font-size: 12px;\">Comprobantes<strong> </strong></span><span style=\"color: var(--design-solid-color-secondary); font-size: 12px;\"><strong>(</strong></span><span style=\"color: var(--design-solid-color-secondary); font-size: 12px;\"><strong><datasource value=\"COUNT*\" datasource=\"7e02471-f06c-e524-6267-01fb6f64ffc\" type=\"undefined\"/></strong></span><span style=\"color: var(--design-solid-color-secondary); font-size: 12px;\"><strong>)</strong></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "0740ba-8201-ad6-4486-8a57f5b00ca6": { "uuid": "0740ba-8201-ad6-4486-8a57f5b00ca6", "id": "item187", "name": "item187", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "8b485c-eb03-78e6-b350-d5205dde56e" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "8b485c-eb03-78e6-b350-d5205dde56e": { "uuid": "8b485c-eb03-78e6-b350-d5205dde56e", "id": "icon11", "name": "icon11", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "pointer" } } }, "props": { "value": { "props": { "value": { "type": "fontawesome", "value": [ "fas", "angle-down" ] } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "a58558f-6332-2a2f-b01b-471ca86e40dd": { "uuid": "a58558f-6332-2a2f-b01b-471ca86e40dd", "id": "item188", "name": "item188", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "26668fc-03b6-43db-3053-88827acc010" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "26668fc-03b6-43db-3053-88827acc010": { "uuid": "26668fc-03b6-43db-3053-88827acc010", "id": "button3", "name": "button3", "type": "button", "subtype": "normal", "design": "tertiary", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } }, "style": { "regular": { "padding": { "paddingTop": "0px" }, "font": { "size": "12px" }, "cursor": "pointer" }, "disabled": { "cursor": "default" } }, "visible": false } }, "props": { "initialState": "regular", "value": { "props": { "value": "+ Nuevo" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "order": "start", "destinityType": "_self" }, "modifiedName": false, "modifiedId": false, "events": { "onClick": "button3_onClick" } }, "7215cd0-1edc-30ca-d601-25ebcd752ee3": { "uuid": "7215cd0-1edc-30ca-d601-25ebcd752ee3", "id": "item189", "name": "item189", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "52dbd2b-ca6-3fea-ccdd-478ab4ee0240" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true }, "52dbd2b-ca6-3fea-ccdd-478ab4ee0240": { "uuid": "52dbd2b-ca6-3fea-ccdd-478ab4ee0240", "id": "repeater2", "name": "repeater2", "type": "repeater", "subtype": "normal", "design": "card", "subitems": [ "d20710d-fe3-be1-7d1c-070ef8da661" ], "layout": { "DESKTOP": { "style": { "gap": "12px", "props": { "direction": "column", "scrollPos": "inside", "arrowsBehavior": "hide", "columns": 1, "rows": 2 }, "regular": { "padding": { "paddingTop": "0px", "paddingRight": "0px", "paddingBottom": "0px", "paddingLeft": "0px" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "minWidth": "unset", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "props": { "canModify": true, "initialItem": false, "dataSource": "7e02471-f06c-e524-6267-01fb6f64ffc" }, "modifiedName": true, "modifiedId": false }, "d20710d-fe3-be1-7d1c-070ef8da661": { "uuid": "d20710d-fe3-be1-7d1c-070ef8da661", "id": "item190", "name": "item190", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "c267-2fdd-ec2-882c-bdcb0754403" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "pointer" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "minHeight": "130px" } } } }, "hyperLink": { "destinityType": "_self", "idDep": "0bcfcf-ac75-30a-f2f1-cc66ca556b", "link": { "operation": "CREATE", "type": "ENTITY" }, "params": [ { "id": "_idInstance", "props": { "value": "__id", "type": "Integer", "dataSource": "7e02471-f06c-e524-6267-01fb6f64ffc", "desc": "identificador" }, "type": "SOURCE", "label": "id" } ] }, "modifiedName": true }, "c267-2fdd-ec2-882c-bdcb0754403": { "uuid": "c267-2fdd-ec2-882c-bdcb0754403", "id": "layout84", "name": "layout84", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "d1872fe-7f5b-50a0-f5ac-70c83dab1d1d", "020dd7b-6ad1-d06-d1d6-d2be12c8a823" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "regular": { "padding": { "paddingTop": "12px", "paddingRight": "12px", "paddingBottom": "12px", "paddingLeft": "12px" }, "border": { "top": { "width": "1px", "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity" }, "right": { "width": "1px", "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity" }, "bottom": { "width": "1px", "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity" }, "left": { "width": "1px", "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity" } }, "radius": { "topRight": "8px", "topLeft": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "hover": { "border": { "top": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "right": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "bottom": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "left": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } }, "background": { "color": "$color.secondary.color", "opacity": "07" } } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "d1872fe-7f5b-50a0-f5ac-70c83dab1d1d": { "uuid": "d1872fe-7f5b-50a0-f5ac-70c83dab1d1d", "id": "item191", "name": "item191", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "61b88cc-a115-cf26-e236-72b3c12318cb" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "auto", "height": "100%", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } }, "TABLET": { "structure": { "size": { "width": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "61b88cc-a115-cf26-e236-72b3c12318cb": { "uuid": "61b88cc-a115-cf26-e236-72b3c12318cb", "id": "layout85", "name": "layout85", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "a77c63-b230-76a-8280-f1fb1c01ae", "0cf45bb-c6c2-dacb-06dd-c064f51a064" ], "layout": { "DESKTOP": { "style": { "gap": "0px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "gap": "4px", "regular": { "padding": { "paddingTop": "12px", "paddingLeft": "12px", "paddingRight": "12px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "a77c63-b230-76a-8280-f1fb1c01ae": { "uuid": "a77c63-b230-76a-8280-f1fb1c01ae", "id": "item192", "name": "item192", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "e676b67-0ec-e05e-260a-65acc03ec" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "height": "31px" } } } }, "hyperLink": { "destinityType": "_self" } }, "e676b67-0ec-e05e-260a-65acc03ec": { "uuid": "e676b67-0ec-e05e-260a-65acc03ec", "id": "text40", "name": "text40", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "pointer" } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"font-size: 12px;\"><strong>Comprobante Nro </strong></span><span style=\"font-size: 12px;\"><strong><datasource value=\"__numeroComprobante\" datasource=\"7e02471-f06c-e524-6267-01fb6f64ffc\" type=\"Nativestring\"/></strong></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "0cf45bb-c6c2-dacb-06dd-c064f51a064": { "uuid": "0cf45bb-c6c2-dacb-06dd-c064f51a064", "id": "item193", "name": "item193", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "ba64bb-8088-254-d33e-c01b7631c128" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "60%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "ba64bb-8088-254-d33e-c01b7631c128": { "uuid": "ba64bb-8088-254-d33e-c01b7631c128", "id": "layout96", "name": "layout96", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "c6e3d03-d3e-a32-3d45-f200eecb2c4", "2de423-de88-550d-83a7-dfcfe73573f3" ], "layout": { "DESKTOP": { "style": { "gap": "2px", "justifyContent": "start", "regular": { "padding": { "paddingTop": "4px", "paddingRight": "8px", "paddingBottom": "4px", "paddingLeft": "8px" }, "background": { "color": "$color.secondary.color", "opacity": "0c" }, "border": { "top": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "right": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "bottom": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "left": { "color": "$color.success.color", "opacity": "$color.success.opacity" } }, "radius": { "topRight": "20px", "topLeft": "20px", "bottomRight": "20px", "bottomLeft": "20px" }, "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } }, "MOBILE": { "style": { "props": { "type": "ROW" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "c6e3d03-d3e-a32-3d45-f200eecb2c4": { "uuid": "c6e3d03-d3e-a32-3d45-f200eecb2c4", "id": "item194", "name": "item194", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "72f1de-0df5-262a-6321-2c1e6680bb1" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "72f1de-0df5-262a-6321-2c1e6680bb1": { "uuid": "72f1de-0df5-262a-6321-2c1e6680bb1", "id": "icon15", "name": "icon15", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "8px", "height": "8px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "color": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "cursor": "auto" } } }, "props": { "value": { "props": { "value": { "type": "deyel", "value": "icon-deyel_circ-check-filled" } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "2de423-de88-550d-83a7-dfcfe73573f3": { "uuid": "2de423-de88-550d-83a7-dfcfe73573f3", "id": "item195", "name": "item195", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "5f5f77-8e22-171b-5a0b-cab03347f6ed" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "5f5f77-8e22-171b-5a0b-cab03347f6ed": { "uuid": "5f5f77-8e22-171b-5a0b-cab03347f6ed", "id": "text42", "name": "text42", "type": "text", "subtype": "normal", "design": "microcaption_1", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "maxLines": 2, "regular": { "font": { "weight": "600", "size": "8px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "cursor": "text" } } } }, "props": { "value": { "props": { "value": "status", "type": "Nativestring", "dataSource": "7e02471-f06c-e524-6267-01fb6f64ffc", "desc": "desc_status" }, "type": "SOURCE" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "020dd7b-6ad1-d06-d1d6-d2be12c8a823": { "uuid": "020dd7b-6ad1-d06-d1d6-d2be12c8a823", "id": "item196", "name": "item196", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "ef5c3a-0e8f-12d2-7f42-4e2fb6e75b1" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "100%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "ef5c3a-0e8f-12d2-7f42-4e2fb6e75b1": { "uuid": "ef5c3a-0e8f-12d2-7f42-4e2fb6e75b1", "id": "layout97", "name": "layout97", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "8c143f-2b06-acc6-a140-54468f846da", "4078a5-51d-bdff-81e3-24e701287ab7", "1d308-5566-aae-13a3-cd3246827fb" ], "layout": { "DESKTOP": { "style": { "gap": "2px", "props": { "type": "COLUMN" }, "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "regular": { "padding": { "paddingBottom": "12px", "paddingLeft": "12px", "paddingRight": "12px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "8c143f-2b06-acc6-a140-54468f846da": { "uuid": "8c143f-2b06-acc6-a140-54468f846da", "id": "item197", "name": "item197", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "572a4ef-6e55-d343-e6aa-72382b21de7a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "width": "auto" } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "572a4ef-6e55-d343-e6aa-72382b21de7a": { "uuid": "572a4ef-6e55-d343-e6aa-72382b21de7a", "id": "text43", "name": "text43", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "pointer" } }, "TABLET": { "style": { "regular": { "font": { "size": "11px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "10px" } } } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px;\">Nro OC: </span><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px;\"><datasource value=\"__ordenDeCompra\" datasource=\"7e02471-f06c-e524-6267-01fb6f64ffc\" type=\"Integer\"/></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "4078a5-51d-bdff-81e3-24e701287ab7": { "uuid": "4078a5-51d-bdff-81e3-24e701287ab7", "id": "item198", "name": "item198", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "0caae1a-7422-7b73-accf-dd1ef47c11bb" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "width": "auto" } } }, "MOBILE": { "style": {}, "structure": { "size": { "height": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "0caae1a-7422-7b73-accf-dd1ef47c11bb": { "uuid": "0caae1a-7422-7b73-accf-dd1ef47c11bb", "id": "text44", "name": "text44", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "pointer" } }, "TABLET": { "style": { "regular": { "font": { "size": "11px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "10px" } } } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px;\">Emision: </span><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px;\"><datasource value=\"fechaComprobante\" datasource=\"7e02471-f06c-e524-6267-01fb6f64ffc\" type=\"Nativestring\"/></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "a257b74-5703-7225-353-e8da4eeb5a": { "uuid": "a257b74-5703-7225-353-e8da4eeb5a", "id": "section2", "name": "section2", "type": "section", "subtype": "normal", "design": "section", "subitems": [ "fd8ffbd-b731-bf68-44e0-8bae6dad8c3d" ], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "96px" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } }, "visible": false } } }, "fd8ffbd-b731-bf68-44e0-8bae6dad8c3d": { "uuid": "fd8ffbd-b731-bf68-44e0-8bae6dad8c3d", "id": "button4", "name": "button4", "type": "button", "subtype": "normal", "design": "tertiary", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } } } }, "props": { "initialState": "regular", "value": { "props": { "value": "+ Nuevo" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "order": "start", "destinityType": "_self" }, "modifiedName": false, "modifiedId": false, "events": { "onClick": "button4_onClick" } }, "e3ca60-54-d084-76f7-2cbe2778ee3": { "uuid": "e3ca60-54-d084-76f7-2cbe2778ee3", "id": "button5", "name": "button5", "type": "button", "subtype": "normal", "design": "tertiary", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } }, "style": { "regular": { "padding": { "paddingTop": "0px" }, "font": { "size": "12px" }, "cursor": "pointer" }, "disabled": { "cursor": "default" } } } }, "props": { "initialState": "regular", "value": { "props": { "value": "+ Nuevo" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "order": "start", "destinityType": "_self", "showLoading": true, "idDep": "ac0040-58e-dc07-5ccf-c07df5c83780", "params": [ { "id": "idPurchaseOrder", "props": { "value": "e6e42-8cab-1ac6-1a-fd82c28a781c" }, "type": "CONTEXT" } ] }, "modifiedName": false, "modifiedId": false, "events": {} }, "1dd625b-eec-1a6a-fc2b-280a40e0e28": { "uuid": "1dd625b-eec-1a6a-fc2b-280a40e0e28", "id": "icon20", "name": "icon20", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "cursor": "pointer" } } }, "props": { "value": { "props": { "value": { "type": "fontawesome", "value": [ "fas", "eye" ] } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "idDep": "70b58fe-44f4-c71-ff7-0b5e2805bd7", "destinityType": "_modal", "link": { "operation": "CREATE", "type": "ENTITY" }, "params": [ { "id": "_idInstance", "props": { "value": "__supplier", "type": "Nativestring", "dataSource": "eed0db-283f-1a65-33f3-f24005b7a8b7", "desc": "supplier" }, "type": "SOURCE", "label": "id" } ], "modalSize": { "x": "800px", "y": "80vh" } }, "modifiedName": false, "modifiedId": false }, "825fb13-e50d-6182-3a30-1030a7cf65e": { "uuid": "825fb13-e50d-6182-3a30-1030a7cf65e", "id": "item199", "name": "item199", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "1dd625b-eec-1a6a-fc2b-280a40e0e28" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "width": "20px", "minHeight": "14px" } } }, "MOBILE": { "style": {}, "visible": false } }, "hyperLink": { "destinityType": "_self" } }, "b05a8b-8384-e50-3a3-273747c5a12": { "uuid": "b05a8b-8384-e50-3a3-273747c5a12", "id": "item200", "name": "item200", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "afc710c-d6e8-af5f-e142-57370a83d6" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "afc710c-d6e8-af5f-e142-57370a83d6": { "uuid": "afc710c-d6e8-af5f-e142-57370a83d6", "id": "layout98", "name": "layout98", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "20dbb-cbd6-54ba-f17b-f65eea464cb3", "b4edae-be00-0446-e5d4-4206f7b0b2f8" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "20dbb-cbd6-54ba-f17b-f65eea464cb3": { "uuid": "20dbb-cbd6-54ba-f17b-f65eea464cb3", "id": "item201", "name": "item201", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "b04cac-d2df-b416-548d-ab5e803b45b" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true }, "b04cac-d2df-b416-548d-ab5e803b45b": { "uuid": "b04cac-d2df-b416-548d-ab5e803b45b", "id": "layout99", "name": "layout99", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "2faf88-af48-2542-061-2755bd275f2d", "da1cb28-4144-d7f6-24a-a5f02c83ac8", "2826d1e-552-47e1-42f6-fa22c40b02" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "MOBILE": { "style": { "props": { "type": "ROW" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "2faf88-af48-2542-061-2755bd275f2d": { "uuid": "2faf88-af48-2542-061-2755bd275f2d", "id": "item202", "name": "item202", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "cf86f6b-e87-fe38-0eb3-d323541f187" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "cf86f6b-e87-fe38-0eb3-d323541f187": { "uuid": "cf86f6b-e87-fe38-0eb3-d323541f187", "id": "icon21", "name": "icon21", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "auto" } } }, "props": { "value": { "props": { "value": { "type": "deyel", "value": "icon-deyel_mt-archivo" } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "da1cb28-4144-d7f6-24a-a5f02c83ac8": { "uuid": "da1cb28-4144-d7f6-24a-a5f02c83ac8", "id": "item203", "name": "item203", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "fde6a5a-ee40-7304-65cb-5e2e6a7b0" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "pointer" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self", "scroll": { "behavior": "auto", "block": "nearest", "line": "nearest" }, "link": { "operation": "TOGGLE", "type": "ELEMENT", "idObject": [ "b4edae-be00-0446-e5d4-4206f7b0b2f8" ] } } }, "fde6a5a-ee40-7304-65cb-5e2e6a7b0": { "uuid": "fde6a5a-ee40-7304-65cb-5e2e6a7b0", "id": "layout100", "name": "layout100", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "afdfe8c-5ced-0885-1bf3-28aa7b420", "67743ef-e05-76cc-fb17-3cfec1c066e6" ], "layout": { "DESKTOP": { "style": { "gap": "0px", "regular": { "cursor": "pointer" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "afdfe8c-5ced-0885-1bf3-28aa7b420": { "uuid": "afdfe8c-5ced-0885-1bf3-28aa7b420", "id": "item204", "name": "item204", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "f22e230-3df3-75d3-7323-510db12c8b0" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "f22e230-3df3-75d3-7323-510db12c8b0": { "uuid": "f22e230-3df3-75d3-7323-510db12c8b0", "id": "text45", "name": "text45", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "pointer" } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"font-size: 12px;\">Orden de Pago</span> <span style=\"color: var(--design-solid-color-secondary); font-size: 12px;\">(</span><span style=\"color: var(--design-solid-color-secondary); font-size: 12px;\"><datasource value=\"cantidad\" datasource=\"a1af5a8-1f-57a6-5506-31ab3f46d04\" type=\"undefined\"/></span><span style=\"color: var(--design-solid-color-secondary); font-size: 12px;\">)</span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "67743ef-e05-76cc-fb17-3cfec1c066e6": { "uuid": "67743ef-e05-76cc-fb17-3cfec1c066e6", "id": "item205", "name": "item205", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "ae83566-5c8-65df-5ade-bd884fdaba50" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "ae83566-5c8-65df-5ade-bd884fdaba50": { "uuid": "ae83566-5c8-65df-5ade-bd884fdaba50", "id": "icon22", "name": "icon22", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "pointer" } } }, "props": { "value": { "props": { "value": { "type": "fontawesome", "value": [ "fas", "angle-down" ] } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "2826d1e-552-47e1-42f6-fa22c40b02": { "uuid": "2826d1e-552-47e1-42f6-fa22c40b02", "id": "item206", "name": "item206", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "851a3f2-e40-7425-62d7-426fbfcc460" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "851a3f2-e40-7425-62d7-426fbfcc460": { "uuid": "851a3f2-e40-7425-62d7-426fbfcc460", "id": "button9", "name": "button9", "type": "button", "subtype": "normal", "design": "tertiary", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } }, "style": { "regular": { "padding": { "paddingTop": "0px" }, "font": { "size": "12px" }, "cursor": "pointer" }, "disabled": { "cursor": "default" } }, "visible": false } }, "props": { "initialState": "regular", "value": { "props": { "value": "+ Nuevo" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "order": "start", "destinityType": "_self" }, "modifiedName": false, "modifiedId": false, "events": { "onClick": "button3_onClick" } }, "b4edae-be00-0446-e5d4-4206f7b0b2f8": { "uuid": "b4edae-be00-0446-e5d4-4206f7b0b2f8", "id": "item207", "name": "item207", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "87805c6-c88-2d0-507d-d4d1cd5360fa" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true }, "87805c6-c88-2d0-507d-d4d1cd5360fa": { "uuid": "87805c6-c88-2d0-507d-d4d1cd5360fa", "id": "repeater3", "name": "repeater3", "type": "repeater", "subtype": "normal", "design": "card", "subitems": [ "071ffc-5307-c04-e416-66b825c1f32d" ], "layout": { "DESKTOP": { "style": { "gap": "12px", "props": { "direction": "column", "scrollPos": "inside", "arrowsBehavior": "hide", "columns": 1, "rows": 2 }, "regular": { "padding": { "paddingTop": "0px", "paddingRight": "0px", "paddingBottom": "0px", "paddingLeft": "0px" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "minWidth": "unset", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "props": { "canModify": false, "initialItem": false, "dataSource": "a1af5a8-1f-57a6-5506-31ab3f46d04" }, "modifiedName": true, "modifiedId": false }, "071ffc-5307-c04-e416-66b825c1f32d": { "uuid": "071ffc-5307-c04-e416-66b825c1f32d", "id": "item208", "name": "item208", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "c83d45f-06e0-1426-deb2-a5da70f036a4" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "pointer" } }, "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "minHeight": "130px" } } } }, "hyperLink": { "destinityType": "_self", "idDep": "f8e3d3-4256-17e0-0012-c83d2106e47", "link": { "operation": "CREATE", "type": "ENTITY" }, "params": [ { "id": "_idInstance", "props": { "value": "__id", "type": "Integer", "dataSource": "7e02471-f06c-e524-6267-01fb6f64ffc", "desc": "identificador" }, "type": "SOURCE", "label": "id" } ] }, "modifiedName": true }, "c83d45f-06e0-1426-deb2-a5da70f036a4": { "uuid": "c83d45f-06e0-1426-deb2-a5da70f036a4", "id": "layout101", "name": "layout101", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "dc3ef1a-1c1-54ed-c2fd-bf7d6da3335c", "72a6daa-e21-8e11-54ff-6d2d0760b23" ], "layout": { "DESKTOP": { "style": { "gap": "4px", "regular": { "padding": { "paddingTop": "12px", "paddingRight": "12px", "paddingBottom": "12px", "paddingLeft": "12px" }, "border": { "top": { "width": "1px", "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity" }, "right": { "width": "1px", "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity" }, "bottom": { "width": "1px", "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity" }, "left": { "width": "1px", "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity" } }, "radius": { "topRight": "8px", "topLeft": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "pointer" }, "hover": { "border": { "top": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "right": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "bottom": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "left": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } }, "background": { "color": "$color.secondary.color", "opacity": "07" } } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self", "idDep": "4c357c-ccdd-5b03-fff0-4adca10288", "link": { "operation": "CREATE", "type": "ENTITY" }, "params": [ { "id": "_idInstance", "props": { "value": "__id", "type": "Integer", "dataSource": "a1af5a8-1f-57a6-5506-31ab3f46d04", "desc": "identificador" }, "type": "SOURCE", "label": "id" } ] }, "modifiedName": false, "modifiedId": false }, "dc3ef1a-1c1-54ed-c2fd-bf7d6da3335c": { "uuid": "dc3ef1a-1c1-54ed-c2fd-bf7d6da3335c", "id": "item209", "name": "item209", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "4631f1-84a4-880-5ecb-bf5b387cc24" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "auto", "height": "100%", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } }, "TABLET": { "structure": { "size": { "width": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "4631f1-84a4-880-5ecb-bf5b387cc24": { "uuid": "4631f1-84a4-880-5ecb-bf5b387cc24", "id": "layout102", "name": "layout102", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "cb3a814-0013-d7a1-2d2a-010b5cf4df18", "306a0a-aa-731e-bc33-c4c1e21e130" ], "layout": { "DESKTOP": { "style": { "gap": "0px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "gap": "4px", "regular": { "padding": { "paddingTop": "12px", "paddingLeft": "12px", "paddingRight": "12px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "cb3a814-0013-d7a1-2d2a-010b5cf4df18": { "uuid": "cb3a814-0013-d7a1-2d2a-010b5cf4df18", "id": "item210", "name": "item210", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "7367aa4-4c-ab0-eb67-08152a73e6" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "height": "31px" } } } }, "hyperLink": { "destinityType": "_self" } }, "7367aa4-4c-ab0-eb67-08152a73e6": { "uuid": "7367aa4-4c-ab0-eb67-08152a73e6", "id": "text46", "name": "text46", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "pointer" } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"font-size: 12px;\"><strong>Orden de pago Nro </strong></span><span style=\"font-size: 12px;\"><strong><datasource value=\"idOP\" datasource=\"a1af5a8-1f-57a6-5506-31ab3f46d04\" type=\"undefined\"/></strong></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "306a0a-aa-731e-bc33-c4c1e21e130": { "uuid": "306a0a-aa-731e-bc33-c4c1e21e130", "id": "item211", "name": "item211", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "41f1b4c-8357-0ff0-8f7c-a10d4cb64cf5" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "60%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "41f1b4c-8357-0ff0-8f7c-a10d4cb64cf5": { "uuid": "41f1b4c-8357-0ff0-8f7c-a10d4cb64cf5", "id": "layout103", "name": "layout103", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "6b84ac2-85e6-f102-7ae0-1085a211f6df", "201d886-0ebc-b4ea-136d-24ea3045535" ], "layout": { "DESKTOP": { "style": { "gap": "2px", "regular": { "padding": { "paddingTop": "4px", "paddingRight": "8px", "paddingBottom": "4px", "paddingLeft": "8px" }, "background": { "color": "$color.secondary.color", "opacity": "0c" }, "border": { "top": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "right": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "bottom": { "color": "$color.success.color", "opacity": "$color.success.opacity" }, "left": { "color": "$color.success.color", "opacity": "$color.success.opacity" } }, "radius": { "topRight": "20px", "topLeft": "20px", "bottomRight": "20px", "bottomLeft": "20px" }, "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } }, "MOBILE": { "style": { "props": { "type": "ROW" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "6b84ac2-85e6-f102-7ae0-1085a211f6df": { "uuid": "6b84ac2-85e6-f102-7ae0-1085a211f6df", "id": "item212", "name": "item212", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "6576c5-fe4d-775b-bf37-cee2eb034a1" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "6576c5-fe4d-775b-bf37-cee2eb034a1": { "uuid": "6576c5-fe4d-775b-bf37-cee2eb034a1", "id": "icon23", "name": "icon23", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "8px", "height": "8px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "start" } }, "style": { "color": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "cursor": "auto" } } }, "props": { "value": { "props": { "value": { "type": "deyel", "value": "icon-deyel_circ-check-filled" } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "201d886-0ebc-b4ea-136d-24ea3045535": { "uuid": "201d886-0ebc-b4ea-136d-24ea3045535", "id": "item213", "name": "item213", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "dfe57a3-aa44-b4ec-e13b-b3da3c283a0" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "dfe57a3-aa44-b4ec-e13b-b3da3c283a0": { "uuid": "dfe57a3-aa44-b4ec-e13b-b3da3c283a0", "id": "text47", "name": "text47", "type": "text", "subtype": "normal", "design": "microcaption_1", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "maxLines": 2, "regular": { "font": { "weight": "600", "size": "8px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "cursor": "text" } } } }, "props": { "value": { "props": { "value": "status", "dataSource": "a1af5a8-1f-57a6-5506-31ab3f46d04", "desc": "status" }, "type": "SOURCE" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "72a6daa-e21-8e11-54ff-6d2d0760b23": { "uuid": "72a6daa-e21-8e11-54ff-6d2d0760b23", "id": "item214", "name": "item214", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "f3c18bf-76dc-58e-4a62-871f6db3e84a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "100%", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "marginBottom": 0, "marginTop": 0, "marginRight": 0, "marginLeft": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "f3c18bf-76dc-58e-4a62-871f6db3e84a": { "uuid": "f3c18bf-76dc-58e-4a62-871f6db3e84a", "id": "layout104", "name": "layout104", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "b8f36a5-642-2112-b451-7518ca2f637", "ccbd180-011-d2be-d4d3-f1604c044ca" ], "layout": { "DESKTOP": { "style": { "gap": "2px", "props": { "type": "COLUMN" }, "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "regular": { "padding": { "paddingBottom": "12px", "paddingLeft": "12px", "paddingRight": "12px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "b8f36a5-642-2112-b451-7518ca2f637": { "uuid": "b8f36a5-642-2112-b451-7518ca2f637", "id": "item215", "name": "item215", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "33db4d7-f68-cd0c-758e-b10a2c46d82e" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "width": "auto" } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "33db4d7-f68-cd0c-758e-b10a2c46d82e": { "uuid": "33db4d7-f68-cd0c-758e-b10a2c46d82e", "id": "text48", "name": "text48", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "pointer" } }, "TABLET": { "style": { "regular": { "font": { "size": "11px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "10px" } } } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px;\">Fecha de pago:</span><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px; font-family: var(--design-font-primary);\"><datasource value=\"fechaPago\" datasource=\"a1af5a8-1f-57a6-5506-31ab3f46d04\" type=\"undefined\"/></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "ccbd180-011-d2be-d4d3-f1604c044ca": { "uuid": "ccbd180-011-d2be-d4d3-f1604c044ca", "id": "item216", "name": "item216", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "2f72c57-4f43-c022-b740-37dca64f27" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "width": "auto" } } }, "MOBILE": { "style": {}, "structure": { "size": { "height": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "2f72c57-4f43-c022-b740-37dca64f27": { "uuid": "2f72c57-4f43-c022-b740-37dca64f27", "id": "text49", "name": "text49", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "pointer" } }, "TABLET": { "style": { "regular": { "font": { "size": "11px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "10px" } } } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px;\">Monto:$</span><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px; font-family: var(--design-font-primary);\"><datasource value=\"monto\" datasource=\"a1af5a8-1f-57a6-5506-31ab3f46d04\" type=\"undefined\"/></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "78e686c-23f-610-0b8d-8d57b8e42f14": { "uuid": "78e686c-23f-610-0b8d-8d57b8e42f14", "id": "item217", "name": "item217", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "50d6534-4781-24a5-4f75-0b1ea63afd0c" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "width": "auto" } } }, "MOBILE": { "style": {}, "structure": { "size": { "height": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "50d6534-4781-24a5-4f75-0b1ea63afd0c": { "uuid": "50d6534-4781-24a5-4f75-0b1ea63afd0c", "id": "text50", "name": "text50", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "pointer" } }, "TABLET": { "style": { "regular": { "font": { "size": "11px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "10px" } } } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px; font-family: var(--design-font-primary);\">Monto: $</span><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px; font-family: var(--design-font-primary);\"><datasource value=\"netPrice\" datasource=\"73533ac-ded6-5a80-ff84-dacabae78734\" type=\"Nativestring\"/></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "1d308-5566-aae-13a3-cd3246827fb": { "uuid": "1d308-5566-aae-13a3-cd3246827fb", "id": "item218", "name": "item218", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "f73b5f3-3e5c-83d-5db4-a4eb47f7cdf" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "width": "auto" } } }, "MOBILE": { "style": {}, "structure": { "size": { "height": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "f73b5f3-3e5c-83d-5db4-a4eb47f7cdf": { "uuid": "f73b5f3-3e5c-83d-5db4-a4eb47f7cdf", "id": "text51", "name": "text51", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "cursor": "pointer" } }, "TABLET": { "style": { "regular": { "font": { "size": "11px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "10px" } } } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px;\">Monto: $</span><span style=\"color: var(--design-solid-color-lightmode); font-size: 12px; font-family: var(--design-font-primary);\"><datasource value=\"netPrice\" datasource=\"7e02471-f06c-e524-6267-01fb6f64ffc\" type=\"Nativestring\"/></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "8fa4064-64dd-7581-22f5-06107a57ecb": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "opacity": "ff", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": false, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item237", "subitems": [ "c5cd0fc-412-acaf-d68a-c1a6ac4ca4c" ], "id": "item237", "type": "item", "uuid": "8fa4064-64dd-7581-22f5-06107a57ecb", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "isCreate()", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isCreate", "range": [ 0, 8 ] }, "arguments": [], "range": [ 0, 10 ] }, "range": [ 0, 10 ] } ], "sourceType": "script", "range": [ 0, 10 ] } }, "readOnly": false, "expressionParser": "isCreate()", "idTarget": "item237", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false } ] } } }, "c5cd0fc-412-acaf-d68a-c1a6ac4ca4c": { "modifiedName": false, "type": "button", "uuid": "c5cd0fc-412-acaf-d68a-c1a6ac4ca4c", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Aceptar y Crear" } }, "rules": {} }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "pointer" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "button12", "subitems": [], "id": "button12", "modifiedId": false, "events": {}, "hyperLink": { "link": { "type": "ENTITY", "operation": "ACCEPT_AND_CREATE" }, "showLoading": true, "destinityType": "_self" } }, "b704d80-5f6-533d-24bf-255f3c208d25": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "opacity": "ff", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": false, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item238", "subitems": [ "3b5ccda-d2c8-1378-2844-6a0d2ea84e6" ], "id": "item238", "type": "item", "uuid": "b704d80-5f6-533d-24bf-255f3c208d25", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "isUpdate()", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isUpdate", "range": [ 0, 8 ] }, "arguments": [], "range": [ 0, 10 ] }, "range": [ 0, 10 ] } ], "sourceType": "script", "range": [ 0, 10 ] } }, "readOnly": false, "expressionParser": "isUpdate()", "idTarget": "item238", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false } ] } } }, "3b5ccda-d2c8-1378-2844-6a0d2ea84e6": { "modifiedName": false, "type": "button", "uuid": "3b5ccda-d2c8-1378-2844-6a0d2ea84e6", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Aceptar" } }, "rules": {} }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "pointer" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "button13", "subitems": [], "id": "button13", "modifiedId": false, "events": {}, "hyperLink": { "link": { "type": "ENTITY", "operation": "MODIFY" }, "showLoading": true, "destinityType": "_self" } }, "6c6861c-2e7-1831-664-7bc18bda61": { "uuid": "6c6861c-2e7-1831-664-7bc18bda61", "id": "process_buttons1", "name": "process_buttons1", "type": "entity", "subtype": "process_buttons", "design": "process_buttons", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "auto", "height": "30px" }, "position": { "marginLeft": 0, "marginRight": "177px", "marginTop": "946px", "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "end" } }, "visible": false } }, "modifiedName": false, "modifiedId": false }, "d07bc70-1103-b18-8158-0d86022c7103": { "modifiedName": false, "type": "button", "uuid": "d07bc70-1103-b18-8158-0d86022c7103", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Cancelar" } }, "rules": {} }, "layout": { "DESKTOP": { "structure": { "size": { "minWidth": "65px", "maxWidth": "auto" }, "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "background": { "opacity": "$color.tertiary.opacity" }, "cursor": "auto" }, "disabled": { "cursor": "default" } }, "visible": true }, "MOBILE": { "visible": false } }, "subtype": "normal", "design": "secondary", "name": "button11", "subitems": [], "id": "button11", "modifiedId": false, "events": { "onClick": "button11_onClick" }, "hyperLink": { "showLoading": true, "destinityType": "_self", "params": [] } }, "0e2d4e-e5b0-b721-8831-a13e55ad4e8d": { "modifiedName": true, "type": "layout", "uuid": "0e2d4e-e5b0-b721-8831-a13e55ad4e8d", "props": { "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "isExecutingCase()", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isExecutingCase", "range": [ 0, 15 ] }, "arguments": [], "range": [ 0, 17 ] }, "range": [ 0, 17 ] } ], "sourceType": "script", "range": [ 0, 17 ] } }, "readOnly": false, "idTarget": "btnProcesos", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false, "expressionParser": "isExecutingCase()" } ] } }, "layout": { "DESKTOP": { "style": { "gap": "8px", "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "padding": { "paddingTop": "8px", "paddingRight": "8px", "paddingBottom": "8px", "paddingLeft": "8px" }, "background": { "color": "$color.tertiary.color", "opacity": "$color.tertiary.opacity", "url": "" }, "shadow": { "y": "5px", "blur": "5px", "spread": "5px", "opacity": "0c" }, "radius": { "topRight": "8px", "topLeft": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" } }, "visible": false, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "alignSelf": "end", "justifySelf": "end", "position": "relative", "marginBottom": 0, "marginRight": "40px", "marginTop": 0 } } }, "TABLET": { "structure": { "position": { "marginRight": "5vw" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "gap": "12px", "justifyContent": "end" }, "structure": { "position": { "justifySelf": "center", "marginRight": "0vw", "marginBottom": "0px" }, "size": { "width": "100vw" } } } }, "subtype": "normal", "design": "row", "name": "btnProcesos", "subitems": [ "ff65de-1f3a-2021-efdd-70c8a50d1d08", "bf44a-2238-e10f-c7a-46caec2e13", "8e035a7-8865-251d-00d7-702a43e73112", "ef87b-4e20-1f0-6b3-142d2d4837fa", "bd535f-52c6-43c2-16f1-a47b1ae66106" ], "id": "btnProcesos", "modifiedId": true, "events": {}, "hyperLink": { "destinityType": "_self" } }, "8e035a7-8865-251d-00d7-702a43e73112": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "opacity": "ff", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": true, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item240", "subitems": [ "d6abfe-711f-ac73-a4b1-0066c4d8720b" ], "id": "item240", "type": "item", "uuid": "8e035a7-8865-251d-00d7-702a43e73112", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": { "view": [] } } }, "d6abfe-711f-ac73-a4b1-0066c4d8720b": { "modifiedName": true, "type": "button", "uuid": "d6abfe-711f-ac73-a4b1-0066c4d8720b", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Aprobar" } }, "rules": {} }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "aprobar", "subitems": [], "id": "aprobar", "modifiedId": true, "events": { "onClick": "aprobar_onClick" }, "hyperLink": { "showLoading": true, "destinityType": "_self" } }, "bf44a-2238-e10f-c7a-46caec2e13": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "opacity": "ff", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": true, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item241", "subitems": [ "8261faf-ec8-13ff-2f20-6d21a7e83f" ], "id": "item241", "type": "item", "uuid": "bf44a-2238-e10f-c7a-46caec2e13", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": { "view": [] } } }, "8261faf-ec8-13ff-2f20-6d21a7e83f": { "modifiedName": true, "type": "button", "uuid": "8261faf-ec8-13ff-2f20-6d21a7e83f", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Corregir" } }, "rules": {} }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "corregir", "subitems": [], "id": "corregir", "modifiedId": true, "events": { "onClick": "corregir_onClick" }, "hyperLink": { "showLoading": true, "destinityType": "_self" } }, "ef87b-4e20-1f0-6b3-142d2d4837fa": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "opacity": "ff", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": true, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item242", "subitems": [ "856504-db3-0fa2-4f3e-cea332a1624" ], "id": "item242", "type": "item", "uuid": "ef87b-4e20-1f0-6b3-142d2d4837fa", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": { "view": [] } } }, "856504-db3-0fa2-4f3e-cea332a1624": { "modifiedName": true, "type": "button", "uuid": "856504-db3-0fa2-4f3e-cea332a1624", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Aceptar" } }, "rules": { "view": [] } }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "aceptar", "subitems": [], "id": "aceptar", "modifiedId": true, "events": { "onClick": "aceptar_onClick" }, "hyperLink": { "showLoading": true, "destinityType": "_self" } }, "ff65de-1f3a-2021-efdd-70c8a50d1d08": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "opacity": "ff", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": true, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item236", "subitems": [ "dc12ba-804-b51b-4564-04c4e3d8e2fc" ], "id": "item236", "type": "item", "uuid": "ff65de-1f3a-2021-efdd-70c8a50d1d08", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": { "view": [] } } }, "dc12ba-804-b51b-4564-04c4e3d8e2fc": { "modifiedName": true, "type": "button", "uuid": "dc12ba-804-b51b-4564-04c4e3d8e2fc", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Cancelar" } }, "rules": {} }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "cancelar", "subitems": [], "id": "cancelar", "modifiedId": true, "events": { "onClick": "cancelar_onClick" }, "hyperLink": { "showLoading": true, "destinityType": "_self" } }, "bd535f-52c6-43c2-16f1-a47b1ae66106": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "opacity": "ff", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": true, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item239", "subitems": [ "c7a2776-3d5c-cfb0-682-2636a4532dc6" ], "id": "item239", "type": "item", "uuid": "bd535f-52c6-43c2-16f1-a47b1ae66106", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": { "view": [] } } }, "c7a2776-3d5c-cfb0-682-2636a4532dc6": { "modifiedName": true, "type": "button", "uuid": "c7a2776-3d5c-cfb0-682-2636a4532dc6", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Enviar" } }, "rules": {} }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "enviar", "subitems": [], "id": "enviar", "modifiedId": true, "events": { "onClick": "enviar_onClick" }, "hyperLink": { "showLoading": true, "destinityType": "_self" } }, "067b2ed-dfbf-b6c8-88a5-4d278a233fa": { "uuid": "067b2ed-dfbf-b6c8-88a5-4d278a233fa", "id": "encabezado", "name": "encabezado", "type": "section", "subtype": "normal", "design": "section", "subitems": [ "3d444ea-568a-21d-d18c-df368c0561e" ], "layout": { "DESKTOP": { "style": { "padding": { "paddingTop": "0px", "paddingRight": "0px", "paddingBottom": "0px", "paddingLeft": "0px" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } } }, "TABLET": { "style": { "padding": { "paddingTop": "0px", "paddingRight": "0px", "paddingBottom": "0px", "paddingLeft": "0px" } } }, "MOBILE": { "style": { "padding": { "paddingTop": "0px", "paddingBottom": "0px" } } } }, "modifiedName": true, "modifiedId": true }, "3d444ea-568a-21d-d18c-df368c0561e": { "uuid": "3d444ea-568a-21d-d18c-df368c0561e", "id": "columnas", "name": "columnas_encabezado", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "7200f8-651b-6e22-0c10-eb1f8b52631", "cd85d21-3fd0-62-bad4-7dd55c0c360" ], "layout": { "DESKTOP": { "style": { "gap": "0px", "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start", "marginLeft": "0px" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "7200f8-651b-6e22-0c10-eb1f8b52631": { "uuid": "7200f8-651b-6e22-0c10-eb1f8b52631", "id": "l1b", "name": "i_columna1", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "b1b5ac-e712-3606-128-d4f662e17b" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "minHeight": "38px" } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "cd85d21-3fd0-62-bad4-7dd55c0c360": { "uuid": "cd85d21-3fd0-62-bad4-7dd55c0c360", "id": "l2b", "name": "i_columna2", "type": "item", "subtype": "normal", "design": "item", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "28vw", "height": "auto", "minHeight": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "TABLET": { "structure": { "size": { "width": "0vw" } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "84d1af5-1370-4e1-3a66-2f2e26b5def": { "uuid": "84d1af5-1370-4e1-3a66-2f2e26b5def", "id": "menu_relations", "name": "menu_relations", "type": "relations_navigation_menu", "subtype": "normal", "design": "relations_navigation_menu", "subitems": [ "c7d1156-ab60-a2c8-7dc3-d40a72ec00f8", "e14a25-be2d-213-4772-6260bc18330d", "6ae047e-06d-f0dd-07f7-28bc2a6d3a7" ], "layout": { "DESKTOP": { "style": { "background": { "opacity": "00" }, "gap": "12px", "justifyContent": "start" }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset" }, "position": { "position": "relative", "alignSelf": "end", "justifySelf": "start" } } }, "TABLET": { "style": { "padding": { "paddingTop": "0px", "paddingRight": "0px", "paddingBottom": "0px", "paddingLeft": "0px" } } }, "MOBILE": { "style": { "shadow": { "opacity": "00" } }, "structure": { "size": { "width": "100%" } } } }, "props": { "minimized": false, "foreignRelation": { "horizontal": [ { "idRelation": "bb9db653d1204fd0bc4ee4def60b5826", "dsName": "compOrdenCompra1", "cdField": "ordenDeCompra", "cdForm": "ORDE1698431606", "dsSingularName": "Comprobantes", "dsPluralName": "Comprobantes", "idEntity": "902028", "type": "entity", "singularRedirection": "MODAL", "pluralRedirection": "SECTION", "uuid": "c7d1156-ab60-a2c8-7dc3-d40a72ec00f8" }, { "idRelation": "4cb2367c62224bad8138ca93d54dabe4", "dsName": "recepcioOCrel", "cdField": "ordenDeCompra", "cdForm": "ORDE1698431606", "dsSingularName": "Recepciones", "dsPluralName": "Recepciones", "idEntity": "176717", "type": "entity", "singularRedirection": "MODAL", "pluralRedirection": "SECTION", "uuid": "e14a25-be2d-213-4772-6260bc18330d" } ], "vertical": [] } }, "modifiedName": true, "modifiedId": true }, "6ae047e-06d-f0dd-07f7-28bc2a6d3a7": { "uuid": "6ae047e-06d-f0dd-07f7-28bc2a6d3a7", "id": "sub_menu_relations", "name": "sub_menu_relations", "type": "menu_item", "subtype": "normal", "design": "menu_item", "subitems": [ "c1dc7d1-6e8e-2d25-3c27-e1fdf6ee528" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "pointer" }, "disabled": { "cursor": "default" } }, "structure": { "size": { "width": "auto", "minWidth": "unset", "height": "auto" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } }, "visible": false } }, "props": { "contentType": "relation_three_point", "submenuAction": "click", "icon": { "type": "fontawesome", "value": [ "fas", "ellipsis-v" ] }, "value": { "props": { "value": "" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "c1dc7d1-6e8e-2d25-3c27-e1fdf6ee528": { "uuid": "c1dc7d1-6e8e-2d25-3c27-e1fdf6ee528", "id": "submenu1", "name": "submenu1", "type": "submenu", "subtype": "normal", "subitems": [], "layout": { "DESKTOP": { "style": { "padding": { "paddingTop": "0px", "paddingRight": "0px", "paddingBottom": "0px", "paddingLeft": "0px" }, "background": { "type": "solid", "color": "#ffffff", "opacity": "ff", "gradient": { "type": "linear", "degree": "0deg", "points": [ { "color": "#eeeeee", "opacity": "ff", "left": 0 }, { "color": "#ffffff", "opacity": "ff", "left": 100 } ] } }, "shadow": { "x": "0px", "y": "5px", "blur": "5px", "spread": "5px", "inset": "", "color": "#000000", "opacity": "0c" }, "animations": { "show": "immediate-show", "hide": "immediate-hide" }, "gap": "0px", "justifyContent": "center", "border": { "top": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "right": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "bottom": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "left": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" } }, "radius": { "topRight": "8px", "topLeft": "8px", "bottomRight": "8px", "bottomLeft": "8px" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } } } }, "props": {} }, "ad743cc-d33b-feb-a3e7-5dbaae77ddd6": { "uuid": "ad743cc-d33b-feb-a3e7-5dbaae77ddd6", "id": "secciondenavegacin1", "name": "secciondenavegacin1", "type": "section", "subtype": "navegation", "design": "section", "subitems": [], "layout": { "DESKTOP": { "style": { "padding": { "paddingTop": "40px", "paddingRight": "26.6vw", "paddingBottom": 0 }, "background": { "opacity": "$color.tertiary.opacity" } }, "structure": { "size": { "width": "100%", "height": "60vh", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } }, "visible": false } }, "props": { "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "NO(showInfo)", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "NO", "range": [ 0, 2 ] }, "arguments": [ { "type": "PageVariableIdentifier", "name": "showInfo", "range": [ 3, 11 ], "code": "showInfo" } ], "range": [ 0, 12 ] }, "range": [ 0, 12 ] } ], "sourceType": "script", "range": [ 0, 12 ] } }, "readOnly": false, "expressionParser": "NO(showInfo)", "idTarget": "secciondenavegacin1", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false } ] } }, "modifiedName": true, "modifiedId": true }, "78f57a-ff7a-cb47-be37-2cb82deacc67": { "uuid": "78f57a-ff7a-cb47-be37-2cb82deacc67", "id": "item243", "name": "item243", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "c22165-e363-c0a-e16a-2748fdec752" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "a24dd7a-235f-3fe-3a65-f40c3e135e1": { "uuid": "a24dd7a-235f-3fe-3a65-f40c3e135e1", "id": "item245", "name": "item245", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "84d1af5-1370-4e1-3a66-2f2e26b5def" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "structure": { "size": { "width": "100%" } } } }, "hyperLink": { "destinityType": "_self" } }, "52a1a8-073-7077-ac7a-44d26b30c283": { "uuid": "52a1a8-073-7077-ac7a-44d26b30c283", "id": "layout106", "name": "layout106", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "78f57a-ff7a-cb47-be37-2cb82deacc67", "a24dd7a-235f-3fe-3a65-f40c3e135e1" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "end", "justifySelf": "start" } } }, "TABLET": { "structure": { "position": { "alignSelf": "center", "marginTop": 0, "marginBottom": 0 }, "size": { "width": "100%", "height": "38px" } }, "style": { "justifyContent": "start" } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "gap": "0px", "justifyContent": "space-between" } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "7c4e5f1-de34-7c3e-54e4-fb52c614c35": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": false, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item244", "subitems": [ "d07bc70-1103-b18-8158-0d86022c7103" ], "id": "item244", "type": "item", "uuid": "7c4e5f1-de34-7c3e-54e4-fb52c614c35", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "Y(isExecutingCase()==false, isShow()==false)", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "Y", "range": [ 0, 1 ] }, "arguments": [ { "type": "BinaryExpression", "operator": "==", "left": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isExecutingCase", "range": [ 2, 17 ] }, "arguments": [], "range": [ 2, 19 ] }, "right": { "type": "Literal", "value": false, "raw": "false", "range": [ 21, 26 ] }, "range": [ 2, 26 ] }, { "type": "BinaryExpression", "operator": "==", "left": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isShow", "range": [ 28, 34 ] }, "arguments": [], "range": [ 28, 36 ] }, "right": { "type": "Literal", "value": false, "raw": "false", "range": [ 38, 43 ] }, "range": [ 28, 43 ] } ], "range": [ 0, 44 ] }, "range": [ 0, 44 ] } ], "sourceType": "script", "range": [ 0, 44 ] } }, "readOnly": false, "expressionParser": "Y(isExecutingCase()==false, isShow()==false)", "idTarget": "item244", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false } ] } } }, "13d33b7-b8e0-ae4a-4c74-4d38b86ae77": { "uuid": "13d33b7-b8e0-ae4a-4c74-4d38b86ae77", "id": "item246", "name": "item246", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "b5ca34-a11-b0f-87f6-b0518daf7ad", "31a3aee-dace-323-5f67-0603d88472a" ], "layout": { "DESKTOP": { "style": { "regular": { "background": { "color": "$color.tertiary.color" }, "cursor": "auto" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "b5ca34-a11-b0f-87f6-b0518daf7ad": { "uuid": "b5ca34-a11-b0f-87f6-b0518daf7ad", "id": "button14", "name": "button14", "type": "button", "subtype": "normal", "design": "secundarioiconografico", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "end" } }, "style": { "regular": { "cursor": "pointer" }, "hover": { "border": { "top": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "right": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "bottom": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "left": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "cursor": "default" } } } }, "props": { "initialState": "regular", "value": { "props": { "value": "" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "17a6358-e2a5-30c-81c1-6e5b3ce5c38": { "uuid": "17a6358-e2a5-30c-81c1-6e5b3ce5c38", "id": "item220", "name": "item220", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "dc85ec4-e3a8-3268-b60b-ae40262f8373" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "visible": false } }, "hyperLink": { "destinityType": "_self" } }, "1fb8a6-4038-265e-8edf-125feaacf": { "uuid": "1fb8a6-4038-265e-8edf-125feaacf", "id": "item248", "name": "item248", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "3e4d66-ae16-2b8-b1b-433b1530e04", "b524efe-1150-28d-8842-73d1511558", "cd55b88-f68c-73-4f36-7a7c712bea2d", "18b821e-ac34-82e3-db0f-4fdf2f468f3a", "7b37-8cd6-71c2-6a84-fb048a2054ab", "88c6c3-fa37-a183-584d-53f5b844c1fc", "fd6351a-bbb4-1317-d604-f5f0b604a5c" ], "layout": { "DESKTOP": { "style": { "regular": { "background": { "color": "$color.tertiary.color", "opacity": "$color.tertiary.opacity", "gradient": { "points": [ { "color": "#eeeeee", "opacity": "ff", "left": 0 }, { "color": "#ffffff", "opacity": "ff", "left": 100 } ] } }, "radius": { "topRight": "8px", "topLeft": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "pointer" }, "hover": { "shadow": { "y": "5px", "blur": "5px", "spread": "5px", "opacity": "0c" } } }, "structure": { "size": { "width": "100%", "height": "35px", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "visible": false } }, "hyperLink": { "destinityType": "_self", "scroll": { "behavior": "auto", "block": "nearest", "line": "nearest" }, "link": { "operation": "TOGGLE", "type": "ELEMENT", "idObject": [ "fd6351a-bbb4-1317-d604-f5f0b604a5c" ] } } }, "c06bab-c1b2-527-423b-6de85f18043": { "uuid": "c06bab-c1b2-527-423b-6de85f18043", "id": "layout105", "name": "layout105", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "17a6358-e2a5-30c-81c1-6e5b3ce5c38", "1fb8a6-4038-265e-8edf-125feaacf" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "position": "relative", "alignSelf": "start", "justifySelf": "center" } } }, "MOBILE": { "visible": false } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "6520e87-a477-dac3-68b1-5aeec1471": { "uuid": "6520e87-a477-dac3-68b1-5aeec1471", "id": "item57", "name": "item57", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "50c66ca-abef-6737-3b5c-63be1b6e5be" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "16d7328-5edb-8e6d-2126-112e88e8477e": { "uuid": "16d7328-5edb-8e6d-2126-112e88e8477e", "id": "layout107", "name": "layout107", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "6520e87-a477-dac3-68b1-5aeec1471" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "5fbaf2-d867-1ff1-1a3-6c8c2f0321d4": { "uuid": "5fbaf2-d867-1ff1-1a3-6c8c2f0321d4", "id": "section3", "name": "section3", "type": "section", "subtype": "normal", "design": "section", "subitems": [ "8414430-81d4-717f-0efe-b2170030fa1" ], "layout": { "DESKTOP": { "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "424px" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } }, "visible": false }, "TABLET": { "structure": { "size": { "minHeight": "96px" } } } } }, "4f431d-46d3-2645-dc5f-ebc55e42273d": { "uuid": "4f431d-46d3-2645-dc5f-ebc55e42273d", "id": "item249", "name": "item249", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "666ab4d-4ef6-4701-260e-04dcd3448d0" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "81040e-5de-57d7-6851-1df865fe4b0": { "uuid": "81040e-5de-57d7-6851-1df865fe4b0", "id": "item250", "name": "item250", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "baa1d31-27d0-73b5-7224-e4552813602" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "bd8186a-0d1f-58a2-0f61-a365f04552ca": { "uuid": "bd8186a-0d1f-58a2-0f61-a365f04552ca", "id": "layout108", "name": "layout108", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "4f431d-46d3-2645-dc5f-ebc55e42273d", "81040e-5de-57d7-6851-1df865fe4b0", "f3c232c-a01-6025-fda5-a6cb5ff5b10", "8ee1ff1-3b46-883-ba1-ad861f83a47", "673766b-0fee-5764-ebe2-7e58db3f4a58" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "f3c232c-a01-6025-fda5-a6cb5ff5b10": { "uuid": "f3c232c-a01-6025-fda5-a6cb5ff5b10", "id": "aprobacionOrdenDeCom", "name": "aprobacionOrdenDeCom", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "font": { "size": "13" }, "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "border": { "top": { "color": "$color.bordescampos.color" }, "right": { "color": "$color.bordescampos.color" }, "bottom": { "color": "$color.bordescampos.color" }, "left": { "color": "$color.bordescampos.color" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true } }, "modifiedName": false, "modifiedId": false, "subtype": "number", "props": { "contentType": "integer", "trailingIcon": {}, "label": "Aprobacion Orden de Compra", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "multiline": false, "initialState": "regular", "rules": {}, "perPage": 20, "maxPerList": 5, "disabledMap": {} }, "relationConfig": { "type": "ENTITY", "idRelation": "647f676-1037-7dee-0630-82f8a25a32a", "idKey": "id", "dsName": "relationAOC1", "cdForm": "APRO1655218544", "idObject": "559706", "show": true, "search": true, "lsFilters": [] }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "number" }, "8ee1ff1-3b46-883-ba1-ad861f83a47": { "uuid": "8ee1ff1-3b46-883-ba1-ad861f83a47", "id": "cUIT", "name": "cUIT", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "font": { "size": "13" }, "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "border": { "top": { "color": "$color.bordescampos.color" }, "right": { "color": "$color.bordescampos.color" }, "bottom": { "color": "$color.bordescampos.color" }, "left": { "color": "$color.bordescampos.color" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true } }, "modifiedName": false, "modifiedId": false, "subtype": "text", "props": { "trailingIcon": {}, "label": "RUC", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "multiline": false, "initialState": "regular", "rules": {}, "maxLength": 100 }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "text" }, "012b144-e7f-8dce-d772-8555b2138e22": { "uuid": "012b144-e7f-8dce-d772-8555b2138e22", "id": "item254", "name": "item254", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "127ce1c-067-665-eb22-67ca0dd71" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "b15ebb-34a-732-da77-1aaeb38173": { "uuid": "b15ebb-34a-732-da77-1aaeb38173", "id": "layout110", "name": "layout110", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "012b144-e7f-8dce-d772-8555b2138e22", "debcb76-5228-ed72-e14-5ccf603bbe84", "3853476-673e-f4b-be35-ee2ee75a4ddf", "d408878-7325-8a1-7864-552b75cf4fc" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "250px" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "debcb76-5228-ed72-e14-5ccf603bbe84": { "uuid": "debcb76-5228-ed72-e14-5ccf603bbe84", "id": "hideItemData", "name": "hideItemData", "type": "item", "subitems": [ "cfc110-840-d405-f6b8-420de760fed" ], "layout": { "DESKTOP": { "style": { "regular": { "background": { "url": "" }, "cursor": "auto" }, "props": { "type": "COLUMN" } }, "structure": { "size": { "width": "100%", "height": "100%", "minWidth": "unset", "maxWidth": "unset", "minHeight": "unset", "maxHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } }, "visible": true } }, "subtype": "normal", "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true, "design": "item" }, "cfc110-840-d405-f6b8-420de760fed": { "uuid": "cfc110-840-d405-f6b8-420de760fed", "id": "layout109", "name": "layout109", "type": "layout", "subitems": [ "8ae6aae-6e3-ff4d-c331-da327b1fb6e" ], "layout": { "DESKTOP": { "style": { "gap": "20px", "justifyContent": "start", "regular": { "background": { "url": "" }, "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minWidth": "unset", "maxWidth": "unset", "minHeight": "unset", "maxHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "visible": true }, "TABLET": { "style": { "gap": "16px" } }, "MOBILE": { "style": { "gap": "12px" } } }, "modifiedName": false, "modifiedId": false, "subtype": "normal", "hyperLink": { "destinityType": "_self" }, "design": "row" }, "8ae6aae-6e3-ff4d-c331-da327b1fb6e": { "uuid": "8ae6aae-6e3-ff4d-c331-da327b1fb6e", "id": "item255", "name": "item255", "type": "item", "subitems": [ "067ace4-bde-23dd-11ec-c03ef31ba81" ], "layout": { "DESKTOP": { "style": { "regular": { "background": { "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "235%", "height": "100%", "minWidth": "unset", "maxWidth": "unset", "minHeight": "unset", "maxHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } }, "visible": true }, "MOBILE": { "structure": { "size": { "width": "100%" } }, "style": {} } }, "subtype": "normal", "hyperLink": { "destinityType": "_self" }, "design": "item" }, "067ace4-bde-23dd-11ec-c03ef31ba81": { "uuid": "067ace4-bde-23dd-11ec-c03ef31ba81", "id": "itemComments", "name": "itemComments", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true } }, "modifiedName": true, "modifiedId": true, "subtype": "text", "props": { "label": "Comentario", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": {}, "type": "LITERAL" }, "maxLength": 100, "perPage": 20, "maxPerList": 5 }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "design": "text" }, "3853476-673e-f4b-be35-ee2ee75a4ddf": { "uuid": "3853476-673e-f4b-be35-ee2ee75a4ddf", "id": "item257", "name": "item257", "type": "item", "subitems": [ "034ace3-17fe-c021-023b-3c1fbde13c" ], "layout": { "DESKTOP": { "style": { "regular": { "background": { "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "100%", "height": "100%", "minWidth": "unset", "maxWidth": "unset", "minHeight": "40px", "maxHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } }, "visible": true }, "TABLET": { "structure": { "size": { "flexGrow": "1", "flexShrink": "1" } }, "style": { "props": { "type": "COLUMN" } } } }, "subtype": "normal", "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "item" }, "034ace3-17fe-c021-023b-3c1fbde13c": { "uuid": "034ace3-17fe-c021-023b-3c1fbde13c", "id": "manufacturerCode", "name": "manufacturerCode", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": "8px", "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "tooltip": { "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "padding": { "paddingLabel": "5px", "paddingRight": "7px", "paddingLeft": "7px" }, "background": { "color": "#ffffff", "opacity": "00" }, "label": { "size": "14px" }, "icons": { "leadingIconColor": "$color.primary.color", "trailingIconColor": "$color.primary.color" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "border": { "top": { "color": "$color.bordescampos.color" }, "right": { "color": "$color.bordescampos.color" }, "bottom": { "color": "$color.bordescampos.color" }, "left": { "color": "$color.bordescampos.color" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "#ff0000", "opacity": "80", "width": "2px" } } } }, "visible": true } }, "modifiedName": true, "modifiedId": true, "subtype": "text", "props": { "label": "", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": {}, "type": "LITERAL" }, "required": false, "multiline": false, "initialState": "regular", "rules": {}, "decimals": 3, "maxLength": 100 }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "text" }, "d408878-7325-8a1-7864-552b75cf4fc": { "uuid": "d408878-7325-8a1-7864-552b75cf4fc", "id": "item256", "name": "item256", "type": "item", "subitems": [ "00ed6d-c21e-d2fe-75a6-2db85726db0" ], "layout": { "DESKTOP": { "style": { "regular": { "background": { "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "structure": { "size": { "width": "100%", "height": "auto", "minWidth": "unset", "maxWidth": "unset", "minHeight": "unset", "maxHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } }, "visible": true }, "TABLET": { "structure": { "size": { "height": "100%", "flexGrow": "1", "flexShrink": "1" } }, "style": { "props": { "type": "COLUMN" } } } }, "subtype": "normal", "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "item" }, "00ed6d-c21e-d2fe-75a6-2db85726db0": { "uuid": "00ed6d-c21e-d2fe-75a6-2db85726db0", "id": "partialQuantity", "name": "partialQuantity", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "font": { "size": "13" }, "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "border": { "top": { "color": "$color.bordescampos.color" }, "right": { "color": "$color.bordescampos.color" }, "bottom": { "color": "$color.bordescampos.color" }, "left": { "color": "$color.bordescampos.color" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true } }, "modifiedName": true, "modifiedId": true, "subtype": "number", "props": { "trailingIcon": {}, "label": "Cantidad Parcial Recibida", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "multiline": false, "initialState": "regular", "rules": {} }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "number" }, "127ce1c-067-665-eb22-67ca0dd71": { "uuid": "127ce1c-067-665-eb22-67ca0dd71", "id": "totalCons", "name": "totalCons", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "100.01%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "font": { "size": "13" }, "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "border": { "top": { "color": "$color.bordescampos.color" }, "right": { "color": "$color.bordescampos.color" }, "bottom": { "color": "$color.bordescampos.color" }, "left": { "color": "$color.bordescampos.color" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true } }, "modifiedName": false, "modifiedId": false, "subtype": "number", "props": { "trailingIcon": {}, "label": "", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "multiline": false, "initialState": "regular", "rules": {} }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "number" }, "673766b-0fee-5764-ebe2-7e58db3f4a58": { "uuid": "673766b-0fee-5764-ebe2-7e58db3f4a58", "id": "costCenter", "name": "costCenter", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true }, "TABLET": { "style": { "font": { "align": "right" }, "tooltip": { "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "padding": { "paddingLabel": "5px", "paddingRight": "7px", "paddingLeft": "7px" }, "background": { "color": "#ffffff", "opacity": "00" }, "font": { "color": "#0b1226", "opacity": "ff" }, "label": { "color": "#0b1226", "opacity": "ff" } }, "focus": { "border": { "top": { "color": "$color.quaternary.color", "opacity": "$color.quaternary.opacity" }, "right": { "color": "$color.quaternary.color", "opacity": "$color.quaternary.opacity" }, "bottom": { "color": "$color.quaternary.color", "opacity": "$color.quaternary.opacity" }, "left": { "color": "$color.quaternary.color", "opacity": "$color.quaternary.opacity" } } }, "error": { "border": { "bottom": { "color": "#ff0000", "opacity": "80" } } } } } }, "modifiedName": true, "modifiedId": true, "subtype": "text", "props": { "label": "Centro de Costo", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "rules": {}, "perPage": 20, "maxPerList": 5, "maxLength": 100 }, "relationConfig": { "type": "VALUE_LIST", "idObject": "d4e73fb-57a5-1ba0-2737-04b1fafa322d", "idRelation": "df12e6c-3745-4df-d03a-d877b7da50", "showIcon": false }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "storageType": "Nativestring", "length": "100", "prefix": "", "autonumeric": false, "autoincremental": false, "grid": { "include": false, "order": "-1", "columnWidth": "1", "filter": "none", "filterOrder": "-1", "inGeneralSearch": false, "showIcon": false, "showText": true }, "isNew": false, "multiline": false, "design": "text" }, "fbc30f-2fae-3c38-df00-24622c264de": { "uuid": "fbc30f-2fae-3c38-df00-24622c264de", "id": "currency", "name": "currency", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "font": { "align": "left" }, "regular": { "cursor": "auto" }, "disabled": { "border": { "top": { "width": "0.5px" }, "right": { "width": "0.5px" }, "bottom": { "width": "0.5px" }, "left": { "width": "0.5px" } }, "cursor": "default" } }, "visible": true }, "MOBILE": { "style": {} } }, "modifiedName": true, "modifiedId": true, "subtype": "number", "props": { "contentType": "integer", "label": "Moneda", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "trailingIcon": {}, "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "rules": {}, "perPage": 20, "maxPerList": 5 }, "relationConfig": { "type": "VALUE_LIST", "idRelation": "0c3225-f168-57a8-77f3-eb610d1677b", "idObject": "5478436d-1839-4d99-89ad-ee4079935ea9", "showIcon": false }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "number" }, "baa1d31-27d0-73b5-7224-e4552813602": { "uuid": "baa1d31-27d0-73b5-7224-e4552813602", "id": "descPurchaseOrder", "name": "descPurchaseOrder", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "font": { "align": "right" }, "placeholder": { "opacity": "ff" }, "regular": { "font": { "size": "13" }, "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "border": { "top": { "width": "1.1px", "color": "$color.bordescampos.color" }, "right": { "width": "1.1px", "color": "$color.bordescampos.color" }, "bottom": { "width": "1.1px", "color": "$color.bordescampos.color" }, "left": { "width": "1.1px", "color": "$color.bordescampos.color" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true } }, "modifiedName": true, "modifiedId": true, "subtype": "text", "props": { "trailingIcon": {}, "label": "Descripcion", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "multiline": false, "initialState": "disabled", "rules": { "calc": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "generateDescriptionPurchaseOrder(identificador.value)", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "DeyelRuleIdentifier", "name": "generateDescriptionPurchaseOrder", "range": [ 0, 32 ], "version": "1" }, "arguments": [ { "type": "MemberExpression", "computed": false, "object": { "type": "PageElementIdentifier", "name": "identificador", "range": [ 33, 46 ], "code": "id", "elemType": "input" }, "property": { "type": "ElementPropertyIdentifier", "name": "value", "range": [ 47, 52 ], "propID": "value" }, "range": [ 33, 52 ] } ], "range": [ 0, 53 ] }, "range": [ 0, 53 ] } ], "sourceType": "script", "range": [ 0, 53 ] } }, "readOnly": false, "expressionParser": "generateDescriptionPurchaseOrder(identificador.value)", "idTarget": "descPurchaseOrder", "formName": "ORDE1698431606", "action": "calc", "tpRule": "CALC", "new": false } ] }, "maxLength": "300" }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "text" }, "666ab4d-4ef6-4701-260e-04dcd3448d0": { "uuid": "666ab4d-4ef6-4701-260e-04dcd3448d0", "id": "existItemDetraction", "name": "existItemDetraction", "type": "input", "subitems": [], "layout": { "DESKTOP": { "style": { "label": { "family": "$font.secondary", "align": "left" }, "regular": { "label": { "size": "10px" }, "font": {}, "cursor": "pointer" }, "hover": { "color": { "color": "$color.hover.color", "opacity": "$color.hover.opacity" } }, "disabled": { "cursor": "default" }, "error": { "color": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity" } }, "font": {} }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "maxWidth": "unset", "minHeight": "unset", "maxHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "visible": true } }, "modifiedName": true, "modifiedId": true, "subtype": "checkbox", "props": { "label": "Existe item con Detraccion", "contentType": "normal", "description": "", "value": { "props": { "value": "" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "design": "checkbox" }, "3f22d-ae8c-6465-1857-500cbb4beec": { "uuid": "3f22d-ae8c-6465-1857-500cbb4beec", "id": "item104", "name": "item104", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "bd8186a-0d1f-58a2-0f61-a365f04552ca" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "167b7fc-e567-4573-d00e-3bf812dda37": { "uuid": "167b7fc-e567-4573-d00e-3bf812dda37", "id": "item247", "name": "item247", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "7b3d4c-76de-45ee-cace-41a67f0074a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "8414430-81d4-717f-0efe-b2170030fa1": { "uuid": "8414430-81d4-717f-0efe-b2170030fa1", "id": "layout111", "name": "layout111", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "3f22d-ae8c-6465-1857-500cbb4beec", "167b7fc-e567-4573-d00e-3bf812dda37", "acb0040-0b68-6a55-28bf-c1c36171b4f3", "20d3561-7ae8-ca3e-8a50-045c1e851f" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "24e5044-cd8b-8adb-55ec-daddb8e3a22": { "uuid": "24e5044-cd8b-8adb-55ec-daddb8e3a22", "id": "item258", "name": "item258", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "851b647-d202-0507-260e-d80805f2c2b2" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "7b3d4c-76de-45ee-cace-41a67f0074a": { "uuid": "7b3d4c-76de-45ee-cace-41a67f0074a", "id": "layout112", "name": "layout112", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "24e5044-cd8b-8adb-55ec-daddb8e3a22", "5dedc4c-4810-04fb-54a4-f6b4e33aec5", "25251c-67d-b170-88ec-d41548736c5", "7a8a04e-402-bb6f-6cd7-72fdf8d40a21", "fd210a-12ea-5e5-fbcd-3043c10a887a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "5dedc4c-4810-04fb-54a4-f6b4e33aec5": { "uuid": "5dedc4c-4810-04fb-54a4-f6b4e33aec5", "id": "issuingAddress", "name": "issuingAddress", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "font": { "size": "13" }, "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "border": { "top": { "color": "$color.bordescampos.color" }, "right": { "color": "$color.bordescampos.color" }, "bottom": { "color": "$color.bordescampos.color" }, "left": { "color": "$color.bordescampos.color" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true } }, "modifiedName": false, "modifiedId": false, "subtype": "text", "props": { "trailingIcon": {}, "label": "Direccion", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "multiline": false, "initialState": "regular", "rules": {}, "maxLength": 100 }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "text" }, "25251c-67d-b170-88ec-d41548736c5": { "uuid": "25251c-67d-b170-88ec-d41548736c5", "id": "issuingCompany", "name": "issuingCompany", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "font": { "size": "13" }, "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "border": { "top": { "color": "$color.bordescampos.color" }, "right": { "color": "$color.bordescampos.color" }, "bottom": { "color": "$color.bordescampos.color" }, "left": { "color": "$color.bordescampos.color" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true } }, "modifiedName": false, "modifiedId": false, "subtype": "text", "props": { "trailingIcon": {}, "label": " Emisor", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "multiline": false, "initialState": "regular", "rules": {}, "maxLength": 100 }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "text" }, "7a8a04e-402-bb6f-6cd7-72fdf8d40a21": { "uuid": "7a8a04e-402-bb6f-6cd7-72fdf8d40a21", "id": "mailsAdicionales", "name": "mailsAdicionales", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "99.72%", "maxWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "font": { "size": "13" }, "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "border": { "top": { "color": "$color.bordescampos.color" }, "right": { "color": "$color.bordescampos.color" }, "bottom": { "color": "$color.bordescampos.color" }, "left": { "color": "$color.bordescampos.color" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true } }, "modifiedName": true, "modifiedId": true, "subtype": "text", "props": { "trailingIcon": {}, "label": "Mails Adicionales", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "multiline": false, "initialState": "regular", "rules": {}, "maxLength": "500" }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "text" }, "fd210a-12ea-5e5-fbcd-3043c10a887a": { "uuid": "fd210a-12ea-5e5-fbcd-3043c10a887a", "id": "percentageDetraction", "name": "percentageDetraction", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": "2px", "position": "relative", "alignSelf": "end", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "border": { "top": { "color": "$color.bordescampos.color" }, "right": { "color": "$color.bordescampos.color" }, "bottom": { "color": "$color.bordescampos.color" }, "left": { "color": "$color.bordescampos.color" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true } }, "modifiedName": true, "modifiedId": true, "subtype": "number", "props": { "label": "Porcentaje Detraccion ", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": {}, "type": "LITERAL" }, "required": false, "multiline": false, "initialState": "regular", "rules": {}, "perPage": 20, "maxPerList": 5, "disabledMap": {}, "maxLength": 100 }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "number" }, "851b647-d202-0507-260e-d80805f2c2b2": { "uuid": "851b647-d202-0507-260e-d80805f2c2b2", "id": "project", "name": "proyecto", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true }, "TABLET": { "style": { "font": { "align": "right" }, "tooltip": { "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "padding": { "paddingLabel": "5px", "paddingRight": "7px", "paddingLeft": "7px" }, "background": { "color": "#ffffff", "opacity": "00" }, "font": { "color": "#0b1226", "opacity": "ff" }, "label": { "color": "#0b1226", "opacity": "ff" } }, "focus": { "border": { "top": { "color": "$color.quaternary.color", "opacity": "$color.quaternary.opacity" }, "right": { "color": "$color.quaternary.color", "opacity": "$color.quaternary.opacity" }, "bottom": { "color": "$color.quaternary.color", "opacity": "$color.quaternary.opacity" }, "left": { "color": "$color.quaternary.color", "opacity": "$color.quaternary.opacity" } } }, "error": { "border": { "bottom": { "color": "#ff0000", "opacity": "80" } } } } } }, "modifiedName": true, "modifiedId": true, "subtype": "text", "props": { "label": "Proyecto", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "rules": {}, "perPage": 20, "maxPerList": 5, "maxLength": 100 }, "relationConfig": { "type": "VALUE_LIST", "idObject": "3160cf2-8a7c-0118-7438-fba55cfb874", "idRelation": "84a62d-536-f42a-330f-7b5ffacc6d26", "showIcon": false }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "text" }, "acb0040-0b68-6a55-28bf-c1c36171b4f3": { "uuid": "acb0040-0b68-6a55-28bf-c1c36171b4f3", "id": "item252", "name": "item252", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "4d8c26-55c8-087a-73dc-dbe5af8fd0a3" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "4d8c26-55c8-087a-73dc-dbe5af8fd0a3": { "uuid": "4d8c26-55c8-087a-73dc-dbe5af8fd0a3", "id": "layout113", "name": "layout113", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "e76c211-b0ec-f510-e740-8b1503ff8ffa", "54e8f5c-f22b-1364-b00f-6712ff86ebe", "7734ac6-e37f-2084-26b0-efd8613430e", "843801-2b20-5546-a0d3-61180efca01", "e0140b-c8b-afef-8bdf-1f8f6e562f6" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "e76c211-b0ec-f510-e740-8b1503ff8ffa": { "uuid": "e76c211-b0ec-f510-e740-8b1503ff8ffa", "id": "item253", "name": "item253", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "72bdec-dcd6-cc4-3260-731c106328" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "52px" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "54e8f5c-f22b-1364-b00f-6712ff86ebe": { "uuid": "54e8f5c-f22b-1364-b00f-6712ff86ebe", "id": "receiverAddress", "name": "receiverAddress", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "font": { "size": "13" }, "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "border": { "top": { "color": "$color.bordescampos.color" }, "right": { "color": "$color.bordescampos.color" }, "bottom": { "color": "$color.bordescampos.color" }, "left": { "color": "$color.bordescampos.color" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true } }, "modifiedName": false, "modifiedId": false, "subtype": "text", "props": { "trailingIcon": {}, "label": "Direccion", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "multiline": false, "initialState": "regular", "rules": {}, "maxLength": "999" }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "text" }, "7734ac6-e37f-2084-26b0-efd8613430e": { "uuid": "7734ac6-e37f-2084-26b0-efd8613430e", "id": "receiverEmail", "name": "receiverEmail", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "font": { "size": "13" }, "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "border": { "top": { "color": "$color.bordescampos.color" }, "right": { "color": "$color.bordescampos.color" }, "bottom": { "color": "$color.bordescampos.color" }, "left": { "color": "$color.bordescampos.color" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true } }, "modifiedName": false, "modifiedId": false, "subtype": "text", "props": { "trailingIcon": {}, "label": "Email", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "multiline": false, "initialState": "regular", "rules": {}, "maxLength": 100 }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "text" }, "72bdec-dcd6-cc4-3260-731c106328": { "uuid": "72bdec-dcd6-cc4-3260-731c106328", "id": "requiresPurchase", "name": "requiresPurchase", "type": "input", "subitems": [], "layout": { "DESKTOP": { "style": { "label": { "align": "left" }, "regular": { "label": { "size": "13", "opacity": "cc" }, "font": {}, "background": { "type": "solid" }, "shadow": {}, "cursor": "pointer" }, "hover": { "color": { "color": "$color.hover.color", "opacity": "$color.hover.opacity" } }, "disabled": { "cursor": "default" }, "error": { "color": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity" } }, "font": {}, "placeholder": {} }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "maxWidth": "unset", "minHeight": "unset", "maxHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "visible": true } }, "modifiedName": true, "modifiedId": true, "subtype": "checkbox", "props": { "label": "Requiere Compra", "contentType": "normal", "description": "indica si esta soliciud al menos tiene un item para enviar a comprar", "value": { "props": { "value": "" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "design": "checkbox" }, "843801-2b20-5546-a0d3-61180efca01": { "uuid": "843801-2b20-5546-a0d3-61180efca01", "id": "solicitudCompra", "name": "solicitudCompra", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "font": { "size": "13" }, "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "border": { "top": { "color": "$color.bordescampos.color" }, "right": { "color": "$color.bordescampos.color" }, "bottom": { "color": "$color.bordescampos.color" }, "left": { "color": "$color.bordescampos.color" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true } }, "modifiedName": false, "modifiedId": false, "subtype": "number", "props": { "contentType": "integer", "trailingIcon": {}, "label": "Solicitud de Compra", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "multiline": false, "initialState": "regular", "rules": {}, "perPage": 20, "maxPerList": 5, "disabledMap": {} }, "relationConfig": { "type": "ENTITY", "idRelation": "32010ef-bda2-a847-dc1f-57e5bd7600f3", "idKey": "id", "dsName": "relationSC1", "cdForm": "SOLI1654109271", "idObject": "289936", "show": true, "search": false, "lsFilters": [] }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "number" }, "e0140b-c8b-afef-8bdf-1f8f6e562f6": { "uuid": "e0140b-c8b-afef-8bdf-1f8f6e562f6", "id": "supplierCUIT", "name": "supplierCUIT", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "font": { "size": "13" }, "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "border": { "top": { "color": "$color.bordescampos.color" }, "right": { "color": "$color.bordescampos.color" }, "bottom": { "color": "$color.bordescampos.color" }, "left": { "color": "$color.bordescampos.color" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true } }, "modifiedName": false, "modifiedId": false, "subtype": "text", "props": { "trailingIcon": {}, "label": "RUC Proveedor", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "multiline": false, "initialState": "regular", "rules": {}, "maxLength": 100 }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "text" }, "20d3561-7ae8-ca3e-8a50-045c1e851f": { "uuid": "20d3561-7ae8-ca3e-8a50-045c1e851f", "id": "item259", "name": "item259", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "c1468-a01-42a7-777b-fcb3703226f", "5a7b62-b0cc-1f6-d6e-753572b13ea1" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "c1468-a01-42a7-777b-fcb3703226f": { "uuid": "c1468-a01-42a7-777b-fcb3703226f", "id": "layout114", "name": "layout114", "type": "layout", "subtype": "normal", "design": "column", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100px", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "c25bb6-5dea-5a34-b1b0-8325ea826e": { "uuid": "c25bb6-5dea-5a34-b1b0-8325ea826e", "id": "usuarioSolicitante", "name": "usuarioSolicitante", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "54.7%", "maxWidth": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "font": { "size": "13" }, "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "border": { "top": { "color": "$color.bordescampos.color" }, "right": { "color": "$color.bordescampos.color" }, "bottom": { "color": "$color.bordescampos.color" }, "left": { "color": "$color.bordescampos.color" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true } }, "modifiedName": false, "modifiedId": false, "subtype": "text", "props": { "trailingIcon": {}, "label": "Usuario Solicitante", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "multiline": false, "initialState": "regular", "rules": {}, "perPage": 20, "maxPerList": 5, "disabledMap": {}, "maxLength": 100 }, "relationConfig": { "type": "ENTITY", "idRelation": "f7d3a83-c083-2e1b-8633-184e37f8b850", "idKey": "cdUser", "dsName": "relationUsuarios1", "cdForm": "UU0", "idObject": "UU0", "show": true, "search": true, "lsFilters": [] }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "text" }, "7425383-30f1-63ae-0d50-06200ee47e2": { "uuid": "7425383-30f1-63ae-0d50-06200ee47e2", "id": "withholdingAgent", "name": "withholdingAgent", "type": "input", "subitems": [], "layout": { "DESKTOP": { "style": { "label": { "family": "$font.secondary", "align": "left" }, "regular": { "padding": { "paddingLabel": "2px" }, "label": { "size": "10px" }, "font": {}, "cursor": "pointer" }, "hover": { "color": { "color": "$color.hover.color", "opacity": "$color.hover.opacity" } }, "disabled": { "cursor": "default" }, "error": { "color": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity" } }, "font": {} }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "maxWidth": "unset", "minHeight": "unset", "maxHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "visible": true } }, "modifiedName": true, "modifiedId": true, "subtype": "checkbox", "props": { "label": "Empresa Agente de retencion", "contentType": "normal", "description": "", "value": { "props": { "value": "" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "design": "checkbox" }, "28a6827-8b7-c623-8b4-6b8cb13dbce5": { "uuid": "28a6827-8b7-c623-8b4-6b8cb13dbce5", "id": "withholdingSupplier", "name": "withholdingSupplier", "type": "input", "subitems": [], "layout": { "DESKTOP": { "style": { "label": { "family": "$font.secondary", "align": "left" }, "regular": { "label": { "size": "10px" }, "font": {}, "cursor": "pointer" }, "hover": { "color": { "color": "$color.hover.color", "opacity": "$color.hover.opacity" } }, "disabled": { "cursor": "default" }, "error": { "color": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity" } }, "font": {} }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset", "maxWidth": "unset", "minHeight": "unset", "maxHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "visible": true } }, "modifiedName": true, "modifiedId": true, "subtype": "checkbox", "props": { "label": "Proveedor Agente de Retencion", "contentType": "normal", "description": "", "value": { "props": { "value": "" }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "design": "checkbox" }, "c3d260f-6348-36f-22b6-2370f8d4f22b": { "uuid": "c3d260f-6348-36f-22b6-2370f8d4f22b", "id": "item260", "name": "item260", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "3b637ce-1a88-fd1-0c4e-4af830ebee1a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "4a58736-ecb-323e-07ba-38aab53b811f": { "uuid": "4a58736-ecb-323e-07ba-38aab53b811f", "id": "item261", "name": "item261", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "ec3bd5-f0ba-8a31-2e1-bb2f45063075" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "2ffba6-437-6124-3b4c-528054c53d6f": { "uuid": "2ffba6-437-6124-3b4c-528054c53d6f", "id": "layout115", "name": "layout115", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "c3d260f-6348-36f-22b6-2370f8d4f22b", "4a58736-ecb-323e-07ba-38aab53b811f", "2f7581e-a60-73e7-83ba-47b84873fc6f", "d742877-cc40-31b2-5f83-84fb6f80e53e" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "250px" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "ec3bd5-f0ba-8a31-2e1-bb2f45063075": { "uuid": "ec3bd5-f0ba-8a31-2e1-bb2f45063075", "id": "description", "name": "description", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "maxWidth": "unset" }, "position": { "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "font": { "size": "13" }, "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "border": { "top": { "color": "$color.bordescampos.color" }, "right": { "color": "$color.bordescampos.color" }, "bottom": { "color": "$color.bordescampos.color" }, "left": { "color": "$color.bordescampos.color" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true } }, "modifiedName": false, "modifiedId": false, "subtype": "text", "props": { "trailingIcon": {}, "label": "", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "multiline": false, "initialState": "regular", "rules": {}, "maxLength": 100 }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "text" }, "3b637ce-1a88-fd1-0c4e-4af830ebee1a": { "uuid": "3b637ce-1a88-fd1-0c4e-4af830ebee1a", "id": "available", "name": "available", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "font": { "size": "13" }, "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "border": { "top": { "color": "$color.bordescampos.color" }, "right": { "color": "$color.bordescampos.color" }, "bottom": { "color": "$color.bordescampos.color" }, "left": { "color": "$color.bordescampos.color" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true } }, "modifiedName": false, "modifiedId": false, "subtype": "number", "props": { "trailingIcon": {}, "label": "", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "multiline": false, "initialState": "regular", "rules": { "calc": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "commentsItems.totalPrice.value - commentsItems.totalCons.value", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "BinaryExpression", "operator": "-", "left": { "type": "MemberExpression", "computed": false, "object": { "type": "MemberExpression", "computed": false, "object": { "type": "PageElementIdentifier", "name": "commentsItems", "range": [ 0, 13 ], "code": "commentsItems", "elemType": "repeater" }, "property": { "type": "PageElementIdentifier", "name": "totalPrice", "range": [ 14, 24 ], "code": "totalPrice", "elemType": "input", "repeater": "commentsItems" }, "range": [ 0, 24 ] }, "property": { "type": "ElementPropertyIdentifier", "name": "value", "range": [ 25, 30 ], "propID": "value" }, "range": [ 0, 30 ] }, "right": { "type": "MemberExpression", "computed": false, "object": { "type": "MemberExpression", "computed": false, "object": { "type": "PageElementIdentifier", "name": "commentsItems", "range": [ 33, 46 ], "code": "commentsItems", "elemType": "repeater" }, "property": { "type": "PageElementIdentifier", "name": "totalCons", "range": [ 47, 56 ], "code": "totalCons", "elemType": "input", "repeater": "commentsItems" }, "range": [ 33, 56 ] }, "property": { "type": "ElementPropertyIdentifier", "name": "value", "range": [ 57, 62 ], "propID": "value" }, "range": [ 33, 62 ] }, "range": [ 0, 62 ] }, "range": [ 0, 62 ] } ], "sourceType": "script", "range": [ 0, 62 ] } }, "readOnly": false, "idTarget": "commentsItems/available", "formName": "ORDE1698431606", "action": "calc", "tpRule": "CALC", "new": false, "expressionParser": "commentsItems.totalPrice.value - commentsItems.totalCons.value" } ] } }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "number" }, "2f7581e-a60-73e7-83ba-47b84873fc6f": { "uuid": "2f7581e-a60-73e7-83ba-47b84873fc6f", "id": "item262", "name": "item262", "type": "item", "subtype": "normal", "design": "item", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "d742877-cc40-31b2-5f83-84fb6f80e53e": { "uuid": "d742877-cc40-31b2-5f83-84fb6f80e53e", "id": "closeOC", "name": "closeOC", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "font": { "size": "13" }, "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "border": { "top": { "color": "$color.bordescampos.color" }, "right": { "color": "$color.bordescampos.color" }, "bottom": { "color": "$color.bordescampos.color" }, "left": { "color": "$color.bordescampos.color" } }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true } }, "modifiedName": false, "modifiedId": false, "subtype": "number", "props": { "contentType": "integer", "trailingIcon": {}, "label": "Campo a eliminar", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "multiline": false, "initialState": "regular", "rules": {}, "perPage": 20, "maxPerList": 5, "disabledMap": {} }, "relationConfig": { "type": "ENTITY", "idRelation": "e88fde-cff0-6248-ea5f-1d3808f5a8b4", "idKey": "id", "dsName": "relationOC1", "cdForm": "ORDE1698431606", "idObject": "800601", "show": true, "search": true, "lsFilters": [] }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "number" }, "64b3c23-8b80-f5da-443-da5c1033b782": { "uuid": "64b3c23-8b80-f5da-443-da5c1033b782", "id": "orderNumber", "name": "orderNumber", "type": "input", "subitems": [], "layout": { "DESKTOP": { "structure": { "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "style": { "placeholder": { "opacity": "ff" }, "regular": { "label": { "size": "14px" }, "icons": { "leadingIconColor": "#666666", "trailingIconColor": "#666666" }, "border": { "bottom": { "width": "1px", "color": "$color.bordeinferiorcampos.color", "opacity": "$color.bordeinferiorcampos.opacity" } }, "radius": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" }, "focus": { "border": { "bottom": { "width": "2px", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } } }, "disabled": { "background": { "color": "$color.cabecera.color", "opacity": "7f" }, "cursor": "default" }, "error": { "border": { "bottom": { "color": "$color.quinary.color", "opacity": "$color.quinary.opacity", "width": "2px" } } } }, "visible": true } }, "modifiedName": false, "modifiedId": false, "subtype": "number", "props": { "contentType": "integer", "label": "Numero de Orden", "initialState": "regular", "placeholder": "", "description": "", "helpText": "", "prefix": "", "sufix": "", "value": { "props": { "value": "" }, "type": "LITERAL" }, "required": false, "rules": {}, "perPage": 20, "maxPerList": 5 }, "relationConfig": { "type": "WITHOUT_RELATION" }, "relatedAttribute": {}, "hyperLink": { "destinityType": "_self" }, "events": {}, "design": "number" }, "ae3d2af-a2c8-b03-048-4ab8763f1f4": { "uuid": "ae3d2af-a2c8-b03-048-4ab8763f1f4", "id": "item263", "name": "item263", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "c25bb6-5dea-5a34-b1b0-8325ea826e" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "4724488-8030-8a05-2ff-fbf3cdc1aca": { "uuid": "4724488-8030-8a05-2ff-fbf3cdc1aca", "id": "item264", "name": "item264", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "7425383-30f1-63ae-0d50-06200ee47e2" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "34011dd-6fac-6427-1c6-cdfdc21fb02": { "uuid": "34011dd-6fac-6427-1c6-cdfdc21fb02", "id": "item265", "name": "item265", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "28a6827-8b7-c623-8b4-6b8cb13dbce5" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "5a7b62-b0cc-1f6-d6e-753572b13ea1": { "uuid": "5a7b62-b0cc-1f6-d6e-753572b13ea1", "id": "layout116", "name": "layout116", "type": "layout", "subtype": "normal", "design": "column", "subitems": [ "ae3d2af-a2c8-b03-048-4ab8763f1f4", "4724488-8030-8a05-2ff-fbf3cdc1aca", "34011dd-6fac-6427-1c6-cdfdc21fb02", "82ff-67c2-81e-e686-cbf3c7a88fc" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "250px" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "82ff-67c2-81e-e686-cbf3c7a88fc": { "uuid": "82ff-67c2-81e-e686-cbf3c7a88fc", "id": "item266", "name": "item266", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "64b3c23-8b80-f5da-443-da5c1033b782" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "5da2d3-a4c2-44bc-8efb-22b26d6717f": { "uuid": "5da2d3-a4c2-44bc-8efb-22b26d6717f", "id": "item267", "name": "item267", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "b15ebb-34a-732-da77-1aaeb38173" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "b7711c1-cb5e-72b1-254-b1dc5e603f7": { "uuid": "b7711c1-cb5e-72b1-254-b1dc5e603f7", "id": "item268", "name": "item268", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "2ffba6-437-6124-3b4c-528054c53d6f" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } }, "MOBILE": { "style": {} } }, "hyperLink": { "destinityType": "_self" } }, "ef313a8-d8b-c3f0-ae-ceb5d500e5": { "uuid": "ef313a8-d8b-c3f0-ae-ceb5d500e5", "id": "layout117", "name": "layout117", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "5da2d3-a4c2-44bc-8efb-22b26d6717f", "b7711c1-cb5e-72b1-254-b1dc5e603f7" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginTop": "75px", "marginBottom": 0, "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "visible": false } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "e14a25-be2d-213-4772-6260bc18330d": { "uuid": "e14a25-be2d-213-4772-6260bc18330d", "id": "menu_item2", "name": "menu_item2", "type": "menu_item", "subtype": "normal", "design": "menu_item", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "padding": { "paddingTop": "8px", "paddingBottom": "8px" }, "font": { "weight": "bold" }, "border": { "bottom": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" } }, "cursor": "pointer" }, "disabled": { "cursor": "default" } }, "structure": { "size": { "width": "auto", "minWidth": "unset", "height": "auto" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } } }, "TABLET": { "style": { "selected": { "border": { "bottom": { "width": "2px" } } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "12px" } }, "gap": "0px" } } }, "props": { "submenuAction": "click", "value": { "props": { "value": "recepcioOCrel" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "events": { "onClick": "menu_item2_onClick_1" } }, "c7d1156-ab60-a2c8-7dc3-d40a72ec00f8": { "uuid": "c7d1156-ab60-a2c8-7dc3-d40a72ec00f8", "id": "menu_item1", "name": "menu_item1", "type": "menu_item", "subtype": "normal", "design": "menu_item", "subitems": [], "layout": { "DESKTOP": { "style": { "regular": { "padding": { "paddingTop": "8px", "paddingBottom": "8px" }, "font": { "weight": "bold" }, "border": { "bottom": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" } }, "cursor": "pointer" }, "disabled": { "cursor": "default" } }, "structure": { "size": { "width": "auto", "minWidth": "150px", "height": "auto" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } } }, "TABLET": { "style": { "selected": { "border": { "bottom": { "width": "2px" } } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "12px" }, "padding": { "paddingLeft": "6px" } }, "justifyContent": "start", "gap": "0px" }, "structure": { "size": { "minWidth": "unset" } } } }, "props": { "submenuAction": "click", "value": { "props": { "value": "compOrdenCompra1" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "events": { "onClick": "menu_item1_onClick_1" } }, "3e3f0f3-af58-c868-a537-5d84a7136e": { "uuid": "3e3f0f3-af58-c868-a537-5d84a7136e", "id": "item251", "name": "item251", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "34283a-4081-1a6e-02f-45fab325afc2" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "COLUMN" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "53px", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": true }, "TABLET": { "style": {} }, "MOBILE": { "structure": { "size": { "width": "auto", "height": "100%", "minWidth": "147px" } } } }, "hyperLink": { "destinityType": "_self" } }, "31a3aee-dace-323-5f67-0603d88472a": { "uuid": "31a3aee-dace-323-5f67-0603d88472a", "id": "relations_navigation_menu2", "name": "relations_navigation_menu2", "type": "relations_navigation_menu", "subtype": "normal", "design": "relations_navigation_menu", "subitems": [ "0f04b83-36f8-267-c66d-71b0bf0d40d3" ], "layout": { "DESKTOP": { "style": { "background": { "opacity": "00" } }, "structure": { "size": { "width": "100%", "height": "auto", "minWidth": "unset" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "center" } } }, "TABLET": { "style": { "padding": { "paddingTop": "0px", "paddingRight": "0px", "paddingBottom": "0px", "paddingLeft": "0px" } } }, "MOBILE": { "style": { "shadow": { "opacity": "00" } } } }, "props": { "minimized": false, "foreignRelation": { "horizontal": [], "vertical": [ { "idRelation": "cases", "dsName": "Caso", "dsSingularName": "Caso", "dsPluralName": "Casos", "uuid": "e1e6ec-d504-a75a-3ce-1d6cc5026d4", "type": "action" }, { "idRelation": "attachments", "dsName": "Adjuntos", "dsSingularName": "Adjunto", "dsPluralName": "Adjuntos", "pluralRedirection": "MODAL", "uuid": "56d50de-6ccf-a41-43ce-a5e075faa6f2", "type": "action" }, { "idRelation": "chat", "dsName": "Chat", "dsSingularName": "Chat", "dsPluralName": "Chats", "uuid": "101e2f2-77d0-68ac-35e2-bdab41dd634", "type": "action" }, { "idRelation": "email", "dsName": "Correos", "dsSingularName": "Correo", "dsPluralName": "Correos", "uuid": "b05fea-ab3-4e78-b466-bee740c056bf", "type": "action" }, { "idRelation": "information", "dsName": "Información", "dsSingularName": "Información", "dsPluralName": "Información", "uuid": "52d418b-182c-a0fc-68dc-ce480e1cc5", "type": "action" } ] } }, "modifiedName": true, "modifiedId": true }, "0f04b83-36f8-267-c66d-71b0bf0d40d3": { "uuid": "0f04b83-36f8-267-c66d-71b0bf0d40d3", "id": "menu_item3", "name": "menu_item3", "type": "menu_item", "subtype": "normal", "design": "menu_item", "subitems": [ "0565137-12da-dd01-d42c-8151cf26d7a" ], "layout": { "DESKTOP": { "style": { "gap": "0px", "regular": { "padding": { "paddingTop": "0px", "paddingRight": "0px", "paddingBottom": "0px", "paddingLeft": "0px" }, "icon": { "color": "$color.primary.color", "opacity": "$color.primary.opacity", "size": "8px" }, "cursor": "pointer" }, "hover": { "border": { "bottom": { "width": "0px" } }, "icon": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } }, "selected": { "border": { "bottom": { "width": "0px" } }, "icon": { "color": "$color.primary.color", "opacity": "$color.primary.opacity" } }, "disabled": { "cursor": "default" } }, "structure": { "size": { "width": "auto", "minWidth": "unset", "height": "auto" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } } } }, "props": { "contentType": "relation_three_point", "submenuAction": "click", "value": { "props": { "value": "" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "0565137-12da-dd01-d42c-8151cf26d7a": { "uuid": "0565137-12da-dd01-d42c-8151cf26d7a", "id": "submenu3", "name": "submenu3", "type": "submenu", "subtype": "normal", "subitems": [ "e1e6ec-d504-a75a-3ce-1d6cc5026d4", "56d50de-6ccf-a41-43ce-a5e075faa6f2", "101e2f2-77d0-68ac-35e2-bdab41dd634", "b05fea-ab3-4e78-b466-bee740c056bf", "52d418b-182c-a0fc-68dc-ce480e1cc5" ], "layout": { "DESKTOP": { "style": { "padding": { "paddingTop": "0px", "paddingRight": "0px", "paddingBottom": "0px", "paddingLeft": "0px" }, "background": { "type": "solid", "color": "#ffffff", "opacity": "ff", "gradient": { "type": "linear", "degree": "0deg", "points": [ { "color": "#eeeeee", "opacity": "ff", "left": 0 }, { "color": "#ffffff", "opacity": "ff", "left": 100 } ] } }, "shadow": { "x": "0px", "y": "5px", "blur": "5px", "spread": "5px", "inset": "", "color": "#000000", "opacity": "0c" }, "animations": { "show": "immediate-show", "hide": "immediate-hide" }, "gap": "0px", "justifyContent": "center", "border": { "top": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "right": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "bottom": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "left": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" } }, "radius": { "topRight": "8px", "topLeft": "8px", "bottomRight": "8px", "bottomLeft": "8px" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } } } }, "props": {} }, "e1e6ec-d504-a75a-3ce-1d6cc5026d4": { "uuid": "e1e6ec-d504-a75a-3ce-1d6cc5026d4", "id": "submenu_item1", "name": "submenu_item1", "type": "submenu_item", "subtype": "normal", "subitems": [], "layout": { "DESKTOP": { "style": { "font": { "family": "$font.primary", "align": "left", "spacing": "0px" }, "animations": { "show": "immediate-show", "hide": "immediate-hide" }, "justifyContent": "start", "gap": "12px", "tooltip": { "font": { "family": "$font.primary", "size": "13px", "weight": "400", "spacing": "0px" }, "color": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" }, "background": { "color": "$color.tertiary.color", "opacity": "$color.tertiary.opacity" }, "border": { "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity", "style": "solid", "width": "1px", "radius": "0px" }, "padding": "0px", "position": "top" }, "regular": { "padding": { "paddingTop": "16px", "paddingRight": "24px", "paddingBottom": "16px", "paddingLeft": "24px" }, "background": { "type": "solid", "color": "#ffffff", "opacity": "00", "gradient": { "type": "linear", "degree": "0deg", "points": [ { "color": "#eeeeee", "opacity": "ff", "left": 0 }, { "color": "#ffffff", "opacity": "ff", "left": 100 } ] } }, "font": { "weight": "400", "size": "14px", "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity", "italic": false, "underline": false }, "shadow": { "x": "0px", "y": "0px", "blur": "0px", "spread": "0px", "inset": "", "color": "#000000", "opacity": "00" }, "border": { "top": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "right": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "bottom": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "left": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" } }, "radius": { "topRight": "0px", "topLeft": "0px", "bottomRight": "0px", "bottomLeft": "0px" }, "icon": { "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity", "size": "14px" }, "cursor": "pointer" }, "hover": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" }, "font": { "weight": "600", "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" }, "border": { "bottom": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" } }, "icon": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" } }, "selected": { "font": { "weight": "600", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "border": { "bottom": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } }, "icon": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } }, "disabled": { "cursor": "default" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } } } }, "props": { "icon": { "type": "deyel", "value": "icon-deyel_casos" }, "value": { "props": { "value": "Casos" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "56d50de-6ccf-a41-43ce-a5e075faa6f2": { "uuid": "56d50de-6ccf-a41-43ce-a5e075faa6f2", "id": "submenu_item2", "name": "submenu_item2", "type": "submenu_item", "subtype": "normal", "subitems": [], "layout": { "DESKTOP": { "style": { "font": { "family": "$font.primary", "align": "left", "spacing": "0px" }, "animations": { "show": "immediate-show", "hide": "immediate-hide" }, "justifyContent": "start", "gap": "12px", "tooltip": { "font": { "family": "$font.primary", "size": "13px", "weight": "400", "spacing": "0px" }, "color": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" }, "background": { "color": "$color.tertiary.color", "opacity": "$color.tertiary.opacity" }, "border": { "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity", "style": "solid", "width": "1px", "radius": "0px" }, "padding": "0px", "position": "top" }, "regular": { "padding": { "paddingTop": "16px", "paddingRight": "24px", "paddingBottom": "16px", "paddingLeft": "24px" }, "background": { "type": "solid", "color": "#ffffff", "opacity": "00", "gradient": { "type": "linear", "degree": "0deg", "points": [ { "color": "#eeeeee", "opacity": "ff", "left": 0 }, { "color": "#ffffff", "opacity": "ff", "left": 100 } ] } }, "font": { "weight": "400", "size": "14px", "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity", "italic": false, "underline": false }, "shadow": { "x": "0px", "y": "0px", "blur": "0px", "spread": "0px", "inset": "", "color": "#000000", "opacity": "00" }, "border": { "top": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "right": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "bottom": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "left": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" } }, "radius": { "topRight": "0px", "topLeft": "0px", "bottomRight": "0px", "bottomLeft": "0px" }, "icon": { "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity", "size": "14px" }, "cursor": "pointer" }, "hover": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" }, "font": { "weight": "600", "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" }, "border": { "bottom": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" } }, "icon": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" } }, "selected": { "font": { "weight": "600", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "border": { "bottom": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } }, "icon": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } }, "disabled": { "cursor": "default" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } } } }, "props": { "icon": { "type": "fontawesome", "value": [ "fas", "paperclip" ] }, "value": { "props": { "value": "Adjuntos" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "101e2f2-77d0-68ac-35e2-bdab41dd634": { "uuid": "101e2f2-77d0-68ac-35e2-bdab41dd634", "id": "submenu_item3", "name": "submenu_item3", "type": "submenu_item", "subtype": "normal", "subitems": [], "layout": { "DESKTOP": { "style": { "font": { "family": "$font.primary", "align": "left", "spacing": "0px" }, "animations": { "show": "immediate-show", "hide": "immediate-hide" }, "justifyContent": "start", "gap": "12px", "tooltip": { "font": { "family": "$font.primary", "size": "13px", "weight": "400", "spacing": "0px" }, "color": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" }, "background": { "color": "$color.tertiary.color", "opacity": "$color.tertiary.opacity" }, "border": { "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity", "style": "solid", "width": "1px", "radius": "0px" }, "padding": "0px", "position": "top" }, "regular": { "padding": { "paddingTop": "16px", "paddingRight": "24px", "paddingBottom": "16px", "paddingLeft": "24px" }, "background": { "type": "solid", "color": "#ffffff", "opacity": "00", "gradient": { "type": "linear", "degree": "0deg", "points": [ { "color": "#eeeeee", "opacity": "ff", "left": 0 }, { "color": "#ffffff", "opacity": "ff", "left": 100 } ] } }, "font": { "weight": "400", "size": "14px", "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity", "italic": false, "underline": false }, "shadow": { "x": "0px", "y": "0px", "blur": "0px", "spread": "0px", "inset": "", "color": "#000000", "opacity": "00" }, "border": { "top": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "right": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "bottom": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "left": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" } }, "radius": { "topRight": "0px", "topLeft": "0px", "bottomRight": "0px", "bottomLeft": "0px" }, "icon": { "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity", "size": "14px" }, "cursor": "pointer" }, "hover": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" }, "font": { "weight": "600", "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" }, "border": { "bottom": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" } }, "icon": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" } }, "selected": { "font": { "weight": "600", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "border": { "bottom": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } }, "icon": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } }, "disabled": { "cursor": "default" } }, "structure": { "size": { "width": "auto", "height": "auto", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } } } }, "props": { "icon": { "type": "fontawesome", "value": [ "far", "comment" ] }, "value": { "props": { "value": "Chat" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "b05fea-ab3-4e78-b466-bee740c056bf": { "uuid": "b05fea-ab3-4e78-b466-bee740c056bf", "id": "submenu_item4", "name": "submenu_item4", "type": "submenu_item", "subtype": "normal", "subitems": [], "layout": { "DESKTOP": { "style": { "font": { "family": "$font.primary", "align": "left", "spacing": "0px" }, "animations": { "show": "immediate-show", "hide": "immediate-hide" }, "justifyContent": "start", "gap": "12px", "tooltip": { "font": { "family": "$font.primary", "size": "13px", "weight": "400", "spacing": "0px" }, "color": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" }, "background": { "color": "$color.tertiary.color", "opacity": "$color.tertiary.opacity" }, "border": { "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity", "style": "solid", "width": "1px", "radius": "0px" }, "padding": "0px", "position": "top" }, "regular": { "padding": { "paddingTop": "16px", "paddingRight": "24px", "paddingBottom": "16px", "paddingLeft": "24px" }, "background": { "type": "solid", "color": "#ffffff", "opacity": "00", "gradient": { "type": "linear", "degree": "0deg", "points": [ { "color": "#eeeeee", "opacity": "ff", "left": 0 }, { "color": "#ffffff", "opacity": "ff", "left": 100 } ] } }, "font": { "weight": "400", "size": "14px", "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity", "italic": false, "underline": false }, "shadow": { "x": "0px", "y": "0px", "blur": "0px", "spread": "0px", "inset": "", "color": "#000000", "opacity": "00" }, "border": { "top": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "right": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "bottom": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "left": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" } }, "radius": { "topRight": "0px", "topLeft": "0px", "bottomRight": "0px", "bottomLeft": "0px" }, "icon": { "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity", "size": "14px" }, "cursor": "pointer" }, "hover": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" }, "font": { "weight": "600", "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" }, "border": { "bottom": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" } }, "icon": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" } }, "selected": { "font": { "weight": "600", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "border": { "bottom": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } }, "icon": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } }, "disabled": { "cursor": "default" } }, "structure": { "size": { "width": "100%", "height": "auto" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } } } }, "props": { "icon": { "type": "deyel", "value": "icon-deyel_mp_mail" }, "value": { "props": { "value": "Correos" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "52d418b-182c-a0fc-68dc-ce480e1cc5": { "uuid": "52d418b-182c-a0fc-68dc-ce480e1cc5", "id": "submenu_item5", "name": "submenu_item5", "type": "submenu_item", "subtype": "normal", "subitems": [], "layout": { "DESKTOP": { "style": { "font": { "family": "$font.primary", "align": "left", "spacing": "0px" }, "animations": { "show": "immediate-show", "hide": "immediate-hide" }, "justifyContent": "start", "gap": "12px", "tooltip": { "font": { "family": "$font.primary", "size": "13px", "weight": "400", "spacing": "0px" }, "color": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" }, "background": { "color": "$color.tertiary.color", "opacity": "$color.tertiary.opacity" }, "border": { "color": "$color.contenedorborde.color", "opacity": "$color.contenedorborde.opacity", "style": "solid", "width": "1px", "radius": "0px" }, "padding": "0px", "position": "top" }, "regular": { "padding": { "paddingTop": "16px", "paddingRight": "24px", "paddingBottom": "16px", "paddingLeft": "24px" }, "background": { "type": "solid", "color": "#ffffff", "opacity": "00", "gradient": { "type": "linear", "degree": "0deg", "points": [ { "color": "#eeeeee", "opacity": "ff", "left": 0 }, { "color": "#ffffff", "opacity": "ff", "left": 100 } ] } }, "font": { "weight": "400", "size": "14px", "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity", "italic": false, "underline": false }, "shadow": { "x": "0px", "y": "0px", "blur": "0px", "spread": "0px", "inset": "", "color": "#000000", "opacity": "00" }, "border": { "top": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "right": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "bottom": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" }, "left": { "width": "0px", "style": "solid", "color": "#cccccc", "opacity": "ff" } }, "radius": { "topRight": "0px", "topLeft": "0px", "bottomRight": "0px", "bottomLeft": "0px" }, "icon": { "color": "$color.neutralgrey.color", "opacity": "$color.neutralgrey.opacity", "size": "14px" }, "cursor": "pointer" }, "hover": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" }, "font": { "weight": "600", "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" }, "border": { "bottom": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" } }, "icon": { "color": "$color.neutral.color", "opacity": "$color.neutral.opacity" } }, "selected": { "font": { "weight": "600", "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" }, "border": { "bottom": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } }, "icon": { "color": "$color.secondary.color", "opacity": "$color.secondary.opacity" } }, "disabled": { "cursor": "default" } }, "structure": { "size": { "width": "100%", "height": "auto" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative" } } } }, "props": { "icon": { "type": "deyel", "value": "icon-deyel_info" }, "value": { "props": { "value": "Información" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "1a0f18b-a3ce-baa5-1ea8-38ae61612218": { "uuid": "1a0f18b-a3ce-baa5-1ea8-38ae61612218", "id": "item60", "name": "item60", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "145fb33-33d-5c4-513e-5ee3d7fe04" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "b477c83-666-153f-622c-50fbe511434a": { "uuid": "b477c83-666-153f-622c-50fbe511434a", "id": "item270", "name": "item270", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "f0a66e-4a57-e4d4-b73b-be26ec0b713" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "bca342-a5a1-b0e6-1b05-046e56dc5bb": { "uuid": "bca342-a5a1-b0e6-1b05-046e56dc5bb", "id": "layout118", "name": "layout118", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "1a0f18b-a3ce-baa5-1ea8-38ae61612218", "b477c83-666-153f-622c-50fbe511434a" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "regular": { "padding": { "paddingRight": "12px", "paddingLeft": "12px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "bc1cc7-f3d-7d2e-b022-4dd57dc2bce": { "uuid": "bc1cc7-f3d-7d2e-b022-4dd57dc2bce", "id": "item16", "name": "item16", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "228c657-a8ad-d0f5-c665-ab6aecb3b3c2" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "3f7f8-6de-cabb-6d48-55bb1c0e00cc": { "uuid": "3f7f8-6de-cabb-6d48-55bb1c0e00cc", "id": "item271", "name": "item271", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "ce45d2a-f6e8-57c7-e5e-03622165fd2" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "831c068-e3a4-2db8-b5b-7ac802c062e2": { "uuid": "831c068-e3a4-2db8-b5b-7ac802c062e2", "id": "layout119", "name": "layout119", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "bc1cc7-f3d-7d2e-b022-4dd57dc2bce", "3f7f8-6de-cabb-6d48-55bb1c0e00cc" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "34px", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "center", "justifySelf": "center" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "regular": { "padding": { "paddingRight": "12px", "paddingLeft": "12px" } } }, "structure": { "size": { "height": "auto" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "80f24e-dc8f-7c8-4d45-5321603df8c": { "uuid": "80f24e-dc8f-7c8-4d45-5321603df8c", "id": "item18", "name": "item18", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "850eff1-535-875-20b2-2bb23a587c5f" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "d235835-bf1a-5fa2-66-c10a20e86642": { "uuid": "d235835-bf1a-5fa2-66-c10a20e86642", "id": "item272", "name": "item272", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "d825fdf-80f8-62a-aaa-6d121a83632" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } } } }, "hyperLink": { "destinityType": "_self" } }, "045337-2ac8-3b37-f85c-248f4b2de12": { "uuid": "045337-2ac8-3b37-f85c-248f4b2de12", "id": "layout120", "name": "layout120", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "80f24e-dc8f-7c8-4d45-5321603df8c", "d235835-bf1a-5fa2-66-c10a20e86642" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "regular": { "background": { "color": "$color.neutralgreybg.color", "opacity": "$color.neutralgreybg.opacity" }, "shadow": { "y": "5px", "blur": "5px", "spread": "5px", "opacity": "0c" }, "padding": { "paddingTop": "8px", "paddingRight": "12px", "paddingBottom": "8px", "paddingLeft": "12px" } } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "b1e2f16-e6cd-43f4-70f-f2c564cbf11": { "uuid": "b1e2f16-e6cd-43f4-70f-f2c564cbf11", "id": "item37", "name": "item37", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "d6486f-88a1-4f61-0bf-1c0dd20021" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" }, "props": { "type": "COLUMN" } }, "structure": { "size": { "width": "1px", "height": "auto", "minHeight": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": false }, "MOBILE": { "structure": { "size": { "width": "100%", "height": "100%" } }, "style": { "regular": { "padding": { "paddingRight": "8px" } } }, "visible": true } }, "hyperLink": { "destinityType": "_self" } }, "d6486f-88a1-4f61-0bf-1c0dd20021": { "uuid": "d6486f-88a1-4f61-0bf-1c0dd20021", "id": "icon24", "name": "icon24", "type": "icon", "subtype": "normal", "design": "small", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "10px", "height": "10px", "minWidth": "unset", "maxWidth": "unset", "minHeight": "unset", "maxHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0, "position": "relative", "alignSelf": "center", "justifySelf": "center" } }, "style": { "cursor": "pointer" }, "visible": true }, "MOBILE": { "structure": { "position": { "justifySelf": "end" } } } }, "props": { "value": { "props": { "value": { "type": "fontawesome", "value": [ "far", "trash-alt" ] } }, "type": "LITERAL" } }, "relatedAttribute": {}, "hyperLink": { "order": "start", "destinityType": "_self", "link": { "operation": "DELETE", "type": "REPEATER", "idObject": "11f700e-eb4f-4e2-8d12-de471ff22836" } }, "modifiedName": false, "modifiedId": false }, "28d54d-46c2-ba8-b0e2-7672c0d581": { "uuid": "28d54d-46c2-ba8-b0e2-7672c0d581", "id": "item269", "name": "item269", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "6b0f523-ae86-d42b-eec6-4ea8a245b158" ], "layout": { "DESKTOP": { "style": {} }, "MOBILE": { "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "100%", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "style": { "regular": { "cursor": "auto" } } } }, "hyperLink": { "destinityType": "_self" } }, "de3da0c-b77-68d-a53-65aa4c4c34f1": { "uuid": "de3da0c-b77-68d-a53-65aa4c4c34f1", "id": "item274", "name": "item274", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "2cc1a8d-b520-2dab-e07f-6d082b604a08" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": true } }, "hyperLink": { "destinityType": "_self" } }, "850eff1-535-875-20b2-2bb23a587c5f": { "uuid": "850eff1-535-875-20b2-2bb23a587c5f", "id": "layout121", "name": "layout121", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "28d54d-46c2-ba8-b0e2-7672c0d581", "de3da0c-b77-68d-a53-65aa4c4c34f1" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "visible": true }, "MOBILE": { "style": { "props": { "type": "ROW" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "6b0f523-ae86-d42b-eec6-4ea8a245b158": { "uuid": "6b0f523-ae86-d42b-eec6-4ea8a245b158", "id": "text52", "name": "text52", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "80px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } } }, "TABLET": { "style": { "regular": { "font": { "size": "18px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "16px" } } }, "structure": { "size": { "width": "50px" }, "position": { "justifySelf": "start" } } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"color: var(--design-solid-color-neutralgrey); font-size: 12px; font-family: var(--design-font-primary);\"><strong>Entrega</strong></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "757e467-3a20-0de8-dfd-458750ce37d0": { "uuid": "757e467-3a20-0de8-dfd-458750ce37d0", "id": "item273", "name": "item273", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "4e44005-f17a-b5-f577-bc568aa8232" ], "layout": { "DESKTOP": { "style": {} }, "MOBILE": { "structure": { "size": { "width": "auto", "height": "auto", "minHeight": "unset", "minWidth": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "style": { "regular": { "cursor": "auto" } } } }, "hyperLink": { "destinityType": "_self" } }, "c785f33-71c6-d5e7-2a43-5f88418434ce": { "uuid": "c785f33-71c6-d5e7-2a43-5f88418434ce", "id": "item276", "name": "item276", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "fc575d4-188e-2d73-d207-f236351cca7" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": true } }, "hyperLink": { "destinityType": "_self" } }, "d825fdf-80f8-62a-aaa-6d121a83632": { "uuid": "d825fdf-80f8-62a-aaa-6d121a83632", "id": "layout122", "name": "layout122", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "757e467-3a20-0de8-dfd-458750ce37d0", "c785f33-71c6-d5e7-2a43-5f88418434ce" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "position": "relative", "alignSelf": "start", "justifySelf": "start" } }, "visible": true }, "MOBILE": { "style": { "props": { "type": "ROW" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "4e44005-f17a-b5-f577-bc568aa8232": { "uuid": "4e44005-f17a-b5-f577-bc568aa8232", "id": "text53", "name": "text53", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "80px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } } }, "TABLET": { "style": { "regular": { "font": { "size": "18px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "16px" } } }, "structure": { "size": { "width": "35px" }, "position": { "justifySelf": "start" } } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"color: var(--design-solid-color-neutralgrey);\"><strong>Total</strong></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "c0ac0d-8416-c3df-e0f7-621fbe07a2d4": { "uuid": "c0ac0d-8416-c3df-e0f7-621fbe07a2d4", "id": "labelMobile1", "name": "labelMobile1", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "cfe32cb-ff1-74d-1811-f767d3af6c51" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "55%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": false }, "MOBILE": { "style": {}, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" } }, "visible": true } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "e457415-e20d-fdb6-bfbd-c63555b5b5a": { "uuid": "e457415-e20d-fdb6-bfbd-c63555b5b5a", "id": "item275", "name": "item275", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "fca8835-4dc-520a-f473-8bec5464ca76" ], "layout": { "DESKTOP": { "style": {} }, "MOBILE": { "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "style": { "regular": { "cursor": "auto" } } } }, "hyperLink": { "destinityType": "_self" } }, "70401d6-6e4f-4b38-55cc-fb27cc7717a": { "uuid": "70401d6-6e4f-4b38-55cc-fb27cc7717a", "id": "item278", "name": "item278", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "180300-7e7-7fec-8ed6-73167a048c" ], "layout": { "DESKTOP": { "style": {} }, "MOBILE": { "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "style": { "regular": { "cursor": "auto" } } } }, "hyperLink": { "destinityType": "_self" } }, "cfe32cb-ff1-74d-1811-f767d3af6c51": { "uuid": "cfe32cb-ff1-74d-1811-f767d3af6c51", "id": "layout123", "name": "layout123", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "e457415-e20d-fdb6-bfbd-c63555b5b5a", "70401d6-6e4f-4b38-55cc-fb27cc7717a" ], "layout": { "MOBILE": { "style": { "props": { "type": "ROW" }, "regular": { "cursor": "auto", "padding": { "paddingRight": "12px", "paddingLeft": "12px" } } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginBottom": "-10px", "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "fca8835-4dc-520a-f473-8bec5464ca76": { "uuid": "fca8835-4dc-520a-f473-8bec5464ca76", "id": "text54", "name": "text54", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "80px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } } }, "TABLET": { "style": { "regular": { "font": { "size": "18px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "16px" } } }, "structure": { "size": { "width": "100%" }, "position": { "alignSelf": "start", "justifySelf": "start" } } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"color: var(--design-solid-color-neutralgrey); font-size: 12px; font-family: var(--design-font-primary);\"><strong>Cantidad</strong></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "180300-7e7-7fec-8ed6-73167a048c": { "uuid": "180300-7e7-7fec-8ed6-73167a048c", "id": "text55", "name": "text55", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "80px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } } }, "TABLET": { "style": { "regular": { "font": { "size": "18px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "16px" } } }, "structure": { "size": { "width": "100%" }, "position": { "alignSelf": "start", "justifySelf": "start" } } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"color: var(--design-solid-color-neutralgrey); font-size: 12px; font-family: var(--design-font-primary);\"><strong>Unidad</strong></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "87d5e70-10d6-7484-51ca-1fb617ec5e4": { "uuid": "87d5e70-10d6-7484-51ca-1fb617ec5e4", "id": "labelMobile2", "name": "labelMobile2", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "4a1b81-bfe-1fa7-d07a-46adf28c5dfa" ], "layout": { "DESKTOP": { "style": { "regular": { "cursor": "auto" } }, "structure": { "size": { "width": "55%", "height": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "visible": false }, "MOBILE": { "style": {}, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" } }, "visible": true } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": true, "modifiedId": true }, "4a1b81-bfe-1fa7-d07a-46adf28c5dfa": { "uuid": "4a1b81-bfe-1fa7-d07a-46adf28c5dfa", "id": "layout124", "name": "layout124", "type": "layout", "subtype": "normal", "design": "row", "subitems": [ "380a8ff-400-e1a-e18-b3311da73a5b", "25116a-da7f-5b32-0455-1d1370e01a7" ], "layout": { "MOBILE": { "style": { "props": { "type": "ROW" }, "regular": { "cursor": "auto", "padding": { "paddingRight": "12px", "paddingLeft": "12px" } } }, "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginBottom": "-10px", "position": "relative", "alignSelf": "start", "justifySelf": "start" } } } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "380a8ff-400-e1a-e18-b3311da73a5b": { "uuid": "380a8ff-400-e1a-e18-b3311da73a5b", "id": "item279", "name": "item279", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "68f36de-3b62-ed3-6dd6-5a577dba54b" ], "layout": { "DESKTOP": { "style": {} }, "MOBILE": { "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "100%" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "style": { "regular": { "cursor": "auto" } } } }, "hyperLink": { "destinityType": "_self" } }, "68f36de-3b62-ed3-6dd6-5a577dba54b": { "uuid": "68f36de-3b62-ed3-6dd6-5a577dba54b", "id": "text56", "name": "text56", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "80px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } } }, "TABLET": { "style": { "regular": { "font": { "size": "18px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "16px" } } }, "structure": { "size": { "width": "100%" }, "position": { "alignSelf": "start", "justifySelf": "start" } } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"color: var(--design-solid-color-neutralgrey); font-size: 12px; font-family: var(--design-font-primary);\"><strong>Precio Unitario</strong></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "25116a-da7f-5b32-0455-1d1370e01a7": { "uuid": "25116a-da7f-5b32-0455-1d1370e01a7", "id": "item280", "name": "item280", "type": "item", "subtype": "normal", "design": "item", "subitems": [ "2241110-e754-b4a2-01d0-8e28cde1133" ], "layout": { "DESKTOP": { "style": {} }, "MOBILE": { "structure": { "size": { "width": "100%", "height": "auto", "minHeight": "unset" }, "position": { "marginLeft": 0, "marginRight": 0, "marginTop": 0, "marginBottom": 0 } }, "style": { "regular": { "cursor": "auto" } } } }, "hyperLink": { "destinityType": "_self" } }, "2241110-e754-b4a2-01d0-8e28cde1133": { "uuid": "2241110-e754-b4a2-01d0-8e28cde1133", "id": "text57", "name": "text57", "type": "text", "subtype": "enriched_text", "design": "enriched", "subitems": [], "layout": { "DESKTOP": { "structure": { "size": { "width": "80px" }, "position": { "position": "relative", "alignSelf": "center", "justifySelf": "end" } } }, "TABLET": { "style": { "regular": { "font": { "size": "18px" } } } }, "MOBILE": { "style": { "regular": { "font": { "size": "16px" } } }, "structure": { "size": { "width": "100%" }, "position": { "alignSelf": "start", "justifySelf": "start" } } } }, "props": { "value": { "props": { "value": "<p style=\"text-align:left;\"><span style=\"color: var(--design-solid-color-neutralgrey); font-size: 12px; font-family: var(--design-font-primary);\"><strong>Impuesto</strong></span></p>\n" }, "type": "LITERAL" } }, "hyperLink": { "destinityType": "_self" }, "modifiedName": false, "modifiedId": false }, "d2c55ed-01dc-84-7803-2e8a7bd25bfb": { "modifiedName": true, "type": "layout", "uuid": "d2c55ed-01dc-84-7803-2e8a7bd25bfb", "props": { "rules": { "view": [] } }, "layout": { "DESKTOP": { "style": { "gap": "8px", "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "padding": { "paddingTop": "8px", "paddingRight": "8px", "paddingBottom": "8px", "paddingLeft": "8px" }, "background": { "color": "$color.tertiary.color", "opacity": "$color.tertiary.opacity", "url": "" }, "shadow": { "y": "5px", "blur": "5px", "spread": "5px", "opacity": "0c" }, "radius": { "topRight": "8px", "topLeft": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" } }, "visible": false, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "alignSelf": "end", "justifySelf": "end", "position": "fixed", "marginBottom": 0, "marginRight": "40px" } } }, "TABLET": { "structure": { "position": { "marginRight": "5vw" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "gap": "12px", "justifyContent": "end", "regular": { "padding": { "paddingTop": "12px", "paddingBottom": "12px" }, "shadow": { "y": "-5px" } } }, "visible": true, "structure": { "size": { "width": "100vw" }, "position": { "justifySelf": "center", "marginRight": "0vw" } } } }, "subtype": "normal", "design": "row", "name": "btnABM_mobile", "subitems": [ "72eaf7-3ded-35-52fc-c1ad42b837a", "8a7e870-2d70-ce5f-5187-e1ef1a655334", "8253a45-82e7-37e7-62d5-f4b1c0d481", "147a058-3308-a5b2-27d2-b57b6eda51f7", "14e14c-0bd-d012-6ade-c0eba68218", "ed0540b-01e0-efb4-42c1-87d62032f76d" ], "id": "layout5", "modifiedId": false, "events": {}, "hyperLink": { "destinityType": "_self" } }, "72eaf7-3ded-35-52fc-c1ad42b837a": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": false, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item277", "subitems": [ "485d0d6-eb6-0a47-183d-54eec62c5eef" ], "id": "item277", "type": "item", "uuid": "72eaf7-3ded-35-52fc-c1ad42b837a", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "Y(isExecutingCase()==false, isShow()==false)", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "Y", "range": [ 0, 1 ] }, "arguments": [ { "type": "BinaryExpression", "operator": "==", "left": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isExecutingCase", "range": [ 2, 17 ] }, "arguments": [], "range": [ 2, 19 ] }, "right": { "type": "Literal", "value": false, "raw": "false", "range": [ 21, 26 ] }, "range": [ 2, 26 ] }, { "type": "BinaryExpression", "operator": "==", "left": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isShow", "range": [ 28, 34 ] }, "arguments": [], "range": [ 28, 36 ] }, "right": { "type": "Literal", "value": false, "raw": "false", "range": [ 38, 43 ] }, "range": [ 28, 43 ] } ], "range": [ 0, 44 ] }, "range": [ 0, 44 ] } ], "sourceType": "script", "range": [ 0, 44 ] } }, "readOnly": false, "expressionParser": "Y(isExecutingCase()==false, isShow()==false)", "idTarget": "item277", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false } ] } } }, "485d0d6-eb6-0a47-183d-54eec62c5eef": { "modifiedName": false, "type": "button", "uuid": "485d0d6-eb6-0a47-183d-54eec62c5eef", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Cancelar" } }, "rules": {} }, "layout": { "DESKTOP": { "structure": { "size": { "minWidth": "65px", "maxWidth": "auto" }, "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "background": { "opacity": "$color.tertiary.opacity" }, "cursor": "auto" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "secondary", "name": "button8", "subitems": [], "id": "button8", "modifiedId": false, "events": { "onClick": "button8_onClick" }, "hyperLink": { "showLoading": true, "destinityType": "_self", "params": [] } }, "8a7e870-2d70-ce5f-5187-e1ef1a655334": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "opacity": "ff", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": false, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item281", "subitems": [ "1d41263-a8f3-cb74-ba77-dccf25eb6" ], "id": "item281", "type": "item", "uuid": "8a7e870-2d70-ce5f-5187-e1ef1a655334", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": { "view": [ { "formActions": [ "ALL" ], "idTarget": "item281", "new": false, "expression": { "ast": { "sourceType": "script", "range": [ 0, 25 ], "type": "Program", "body": [ { "expression": { "callee": { "name": "OR", "range": [ 0, 2 ], "type": "ExcelFunctionIdentifier" }, "range": [ 0, 25 ], "arguments": [ { "callee": { "name": "isDelete", "range": [ 3, 11 ], "type": "ExcelFunctionIdentifier" }, "range": [ 3, 13 ], "arguments": [], "type": "CallExpression" }, { "callee": { "name": "isShow", "range": [ 16, 22 ], "type": "ExcelFunctionIdentifier" }, "range": [ 16, 24 ], "arguments": [], "type": "CallExpression" } ], "type": "CallExpression" }, "range": [ 0, 25 ], "type": "ExpressionStatement" } ] }, "value": "OR(isDelete() , isShow())" }, "formName": "ORDE1698431606", "action": "view", "readOnly": false, "tpRule": "VIEW", "enabled": true, "expressionParser": "OR(isDelete() , isShow())", "order": -1 } ] } } }, "1d41263-a8f3-cb74-ba77-dccf25eb6": { "modifiedName": true, "type": "button", "uuid": "1d41263-a8f3-cb74-ba77-dccf25eb6", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Eliminar" } }, "rules": {} }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "pointer" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "eliminar2", "subitems": [], "id": "eliminar2", "modifiedId": true, "events": {}, "hyperLink": { "link": { "type": "ENTITY", "operation": "DELETE" }, "showLoading": true, "destinityType": "_self" } }, "8253a45-82e7-37e7-62d5-f4b1c0d481": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": false, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item282", "subitems": [ "85c6c12-28b0-da62-3a21-c5a8b58cd3" ], "id": "item282", "type": "item", "uuid": "8253a45-82e7-37e7-62d5-f4b1c0d481", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": { "view": [ { "formActions": [ "ALL" ], "idTarget": "item282", "new": false, "expression": { "ast": { "sourceType": "script", "range": [ 0, 10 ], "type": "Program", "body": [ { "expression": { "callee": { "name": "isCreate", "range": [ 0, 8 ], "type": "ExcelFunctionIdentifier" }, "range": [ 0, 10 ], "arguments": [], "type": "CallExpression" }, "range": [ 0, 10 ], "type": "ExpressionStatement" } ] }, "value": "isCreate()" }, "formName": "ORDE1698431606", "action": "view", "readOnly": false, "tpRule": "VIEW", "enabled": true, "expressionParser": "isCreate()", "order": -1 } ] } } }, "85c6c12-28b0-da62-3a21-c5a8b58cd3": { "modifiedName": true, "type": "button", "uuid": "85c6c12-28b0-da62-3a21-c5a8b58cd3", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Aceptar" } }, "rules": {} }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "pointer" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "crear2", "subitems": [], "id": "crear2", "modifiedId": true, "events": {}, "hyperLink": { "link": { "type": "ENTITY", "operation": "CREATE" }, "showLoading": true, "destinityType": "_self" } }, "147a058-3308-a5b2-27d2-b57b6eda51f7": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "opacity": "ff", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": false, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item283", "subitems": [ "b5c3abd-4bf-e53-a332-58b62c6c0027" ], "id": "item283", "type": "item", "uuid": "147a058-3308-a5b2-27d2-b57b6eda51f7", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "isCreate()", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isCreate", "range": [ 0, 8 ] }, "arguments": [], "range": [ 0, 10 ] }, "range": [ 0, 10 ] } ], "sourceType": "script", "range": [ 0, 10 ] } }, "readOnly": false, "expressionParser": "isCreate()", "idTarget": "item283", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false } ] } } }, "b5c3abd-4bf-e53-a332-58b62c6c0027": { "modifiedName": false, "type": "button", "uuid": "b5c3abd-4bf-e53-a332-58b62c6c0027", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Aceptar y Crear" } }, "rules": {} }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "pointer" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "button17", "subitems": [], "id": "button17", "modifiedId": false, "events": {}, "hyperLink": { "link": { "type": "ENTITY", "operation": "ACCEPT_AND_CREATE" }, "showLoading": true, "destinityType": "_self" } }, "14e14c-0bd-d012-6ade-c0eba68218": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "opacity": "ff", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": false, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item284", "subitems": [ "77d06ff-e4f-8e58-36df-cda7ad73aa1" ], "id": "item284", "type": "item", "uuid": "14e14c-0bd-d012-6ade-c0eba68218", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "isShow()", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isShow", "range": [ 0, 6 ] }, "arguments": [], "range": [ 0, 8 ] }, "range": [ 0, 8 ] } ], "sourceType": "script", "range": [ 0, 8 ] } }, "readOnly": false, "expressionParser": "isShow()", "idTarget": "item284", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false } ] } } }, "77d06ff-e4f-8e58-36df-cda7ad73aa1": { "modifiedName": true, "type": "button", "uuid": "77d06ff-e4f-8e58-36df-cda7ad73aa1", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Modificar" } }, "rules": {} }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "pointer" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "modificar2", "subitems": [], "id": "modificar2", "modifiedId": true, "events": {}, "hyperLink": { "link": { "type": "ENTITY", "operation": "MODIFY" }, "showLoading": true, "destinityType": "_self" } }, "ed0540b-01e0-efb4-42c1-87d62032f76d": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "opacity": "ff", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": false, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item285", "subitems": [ "35a833e-0fe-5746-c4fd-c083ae2002f3" ], "id": "item285", "type": "item", "uuid": "ed0540b-01e0-efb4-42c1-87d62032f76d", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "isUpdate()", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isUpdate", "range": [ 0, 8 ] }, "arguments": [], "range": [ 0, 10 ] }, "range": [ 0, 10 ] } ], "sourceType": "script", "range": [ 0, 10 ] } }, "readOnly": false, "expressionParser": "isUpdate()", "idTarget": "item285", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false } ] } } }, "35a833e-0fe-5746-c4fd-c083ae2002f3": { "modifiedName": false, "type": "button", "uuid": "35a833e-0fe-5746-c4fd-c083ae2002f3", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Aceptar" } }, "rules": {} }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "pointer" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "button19", "subitems": [], "id": "button19", "modifiedId": false, "events": {}, "hyperLink": { "link": { "type": "ENTITY", "operation": "MODIFY" }, "showLoading": true, "destinityType": "_self" } }, "8e4e1c6-1c76-233f-ecf-3cecfe0deb": { "modifiedName": true, "type": "layout", "uuid": "8e4e1c6-1c76-233f-ecf-3cecfe0deb", "props": { "rules": { "view": [ { "enabled": true, "order": -1, "formActions": [ "ALL" ], "expression": { "value": "isExecutingCase()", "ast": { "type": "Program", "body": [ { "type": "ExpressionStatement", "expression": { "type": "CallExpression", "callee": { "type": "ExcelFunctionIdentifier", "name": "isExecutingCase", "range": [ 0, 15 ] }, "arguments": [], "range": [ 0, 17 ] }, "range": [ 0, 17 ] } ], "sourceType": "script", "range": [ 0, 17 ] } }, "readOnly": false, "idTarget": "layout125", "formName": "ORDE1698431606", "action": "view", "tpRule": "VIEW", "new": false, "expressionParser": "isExecutingCase()" } ] } }, "layout": { "DESKTOP": { "style": { "gap": "8px", "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "padding": { "paddingTop": "8px", "paddingRight": "8px", "paddingBottom": "8px", "paddingLeft": "8px" }, "background": { "color": "$color.tertiary.color", "opacity": "$color.tertiary.opacity", "url": "" }, "shadow": { "y": "5px", "blur": "5px", "spread": "5px", "opacity": "0c" }, "radius": { "topRight": "8px", "topLeft": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "cursor": "auto" } }, "visible": false, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "alignSelf": "end", "justifySelf": "end", "position": "fixed", "marginBottom": 0, "marginRight": "40px", "marginTop": 0 } } }, "TABLET": { "structure": { "position": { "marginRight": "5vw" } } }, "MOBILE": { "style": { "props": { "type": "ROW" }, "gap": "12px", "justifyContent": "end", "regular": { "padding": { "paddingTop": "12px", "paddingBottom": "12px" }, "shadow": { "y": "-5px" } } }, "structure": { "size": { "width": "100vw" }, "position": { "justifySelf": "center", "marginRight": "0vw" } } } }, "subtype": "normal", "design": "row", "name": "btnProcesos_mobile", "subitems": [ "385b7bf-ba2-d8cc-46d-c4b7d858bc4", "ba0144d-e8d0-b42-f65c-8aa47f6fbf3f", "da212c-bc6d-5646-7a5-04213ad84e35", "c58d8-58ac-fa50-d05f-06f4caa8b01", "a6edd05-1a77-74c5-3d6e-2b876ab2e5f" ], "id": "layout125", "modifiedId": true, "events": {}, "hyperLink": { "destinityType": "_self" } }, "385b7bf-ba2-d8cc-46d-c4b7d858bc4": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "opacity": "ff", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": true, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item286", "subitems": [ "5a7077-da05-0ec1-faa8-f1e010faa23" ], "id": "item286", "type": "item", "uuid": "385b7bf-ba2-d8cc-46d-c4b7d858bc4", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": {} } }, "5a7077-da05-0ec1-faa8-f1e010faa23": { "modifiedName": true, "type": "button", "uuid": "5a7077-da05-0ec1-faa8-f1e010faa23", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Cancelar" } }, "rules": {} }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "cancelar2", "subitems": [], "id": "cancelar2", "modifiedId": true, "events": { "onClick": "cancelar2_onClick" }, "hyperLink": { "showLoading": true, "destinityType": "_self" } }, "ba0144d-e8d0-b42-f65c-8aa47f6fbf3f": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "opacity": "ff", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": true, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item287", "subitems": [ "4aadfd3-aa25-b2f8-cc65-23faa55f28" ], "id": "item287", "type": "item", "uuid": "ba0144d-e8d0-b42-f65c-8aa47f6fbf3f", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": {} } }, "4aadfd3-aa25-b2f8-cc65-23faa55f28": { "modifiedName": true, "type": "button", "uuid": "4aadfd3-aa25-b2f8-cc65-23faa55f28", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Corregir" } }, "rules": {} }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "corregir2", "subitems": [], "id": "corregir2", "modifiedId": true, "events": { "onClick": "corregir2_onClick" }, "hyperLink": { "showLoading": true, "destinityType": "_self" } }, "da212c-bc6d-5646-7a5-04213ad84e35": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "opacity": "ff", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": true, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item288", "subitems": [ "d85af1-210a-dac5-6cb8-a13036a7eca" ], "id": "item288", "type": "item", "uuid": "da212c-bc6d-5646-7a5-04213ad84e35", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": {} } }, "d85af1-210a-dac5-6cb8-a13036a7eca": { "modifiedName": true, "type": "button", "uuid": "d85af1-210a-dac5-6cb8-a13036a7eca", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Aprobar" } }, "rules": {} }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "aprobar2", "subitems": [], "id": "aprobar2", "modifiedId": true, "events": { "onClick": "aprobar2_onClick" }, "hyperLink": { "showLoading": true, "destinityType": "_self" } }, "c58d8-58ac-fa50-d05f-06f4caa8b01": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "opacity": "ff", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": true, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item289", "subitems": [ "d7746a3-61ef-ef27-642f-2a073ec111c3" ], "id": "item289", "type": "item", "uuid": "c58d8-58ac-fa50-d05f-06f4caa8b01", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": {} } }, "d7746a3-61ef-ef27-642f-2a073ec111c3": { "modifiedName": true, "type": "button", "uuid": "d7746a3-61ef-ef27-642f-2a073ec111c3", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Aceptar" } }, "rules": {} }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "aceptar2", "subitems": [], "id": "aceptar2", "modifiedId": true, "events": { "onClick": "aceptar2_onClick" }, "hyperLink": { "showLoading": true, "destinityType": "_self" } }, "a6edd05-1a77-74c5-3d6e-2b876ab2e5f": { "layout": { "DESKTOP": { "style": { "tooltip": { "font": { "family": "Roboto" }, "color": { "color": "#5b5a5f", "opacity": "ff" }, "background": { "color": "#ffffff", "opacity": "ff" } }, "regular": { "background": { "color": "#eceeee", "opacity": "ff", "url": "" }, "cursor": "auto" }, "props": { "type": "ROW" } }, "visible": true, "structure": { "size": { "minHeight": "unset", "maxHeight": "unset", "width": "auto", "minWidth": "unset", "height": "auto", "maxWidth": "unset" }, "position": { "marginRight": 0, "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } } } }, "subtype": "normal", "design": "item", "name": "item290", "subitems": [ "462484-fc41-83df-3cb5-73e1af537" ], "id": "item290", "type": "item", "uuid": "a6edd05-1a77-74c5-3d6e-2b876ab2e5f", "events": {}, "hyperLink": { "destinityType": "_self" }, "props": { "rules": {} } }, "462484-fc41-83df-3cb5-73e1af537": { "modifiedName": true, "type": "button", "uuid": "462484-fc41-83df-3cb5-73e1af537", "relatedAttribute": {}, "props": { "initialState": "regular", "value": { "type": "LITERAL", "props": { "value": "Enviar" } }, "rules": {} }, "layout": { "DESKTOP": { "structure": { "position": { "marginRight": 0, "alignSelf": "start", "justifySelf": "end", "marginBottom": 0, "position": "relative", "marginTop": 0, "marginLeft": 0 } }, "style": { "regular": { "cursor": "auto" }, "disabled": { "cursor": "default" } }, "visible": true } }, "subtype": "normal", "design": "primary", "name": "enviar2", "subitems": [], "id": "enviar2", "modifiedId": true, "events": { "onClick": "enviar2_onClick" }, "hyperLink": { "showLoading": true, "destinityType": "_self" } } } }, "breakpoints": {}, "prompts": [], "version": 2401801 }; var copy = null;
Tests:
strucutredClone
copy = structuredClone(object);
JSON.parse(JSON.stringify())
copy = JSON.parse(JSON.stringify(object));
Rendered benchmark preparation results:
Suite status:
<idle, ready to run>
Run tests (2)
Previous results
Fork
Test case name
Result
strucutredClone
JSON.parse(JSON.stringify())
Fastest:
N/A
Slowest:
N/A
Latest run results:
Run details:
(Test run date:
15 days ago
)
User agent:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36
Browser/OS:
Chrome 147 on Windows
View result in a separate tab
Embed
Embed Benchmark Result
Test name
Executions per second
strucutredClone
100.6 Ops/sec
JSON.parse(JSON.stringify())
177.0 Ops/sec
Related benchmarks:
Large JSON - Lodash CloneDeep vs JSON Stringify/Parse
Lodash vs JSON vs Ramda Clone vs old school ugly with moar json
Lodash vs JSON vs Ramda Clone vs fixed old school ugly with moar json
JSON.stringify vs Text (huge json dummy)
deep clean - recure function vs json.stringify
JSON.stringify vs structuredCloneasasa
JSON Parse vs StructuredClone bigger object
JSON.parse vs StructuredClone Huge Object
JSON.stringify vs structuredClone 1
Comments
Confirm delete:
Do you really want to delete benchmark?