source: contrib/ProjectManager/templates/default/pricelist.edit.xet @ 3594

Revision 3594, 4.7 KB checked in by afernandes, 13 years ago (diff)

Ticket #1416 - Disponibilizado o módulo ProjectManager? para a comunidade

  • Property svn:executable set to *
Line 
1<?xml version="1.0"?>
2<!-- $Id: pricelist.edit.xet 20226 2006-01-11 05:15:43Z ralfbecker $ -->
3<overlay>
4        <template id="projectmanager.pricelist.edit.price" template="" lang="" group="0" version="0.5.001">
5                <grid width="100%" height="200" overflow="auto">
6                        <columns>
7                                <column width="95"/>
8                                <column/>
9                                <column/>
10                                <column/>
11                                <column disabled="@view_prices"/>
12                        </columns>
13                        <rows>
14                                <row class="th">
15                                        <description value="Price"/>
16                                        <description value="Valid since"/>
17                                        <description value="Last modified"/>
18                                        <description value="Modified by"/>
19                                        <description value="Delete"/>
20                                </row>
21                                <row class="row">
22                                        <textbox type="float" id="prices[$row][pl_price]"/>
23                                        <date id="prices[$row][pl_validsince]" statustext="you can leave the date of the first price empty"/>
24                                        <date-time id="prices[$row][pl_modified]" readonly="true"/>
25                                        <menulist>
26                                                <menupopup type="select-account" id="prices[$row][pl_modifier]" readonly="true"/>
27                                        </menulist>
28                                        <checkbox id="delete_price[$row]" statustext="Delete this price"/>
29                                </row>
30                        </rows>
31                </grid>
32        </template>
33        <template id="projectmanager.pricelist.edit.project" template="" lang="" group="0" version="0.5.001">
34                <grid width="100%" height="200" overflow="auto">
35                        <columns>
36                                <column width="95"/>
37                                <column/>
38                                <column/>
39                                <column/>
40                                <column disabled="@view_project_prices"/>
41                        </columns>
42                        <rows>
43                                <row class="row">
44                                        <description options=",,,pd_customertitle" value="Customer title"/>
45                                        <textbox size="60" maxlength="255" span="all" id="pl_customertitle" statustext="leave it empty if you dont need a different customer title"/>
46                                </row>
47                                <row class="row">
48                                        <description options=",,,pl_billable" value="Availible"/>
49                                        <menulist span="all">
50                                                <menupopup id="pl_billable" options="No"/>
51                                        </menulist>
52                                </row>
53                                <row class="th">
54                                        <description value="Price"/>
55                                        <description value="Valid since"/>
56                                        <description value="Last modified"/>
57                                        <description value="Modified by"/>
58                                        <description value="Delete"/>
59                                </row>
60                                <row class="row">
61                                        <textbox type="float" id="project_prices[$row][pl_price]"/>
62                                        <date id="project_prices[$row][pl_validsince]" statustext="you can leave the date of the first price empty"/>
63                                        <date-time id="project_prices[$row][pl_modified]" readonly="true"/>
64                                        <menulist>
65                                                <menupopup type="select-account" id="project_prices[$row][pl_modifier]" readonly="true"/>
66                                        </menulist>
67                                        <checkbox id="delete_project_price[$row]" statustext="Delete this price"/>
68                                </row>
69                        </rows>
70                </grid>
71        </template>
72        <template id="projectmanager.pricelist.edit.description" template="" lang="" group="0" version="0.5.001">
73                <grid width="100%" height="200">
74                        <columns>
75                                <column/>
76                        </columns>
77                        <rows>
78                                <row class="row">
79                                        <textbox multiline="true" data="" rows="12" cols="64" id="pl_description"/>
80                                </row>
81                        </rows>
82                </grid>
83        </template>
84        <template id="projectmanager.pricelist.edit" template="" lang="" group="0" version="0.5.001">
85                <grid width="100%">
86                        <columns>
87                                <column width="100"/>
88                                <column/>
89                        </columns>
90                        <rows>
91                                <row disabled="!@msg">
92                                        <description span="all" class="redItalic" no_lang="1" id="msg" align="center"/>
93                                        <description/>
94                                </row>
95                                <row class="th" height="28">
96                                        <description options=",,,pl_title" value="Title"/>
97                                        <textbox size="60" maxlength="255" id="pl_title" needed="1"/>
98                                </row>
99                                <row class="row">
100                                        <description options=",,,pl_unit" value="Unit"/>
101                                        <textbox size="20" maxlength="20" id="pl_unit" blur="h" span="all"/>
102                                </row>
103                                <row class="row">
104                                        <description options=",,,cat_id" value="Category"/>
105                                        <menulist>
106                                                <menupopup type="select-cat" options="None" id="cat_id"/>
107                                        </menulist>
108                                </row>
109                                <row>
110                                        <tabbox span="all">
111                                                <tabs>
112                                                        <tab label="Price" statustext="General pricelist"/>
113                                                        <tab label="Project" statustext="Project specific title, prices, ..."/>
114                                                        <tab label="Description" statustext="Description"/>
115                                                </tabs>
116                                                <tabpanels>
117                                                        <template id="projectmanager.pricelist.edit.price"/>
118                                                        <template id="projectmanager.pricelist.edit.project"/>
119                                                        <template id="projectmanager.pricelist.edit.description"/>
120                                                </tabpanels>
121                                        </tabbox>
122                                </row>
123                                <row>
124                                        <hbox span="all">
125                                                <button label="Edit" id="button[edit]" statustext="Edit this price"/>
126                                                <button id="button[save]" label="Save" statustext="Save the changes made"/>
127                                                <button id="button[apply]" label="Apply" statustext="Apply the changes"/>
128                                                <button id="button[cancel]" label="Cancel" statustext="Closes the window without saving the changes" onclick="window.close();"/>
129                                                <html id="js"/>
130                                        </hbox>
131                                </row>
132                        </rows>
133                </grid>
134        </template>
135</overlay>
Note: See TracBrowser for help on using the repository browser.