4699 Resultados disponibles

Filtrar:

Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing:
==> esResponse.getAggregationResult("organismos")  [in template "34352066712900#33336#362204" at line 26, column 33]

----
Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #assign aggResult = esResponse.getAgg...  [in template "34352066712900#33336#362204" at line 26, column 1]
----
1<#-- Variables --> 
2<#assign specificationName = 'ics' /> 
3<#assign paramNameSpecificationName  = cpSpecificationOptionsSearchFacetDisplayContext.getParameterName() /> 
4<#assign isDebug = false /> 
5<#assign showAllSpecificationsName = false /> 
6<#assign staticHost = getCXConfig("ecom-static-files") /> 
7 
8<#-- ========================= --> 
9<#-- Functions freemaker       --> 
10<#-- ========================= --> 
11<#function getCXConfig clientExtensionName field="webApiUrl"> 
12    <#if !clientExtensionName?has_content><#return "" /></#if> 
13    <#local encoded = urlCodec.encodeURL(clientExtensionName) /> 
14    <#local items   = restClient.get("/c/customconfigs/?fields=clientExtensionConfig&filter=clientExtensionName eq '" + encoded + "'").items![] /> 
15    <#return items?has_content?then(items[0].clientExtensionConfig?eval[field]!"", "") /> 
16</#function> 
17 
18 
19<#if paramNameSpecificationName == specificationName || showAllSpecificationsName> 
20 
21	<#-- ------------------------------------- --> 
22 
23<#assign sharedSearchResponse = renderRequest.getAttribute("LIFERAY_SHARED_PortletSharedSearchResponse") /> 
24<#assign searchResponse       = sharedSearchResponse.get() /> 
25<#assign esResponse           = searchResponse.getSearchResponse() /> 
26<#assign aggResult            = esResponse.getAggregationResult("organismos") /> 
27<#list aggResult.getBuckets() as bucket> 
28    <p>key: ${bucket.getKey()} - count: ${bucket.getDocCount()}</p> 
29</#list> 
30		 
31	<#-- ------------------------------------- --> 
32	 
33	 
34    <#-- Variables --> 
35    <#assign facetId    = "facet-" + paramNameSpecificationName + "-" + renderResponse.getNamespace() /> 
36    <#assign facetClass = "facet-" + paramNameSpecificationName + "-combo-search-wrapper" /> 
37 
38    <#-- ========================= --> 
39    <#-- TOM SELECT framework      --> 
40    <#-- ========================= --> 
41    <@liferay_util["html-top"] outputKey="tom-select"> 
42        <link href="${staticHost}/scripts/vendor/tom-select/tom-select.css" rel="stylesheet"> 
43        <script src="${staticHost}/scripts/vendor/tom-select/tom-select.complete.min.js"></script> 
44    </@> 
45 
46    <#-- ========================= --> 
47    <#-- CSS                       --> 
48    <#-- ========================= --> 
49    <style> 
50        /* =========================== 
51           Variables de fuente compartidas 
52           =========================== */ 
53        #${facetId} { 
54            --facet-font-family: Inter; 
55            --facet-font-size: 14px; 
56            --facet-font-weight: 400; 
57            --facet-line-height: 18px; 
58            --facet-letter-spacing: 0.5px; 
59            --facet-color: #66757f; 
60
61 
62        /* =========================== 
63           Select original — oculto desde el inicio 
64           =========================== */ 
65        #${facetId}-select { 
66            appearance: none; 
67            -webkit-appearance: none; 
68            visibility: hidden; 
69            position: absolute; 
70
71 
72        /* =========================== 
73           TomSelect — wrapper oculto hasta inicializar 
74           =========================== */ 
75        #${facetId} .ts-wrapper { 
76            width: 100%; 
77            margin-bottom: 16px; 
78            opacity: 0; 
79            transition: opacity 0.1s ease; 
80
81 
82        #${facetId} .ts-wrapper .ts-control { 
83            padding: 15.5px 16px; 
84            font-family: var(--facet-font-family); 
85            font-size: var(--facet-font-size); 
86            font-weight: var(--facet-font-weight); 
87            line-height: var(--facet-line-height); 
88            letter-spacing: var(--facet-letter-spacing); 
89            color: var(--facet-color); 
90            text-align: left; 
91            height: 55px; 
92            width: 100%; 
93            border-radius: 4px; 
94            border: none; 
95            background-color: #F5F5F5; 
96            background-image: url(/documents/d/global/ico-chevron-down-2); 
97            background-repeat: no-repeat; 
98            background-position: right 1rem center; 
99            background-size: 18px 10px; 
100            box-shadow: none; 
101            cursor: pointer; 
102            box-sizing: border-box; 
103
104 
105        #${facetId} .ts-wrapper .ts-control:focus, 
106        #${facetId} .ts-wrapper .ts-control:focus-visible { 
107            background-image: url(/documents/d/global/ico-chevron-down-2); 
108            background-position: right 1rem center; 
109            background-size: 18px 10px; 
110            outline: none; 
111            box-shadow: none; 
112
113 
114        #${facetId} .ts-wrapper .ts-control .item { 
115            padding-right: 0.75rem; 
116            overflow: hidden; 
117            text-overflow: ellipsis; 
118            max-width: calc(100% - 0.75rem); 
119
120 
121        /* Ocultar flecha nativa de TomSelect */ 
122        #${facetId} .ts-wrapper.single .ts-control::after { 
123            display: none; 
124
125 
126        /* Input de búsqueda del dropdown */ 
127        #${facetId} .ts-dropdown .dropdown-input-wrap .dropdown-input { 
128            font-family: var(--facet-font-family); 
129            font-size: var(--facet-font-size); 
130            font-weight: var(--facet-font-weight); 
131            line-height: var(--facet-line-height); 
132            letter-spacing: var(--facet-letter-spacing); 
133            color: var(--facet-color); 
134            padding: 8px 16px; 
135            border: none; 
136            border-bottom: 1px solid #d9d9d9; 
137            background-color: #fff; 
138            width: 100%; 
139            box-sizing: border-box; 
140
141 
142        #${facetId} .ts-dropdown .dropdown-input-wrap .dropdown-input:focus { 
143            outline: none; 
144            box-shadow: none; 
145
146 
147        /* Opciones del dropdown */ 
148        #${facetId} .ts-dropdown .ts-dropdown-content .option { 
149            font-family: var(--facet-font-family); 
150            font-size: var(--facet-font-size); 
151            font-weight: var(--facet-font-weight); 
152            line-height: var(--facet-line-height); 
153            letter-spacing: var(--facet-letter-spacing); 
154            color: var(--facet-color); 
155            padding: 8px 16px; 
156
157 
158        #${facetId} .ts-dropdown .ts-dropdown-content .option:hover, 
159        #${facetId} .ts-dropdown .ts-dropdown-content .option.active { 
160            background-color: #6a9bd3; 
161            color: #fff; 
162
163    </style> 
164 
165    <div class="checks-container ${facetClass}" id="${facetId}"> 
166        <div class="d-flex flex-column w-100"> 
167            <label class="panel-title mb-2" for="${facetId}-select"> 
168                ${languageUtil.get(locale, "norma." + paramNameSpecificationName)} 
169                <#if isDebug> 
170                    <p style="font-size:11px;color:#999;font-weight:normal;"> 
171                        (total options: ${entries?size}) 
172                    </p> 
173                    <p style="font-size:11px;color:#999;font-weight:normal;"> 
174                        (facetId: ${facetId}) 
175                    </p> 
176                </#if> 
177            </label> 
178 
179            <#-- ========================= --> 
180            <#-- SELECT UI                 --> 
181            <#-- ========================= --> 
182            <select id="${facetId}-select" data-parameter-name="${paramNameSpecificationName}"> 
183                <option value="">${languageUtil.get(locale, "search.cualquiera")}</option> 
184                <#list entries?sort_by("displayName") as entry> 
185                    <option value="${htmlUtil.escape(entry.getDisplayName())}" 
186                        <#if entry.isSelected()>selected</#if>> 
187                        ${htmlUtil.escape(entry.getDisplayName())} (${entry.getFrequency()}) 
188                    </option> 
189                </#list> 
190            </select> 
191        </div> 
192    </div> 
193 
194    <#-- ========================= --> 
195    <#-- SCRIPT                    --> 
196    <#-- ========================= --> 
197    <script> 
198        (function () { 
199            var FACET_ID   = '${facetId}'; 
200            var PARAM_NAME = '${paramNameSpecificationName}'; 
201 
202            function applyUrlFilter(value) { 
203                var url = new URL(window.location.href); 
204                if (value) { 
205                    url.searchParams.set(PARAM_NAME, value); 
206                } else { 
207                    url.searchParams.delete(PARAM_NAME); 
208
209                window.location.href = url.toString(); 
210
211 
212            function initFacet() { 
213                var select = document.getElementById(FACET_ID + '-select'); 
214                if (!select) return; 
215 
216                if (select.tomselect) select.tomselect.destroy(); 
217                if (select.dataset.bound === 'true') return; 
218                select.dataset.bound = 'true'; 
219 
220                new TomSelect(select, { 
221                    allowEmptyOption: true, 
222                    maxItems: 1, 
223                    create: false, 
224                    render: { 
225                        no_results: function(data, escape) { 
226                            return '<div class="no-results">${languageUtil.get(locale, "occurrence-not-found")}</div>'; 
227
228                    }, 
229                    plugins: { 
230                        dropdown_input: {} 
231                    }, 
232                    onDelete: function(value) { 
233                        this.isDelete = true; 
234                    }, 
235                    onChange: function(value) { 
236                        if (value) { 
237                            this.lastValidValue = value; 
238                            applyUrlFilter(value); 
239                            return; 
240
241                        this.lastValidValue = ''; 
242                        applyUrlFilter(''); 
243                    }, 
244                    onInitialize: function() { 
245                        this.lastValidValue = this.getValue() || ''; 
246                        this.isDelete = false; 
247                        var wrapper = document.querySelector('#' + FACET_ID + ' .ts-wrapper'); 
248                        if (wrapper) wrapper.style.opacity = '1'; 
249
250                }); 
251
252 
253            if (document.readyState === 'loading') { 
254                document.addEventListener('DOMContentLoaded', initFacet); 
255            } else { 
256                initFacet(); 
257
258        })(); 
259    </script> 
260</#if> 
(3740)
(959)
(0)
SAE

SAE AMS5743L

En Vigor
2025-09-25
Steel, Corrosion- and Heat-Resistant, Bars, Forgings and Forging Stock, 15.5Cr - 4.5Ni - 2.9Mo - 0.10N (AM 355®), Consumable Electrode Remelted, Solution Heat Treated, Subzero Cooled, Equalized, and Over-Tempered
SAE

SAE AS4751/3A

En Vigor
2025-10-21
FLANGE END, SOLID, WIDE DESIGN STANDARD
SAE

SAE AMS7908F

En Vigor
2025-07-16
Beryllium Near-Net Preforms, Standard Grade, Hot Isostatic Pressed
SAE

SAE AMS5892D

En Vigor
2025-06-30
Alloy, Sheet and Strip 42Fe - 37.5Ni - 14Co - 4.8Cb (Nb) - 1.6Ti (Alloy 909) Solution Heat Treated, Precipitation Hardenable Multiple Melted, High Temperature, Low Expansion
SAE

SAE AMS4461C

En Vigor
2025-10-16
Aluminum Alloy, Sheet and Plate, Alclad, 4.4Cu - 1.5Mg - 0.60Mn (Alclad 2024-O, Sheet and Plate), Annealed; or when specified, “As Fabricated” (2024-F)
SAE

SAE AS33704A

En Vigor
2025-06-30
INSERT ARRANGEMENTS, ELECTRICAL CONNECTOR, SHELL SIZE 61 (FOR AS81703 CONNECTORS)
SAE

SAE AIR1262A

En Vigor
2025-10-21
Aircraft Fire Protection for Helicopter Gas Turbine Powerplant and Related Systems Installations
SAE

SAE J2488_201303

En Vigor
2013-03-11
SAE No.2 Friction Test Machine 6000 r/min Stepped Power Test
SAE

SAE J1526_202205

En Vigor
2022-05-24
SAE Fuel Consumption Test Procedure (Engineering Method)
SAE

SAE ARP4148C

En Vigor
2025-10-10
Gas Turbine Engine Real Time Performance Model Presentation
SAE

SAE AS22520/23C

En Vigor
2025-05-27
CRIMP TOOLS, TYPE 1, TERMINAL, HAND, OR POWER ACTUATED, WIRE TERMINATION, PNEUMATIC TOOL FOR WIRE BARREL SIZES 8 THROUGH 0000
SAE

SAE AIR1076

En Vigor
1989-05-01
AIRCRAFT FIRE PROTECTION FOR RECIPROCATING AND GAS TURBINE ENGINE INSTALLATIONS
SAE

SAE J2487_201905

En Vigor
2019-05-23
SAE No. 2 Friction Test Machine 3600 rpm Stepped Power Test
SAE

SAE AS392D

En Vigor
2025-09-18
Altimeter, Pressure Actuated Sensitive Type
SAE

SAE AMS3814/15

En Vigor
1993-10-01
CORD, CORELESS, PARA-ARAMID Intermediate Modulus 300 lb (1335 N), 1500 ft per lb (1005 m/Kg)
SAE

SAE AMS3848/2B

En Vigor
1995-10-01
Cloth, Nylon, Metallized, Water Repellent Treated
SAE

SAE J1850_202212

En Vigor
2022-12-20
Class B Data Communications Network Interface
SAE

SAE AS4658A

En Vigor
2025-09-27
FITTING END, EXTERNAL THREAD, SHORT FLARELESS, DESIGN STANDARD
SAE

SAE AS3503A

En Vigor
2025-08-22
INSERT, SCREW THREAD, SELF LOCKING PLASTIC LOCKING DEVICE, SOLID FILM LUBRICATED, SELF-BROACHING KEYS, OVERSIZE UNS S66286
SAE

SAE J139_202508

En Vigor
2025-08-15
Ignition System Nomenclature and Terminology
SAE

SAE J513_202507

En Vigor
2025-07-01
Refrigeration Tube Fittings - General Specifications
SAE

SAE AS9554C

En Vigor
2011-10-28
Screw, Machine - Double Hexagon Extended Washer Head, Corrosion and Heat Resistant Steel, UNS S66286, 130 ksi min, .1380-40 UNJF-3A
SAE

SAE AS85049/87E

En Vigor
2019-08-07
CONNECTOR ACCESSORIES, ELECTRICAL, BACKSHELL, 90°, SELF-LOCKING, SHIELD BAND TERMINATION (RFI/EMI), SHRINK SLEEVE ACCOMMODATION, CATEGORY 3B (FOR MIL-DTL-38999 SERIES I AND II CONNECTORS)
SAE

SAE AS21151G

En Vigor
2025-08-11
BEARING, BALL, ROD END, DOUBLE ROW, PRECISION, EXTERNAL THREAD, SELF-ALIGNING, AIRFRAME, TYPE II, -65 TO 300 °F
SAE

SAE J512_202511

En Vigor
2025-11-03
Automotive Tube Fittings
SAE

SAE AMS2244D

En Vigor
2025-09-17
Tolerances Titanium and Titanium Alloy Tubing
SAE

SAE J2012DA_202510

En Vigor
2025-10-24
Digital Annex of Diagnostic Trouble Code Definitions and Failure Type Byte Definitions
SAE

SAE J1865_202508

En Vigor
2025-08-22
Dimensional Compatibility for Commercial Vehicles Fitment of Complete Wheels in Drum Brake Applications - Truck and Bus
SAE

SAE AS81582D

En Vigor
2025-10-23
Connectors, Electrical, Bayonet Coupling, Environment Resisting, Umbilical, General Specification For
SAE

SAE ARP1962C

En Vigor
2025-08-22
Training and Approval of Thermal Processing Personnel
SAE

SAE AS4751A

En Vigor
2025-10-21
Coupling Assembly, V-Band Sheet Metal Wide Flange, Pneumatic Tube
SAE

SAE AS21232B

En Vigor
2025-10-21
BEARING, PLAIN, SELF-ALIGNING, GROOVE OUTER RING, PTFE LINED, NARROW
SAE

SAE J2570_202506

En Vigor
2025-06-30
Performance Specifications for Anthropomorphic Test Device Transducers
SAE

SAE AIR5784A

En Vigor
2025-10-15
Literature on Gas Turbine Engine Lubricant Composition and Degradation Relevant to Cabin Air Quality
SAE

SAE AS4396C

En Vigor
2025-06-17
FITTING END, BULKHEAD, FLARED, TUBE CONNECTION, DESIGN STANDARD
SAE

SAE AIR1076A

En Vigor
2025-10-21
Aircraft Fire Protection for Reciprocating and Gas Turbine Engine Installations
SAE

SAE J902_202506

En Vigor
2025-06-17
Passenger Vehicle Windshield Demisting and Defrosting Systems
SAE

SAE J1321_201202

En Vigor
2012-02-06
Fuel Consumption Test Procedure - Type II
SAE

SAE AMS3052B

En Vigor
2025-06-30
Grease, Aircraft, General Purpose, Low Temperature Range, Lithium Thickened
SAE

SAE J1704_202510

En Vigor
2025-10-23
Motor Vehicle Brake Fluid Based Upon Glycols, Glycol Ethers, and the Corresponding Borates