[IMP] point_of_sale,mrp,auction: Improvements according to checklist guidelines.
[odoo/odoo.git] / addons / mrp / report / custom_default.xsl
1 <?xml version = '1.0' encoding="utf-8"?>
2
3 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
4         <xsl:variable name="signature" select="//corporate-header/user/signature"/>
5         <xsl:variable name="title">Open ERP Report</xsl:variable>
6         <xsl:variable name="leftMargin">1cm</xsl:variable>
7         <xsl:variable name="rightMargin">1cm</xsl:variable>
8         <xsl:variable name="topMargin">1cm</xsl:variable>
9         <xsl:variable name="bottomMargin">1cm</xsl:variable>
10         <xsl:variable name="pageSize">21cm,29.7cm</xsl:variable>
11
12         <xsl:variable name="page_format">a4_letter</xsl:variable>
13
14         <xsl:template name="first_page_graphics_corporation">
15                 <!--logo-->
16                 <fill color="black"/>
17         <stroke color="black"/>
18         <setFont name="DejaVu Sans" size="8"/>
19         <drawString x="1.3cm" y="28.3cm"><xsl:value-of select="//date"/></drawString>
20         <setFont name="DejaVu Sans Bold" size="10"/>
21         <drawString x="9.8cm" y="28.3cm"><xsl:value-of select="//company"/></drawString>
22         <setFont name="DejaVu Sans" size="8"/>
23         <drawRightString x="19.7cm" y="28.3cm"><pageNumber/> /  </drawRightString>
24         <stroke color="#000000"/>
25         <lines>1.3cm 28.1cm 20cm 28.1cm</lines>
26
27         </xsl:template>
28
29
30         <xsl:template name="other_pages_graphics_corporation">
31                 <!--logo-->
32                 <fill color="black"/>
33         <stroke color="black"/>
34         <setFont name="DejaVu Sans" size="8"/>
35         <drawString x="1.3cm" y="28.3cm"><xsl:value-of select="//date"/></drawString>
36         <setFont name="DejaVu Sans Bold" size="10"/>
37         <drawString x="9.8cm" y="28.3cm"><xsl:value-of select="//company"/></drawString>
38         <setFont name="DejaVu Sans" size="8"/>
39         <drawRightString x="19.7cm" y="28.3cm"><pageNumber/> /  </drawRightString>
40         <stroke color="#000000"/>
41         <lines>1.3cm 28.1cm 20cm 28.1cm</lines>
42  </xsl:template>
43
44         <xsl:template name="first_page_frames">
45                 <xsl:if test="$page_format='a4_normal'">
46                         <frame id="main" x1="1cm" y1="2.5cm" width="21.0cm" height="29.0cm"/>
47                 </xsl:if>
48
49                 <xsl:if test="$page_format='a4_letter'">
50                         <frame id="address" x1="11cm" y1="21.5cm" width="6cm" height="4cm"/>
51                         <frame id="main" x1="1cm" y1="2.5cm" width="19.0cm" height="17.5cm"/>
52                 </xsl:if>
53         </xsl:template>
54
55         <xsl:template name="other_pages_frames">
56                 <frame id="main" x1="1cm" y1="2.5cm" width="21.0cm" height="29cm"/>
57         </xsl:template>
58
59 </xsl:stylesheet>