summaryrefslogtreecommitdiff
path: root/FS/FS/part_event/Action
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2014-06-02 11:21:15 -0700
committerIvan Kohler <ivan@freeside.biz>2014-06-02 11:21:15 -0700
commit313a3715952e448b9efda129597e83df514be4ec (patch)
tree08c68f03caff8c21120cb4233419c97891228a32 /FS/FS/part_event/Action
parentdba6b1030a2694cbb69371c171e4ebb8c52db830 (diff)
add sales person event based on package amounts, RT#24086
Diffstat (limited to 'FS/FS/part_event/Action')
-rw-r--r--FS/FS/part_event/Action/pkg_sales_credit_pkg.pm9
1 files changed, 9 insertions, 0 deletions
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
index 0000000..1e3c2b3
--- /dev/null
+++ b/FS/FS/part_event/Action/pkg_sales_credit_pkg.pm
@@ -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;