]> wagnertech.de Git - kivitendo-erp.git/commitdiff
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 6af70994b0ecf5428ef56c7e3957e2da3c31026d..45c59123cb732d9668171752320be2fe601416ab 100644 (file)
@@ -343,6 +343,10 @@ sub date {
   goto &transdate;
 }
 
+sub reqdate {
+  goto &duedate;
+}
+
 sub transactions {
   my ($self) = @_;
 
index b3d3500eeba060df0e000784f7b51b6a68d1d5d9..a15da4f92b8f59f14285569a80d9e120ec170e6a 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;