add option to credit customer sales person if there is no package sales person to...
[freeside.git] / FS / FS / part_event / Action / Mixin / pkg_sales_credit.pm
1 package FS::part_event::Action::Mixin::pkg_sales_credit;
2
3 use strict;
4 use NEXT;
5
6 sub option_fields {
7   my $class = shift;
8   my %option_fields = $class->NEXT::option_fields;
9
10   $option_fields{'cust_main_sales'} = {
11     'label' => "Credit the customer sales person if there is no package sales person",
12     'type'  => 'checkbox',
13     'value' => 'Y',
14   };
15
16   %option_fields;
17 }
18
19 1;