summaryrefslogtreecommitdiff
path: root/FS/FS/part_event/Action/pkg_employee_credit.pm
blob: 64dd8b2c526c32fb2c33bb0040c0781f81d435dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package FS::part_event::Action::pkg_employee_credit;

use strict;
use base qw( FS::part_event::Action::pkg_referral_credit );

sub description { 'Credit the ordering employee a specific amount'; }

#a little false laziness w/pkg_referral_credit
sub do_action {
  my( $self, $cust_pkg, $cust_event ) = @_;

  my $cust_main = $self->cust_main($cust_pkg);

  my $employee = $cust_pkg->access_user;
  return "No customer record for employee ". $employee->username
    unless $employee->user_custnum;

  my $employee_cust_main = $employee->user_cust_main;
    #? or return "No customer record for employee ". $employee->username;

  my $amount    = $self->_calc_credit($cust_pkg);
  return '' unless $amount > 0;

  my $reasonnum = $self->option('reasonnum');

  my $error = $employee_cust_main->credit(
    $amount, 
    \$reasonnum,
    'eventnum' => $cust_event->eventnum,
    'addlinfo' => 'for customer #'. $cust_main->display_custnum.
                               ': '.$cust_main->name,
  );
  die "Error crediting customer ". $employee_cust_main->custnum.
      " for employee commission: $error"
    if $error;

}

1;