% if ( $cust_pkg ) { #modify one-time charge
% my $field = '/elements/tr-input-text.html';
% # don't allow changing these after the fact
% $field = '/elements/tr-fixed.html' if $billed;
<& $field,
label => mt('Amount to charge'),
field => 'amount',
value => sprintf('%.2f',$part_pkg->option('setup_fee')),
size => 8,
prefix => $money_char,
&>
% if ( $curuser->access_right('Edit package definition costs') ) {
<& $field,
label => mt('Cost'),
field => 'setup_cost',
value => sprintf('%.2f',$part_pkg->setup_cost),
size => 8,
prefix => $money_char,
&>
% }
% if ( $conf->exists('invoice-unitprice') ) {
<& $field,
label => 'Quantity',
field => 'quantity',
value => $cust_pkg->quantity
&>
% }
<& /elements/tr-select-pkg_class.html, 'curr_value' => $classnum &>
% # crudely estimate whether any agent commission credits might exist
% my @events = grep { $_->part_event->action =~ /credit/ }
% $cust_pkg->cust_event;
% if ( scalar @events ) {
|
<% emt('Adjust commission credits if necessary') %>
|
% }
% #display the future or past charge date, but don't allow changes
% # XXX we probably _could_ let as-yet unbilled charges be rescheduled, but
% # there's no compelling need yet
% if ( $billed ) {
<& /elements/tr-fixed-date.html,
label => emt('Billed on'),
value => $cust_pkg->get('setup')
&>
% } else {
<& /elements/tr-input-date-field.html,
{
name => 'start_date',
label => emt('Will be billed'),
value => $cust_pkg->get('start_date'),
format => $date_format,
noinit => 1,
}
&>
<& /elements/tr-checkbox.html,
label => emt('Invoice this charge separately'),
field => 'separate_bill',
value => 'Y',
curr_value => $cust_pkg->get('separate_bill'),
&>
<% mt('Tax exempt') |h %> |
param('setuptax') ? 'CHECKED' : '' %>> |
<& /elements/tr-select-taxclass.html, 'curr_value' => $part_pkg->get('taxclass') &>
<& /elements/tr-select-taxproduct.html, 'label' => emt('Tax product'), 'onclick' => 'parent.taxproductmagic(this);', 'curr_value' => $part_pkg->get('taxproductnum') &>
% }
% } else { # new one-time charge
<% mt('Amount to charge') |h %> |
<% $money_char %>
|
% if ( $curuser->access_right('Edit package definition costs') ) {
<& /elements/tr-input-text.html,
label => mt('Cost'),
field => 'setup_cost',
value => $setup_cost,
size => 8,
prefix => $money_char,
&>
% }
% if ( $conf->exists('invoice-unitprice') ) {
<% mt('Quantity') |h %> |
|
% }
<& /elements/tr-select-pkg_class.html, 'curr_value' => $classnum &>
% unless ( $quotationnum ) {
<% mt('Invoice now') |h %> |
param('bill_now') ? 'CHECKED' : '' %>
onClick = "bill_now_changed(this);"
onChange = "bill_now_changed(this);"
>
<% mt('with terms') |h %>
<& /elements/select-terms.html,
'curr_value' => scalar($cgi->param('invoice_terms')),
'disabled' => ( $cgi->param('bill_now') ? 0 : 1 ),
'agentnum' => $cust_or_prospect->agentnum,
&>
|
% # false laziness w/misc/order_pkg.html
<% mt('Charge date') |h %> |
param('bill_now')
? 'STYLE = "background-color:#dddddd" DISABLED'
: ''
%>
>
param('bill_now') ? '' : 'STYLE="display:none"' %>
>
(<% mt('leave blank to charge immediately') |h %>)
|
<& /elements/tr-checkbox.html,
label => emt('Invoice this charge separately'),
field => 'separate_bill',
value => 'Y'
&>
% }
% if ( ! $quotationnum && $cust_main->payby =~ /^(CARD|CHEK)$/ ) {
% my $what = lc(FS::payby->shortname($cust_main->payby));
<% mt("Disable automatic $what charge") |h %> |
|
% }
<% mt('Tax exempt') |h %> |
param('setuptax') ? 'CHECKED' : '' %>> |
<& /elements/tr-select-taxclass.html, 'curr_value' => $cgi->param('taxclass') &>
<& /elements/tr-select-taxproduct.html, 'label' => emt('Tax product'), 'onclick' => 'parent.taxproductmagic(this);', 'curr_value' => $cgi->param('taxproductnum') &>
<& /elements/tr-select-taxoverride.html, 'onclick' => 'parent.taxoverridemagic(this);', 'curr_value' => $cgi->param('tax_override') &>
% } # if !$cust_pkg
<% mt('Description') |h %> |
|
|
<% mt('Optional additional description (also printed on invoice):') |h %> |
% my $row = 0;
% foreach (@description) {
|
|
% $row++;
% }