Author: jacopoc
Date: Sun Oct 15 10:05:11 2006 New Revision: 464227 URL: http://svn.apache.org/viewvc?view=rev&rev=464227 Log: XSL-FO quote header template is now implemented by fo:list instead of fo:table. Modified: incubator/ofbiz/trunk/applications/order/webapp/ordermgr/quote/quoteReportHeaderInfo.fo.ftl Modified: incubator/ofbiz/trunk/applications/order/webapp/ordermgr/quote/quoteReportHeaderInfo.fo.ftl URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/order/webapp/ordermgr/quote/quoteReportHeaderInfo.fo.ftl?view=diff&rev=464227&r1=464226&r2=464227 ============================================================================== --- incubator/ofbiz/trunk/applications/order/webapp/ordermgr/quote/quoteReportHeaderInfo.fo.ftl (original) +++ incubator/ofbiz/trunk/applications/order/webapp/ordermgr/quote/quoteReportHeaderInfo.fo.ftl Sun Oct 15 10:05:11 2006 @@ -15,25 +15,37 @@ under the License. --> - <fo:table border-spacing="3pt"> - <fo:table-column column-width="1.5in"/> - <fo:table-column column-width="3.75in"/> - <fo:table-body> - <fo:table-row> - <fo:table-cell><fo:block font-weight="bold">${uiLabelMap.OrderQuoteType}</fo:block></fo:table-cell> - <fo:table-cell><fo:block font-weight="bold">${(quoteType.get("description",locale))?default(quote.quoteTypeId?if_exists)}</fo:block></fo:table-cell> - </fo:table-row> - <fo:table-row> - <fo:table-cell><fo:block>${uiLabelMap.OrderOrderQuoteIssueDate}</fo:block></fo:table-cell> - <fo:table-cell><fo:block>${(quote.issueDate.toString())?if_exists}</fo:block></fo:table-cell> - </fo:table-row> - <fo:table-row> - <fo:table-cell><fo:block>${uiLabelMap.OrderOrderQuoteId}</fo:block></fo:table-cell> - <fo:table-cell><fo:block>${quote.quoteId}</fo:block></fo:table-cell> - </fo:table-row> - <fo:table-row> - <fo:table-cell><fo:block>${uiLabelMap.CommonStatus}</fo:block></fo:table-cell> - <fo:table-cell><fo:block font-weight="bold">${(statusItem.get("description", locale))?default(quote.statusId?if_exists)}</fo:block></fo:table-cell> - </fo:table-row> - </fo:table-body> - </fo:table> +<fo:list-block provisional-distance-between-starts="35mm" font-size="10pt"> + <fo:list-item> + <fo:list-item-label> + <fo:block font-weight="bold">${uiLabelMap.OrderQuoteType}</fo:block> + </fo:list-item-label> + <fo:list-item-body start-indent="body-start()"> + <fo:block font-weight="bold">${(quoteType.get("description",locale))?default(quote.quoteTypeId?if_exists)}</fo:block> + </fo:list-item-body> + </fo:list-item> + <fo:list-item> + <fo:list-item-label> + <fo:block>${uiLabelMap.OrderOrderQuoteIssueDate}</fo:block> + </fo:list-item-label> + <fo:list-item-body start-indent="body-start()"> + <fo:block>${(quote.issueDate.toString())?if_exists}</fo:block> + </fo:list-item-body> + </fo:list-item> + <fo:list-item> + <fo:list-item-label> + <fo:block>${uiLabelMap.OrderOrderQuoteId}</fo:block> + </fo:list-item-label> + <fo:list-item-body start-indent="body-start()"> + <fo:block>${quote.quoteId}</fo:block> + </fo:list-item-body> + </fo:list-item> + <fo:list-item> + <fo:list-item-label> + <fo:block>${uiLabelMap.CommonStatus}</fo:block> + </fo:list-item-label> + <fo:list-item-body start-indent="body-start()"> + <fo:block font-weight="bold">${(statusItem.get("description", locale))?default(quote.statusId?if_exists)}</fo:block> + </fo:list-item-body> + </fo:list-item> +</fo:list-block> |
Free forum by Nabble | Edit this page |