push @values, ("%$_%")x2 for @tokens;
}
+ if (($form->{create_zugferd_invoices} // '') ne '') {
+ $where .= qq| AND (ct.create_zugferd_invoices = ?)|;
+ push @values, $form->{create_zugferd_invoices};
+ }
+
# Nur Kunden finden, bei denen ich selber der Verkäufer bin
# Gilt nicht für Lieferanten
if ($cv eq 'customer' && !$main::auth->assert('customer_vendor_all_edit', 1)) {
# end of main
+sub _zugferd_settings {
+ return ([ -1, $::locale->text('Use settings from client configuration') ],
+ [ 0, $::locale->text('Do not create ZUGFeRD invoices') ],
+ [ 1, $::locale->text('Create ZUGFeRD invoices') ],
+ [ 2, $::locale->text('Create ZUGFeRD invoices in test mode') ]);
+}
+
sub search {
$main::lxdebug->enter_sub();
$form->{title} = $form->{IS_CUSTOMER} ? $locale->text('Customers') : $locale->text('Vendors');
+ $form->{ZUGFERD_SETTINGS} = [ _zugferd_settings() ];
+
setup_ct_search_action_bar();
$form->header();
push @options, $locale->text('Orphaned');
}
+ my @zugferd_settings_list = _zugferd_settings();
+ my $zugferd_filter = $form->{create_zugferd_invoices} eq '' ? undef : $zugferd_settings_list[$form->{create_zugferd_invoices} + 1]->[1];
+
push @options, $locale->text('Name') . " : $form->{name}" if $form->{name};
push @options, $locale->text('Contact') . " : $form->{contact}" if $form->{contact};
push @options, $locale->text('Number') . qq| : $form->{"$form->{db}number"}| if $form->{"$form->{db}number"};
push @options, $locale->text('Billing/shipping address (country)') . " : $form->{addr_country}" if $form->{addr_country};
push @options, $locale->text('Billing/shipping address (GLN)') . " : $form->{addr_gln}" if $form->{addr_gln};
push @options, $locale->text('Quick Search') . " : $form->{all}" if $form->{all};
+ push @options, $locale->text('ZUGFeRD settings') . " : $zugferd_filter" if $zugferd_filter;
if ($form->{business_id}) {
my $business = SL::DB::Manager::Business->find_by(id => $form->{business_id});
'creditlimit' => { 'text' => $locale->text('Credit Limit'), },
'ustid' => { 'text' => $locale->text('VAT ID'), },
'commercial_court' => { 'text' => $locale->text('Commercial court'), },
+ create_zugferd_invoices => { text => $locale->text('ZUGFeRD settings'), },
%column_defs_cvars,
);
'ZUGFeRD import' => 'ZUGFeRD Import',
'ZUGFeRD invoice' => 'ZUGFeRD-Rechnung',
'ZUGFeRD notes for each invoice' => 'ZUGFeRD-Notizen für jede Rechnung',
+ 'ZUGFeRD settings' => 'ZUGFeRD-Einstellungen',
'Zeitraum' => 'Zeitraum',
'Zero amount posting!' => 'Buchung ohne Wert',
'Zip' => 'PLZ',
[%- USE T8 %]
[%- USE L %]
-[%- USE HTML %]
+[%- USE HTML %][%- USE LxERP -%]
<h1>[% title %]</h1>
<form method="post" action="ct.pl" name="Form" id="form">
</tr>
[% END %]
+[% IF IS_CUSTOMER %]
+ <tr>
+ <th align="right" nowrap>[% LxERP.t8("ZUGFeRD settings") %]</th>
+ <td>[% L.select_tag('create_zugferd_invoices', ZUGFERD_SETTINGS, with_empty = 1) %]</td>
+ </tr>
+[% END %]
+
[% IF IS_CUSTOMER && ALL_SALESMEN.size %]
<tr>
<th align="right" nowrap>[% 'Salesman' | $T8 %]</th>