Beim Editieren von Customer/Vendor Name in title
[kivitendo-erp.git] / templates / webpages / customer_vendor / form.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 [%- USE LxERP %]
4 [%- USE L %]
5 <h1>[% FORM.title %] [% IF SELF.cv.id %] - [% HTML.escape(SELF.cv.displayable_name) %][% END %]</h1>
6
7 [% L.hidden_tag('_cti_enabled', !!LXCONFIG.cti.dial_command) %]
8
9 [% cv_cvars = SELF.cv.cvars_by_config %]
10
11 <form method="post" action="controller.pl">
12
13   [% L.hidden_tag('db', FORM.db) %]
14   [% L.hidden_tag('callback', FORM.callback) %]
15   [% L.hidden_tag('cv.id', SELF.cv.id) %]
16
17   [%- INCLUDE 'common/flash.html' %]
18
19   <div class="tabwidget" id="customer_vendor_tabs">
20     <ul>
21       <li><a href="#billing">[% 'Billing Address' | $T8 %]</a></li>
22       <li><a href="#bank">[% 'Bank account' | $T8 %]</a></li>
23       <li><a href="#shipto">[% 'Shipping Address' | $T8 %]</a></li>
24       <li><a href="#contacts">[% 'Contacts' | $T8 %]</a></li>
25       [% IF ( SELF.cv.id && AUTH.assert('sales_all_edit', 1) ) %]
26         <li><a href="#deliveries">[% 'Supplies' | $T8 %]</a></li>
27       [% END %]
28       <li><a href="#vcnotes">[% 'Notes' | $T8 %]</a></li>
29
30       [% IF ( cv_cvars.size ) %]
31         <li><a href="#custom_variables">[% 'Custom Variables' | $T8 %]</a></li>
32       [% END %]
33       [% IF SELF.cv.id %]
34         <li><a href="#price_rules">[% 'Price Rules' | $T8 %]</a></li>
35       [% END %]
36     </ul>
37
38     [% PROCESS "customer_vendor/tabs/billing.html" %]
39     [% PROCESS "customer_vendor/tabs/bank.html" %]
40     [% PROCESS "customer_vendor/tabs/shipto.html" %]
41     [% PROCESS "customer_vendor/tabs/contacts.html" %]
42     [% IF ( SELF.cv.id && AUTH.assert('sales_all_edit', 1) ) %]
43       [% PROCESS "customer_vendor/tabs/deliveries.html" %]
44     [% END %]
45     [% PROCESS "customer_vendor/tabs/vcnotes.html" %]
46     [% IF ( cv_cvars.size ) %]
47       [% PROCESS "customer_vendor/tabs/custom_variables.html" %]
48     [% END %]
49     [% IF SELF.cv.id %]
50       [% PROCESS "customer_vendor/tabs/price_rules.html" %]
51     [% END %]
52   </div>
53
54   <br>
55
56   [% L.hidden_tag('action', 'CustomerVendor/dispatch') %]
57
58   [% L.submit_tag('action_save', LxERP.t8('Save'), onclick = "return check_taxzone_and_ustid()", accesskey = "s") %]
59   [% L.submit_tag('action_save_and_close', LxERP.t8('Save and Close'), onclick = "return check_taxzone_and_ustid()") %]
60
61   [%- IF ( SELF.is_vendor ) %]
62     [% L.submit_tag('action_save_and_ap_transaction', LxERP.t8('Save and AP Transaction'), onclick = "return check_taxzone_and_ustid()") %]
63   [%- ELSE %]
64     [% L.submit_tag('action_save_and_ar_transaction', LxERP.t8('Save and AR Transaction'), onclick = "return check_taxzone_and_ustid()") %]
65   [%- END %]
66
67   [% L.submit_tag('action_save_and_invoice', LxERP.t8('Save and Invoice'), onclick = "return check_taxzone_and_ustid()") %]
68   [% L.submit_tag('action_save_and_order', LxERP.t8('Save and Order'), onclick = "return check_taxzone_and_ustid()") %]
69
70   [%- IF ( SELF.is_vendor ) %]
71     [% L.submit_tag('action_save_and_rfq', LxERP.t8('Save and RFQ'), onclick = "return check_taxzone_and_ustid()") %]
72   [%- ELSE %]
73     [% L.submit_tag('action_save_and_quotation', LxERP.t8('Save and Quotation'), onclick = "return check_taxzone_and_ustid()") %]
74   [%- END %]
75
76   [%- IF ( SELF.cv.id && SELF.is_orphaned ) %]
77     [% L.submit_tag('action_delete', LxERP.t8('Delete'), confirm => LxERP.t8('Do you really want to delete this object?')) %]
78   [%- END %]
79
80   [%- IF ( SELF.cv.id ) %]
81     <input type="button" class="submit" onclick="kivi.CustomerVendor.showHistoryWindow([% SELF.cv.id %]);" name="history" id="history" value="[% 'history' | $T8 %]">
82   [%- END %]
83
84 </form>
85
86 <script type="text/javascript">
87 <!--
88   function submitInputButton(button)
89   {
90     var hidden = document.createElement("input");
91     hidden.setAttribute("type", "hidden");
92
93     if ( button.hasAttribute("name") )
94       hidden.setAttribute("name", button.getAttribute("name"));
95
96     if ( button.hasAttribute("value") )
97       hidden.setAttribute("value", button.getAttribute("value"));
98
99
100     button.form.appendChild(hidden);
101
102     button.disabled = true;
103
104     button.form.submit();
105   }
106
107   function check_taxzone_and_ustid() {
108     if ( ($('#cv_taxzone_id').val() == '1') && ($('#cv_ustid').val() == '') ) {
109       alert('[% LxERP.t8('Please enter the sales tax identification number.') %]');
110       return false;
111     }
112     return true;
113   }
114 -->
115 </script>