Có lỗi xảy ra trong quá trình xử lý biểu mẫu.
Method public java.util.List com.liferay.portlet.asset.model.impl.AssetEntryImpl.getCategories() throws com.liferay.portal.kernel.exception.SystemException threw an exception when invoked on {entryId=631844, groupId=20182, companyId=20155, userId=104883, userName=Phongthongtin, createDate=2023-11-23 07:46:58.0, modifiedDate=2023-11-23 09:18:19.0, classNameId=20109, classPK=631842, classUuid=8edb0c02-5136-4efd-aa2f-f317383e5ac3, classTypeId=21475, visible=true, startDate=null, endDate=null, publishDate=2023-11-23 07:42:00.0, expirationDate=null, mimeType=text/html, title=<?xml version='1.0' encoding='UTF-8'?><root available-locales="vi_VN" default-locale="vi_VN"><Title language-id="vi_VN">Tuần lễ Triển lãm sản phẩm ngành lương thực, thực phẩm năm 2023</Title></root>, description=<?xml version='1.0' encoding='UTF-8'?><root available-locales="vi_VN" default-locale="vi_VN"><Description language-id="vi_VN">Nhằm thúc đẩy phát triển và hỗ trợ các doanh nghiệp của Thành phố và các doanh nghiệp hội viên Câu lạc bộ Doanh nghiệp Xuất khẩu Thành phố Hồ Chí Minh (VEXA) hoạt động trong lĩnh vực lương thực, thực phẩm trưng bày, giới thiệu các sản phẩm chất lượng, phục vụ mục đích tìm kiếm đối tác trong nước và xuất khẩu, Trung tâm Xúc tiến Thương mại và Đầu tư Thành phố (ITPC) phối hợp với Hội Lương thực Thực phẩm Thành phố Hồ Chí Minh (FFA) tổ chức chương trình “Tuần lễ triển lãm sản phẩm ngành lương thực, thực phẩm năm 2023”.</Description></root>, summary=<?xml version='1.0' encoding='UTF-8'?><root available-locales="vi_VN" default-locale="vi_VN"><Description language-id="vi_VN">Nhằm thúc đẩy phát triển và hỗ trợ các doanh nghiệp của Thành phố và các doanh nghiệp hội viên Câu lạc bộ Doanh nghiệp Xuất khẩu Thành phố Hồ Chí Minh (VEXA) hoạt động trong lĩnh vực lương thực, thực phẩm trưng bày, giới thiệu các sản phẩm chất lượng, phục vụ mục đích tìm kiếm đối tác trong nước và xuất khẩu, Trung tâm Xúc tiến Thương mại và Đầu tư Thành phố (ITPC) phối hợp với Hội Lương thực Thực phẩm Thành phố Hồ Chí Minh (FFA) tổ chức chương trình “Tuần lễ triển lãm sản phẩm ngành lương thực, thực phẩm năm 2023”.</Description></root>, url=, layoutUuid=5ef62033-cc4d-4ad8-b520-b9f55f38deca, height=0, width=0, priority=0.0, viewCount=0}
1<#assign useCustomTitle = themeDisplay.getPortletDisplay().getPortletSetup().getValue("portletSetupUseCustomTitle", "") /> 
2<#if useCustomTitle == "true" && themeDisplay.getPortletDisplay().getTitle()?has_content > 
3	<div class="header-title"> 
4		<h3><a href="${currentURL}">${themeDisplay.getPortletDisplay().getTitle()?upper_case}</a></h3> 
5	</div> 
6</#if> 
7 
8<table id="events_table_${themeDisplay.getPortletDisplay().getId()}" class="table table-bordered table-hover table-striped"> 
9	<thead class="table-columns"> 
10		<tr> 
11			<th class="table-header table-sortable-column">TIÊU ĐỀ</a></th> 
12			<th class="table-header table-sortable-column">THỜI GIAN</a></th> 
13			<th class="table-header table-sortable-column">LĨNH VỰC</a></th> 
14			<th class="table-header table-sortable-column">ĐỊA ĐIỂM</a></th> 
15		</tr> 
16	</thead> 
17	<tbody class="table-data"> 
18		<#if entries?has_content> 
19			<#list entries as curEntry> 
20				<#assign renderer = curEntry.getAssetRenderer() /> 
21				 
22				<#assign viewURL = assetPublisherHelper.getAssetViewURL(renderRequest, renderResponse, curEntry) /> 
23        		<#if assetLinkBehavior != "showFullContent"> 
24        			<#assign viewURL = renderer.getURLViewInContext(renderRequest, renderResponse, viewURL) /> 
25        		</#if> 
26				 
27				<#assign article = renderer.getArticle() /> 
28				<#assign document = saxReaderUtil.read(article.getContent()) /> 
29				<#assign root = document.getRootElement() /> 
30				 
31				<#assign fromDate = "" /> 
32				<#assign toDate = "" /> 
33				<#assign sector = "" /> 
34				<#assign location = "" /> 
35				 
36				<!-- Get field values for entry --> 
37				<#list root.elements() as element> 
38					<#if element.attributeValue("name") == "from_date" > 
39						<#assign fromDateData = getterUtil.getLong(element.element("dynamic-content").getData()) /> 
40						<#if (fromDateData > 0) > 
41							<#assign fromDateObj = dateUtil.newDate(fromDateData)> 
42							<#assign fromDate = dateUtil.getDate(fromDateObj, "dd/MM/yyyy", locale) /> 
43						</#if> 
44					<#elseif element.attributeValue("name") == "to_date" > 
45						<#assign toDateData = getterUtil.getLong(element.element("dynamic-content").getData()) /> 
46						<#if (toDateData > 0) > 
47							<#assign toDateObj = dateUtil.newDate(toDateData)> 
48							<#assign toDate = dateUtil.getDate(toDateObj, "dd/MM/yyyy", locale) /> 
49						</#if>					 
50					<#elseif element.attributeValue("name") == "location" || element.attributeValue("name") == "Location" > 
51						<#assign location = element.element("dynamic-content").getText() /> 
52					</#if> 
53				</#list> 
54								 
55				<#assign categories = curEntry.getCategories() />				 
56				<#if categories ? has_content> 
57				<!-- vi biet chac la co 2 cai nen lay ra truc tiep luon -->			 
58					<#if categories[1] ? has_content> 
59						<#assign sector = categories[1].getName() /> 
60					</#if>					 
61				</#if> 
62						 
63				<tr> 
64					<td class="table-cell"><a href="${viewURL}?id=${curEntry.getEntryId()}">${curEntry.getTitle(locale)}</a></td> 
65					<td class="table-cell">${fromDate}<br/>${toDate}</td> 
66					<td class="table-cell">${sector}</td> 
67					<td class="table-cell">${location}</td> 
68				</tr> 
69			</#list> 
70		<#else> 
71			<tr> 
72				<td class="table-cell" colspan="4">Không có dữ liệu.</td> 
73			</tr> 
74		</#if> 
75	</tbody> 
76</table> 
— 20 Số bài trên trang
Hiển thị từ 1 - 20 trên tổng số 37.