| [% 'Contact Person' | $T8 %] |
- [%- INCLUDE 'generic/multibox.html'
- name = 'cp_id',
- style = 'width: 250px',
- DATA = ALL_CONTACTS,
- id_key = 'cp_id',
- label_sub = 'contact_labels',
- show_empty = 1 -%]
+ [% L.select_tag('cp_id', ALL_CONTACTS, default = cp_id, value_key = 'cp_id', title_key = 'full_name_dep', with_empty = 1, style = 'width: 250px') %]
|
[%- END %]
@@ -131,13 +137,7 @@
| [% 'Employee' | $T8 %] |
-
- [%- INCLUDE 'generic/multibox.html'
- name = 'employee_id',
- DATA = ALL_EMPLOYEES,
- id_key = 'id',
- label_sub = 'sales_employee_labels' -%]
- |
+ [% L.select_tag('employee_id', ALL_EMPLOYEES, default = employee_id, title_key = 'safe_name') %] |
[%- IF is_type_credit_note %]
@@ -147,10 +147,7 @@
| [% 'Credit Note Date' | $T8 %] |
-
-
-
- |
+ [% L.date_tag('invdate', invdate, onChange='set_duedate(this)') %] |
[%- ELSE %]
@@ -159,11 +156,11 @@
| [% 'Invoice Date' | $T8 %] |
- [% L.date_tag('invdate', invdate, onBlur='check_right_date_format(this)', cal_align='BL') %] |
+ [% L.date_tag('invdate', invdate, onChange='set_duedate(this)') %] |
| [% 'Due Date' | $T8 %] |
- [% L.date_tag('duedate', duedate, onBlur='check_right_date_format(this)', cal_align='BL') %] |
+ [% L.date_tag('duedate', duedate) %] |
[%- END %]
@@ -173,11 +170,11 @@
| [% 'Order Date' | $T8 %] |
- [% L.date_tag('orddate', orddate, onBlur='check_right_date_format(this)', cal_align='BL') %] |
+ [% L.date_tag('orddate', orddate) %] |
| [% 'Quotation Date' | $T8 %] |
- [% L.date_tag('quodate', quodate, onBlur='check_right_date_format(this)', cal_align='BL') %] |
+ [% L.date_tag('quodate', quodate) %] |
| [% 'Project Number' | $T8 %] |
@@ -210,11 +207,20 @@
[% IF creditwarning != '' %]
alert('[% 'Credit Limit exceeded!!!' | $T8 %]');
[% ELSE %]
- focus();
[% END %]
- setupDateFormat('[% dateformat %]', '[% 'Falsches Datumsformat!' | $T8 %]');
- setupPoints('[% numberformat %]', '[% 'wrongformat' | $T8 %]');
});
+ function set_duedate() {
+ $.ajax({
+ url: 'ir.pl?action=get_duedate_vendor',
+ data: {
+ invdate: $('#invdate').val(),
+ vendor_id: $('input[name="vendor_id"]').val(),
+ old_duedate: $('#duedate').val(),
+ },
+ dataType: 'text',
+ success: function (data) { $('#duedate').val(data); }
+ })
+ }
//-->