summaryrefslogtreecommitdiff
path: root/httemplate/edit/cust_main/before_ship_location.html
blob: badb5e8cdde94776bcef40e179f230068fea2494 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
% if ( length($cust_main->ship_company) or
%      $conf->exists('show_ship_company') ) {
  <& /elements/tr-input-text.html,
      label       => mt('Company'),
      field       => 'ship_company',
      curr_value  => $cust_main->ship_company,
      colspan     => 6,
  &>
% }
<%init>
my $cust_main = shift;
my $conf = FS::Conf->new;
</%init>