summaryrefslogtreecommitdiff
path: root/httemplate/edit/elements/svc_Common.html
diff options
context:
space:
mode:
authorJonathan Prykop <jonathan@freeside.biz>2015-05-05 15:49:51 -0500
committerJonathan Prykop <jonathan@freeside.biz>2015-05-05 15:49:51 -0500
commitc422010521a7c09673a8d4d0068d3fd482dd2dbc (patch)
tree036edda657fbfb10083532319ac898471c2ade59 /httemplate/edit/elements/svc_Common.html
parentc684757e24c7c64b73a6d636b2d25997b3511053 (diff)
RT#34289: Flag service fields as mandatory
Diffstat (limited to 'httemplate/edit/elements/svc_Common.html')
-rw-r--r--httemplate/edit/elements/svc_Common.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/httemplate/edit/elements/svc_Common.html b/httemplate/edit/elements/svc_Common.html
index 97b630f76..a4e345e40 100644
--- a/httemplate/edit/elements/svc_Common.html
+++ b/httemplate/edit/elements/svc_Common.html
@@ -102,6 +102,9 @@
my $columndef = $part_svc->part_svc_column($f->{'field'});
my $flag = $columndef->columnflag;
+ $f->{'required'} = 1
+ if $columndef->required;
+
if ( $flag eq 'F' ) { #fixed
$f->{'value'} = $columndef->columnvalue;
if (length($columndef->columnvalue)) {