diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-02-02 22:02:53 -0600 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-02-11 13:38:25 -0600 |
commit | 4778dab8ae1c8cb6e6c784c9da1e475072479516 (patch) | |
tree | 706b2d3ca2de13c195a3d1566beb3520631cf33a /FS | |
parent | 56fabf7ddfea7308bb22e43b79df04dd46a1620f (diff) |
RT#27425: Fixed/blank svc_phone domain
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/part_svc.pm | 2 | ||||
-rw-r--r-- | FS/FS/svc_phone.pm | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/FS/FS/part_svc.pm b/FS/FS/part_svc.pm index 0bef7bcf5..c2003c4aa 100644 --- a/FS/FS/part_svc.pm +++ b/FS/FS/part_svc.pm @@ -698,6 +698,8 @@ some components specified by "select-.*.html", and a bunch more... =item select_label - Used with select_table, this is the field name of labels +=item select_allow_empty - Used with select_table, adds an empty option + =back =cut diff --git a/FS/FS/svc_phone.pm b/FS/FS/svc_phone.pm index 46b231111..fba232dd8 100644 --- a/FS/FS/svc_phone.pm +++ b/FS/FS/svc_phone.pm @@ -194,6 +194,7 @@ sub table_info { select_table => 'svc_domain', select_key => 'svcnum', select_label => 'domain', + select_allow_empty => 1, disable_inventory => 1, }, 'circuit_svcnum' => { label => 'Circuit', |