From: mark Date: Mon, 22 Nov 2010 02:52:30 +0000 (+0000) Subject: make reasonnum mandatory in event actions, RT#9684 X-Git-Tag: TORRUS_1_0_9~74 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=82cdd3bf93ccc681baa762322e123b45eac104a7 make reasonnum mandatory in event actions, RT#9684 --- diff --git a/httemplate/edit/process/part_event.html b/httemplate/edit/process/part_event.html index 428025fd1..6a8ddd1ea 100644 --- a/httemplate/edit/process/part_event.html +++ b/httemplate/edit/process/part_event.html @@ -72,6 +72,17 @@ @{ $object->option_fields_listref }; }, + 'precheck_callback' => sub { + my $cgi = shift; + my $action = $cgi->param('action') or return; + my %actionfields = map { $_ =~ /^$action\.(.*)/; $1 => $cgi->param($_) } + grep { /^$action\./ } $cgi->param; + if ( exists($actionfields{'reasonnum'}) and + length($actionfields{'reasonnum'}) == 0 ) { + return 'Reason required'; + } + return ''; + }, 'agent_virt' => 1, 'agent_null_right' => 'Edit global billing events',