Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision d25334c6

Von Hans Peter Schlaepfer vor mehr als 6 Jahren hinzugefügt

  • ID d25334c6f26a49abac9707a54e5b987bd587d96e
  • Vorgänger e7c11f83
  • Nachfolger 3740d9a0

Aenderungen hpschlaepfer

Unterschiede anzeigen:

templates/webpages/letter/edit.html
1
[%- USE HTML %]
2
[%- USE T8 %]
3
[%- USE L %]
4
[%- USE P %]
5
[%- USE LxERP %]
6
[%- SET WEBDAV = SELF.webdav_objects %]
1
[% USE HTML %]
2
[% USE T8 %]
3
[% USE L %]
4
[% USE P %]
5
[% USE LxERP %]
6
[% SET WEBDAV = SELF.webdav_objects %]
7 7
<h1>[% title | html %]</h1>
8 8

  
9 9
<form action='controller.pl' method='POST' id='form'>
10
  <input type="hidden" name="letter.id" value="[% letter.id | html %]">
11
  <input type="hidden" name="draft.id" value="[% draft.id | html %]">
12
  <input type="hidden" name="type" value="[% type | html %]">
13
  [% L.hidden_tag('is_sales', SELF.is_sales) %]
14

  
15
  [%- INCLUDE 'common/flash.html' %]
16

  
17
  <div id="oe_tabs" class="tabwidget">
18
   <ul>
19
    <li><a href="#ui-tabs-letter">[% LxERP.t8("Letter") %]</a></li>
20
[%- IF letter.id %]
21
 [%- IF INSTANCE_CONF.get_webdav %]
22
     <li><a href="#ui-tabs-webdav">[% LxERP.t8('WebDAV') %]</a></li>
23
 [%- END %]
10
<input type="hidden" name="letter.id" value="[% letter.id | html %]">
11
<input type="hidden" name="draft.id" value="[% draft.id | html %]">
12
<input type="hidden" name="type" value="[% type | html %]">
13
[% L.hidden_tag('is_sales', SELF.is_sales) %]
14

  
15
[% INCLUDE 'common/flash.html' %]
16

  
17
<div id="oe_tabs" class="tabwidget">
18
<ul>
19
  <li><a href="#ui-tabs-letter">[% LxERP.t8("Letter") %]</a></li>
20
  [% IF letter.id %]
21
    [% IF INSTANCE_CONF.get_webdav %]
22
      <li><a href="#ui-tabs-webdav">[% LxERP.t8('WebDAV') %]</a></li>
23
    [% END %]
24 24
    <li><a href="controller.pl?action=RecordLinks/ajax_list&object_model=Letter&object_id=[% HTML.url(letter.id) %]">[% LxERP.t8("Linked Records") %]</a></li>
25
[%- END %]
26
   </ul>
27

  
28
   <div id="ui-tabs-letter">
29

  
30
<table width=100% class="test">
31
<tr>
32
 <td width=50%>
33
  <!-- upper left block -->
34
   <table width=90%>
35
[%- IF SELF.is_sales %]
36
    <tr>
37
     <th align='right'>[% 'Customer' | $T8 %]:</th>
38
     <td>[% P.customer_vendor_picker('letter.customer_id', letter.customer_id, type='customer') %]</td>
39
    </tr>
40
[%- ELSE %]
41
    <tr>
42
     <th align='right'>[% 'Vendor' | $T8 %]:</th>
43
     <td>[% P.customer_vendor_picker('letter.vendor_id', letter.vendor_id, type='vendor') %]</td>
44
    </tr>
45
[%- END %]
46
    <tr>
47
     <th align='right'>[% 'Contact Person' | $T8 %]</th>
48
     <td>[% L.select_tag('letter.cp_id', letter.customer_vendor_id ? letter.customer_vendor.contacts : [], value_key='cp_id', title_key='full_name', default=letter.cp_id) %]</td>
49
    </tr>
50
    <tr>
51
     <th align='right'>[% 'Your Reference' | $T8 %]:</th>
52
     <td><input name='letter.reference' style='width:70%' value='[% letter.reference | html %]'></td>
53
    </tr>
54
   </table>
55
  <!-- /upper left block -->
56
 </td>
57
 <td width=50%>
58
  <!-- upper right block -->
59
   <table align=center width=90%>
60
    <tr>
61
     <th align='right'>[% 'Letternumber' | $T8 %]:</th>
62
     <td><input name='letter.letternumber' style='width:70%' value='[% letter.letternumber | html %]'></td>
63
    </tr>
64
    <tr>
65
     <th align='right'>[% 'Date' | $T8 %]:</th>
66
      <td>[% L.date_tag('letter.date_as_date', letter.date_as_date, readonly=readonly) %]</td>
67
     </td>
68
    </tr>
69
   </table>
70
  <!-- /upper right block -->
71
 </td>
72
</tr>
73

  
74
<tr height=20></tr>
75

  
76
<tr>
77
 <td colspan=2 width=100%>
78
  <!-- central block -->
79
   <table width=80%>
80
    <tr>
81
     <th align=right>[% 'Subject' | $T8 %]</th>
82
     <td><textarea name='letter.subject' style='width:100%;font-weight:bold' rows=1>[% letter.subject | html %]</textarea></td>
83
    </tr>
84
     <th align=right>[% 'Greeting' | $T8 %]</th>
85
     <td><input name='letter.greeting' style='width:100%;font-weight:bold' value="[% letter.greeting | html %]"></td>
86
    </tr>
87
    <tr>
88
    <tr>
89
     <th align=right>[% 'Body' | $T8 %]</th>
90
     <td>[% L.textarea_tag('letter.body_as_restricted_html', letter.body_as_restricted_html, style='width:100%', rows=20, class="texteditor") %]</td>
91
    </tr>
92
    <tr height=10></tr>
93
     <th align=right>[% 'Internal Notes' | $T8 %]</th>
94
     <td><textarea name='letter.intnotes' style='width:100%' rows=4>[% letter.intnotes | html %]</textarea></td>
95
    </tr>
96

  
97
    <tr>
98
     <th></th>
99
     <td>
100
      <table width=90% align='center'>
101
       <tr>
102
        <td>
103
         <table width=100%>
104
          <tr>
105
           <td>[% 'Employee' | $T8 %]</td>
106
          </tr>
107
          <tr>
108
           <td>
109
            [%- L.select_tag('letter.employee_id', employees, default=letter.employee_id, title_key='safe_name', class='bold', allow_empty=1, style='width:70%') %]
110
           </td>
111
          </tr>
112
         </table>
113
        </td>
114
        <td>
115
         <table width=100%>
116
          <tr>
117
           <td>[% 'Salesman' | $T8 %]</td>
118
          </tr>
119
          <tr>
120
           <td>
121
            [%- L.select_tag('letter.salesman_id', employees, default=letter.salesman_id, title_key='safe_name', class='bold', allow_empty=1, style='width:70%') %]
122
           </td>
123
          </tr>
124
         </table>
125
        </td>
126
        <td>
127
        </td>
128
       </tr>
129
      </table>
130
     </td>
131
    </tr>
132
   </table>
133
  <!-- /central block -->
134
 </td>
135
</tr>
25
  [% END %]
26
</ul>
27

  
28
<div id="ui-tabs-letter">
29
<div class="wrapper">
30

  
31
<table class="tbl-horizontal col">
32
<colgroup> <col class="wi-small"><col class="wi-lightwide"> </colgroup> 
33
<tbody>
34
	[% IF SELF.is_sales %] 
35
	<tr>
36
		<th>[% 'Customer' | $T8 %]</th>
37
		<td>[% P.customer_vendor_picker('letter.customer_id', letter.customer_id, type='customer', class='wi-wide') %]</td>
38
	</tr>
39
	[% ELSE %] 
40
	<tr>
41
		<th>[% 'Vendor' | $T8 %]</th>
42
		<td>[% P.customer_vendor_picker('letter.vendor_id', letter.vendor_id, type='vendor', class='wi-wide') %]</td>
43
	</tr>
44
	[% END %] 
45
	<tr>
46
		<th>[% 'Contact Person' | $T8 %]</th>
47
		<td>[% L.select_tag('letter.cp_id', letter.customer_vendor_id ? letter.customer_vendor.contacts : [], value_key='cp_id', title_key='full_name', default=letter.cp_id, class='wi-wide') %]</td>
48
	</tr>
49
</tbody>
50
</table>
51

  
52

  
53
<table class="tbl-horizontal col">
54
<tbody>
55
	<tr>
56
		<th>[% 'Your Reference' | $T8 %]</th>
57
		<td><input type="text" name='letter.reference' value='[% letter.reference | html %]' class="wi-small"></td>
58
	</tr>
59
	<tr>
60
		<th>[% 'Letternumber' | $T8 %]:</th>
61
		<td><input type="text" name='letter.letternumber' value='[% letter.letternumber | html %]' class="wi-small"></td>
62
	</tr>
63
</tbody>
64
</table>
65

  
66

  
67
<table class="tbl-horizontal col">	
68
<tbody>
69
  <tr>
70
		<th>[% 'Employee' | $T8 %]</th>
71
		<td>[% L.select_tag('letter.employee_id', employees, default=letter.employee_id, title_key='safe_name', class='wi-wide', allow_empty=1,) %]</td>
72
	</tr>
73
	<tr>
74
		<th>[% 'Salesman' | $T8 %]</th>
75
		<td>[% L.select_tag('letter.salesman_id', employees, default=letter.salesman_id, title_key='safe_name', class='wi-wide', allow_empty=1,) %]</td>
76
	</tr>
77
</tbody>
136 78
</table>
137 79

  
80

  
81
</div><!-- /.wrapper -->
82
<div class="wrapper">
83

  
84
<table class="tbl-horizontal">
85
<colgroup> <col class="wi-small"><col class="wi-wider"> </colgroup> 
86
<tbody>
87
	<tr>
88
		<th>[% 'Date' | $T8 %]</th>
89
		<td>[% L.date_tag('letter.date_as_date', letter.date_as_date, readonly=readonly) %]</td>
90
		</td>
91
	</tr>
92
	<tr>
93
		<th>[% 'Subject' | $T8 %]</th>
94
		<td><textarea name='letter.subject' rows=1 class="wi-wider">[% letter.subject | html %]</textarea>
95
		</td>
96
	</tr>
97
	<tr>
98
		<th>[% 'Greeting' | $T8 %]</th>
99
		<td>
100
		<input type="text" name='letter.greeting' value="[% letter.greeting | html %]" class="wi-wider">
101
		</td>
102
	</tr>
103
	<tr>
104
		<th>[% 'Body' | $T8 %]</th>
105
		<td>[% L.textarea_tag('letter.body_as_restricted_html', letter.body_as_restricted_html, rows=20, class="texteditor wi-wider") %]</td>
106
	</tr>
107
	<tr>
108
		<th>[% 'Internal Notes' | $T8 %]</th>
109
		<td><textarea name='letter.intnotes' rows=4 class="wi-wider">[% letter.intnotes | html %]</textarea>
110
		</td>
111
	</tr>
112
</tbody>
113
</table>
114

  
115

  
116

  
117

  
118

  
138 119
<div id="email_inputs" class="hidden"></div>
139
<div id="print_options" class="hidden">
140
 [% print_options %]
141
</div>
120
<div id="print_options" class="hidden">[% print_options %]</div>
121
</div><!-- /.wrapper -->
142 122

  
143 123
 </div>
144 124
 [% PROCESS 'webdav/_list.html' %]
145 125
 <div id="ui-tabs-1">
146
  [%- LxERP.t8("Loading...") %]
126
  [% LxERP.t8("Loading...") %]
147 127
 </div>
148 128
</div>
149 129
</form>
150 130

  
151 131
<div id="print_dialog" class="hidden">
152
 [%- PROCESS 'common/_print_dialog.html' %]
132
 [% PROCESS 'common/_print_dialog.html' %]
153 133
</div>

Auch abrufbar als: Unified diff