d33570fdbee552b70828b09a7ae554e3eba40d8c
[kivitendo-erp.git] / 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 %]
7 <h1>[% title | html %]</h1>
8
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 %]
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%>
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>
136 </table>
137
138 <div id="email_inputs" class="hidden"></div>
139 <div id="print_options" class="hidden">
140  [% print_options %]
141 </div>
142
143  </div>
144  [% PROCESS 'webdav/_list.html' %]
145  <div id="ui-tabs-1">
146   [%- LxERP.t8("Loading...") %]
147  </div>
148 </div>
149 </form>
150
151 <div id="print_dialog" class="hidden">
152  [%- PROCESS 'common/_print_dialog.html' %]
153 </div>