Rechnungen nach Fälligkeitsdatum sortieren
authorSven Schöling <s.schoeling@linet-services.de>
Thu, 17 Sep 2015 12:22:48 +0000 (14:22 +0200)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 21 Sep 2015 11:04:55 +0000 (13:04 +0200)
SL/AR.pm
bin/mozilla/ar.pl
templates/webpages/ar/search.html

index 3ee8e0d..2a80dc0 100644 (file)
--- a/SL/AR.pm
+++ b/SL/AR.pm
@@ -549,6 +549,14 @@ sub ar_transactions {
     $where .= " AND a.transdate <= ?";
     push(@values, $form->{transdateto});
   }
+  if ($form->{duedatefrom}) {
+    $where .= " AND a.duedate >= ?";
+    push(@values, $form->{duedatefrom});
+  }
+  if ($form->{duedateto}) {
+    $where .= " AND a.duedate <= ?";
+    push(@values, $form->{duedateto});
+  }
   if ($form->{open} || $form->{closed}) {
     unless ($form->{open} && $form->{closed}) {
       $where .= " AND a.amount <> a.paid" if ($form->{open});
index 7bcbe4c..88ace44 100644 (file)
@@ -922,7 +922,7 @@ sub ar_transactions {
   push @columns, map { "cvar_$_->{name}" } @ct_includeable_custom_variables;
 
   my @hidden_variables = map { "l_${_}" } @columns;
-  push @hidden_variables, "l_subtotal", qw(open closed customer invnumber ordnumber cusordnumber transaction_description notes project_id transdatefrom transdateto employee_id salesman_id business_id);
+  push @hidden_variables, "l_subtotal", qw(open closed customer invnumber ordnumber cusordnumber transaction_description notes project_id transdatefrom transdateto duedatefrom duedateto employee_id salesman_id business_id);
   push @hidden_variables, map { "cvar_$_->{name}" } @ct_searchable_custom_variables;
 
   $href = build_std_url('action=ar_transactions', grep { $form->{$_} } @hidden_variables);
index b43630f..5c56e62 100644 (file)
      </tr>
     [% END %]
      <tr>
-      <th align=right nowrap>[% 'From' | $T8 %]</th>
+      <th align=right nowrap>[% 'Invoice Date' | $T8 %]</th>
       <td>
+       [% 'From' | $T8 %]
        [% L.date_tag('transdatefrom') %]
       </td>
      <th align=right>[% 'Bis' | $T8 %]</th>
       [% L.date_tag('transdateto') %]
      </td>
     </tr>
+     <tr>
+      <th align=right nowrap>[% 'Due Date' | $T8 %]</th>
+      <td>
+       [% 'From' | $T8 %]
+       [% L.date_tag('duedatefrom') %]
+      </td>
+     <th align=right>[% 'Bis' | $T8 %]</th>
+     <td>
+      [% L.date_tag('duedateto') %]
+     </td>
+    </tr>
 
 [%- IF CT_CUSTOM_VARIABLES.size %]
     <tr>