diff options
author | Christopher Burger <burgerc@freeside.biz> | 2018-03-27 09:20:05 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2018-03-28 10:15:52 -0400 |
commit | da355fb20a69bbe5710ce7dca16e2c84a207a084 (patch) | |
tree | 398bbeeb4b301e4389a222a72e9f300ae562eafb /httemplate/edit/process/elements/process.html | |
parent | 0b8b48e7c6306be3b7418cb23e8318317d041caf (diff) |
RT# 78356 - added ability to create and modify rateplans and access point when changed on freeside. cleanded up documentation.
Conflicts:
FS/FS/tower_sector.pm
httemplate/edit/process/tower.html
httemplate/edit/tower.html
Diffstat (limited to 'httemplate/edit/process/elements/process.html')
-rw-r--r-- | httemplate/edit/process/elements/process.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/httemplate/edit/process/elements/process.html b/httemplate/edit/process/elements/process.html index 76722c960..8c307f0b6 100644 --- a/httemplate/edit/process/elements/process.html +++ b/httemplate/edit/process/elements/process.html @@ -459,6 +459,14 @@ foreach my $value ( @values ) { } +if ($class eq "FS::tower") { + foreach my $part_svc_broadband_export ( FS::tower_sector->part_export_svc_broadband ) { + if ($part_svc_broadband_export and $part_svc_broadband_export->can('export_tower_sector')) { + $error = $part_svc_broadband_export->export_tower_sector($new); + } + } +} + # set up redirect URLs my $redirect; |