PriceRule: reqdate für Invoice und PurchaseInvoice
authorSven Schöling <s.schoeling@linet-services.de>
Thu, 16 Oct 2014 14:18:46 +0000 (16:18 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Thu, 18 Dec 2014 15:18:52 +0000 (16:18 +0100)
SL/DB/Invoice.pm
SL/DB/PurchaseInvoice.pm

index 6af7099..45c5912 100644 (file)
@@ -343,6 +343,10 @@ sub date {
   goto &transdate;
 }
 
+sub reqdate {
+  goto &duedate;
+}
+
 sub transactions {
   my ($self) = @_;
 
index b3d3500..a15da4f 100644 (file)
@@ -54,6 +54,10 @@ sub date {
   goto &transdate;
 }
 
+sub reqdate {
+  goto &duedate;
+}
+
 sub abbreviation {
   my $self = shift;
 
@@ -63,4 +67,5 @@ sub abbreviation {
   return t8('Invoice (one letter abbreviation)');
 
 }
+
 1;