From 82cdd3bf93ccc681baa762322e123b45eac104a7 Mon Sep 17 00:00:00 2001 From: mark Date: Mon, 22 Nov 2010 02:52:30 +0000 Subject: [PATCH] make reasonnum mandatory in event actions, RT#9684 --- httemplate/edit/process/part_event.html | 11 +++++++++++ 1 file changed, 11 insertions(+) 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', -- 2.11.0