add sales person event based on package amounts, RT#24086
authorIvan Kohler <ivan@freeside.biz>
Mon, 2 Jun 2014 18:21:15 +0000 (11:21 -0700)
committerIvan Kohler <ivan@freeside.biz>
Mon, 2 Jun 2014 18:21:15 +0000 (11:21 -0700)
FS/FS/part_event/Action/pkg_sales_credit_pkg.pm [new file with mode: 0644]

diff --git a/FS/FS/part_event/Action/pkg_sales_credit_pkg.pm b/FS/FS/part_event/Action/pkg_sales_credit_pkg.pm
new file mode 100644 (file)
index 0000000..1e3c2b3
--- /dev/null
@@ -0,0 +1,9 @@
+package FS::part_event::Action::pkg_sales_credit_pkg;
+
+use strict;
+use base qw( FS::part_event::Action::Mixin::credit_pkg
+             FS::part_event::Action::pkg_sales_credit );
+
+sub description { 'Credit the package sales person an amount based on the referred package'; }
+
+1;