summaryrefslogtreecommitdiff
path: root/doc/plugins/toc
ModeNameSize
-rw-r--r--discussion.mdwn750logplain
>
  • # under the GNU General Public License version 2 or, at your option, any later
  • # version. For a full list including contact information of contributors,
  • # maintainers, and copyright holders, see the CONTRIBUTORS file.
  • #
  • # Original Copyright Notice from SQL-Ledger 2.6.17 (before the fork):
  • # Copyright (c) 2001
  • #
  • # Author: DWS Systems Inc.
  • # Web: http://www.sql-ledger.org
  • #
  • # Contributors:
  • #
  • #======================================================================
  • #
  • # This file has NOT undergone whitespace cleanup.
  • #
  • #======================================================================
  • #
  • # administration
  • #
  • #======================================================================
  • use LedgerSMB::AM;
  • use LedgerSMB::CA;
  • use LedgerSMB::Form;
  • use LedgerSMB::User;
  • use LedgerSMB::RP;
  • use LedgerSMB::GL;
  • 1;
  • # end of main
  • sub add { &{ "add_$form->{type}" } };
  • sub edit { &{ "edit_$form->{type}" } };
  • sub save { &{ "save_$form->{type}" } };
  • sub delete { &{ "delete_$form->{type}" } };
  • sub save_as_new {
  • delete $form->{id};
  • &save;
  • }
  • sub add_account {
  • $form->{title} = "Add";
  • $form->{charttype} = "A";
  • $form->{callback} = "$form->{script}?action=list_account&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}" unless $form->{callback};
  • &account_header;
  • &form_footer;
  • }
  • sub edit_account {
  • $form->{title} = "Edit";
  • $form->{accno} =~ s/\\'/'/g;
  • $form->{accno} =~ s/\\\\/\\/g;
  • AM->get_account(\%myconfig, \%$form);
  • foreach my $item (split(/:/, $form->{link})) {
  • $form->{$item} = "checked";
  • }
  • &account_header;
  • &form_footer;
  • }
  • sub account_header {
  • $form->{title} = $locale->text("$form->{title} Account");
  • $checked{$form->{charttype}} = "checked";
  • $checked{contra} = "checked" if $form->{contra};
  • $checked{"$form->{category}_"} = "checked";
  • for (qw(accno description)) { $form->{$_} = $form->quote($form->{$_}) }
  • # this is for our parser only!
  • # type=submit $locale->text('Add Account')
  • # type=submit $locale->text('Edit Account')
  • $form->header;
  • print qq|
  • <body>
  • <form method=post action=$form->{script}>
  • <input type=hidden name=id value=$form->{id}>
  • <input type=hidden name=type value=account>
  • <input type=hidden name=inventory_accno_id value=$form->{inventory_accno_id}>
  • <input type=hidden name=income_accno_id value=$form->{income_accno_id}>
  • <input type=hidden name=expense_accno_id value=$form->{expense_accno_id}>
  • <input type=hidden name=fxgain_accno_id values=$form->{fxgain_accno_id}>
  • <input type=hidden name=fxloss_accno_id values=$form->{fxloss_accno_id}>
  • <table border=0 width=100%>
  • <tr>
  • <th class=listtop>$form->{title}</th>
  • </tr>
  • <tr height="5"></tr>
  • <tr valign=top>
  • <td>
  • <table>
  • <tr>
  • <th align="right">|.$locale->text('Account Number').qq|</th>
  • <td><input name=accno size=20 value="$form->{accno}"></td>
  • </tr>
  • <tr>
  • <th align="right">|.$locale->text('Description').qq|</th>
  • <td><input name=description size=40 value="$form->{description}"></td>
  • </tr>
  • <tr>
  • <th align="right">|.$locale->text('Account Type').qq|</th>
  • <td>
  • <table>
  • <tr valign=top>
  • <td><input name=category type=radio class=radio value=A $checked{A_}>&nbsp;|.$locale->text('Asset').qq|\n<br>
  • <input name=category type=radio class=radio value=L $checked{L_}>&nbsp;|.$locale->text('Liability').qq|\n<br>
  • <input name=category type=radio class=radio value=Q $checked{Q_}>&nbsp;|.$locale->text('Equity').qq|\n<br>
  • <input name=category type=radio class=radio value=I $checked{I_}>&nbsp;|.$locale->text('Income').qq|\n<br>
  • <input name=category type=radio class=radio value=E $checked{E_}>&nbsp;|.$locale->text('Expense')
  • .qq|</td>
  • <td>
  • <input name=contra class=checkbox type=checkbox value=1 $checked{contra}>&nbsp;|.$locale->text('Contra').qq|
  • </td>
  • <td>
  • <input name=charttype type=radio class=radio value="H" $checked{H}>&nbsp;|.$locale->text('Heading').qq|<br>
  • <input name=charttype type=radio class=radio value="A" $checked{A}>&nbsp;|.$locale->text('Account')
  • .qq|</td>
  • </tr>
  • </table>
  • </td>
  • </tr>
  • |;
  • if ($form->{charttype} eq "A") {
  • print qq|
  • <tr>
  • <td colspan=2>
  • <table>
  • <tr>
  • <th align=left>|.$locale->text('Is this a summary account to record').qq|</th>
  • <td>
  • <input name=AR class=checkbox type=checkbox value=AR $form->{AR}>&nbsp;|.$locale->text('AR')
  • .qq|&nbsp;<input name=AP class=checkbox type=checkbox value=AP $form->{AP}>&nbsp;|.$locale->text('AP')
  • .qq|&nbsp;<input name=IC class=checkbox type=checkbox value=IC $form->{IC}>&nbsp;|.$locale->text('Inventory')
  • .qq|</td>
  • </tr>
  • </table>
  • </td>
  • </tr>
  • <tr>
  • <th colspan=2>|.$locale->text('Include in drop-down menus').qq|</th>
  • </tr>
  • <tr valign=top>
  • <td colspan=2>
  • <table width=100%>
  • <tr>
  • <th align=left>|.$locale->text('Receivables').qq|</th>
  • <th align=left>|.$locale->text('Payables').qq|</th>
  • <th align=left>|.$locale->text('Tracking Items').qq|</th>
  • <th align=left>|.$locale->text('Non-tracking Items').qq|</th>
  • </tr>
  • <tr>
  • <td>
  • <input name=AR_amount class=checkbox type=checkbox value=AR_amount $form->{AR_amount}>&nbsp;|.$locale->text('Income').qq|\n<br>
  • <input name=AR_paid class=checkbox type=checkbox value=AR_paid $form->{AR_paid}>&nbsp;|.$locale->text('Payment').qq|\n<br>
  • <input name=AR_tax class=checkbox type=checkbox value=AR_tax $form->{AR_tax}>&nbsp;|.$locale->text('Tax') .qq|
  • </td>
  • <td>
  • <input name=AP_amount class=checkbox type=checkbox value=AP_amount $form->{AP_amount}>&nbsp;|.$locale->text('Expense/Asset').qq|\n<br>
  • <input name=AP_paid class=checkbox type=checkbox value=AP_paid $form->{AP_paid}>&nbsp;|.$locale->text('Payment').qq|\n<br>
  • <input name=AP_tax class=checkbox type=checkbox value=AP_tax $form->{AP_tax}>&nbsp;|.$locale->text('Tax') .qq|
  • </td>
  • <td>
  • <input name=IC_sale class=checkbox type=checkbox value=IC_sale $form->{IC_sale}>&nbsp;|.$locale->text('Income').qq|\n<br>
  • <input name=IC_cogs class=checkbox type=checkbox value=IC_cogs $form->{IC_cogs}>&nbsp;|.$locale->text('COGS').qq|\n<br>
  • <input name=IC_taxpart class=checkbox type=checkbox value=IC_taxpart $form->{IC_taxpart}>&nbsp;|.$locale->text('Tax') .qq|
  • </td>
  • <td>
  • <input name=IC_income class=checkbox type=checkbox value=IC_income $form->{IC_income}>&nbsp;|.$locale->text('Income').qq|\n<br>
  • <input name=IC_expense class=checkbox type=checkbox value=IC_expense $form->{IC_expense}>&nbsp;|.$locale->text('Expense').qq|\n<br>
  • <input name=IC_taxservice class=checkbox type=checkbox value=IC_taxservice $form->{IC_taxservice}>&nbsp;|.$locale->text('Tax') .qq|
  • </td>
  • </tr>
  • </table>
  • </td>
  • </tr>
  • <tr>
  • </tr>
  • |;
  • }
  • print qq|
  • <tr>
  • <th align="right">|.$locale->text('GIFI').qq|</th>
  • <td><input name=gifi_accno size=9 value="$form->{gifi_accno}"></td>
  • </tr>
  • </table>
  • </td>
  • </tr>
  • <tr>
  • <td><hr size=3 noshade></td>
  • </tr>
  • </table>
  • |;
  • }
  • sub form_footer {
  • $form->hide_form(qw(callback path login sessionid));
  • # type=submit $locale->text('Save')
  • # type=submit $locale->text('Save as new')
  • # type=submit $locale->text('Delete')
  • %button = ();
  • if ($form->{id}) {
  • $button{'save'} = { ndx => 3, key => 'S', value => $locale->text('Save') };
  • $button{'save_as_new'} = { ndx => 7, key => 'N', value => $locale->text('Save as new') };
  • if ($form->{orphaned}) {
  • $button{'delete'} = { ndx => 16, key => 'D', value => $locale->text('Delete') };
  • }
  • } else {
  • $button{'save'} = { ndx => 3, key => 'S', value => $locale->text('Save') };
  • }
  • for (sort { $button{$a}->{ndx} <=> $button{$b}->{ndx} } keys %button) { $form->print_button(\%button, $_) }
  • if ($form->{lynx}) {
  • require "bin/menu.pl";
  • &menubar;
  • }
  • print qq|
  • </form>
  • </body>
  • </html>
  • |;
  • }
  • sub save_account {
  • $form->isblank("accno", $locale->text('Account Number missing!'));
  • $form->isblank("category", $locale->text('Account Type missing!'));
  • # check for conflicting accounts
  • if ($form->{AR} || $form->{AP} || $form->{IC}) {
  • $a = "";
  • for (qw(AR AP IC)) { $a .= $form->{$_} }
  • $form->error($locale->text('Cannot set account for more than one of AR, AP or IC')) if length $a > 2;
  • for (qw(AR_amount AR_tax AR_paid AP_amount AP_tax AP_paid IC_taxpart IC_taxservice IC_sale IC_cogs IC_income IC_expense)) { $form->error("$form->{AR}$form->{AP}$form->{IC} ". $locale->text('account cannot be set to any other type of account')) if $form->{$_} }
  • }
  • foreach $item ("AR", "AP") {
  • $i = 0;
  • for ("${item}_amount", "${item}_paid", "${item}_tax") { $i++ if $form->{$_} }
  • $form->error($locale->text('Cannot set multiple options for [_1]', $item)) if $i > 1;
  • }
  • if (AM->save_account(\%myconfig, \%$form)) {
  • $form->redirect($locale->text('Account saved!'));
  • } else {
  • $form->error($locale->text('Cannot save account!'));
  • }
  • }
  • sub list_account {
  • CA->all_accounts(\%myconfig, \%$form);
  • $form->{title} = $locale->text('Chart of Accounts');
  • # construct callback
  • $callback = "$form->{script}?action=list_account&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}";
  • @column_index = qw(accno gifi_accno description debit credit link);
  • $column_header{accno} = qq|<th class=listtop>|.$locale->text('Account').qq|</a></th>|;
  • $column_header{gifi_accno} = qq|<th class=listtop>|.$locale->text('GIFI').qq|</a></th>|;
  • $column_header{description} = qq|<th class=listtop>|.$locale->text('Description').qq|</a></th>|;
  • $column_header{debit} = qq|<th class=listtop>|.$locale->text('Debit').qq|</a></th>|;
  • $column_header{credit} = qq|<th class=listtop>|.$locale->text('Credit').qq|</a></th>|;
  • $column_header{link} = qq|<th class=listtop>|.$locale->text('Link').qq|</a></th>|;
  • $form->header;
  • $colspan = $#column_index + 1;
  • print qq|
  • <body>
  • <table width=100%>
  • <tr>
  • <th class=listtop colspan=$colspan>$form->{title}</th>
  • </tr>
  • <tr height="5"></tr>
  • <tr class="listheading">
  • |;
  • for (@column_index) { print "$column_header{$_}\n" }
  • print qq|
  • </tr>
  • |;
  • # escape callback
  • $callback = $form->escape($callback);
  • foreach $ca (@{ $form->{CA} }) {
  • $ca->{debit} = "&nbsp;";
  • $ca->{credit} = "&nbsp;";
  • if ($ca->{amount} > 0) {
  • $ca->{credit} = $form->format_amount(\%myconfig, $ca->{amount}, 2, "&nbsp;");
  • }
  • if ($ca->{amount} < 0) {
  • $ca->{debit} = $form->format_amount(\%myconfig, -$ca->{amount}, 2, "&nbsp;");
  • }
  • $ca->{link} =~ s/:/<br>/og;
  • $gifi_accno = $form->escape($ca->{gifi_accno});
  • if ($ca->{charttype} eq "H") {
  • print qq|<tr class="listheading">|;
  • $column_data{accno} = qq|<th><a class="listheading" href="$form->{script}?action=edit_account&id=$ca->{id}&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}&callback=$callback">$ca->{accno}</a></th>|;
  • $column_data{gifi_accno} = qq|<th class="listheading"><a href="$form->{script}?action=edit_gifi&accno=$gifi_accno&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}&callback=$callback">$ca->{gifi_accno}</a>&nbsp;</th>|;
  • $column_data{description} = qq|<th class="listheading">$ca->{description}&nbsp;</th>|;
  • $column_data{debit} = qq|<th>&nbsp;</th>|;
  • $column_data{credit} = qq| <th>&nbsp;</th>|;
  • $column_data{link} = qq|<th>&nbsp;</th>|;
  • } else {
  • $i++; $i %= 2;
  • print qq|
  • <tr valign=top class="listrow$i">|;
  • $column_data{accno} = qq|<td><a href="$form->{script}?action=edit_account&id=$ca->{id}&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}&callback=$callback">$ca->{accno}</a></td>|;
  • $column_data{gifi_accno} = qq|<td><a href="$form->{script}?action=edit_gifi&accno=$gifi_accno&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}&callback=$callback">$ca->{gifi_accno}</a>&nbsp;</td>|;
  • $column_data{description} = qq|<td>$ca->{description}&nbsp;</td>|;
  • $column_data{debit} = qq|<td align="right">$ca->{debit}</td>|;
  • $column_data{credit} = qq|<td align="right">$ca->{credit}</td>|;
  • $column_data{link} = qq|<td>$ca->{link}&nbsp;</td>|;
  • }
  • for (@column_index) { print "$column_data{$_}\n" }
  • print "</tr>\n";
  • }
  • print qq|
  • <tr><td colspan="$colspan"><hr size="3" noshade /></td></tr>
  • </table>
  • </body>
  • </html>
  • |;
  • }
  • sub delete_account {
  • $form->{title} = $locale->text('Delete Account');
  • foreach $id (qw(inventory_accno_id income_accno_id expense_accno_id fxgain_accno_id fxloss_accno_id)) {
  • if ($form->{id} == $form->{$id}) {
  • $form->error($locale->text('Cannot delete default account!'));
  • }
  • }
  • if (AM->delete_account(\%myconfig, \%$form)) {
  • $form->redirect($locale->text('Account deleted!'));
  • } else {
  • $form->error($locale->text('Cannot delete account!'));
  • }
  • }
  • sub list_gifi {
  • @{ $form->{fields} } = qw(accno description);
  • $form->{table} = "gifi";
  • AM->gifi_accounts(\%myconfig, \%$form);
  • $form->{title} = $locale->text('GIFI');
  • # construct callback
  • $callback = "$form->{script}?action=list_gifi&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}";
  • @column_index = qw(accno description);
  • $column_header{accno} = qq|<th class="listheading">|.$locale->text('GIFI').qq|</a></th>|;
  • $column_header{description} = qq|<th class="listheading">|.$locale->text('Description').qq|</a></th>|;
  • $form->header;
  • $colspan = $#column_index + 1;
  • print qq|
  • <body>
  • <table width=100%>
  • <tr>
  • <th class=listtop colspan=$colspan>$form->{title}</th>
  • </tr>
  • <tr height="5"></tr>
  • <tr class="listheading">
  • |;
  • for (@column_index) { print "$column_header{$_}\n" }
  • print qq|
  • </tr>
  • |;
  • # escape callback
  • $callback = $form->escape($callback);
  • foreach $ca (@{ $form->{ALL} }) {
  • $i++; $i %= 2;
  • print qq|
  • <tr valign=top class=listrow$i>|;
  • $accno = $form->escape($ca->{accno});
  • $column_data{accno} = qq|<td><a href=$form->{script}?action=edit_gifi&coa=1&accno=$accno&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}&callback=$callback>$ca->{accno}</td>|;
  • $column_data{description} = qq|<td>$ca->{description}&nbsp;</td>|;
  • for (@column_index) { print "$column_data{$_}\n" }
  • print "</tr>\n";
  • }
  • print qq|
  • <tr>
  • <td colspan=$colspan><hr size=3 noshade></td>
  • </tr>
  • </table>
  • </body>
  • </html>
  • |;
  • }
  • sub add_gifi {
  • $form->{title} = "Add";
  • # construct callback
  • $form->{callback} = "$form->{script}?action=list_gifi&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}";
  • $form->{coa} = 1;
  • &gifi_header;
  • &gifi_footer;
  • }
  • sub edit_gifi {
  • $form->{title} = "Edit";
  • AM->get_gifi(\%myconfig, \%$form);
  • $form->error($locale->text('Account does not exist!')) unless $form->{accno};
  • &gifi_header;
  • &gifi_footer;
  • }
  • sub gifi_header {
  • $form->{title} = $locale->text("$form->{title} GIFI");
  • # $locale->text('Add GIFI')
  • # $locale->text('Edit GIFI')
  • for (qw(accno description)) { $form->{$_} = $form->quote($form->{$_}) }
  • $form->header;
  • print qq|
  • <body>
  • <form method=post action=$form->{script}>
  • <input type=hidden name=id value="$form->{accno}">
  • <input type=hidden name=type value=gifi>
  • <table width=100%>
  • <tr>
  • <th class=listtop>$form->{title}</th>
  • </tr>
  • <tr height="5"></tr>
  • <tr>
  • <td>
  • <table>
  • <tr>
  • <th align="right">|.$locale->text('GIFI').qq|</th>
  • <td><input name=accno size=20 value="$form->{accno}"></td>
  • </tr>
  • <tr>
  • <th align="right">|.$locale->text('Description').qq|</th>
  • <td><input name=description size=60 value="$form->{description}"></td>
  • </tr>
  • </table>
  • </td>
  • </tr>
  • <tr>
  • <td colspan=2><hr size=3 noshade></td>
  • </tr>
  • </table>
  • |;
  • }
  • sub gifi_footer {
  • $form->hide_form(qw(callback path login sessionid));
  • # type=submit $locale->text('Save')
  • # type=submit $locale->text('Copy to COA')
  • # type=submit $locale->text('Delete')
  • %button = ();
  • $button{'save'} = { ndx => 3, key => 'S', value => $locale->text('Save') };
  • if ($form->{accno}) {
  • if ($form->{orphaned}) {
  • $button{'delete'} = { ndx => 16, key => 'D', value => $locale->text('Delete') };
  • }
  • }
  • if ($form->{coa}) {
  • $button{'copy_to_coa'} = { ndx => 7, key => 'C', value => $locale->text('Copy to COA') };
  • }
  • for (sort { $button{$a}->{ndx} <=> $button{$b}->{ndx} } keys %button) { $form->print_button(\%button, $_) }
  • if ($form->{lynx}) {
  • require "bin/menu.pl";
  • &menubar;
  • }
  • print qq|
  • </form>
  • </body>
  • </html>
  • |;
  • }
  • sub save_gifi {
  • $form->isblank("accno", $locale->text('GIFI missing!'));
  • AM->save_gifi(\%myconfig, \%$form);
  • $form->redirect($locale->text('GIFI saved!'));
  • }
  • sub copy_to_coa {
  • $form->isblank("accno", $locale->text('GIFI missing!'));
  • AM->save_gifi(\%myconfig, \%$form);
  • delete $form->{id};
  • $form->{gifi_accno} = $form->{accno};
  • $form->{title} = "Add";
  • $form->{charttype} = "A";
  • &account_header;
  • &form_footer;
  • }
  • sub delete_gifi {
  • AM->delete_gifi(\%myconfig, \%$form);
  • $form->redirect($locale->text('GIFI deleted!'));
  • }
  • sub add_department {
  • $form->{title} = "Add";
  • $form->{role} = "P";
  • $form->{callback} = "$form->{script}?action=add_department&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}" unless $form->{callback};
  • &department_header;
  • &form_footer;
  • }
  • sub edit_department {
  • $form->{title} = "Edit";
  • AM->get_department(\%myconfig, \%$form);
  • &department_header;
  • &form_footer;
  • }
  • sub list_department {
  • AM->departments(\%myconfig, \%$form);
  • $href = "$form->{script}?action=list_department&direction=$form->{direction}&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}";
  • $form->sort_order();
  • $form->{callback} = "$form->{script}?action=list_department&direction=$form->{direction}&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}";
  • $callback = $form->escape($form->{callback});
  • $form->{title} = $locale->text('Departments');
  • @column_index = qw(description cost profit);
  • $column_header{description} = qq|<th width=90%><a class="listheading" href=$href>|.$locale->text('Description').qq|</a></th>|;
  • $column_header{cost} = qq|<th class="listheading" nowrap>|.$locale->text('Cost Center').qq|</th>|;
  • $column_header{profit} = qq|<th class="listheading" nowrap>|.$locale->text('Profit Center').qq|</th>|;
  • $form->header;
  • print qq|
  • <body>
  • <table width=100%>
  • <tr>
  • <th class=listtop>$form->{title}</th>
  • </tr>
  • <tr height="5"></tr>
  • <tr>
  • <td>
  • <table width=100%>
  • <tr class="listheading">
  • |;
  • for (@column_index) { print "$column_header{$_}\n" }
  • print qq|
  • </tr>
  • |;
  • foreach $ref (@{ $form->{ALL} }) {
  • $i++; $i %= 2;
  • print qq|
  • <tr valign=top class=listrow$i>
  • |;
  • $costcenter = ($ref->{role} eq "C") ? "*" : "&nbsp;";
  • $profitcenter = ($ref->{role} eq "P") ? "*" : "&nbsp;";
  • $column_data{description} = qq|<td><a href=$form->{script}?action=edit_department&id=$ref->{id}&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}&callback=$callback>$ref->{description}</td>|;
  • $column_data{cost} = qq|<td align=center>$costcenter</td>|;
  • $column_data{profit} = qq|<td align=center>$profitcenter</td>|;
  • for (@column_index) { print "$column_data{$_}\n" }
  • print qq|
  • </tr>
  • |;
  • }
  • print qq|
  • </table>
  • </td>
  • </tr>
  • <tr>
  • <td><hr size=3 noshade></td>
  • </tr>
  • </table>
  • <br>
  • <form method=post action=$form->{script}>
  • |;
  • $form->{type} = "department";
  • $form->hide_form(qw(type callback path login sessionid));
  • print qq|
  • <button class="submit" type="submit" name="action" value="add_department">|.$locale->text('Add Department').qq|"</button>|;
  • if ($form->{lynx}) {
  • require "bin/menu.pl";
  • &menubar;
  • }
  • print qq|
  • </form>
  • </body>
  • </html>
  • |;
  • }
  • sub department_header {
  • $form->{title} = $locale->text("$form->{title} Department");
  • # $locale->text('Add Department')
  • # $locale->text('Edit Department')
  • $form->{description} = $form->quote($form->{description});
  • if (($rows = $form->numtextrows($form->{description}, 60)) > 1) {
  • $description = qq|<textarea name="description" rows=$rows cols=60 wrap=soft>$form->{description}</textarea>|;
  • } else {
  • $description = qq|<input name=description size=60 value="$form->{description}">|;
  • }
  • $costcenter = "checked" if $form->{role} eq "C";
  • $profitcenter = "checked" if $form->{role} eq "P";
  • $form->header;
  • print qq|
  • <body>
  • <form method=post action=$form->{script}>
  • <input type=hidden name=id value=$form->{id}>
  • <input type=hidden name=type value=department>
  • <table width=100%>
  • <tr>
  • <th class=listtop colspan=2>$form->{title}</th>
  • </tr>
  • <tr height="5"></tr>
  • <tr>
  • <th align="right">|.$locale->text('Description').qq|</th>
  • <td>$description</td>
  • </tr>
  • <tr>
  • <td></td>
  • <td><input type=radio style=radio name=role value="C" $costcenter> |.$locale->text('Cost Center').qq|
  • <input type=radio style=radio name=role value="P" $profitcenter> |.$locale->text('Profit Center').qq|
  • </td>
  • <tr>
  • <td colspan=2><hr size=3 noshade></td>
  • </tr>
  • </table>
  • |;
  • }
  • sub save_department {
  • $form->isblank("description", $locale->text('Description missing!'));
  • AM->save_department(\%myconfig, \%$form);
  • $form->redirect($locale->text('Department saved!'));
  • }
  • sub delete_department {
  • AM->delete_department(\%myconfig, \%$form);
  • $form->redirect($locale->text('Department deleted!'));
  • }
  • sub add_business {
  • $form->{title} = "Add";
  • $form->{callback} = "$form->{script}?action=add_business&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}" unless $form->{callback};
  • &business_header;
  • &form_footer;
  • }
  • sub edit_business {
  • $form->{title} = "Edit";
  • AM->get_business(\%myconfig, \%$form);
  • &business_header;
  • $form->{orphaned} = 1;
  • &form_footer;
  • }
  • sub list_business {
  • AM->business(\%myconfig, \%$form);
  • $href = "$form->{script}?action=list_business&direction=$form->{direction}&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}";
  • $form->sort_order();
  • $form->{callback} = "$form->{script}?action=list_business&direction=$form->{direction}&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}";
  • $callback = $form->escape($form->{callback});
  • $form->{title} = $locale->text('Type of Business');
  • @column_index = qw(description discount);
  • $column_header{description} = qq|<th width=90%><a class="listheading" href=$href>|.$locale->text('Description').qq|</a></th>|;
  • $column_header{discount} = qq|<th class="listheading">|.$locale->text('Discount').qq| %</th>|;
  • $form->header;
  • print qq|
  • <body>
  • <table width=100%>
  • <tr>
  • <th class=listtop>$form->{title}</th>
  • </tr>
  • <tr height="5"></tr>
  • <tr>
  • <td>
  • <table width=100%>
  • <tr class="listheading">
  • |;
  • for (@column_index) { print "$column_header{$_}\n" }
  • print qq|
  • </tr>
  • |;
  • foreach $ref (@{ $form->{ALL} }) {
  • $i++; $i %= 2;
  • print qq|
  • <tr valign=top class=listrow$i>
  • |;
  • $discount = $form->format_amount(\%myconfig, $ref->{discount} * 100, 2, "&nbsp");
  • $column_data{description} = qq|<td><a href=$form->{script}?action=edit_business&id=$ref->{id}&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}&callback=$callback>$ref->{description}</td>|;
  • $column_data{discount} = qq|<td align="right">$discount</td>|;
  • for (@column_index) { print "$column_data{$_}\n" }
  • print qq|
  • </tr>
  • |;
  • }
  • print qq|
  • </table>
  • </td>
  • </tr>
  • <tr>
  • <td><hr size=3 noshade></td>
  • </tr>
  • </table>
  • <br>
  • <form method=post action=$form->{script}>
  • |;
  • $form->{type} = "business";
  • $form->hide_form(qw(type callback path login sessionid));
  • print qq|
  • <button class="submit" type="submit" name="action" value="add_business">|.$locale->text('Add Business').qq|</button>|;
  • if ($form->{lynx}) {
  • require "bin/menu.pl";
  • &menubar;
  • }
  • print qq|
  • </form>
  • </body>
  • </html>
  • |;
  • }
  • sub business_header {
  • $form->{title} = $locale->text("$form->{title} Business");
  • # $locale->text('Add Business')
  • # $locale->text('Edit Business')
  • $form->{description} = $form->quote($form->{description});
  • $form->{discount} = $form->format_amount(\%myconfig, $form->{discount} * 100);
  • $form->header;
  • print qq|
  • <body>
  • <form method=post action=$form->{script}>
  • <input type=hidden name=id value=$form->{id}>
  • <input type=hidden name=type value=business>
  • <table width=100%>
  • <tr>
  • <th class=listtop>$form->{title}</th>
  • </tr>
  • <tr height="5"></tr>
  • <tr>
  • <td>
  • <table>
  • <tr>
  • <th align="right">|.$locale->text('Type of Business').qq|</th>
  • <td><input name=description size=30 value="$form->{description}"></td>
  • <tr>
  • <tr>
  • <th align="right">|.$locale->text('Discount').qq| %</th>
  • <td><input name=discount size=5 value=$form->{discount}></td>
  • </tr>
  • </table>
  • </td>
  • </tr>
  • <tr>
  • <td><hr size=3 noshade></td>
  • </tr>
  • </table>
  • |;
  • }
  • sub save_business {
  • $form->isblank("description", $locale->text('Description missing!'));
  • AM->save_business(\%myconfig, \%$form);
  • $form->redirect($locale->text('Business saved!'));
  • }
  • sub delete_business {
  • AM->delete_business(\%myconfig, \%$form);
  • $form->redirect($locale->text('Business deleted!'));
  • }
  • sub add_sic {
  • $form->{title} = "Add";
  • $form->{callback} = "$form->{script}?action=add_sic&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}" unless $form->{callback};
  • &sic_header;
  • &form_footer;
  • }
  • sub edit_sic {
  • $form->{title} = "Edit";
  • $form->{code} =~ s/\\'/'/g;
  • $form->{code} =~ s/\\\\/\\/g;
  • AM->get_sic(\%myconfig, \%$form);
  • $form->{id} = $form->{code};
  • &sic_header;
  • $form->{orphaned} = 1;
  • &form_footer;
  • }
  • sub list_sic {
  • AM->sic(\%myconfig, \%$form);
  • $href = "$form->{script}?action=list_sic&direction=$form->{direction}&oldsort=$form->{oldsort}&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}";
  • $form->sort_order();
  • $form->{callback} = "$form->{script}?action=list_sic&direction=$form->{direction}&oldsort=$form->{oldsort}&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}";
  • $callback = $form->escape($form->{callback});
  • $form->{title} = $locale->text('Standard Industrial Codes');
  • @column_index = $form->sort_columns(qw(code description));
  • $column_header{code} = qq|<th><a class="listheading" href=$href&sort=code>|.$locale->text('Code').qq|</a></th>|;
  • $column_header{description} = qq|<th><a class="listheading" href=$href&sort=description>|.$locale->text('Description').qq|</a></th>|;
  • $form->header;
  • print qq|
  • <body>
  • <table width=100%>
  • <tr>
  • <th class=listtop>$form->{title}</th>
  • </tr>
  • <tr height="5"></tr>
  • <tr>
  • <td>
  • <table width=100%>
  • <tr class="listheading">
  • |;
  • for (@column_index) { print "$column_header{$_}\n" }
  • print qq|
  • </tr>
  • |;
  • foreach $ref (@{ $form->{ALL} }) {
  • $i++; $i %= 2;
  • if ($ref->{sictype} eq 'H') {
  • print qq|
  • <tr valign=top class="listheading">
  • |;
  • $column_data{code} = qq|<th><a href=$form->{script}?action=edit_sic&code=$ref->{code}&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}&callback=$callback>$ref->{code}</th>|;
  • $column_data{description} = qq|<th>$ref->{description}</th>|;
  • } else {
  • print qq|
  • <tr valign=top class=listrow$i>
  • |;
  • $column_data{code} = qq|<td><a href=$form->{script}?action=edit_sic&code=$ref->{code}&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}&callback=$callback>$ref->{code}</td>|;
  • $column_data{description} = qq|<td>$ref->{description}</td>|;
  • }
  • for (@column_index) { print "$column_data{$_}\n" }
  • print qq|
  • </tr>
  • |;
  • }
  • print qq|
  • </table>
  • </td>
  • </tr>
  • <tr>
  • <td><hr size=3 noshade></td>
  • </tr>
  • </table>
  • <br>
  • <form method=post action=$form->{script}>
  • |;
  • $form->{type} = "sic";
  • $form->hide_form(qw(type callback path login sessionid));
  • print qq|
  • <button class="submit" type="submit" name="action" value="add_sic">|.$locale->text('Add SIC').qq|</button>|;
  • if ($form->{lynx}) {
  • require "bin/menu.pl";
  • &menubar;
  • }
  • print qq|
  • </form>
  • </body>
  • </html>
  • |;
  • }
  • sub sic_header {
  • $form->{title} = $locale->text("$form->{title} SIC");
  • # $locale->text('Add SIC')
  • # $locale->text('Edit SIC')
  • for (qw(code description)) { $form->{$_} = $form->quote($form->{$_}) }
  • $checked = ($form->{sictype} eq 'H') ? "checked" : "";
  • $form->header;
  • print qq|
  • <body>
  • <form method=post action=$form->{script}>
  • <input type=hidden name=type value=sic>
  • <input type=hidden name=id value="$form->{code}">
  • <table width=100%>
  • <tr>
  • <th class=listtop colspan=2>$form->{title}</th>
  • </tr>
  • <tr height="5"></tr>
  • <tr>
  • <th align="right">|.$locale->text('Code').qq|</th>
  • <td><input name=code size=10 value="$form->{code}"></td>
  • <tr>
  • <tr>
  • <td></td>
  • <th align=left><input name=sictype class=checkbox type=checkbox value="H" $checked> |.$locale->text('Heading').qq|</th>
  • <tr>
  • <tr>
  • <th align="right">|.$locale->text('Description').qq|</th>
  • <td><input name=description size=60 value="$form->{description}"></td>
  • </tr>
  • <td colspan=2><hr size=3 noshade></td>
  • </tr>
  • </table>
  • |;
  • }
  • sub save_sic {
  • $form->isblank("code", $locale->text('Code missing!'));
  • $form->isblank("description", $locale->text('Description missing!'));
  • AM->save_sic(\%myconfig, \%$form);
  • $form->redirect($locale->text('SIC saved!'));
  • }
  • sub delete_sic {
  • AM->delete_sic(\%myconfig, \%$form);
  • $form->redirect($locale->text('SIC deleted!'));
  • }
  • sub add_language {
  • $form->{title} = "Add";
  • $form->{callback} = "$form->{script}?action=add_language&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}" unless $form->{callback};
  • &language_header;
  • &form_footer;
  • }
  • sub edit_language {
  • $form->{title} = "Edit";
  • $form->{code} =~ s/\\'/'/g;
  • $form->{code} =~ s/\\\\/\\/g;
  • AM->get_language(\%myconfig, \%$form);
  • $form->{id} = $form->{code};
  • &language_header;
  • $form->{orphaned} = 1;
  • &form_footer;
  • }
  • sub list_language {
  • AM->language(\%myconfig, \%$form);
  • $href = "$form->{script}?action=list_language&direction=$form->{direction}&oldsort=$form->{oldsort}&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}";
  • $form->sort_order();
  • $form->{callback} = "$form->{script}?action=list_language&direction=$form->{direction}&oldsort=$form->{oldsort}&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}";
  • $callback = $form->escape($form->{callback});
  • $form->{title} = $locale->text('Languages');
  • @column_index = $form->sort_columns(qw(code description));
  • $column_header{code} = qq|<th><a class="listheading" href=$href&sort=code>|.$locale->text('Code').qq|</a></th>|;
  • $column_header{description} = qq|<th><a class="listheading" href=$href&sort=description>|.$locale->text('Description').qq|</a></th>|;
  • $form->header;
  • print qq|
  • <body>
  • <table width=100%>
  • <tr>
  • <th class=listtop>$form->{title}</th>
  • </tr>
  • <tr height="5"></tr>
  • <tr>
  • <td>
  • <table width=100%>
  • <tr class="listheading">
  • |;
  • for (@column_index) { print "$column_header{$_}\n" }
  • print qq|
  • </tr>
  • |;
  • foreach $ref (@{ $form->{ALL} }) {
  • $i++; $i %= 2;
  • print qq|
  • <tr valign=top class=listrow$i>
  • |;
  • $column_data{code} = qq|<td><a href=$form->{script}?action=edit_language&code=$ref->{code}&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}&callback=$callback>$ref->{code}</td>|;
  • $column_data{description} = qq|<td>$ref->{description}</td>|;
  • for (@column_index) { print "$column_data{$_}\n" }
  • print qq|
  • </tr>
  • |;
  • }
  • print qq|
  • </table>
  • </td>
  • </tr>
  • <tr>
  • <td><hr size=3 noshade></td>
  • </tr>
  • </table>
  • <br>
  • <form method=post action=$form->{script}>
  • |;
  • $form->{type} = "language";
  • $form->hide_form(qw(type callback path login sessionid));
  • print qq|
  • <button class="submit" type="submit" name="action" value="add_language">|.$locale->text('Add Language').qq|</button>|;
  • if ($form->{lynx}) {
  • require "bin/menu.pl";
  • &menubar;
  • }
  • print qq|
  • </form>
  • </body>
  • </html>
  • |;
  • }
  • sub language_header {
  • $form->{title} = $locale->text("$form->{title} Language");
  • # $locale->text('Add Language')
  • # $locale->text('Edit Language')
  • for (qw(code description)) { $form->{$_} = $form->quote($form->{$_}) }
  • $form->header;
  • print qq|
  • <body>
  • <form method=post action=$form->{script}>
  • <input type=hidden name=type value=language>
  • <input type=hidden name=id value="$form->{code}">
  • <table width=100%>
  • <tr>
  • <th class=listtop colspan=2>$form->{title}</th>
  • </tr>
  • <tr height="5"></tr>
  • <tr>
  • <th align="right">|.$locale->text('Code').qq|</th>
  • <td><input name=code size=10 value="$form->{code}"></td>
  • <tr>
  • <tr>
  • <th align="right">|.$locale->text('Description').qq|</th>
  • <td><input name=description size=60 value="$form->{description}"></td>
  • </tr>
  • <td colspan=2><hr size=3 noshade></td>
  • </tr>
  • </table>
  • |;
  • }
  • sub save_language {
  • $form->isblank("code", $locale->text('Code missing!'));
  • $form->isblank("description", $locale->text('Description missing!'));
  • $form->{code} =~ s/(\.\.|\*)//g;
  • AM->save_language(\%myconfig, \%$form);
  • if (! -d "$myconfig{templates}/$form->{code}") {
  • umask(002);
  • if (mkdir "$myconfig{templates}/$form->{code}", oct("771")) {
  • umask(007);
  • opendir TEMPLATEDIR, "$myconfig{templates}" or $form->error("$myconfig{templates} : $!");
  • @templates = grep !/^(\.|\.\.)/, readdir TEMPLATEDIR;
  • closedir TEMPLATEDIR;
  • foreach $file (@templates) {
  • if (-f "$myconfig{templates}/$file") {
  • open(TEMP, '<', "$myconfig{templates}/$file") or $form->error("$myconfig{templates}/$file : $!");
  • open(NEW, '>', "$myconfig{templates}/$form->{code}/$file") or $form->error("$myconfig{templates}/$form->{code}/$file : $!");
  • while ($line = <TEMP>) {
  • print NEW $line;
  • }
  • close(TEMP);
  • close(NEW);
  • }
  • }
  • } else {
  • $form->error("${templates}/$form->{code} : $!");
  • }
  • }
  • $form->redirect($locale->text('Language saved!'));
  • }
  • sub delete_language {
  • $form->{title} = $locale->text('Confirm!');
  • $form->header;
  • print qq|
  • <body>
  • <form method=post action=$form->{script}>
  • |;
  • for (qw(action nextsub)) { delete $form->{$_} }
  • $form->hide_form;
  • print qq|
  • <h2 class=confirm>$form->{title}</h2>
  • <h4>|.$locale->text('Deleting a language will also delete the templates for the language [_1]', $form->{invnumber}).qq|</h4>
  • <input type=hidden name=action value=continue>
  • <input type=hidden name=nextsub value=yes_delete_language>
  • <button name="action" class="submit" type="submit" value="continue">|.$locale->text('Continue').qq|</button>
  • </form>
  • </body>
  • </html>
  • |;
  • }
  • sub yes_delete_language {
  • AM->delete_language(\%myconfig, \%$form);
  • # delete templates
  • $dir = "$myconfig{templates}/$form->{code}";
  • if (-d $dir) {
  • unlink <$dir/*>;
  • rmdir "$myconfig{templates}/$form->{code}";
  • }
  • $form->redirect($locale->text('Language deleted!'));
  • }
  • sub display_stylesheet {
  • $form->{file} = "css/$myconfig{stylesheet}";
  • &display_form;
  • }
  • sub list_templates {
  • AM->language(\%myconfig, \%$form);
  • if (! @{ $form->{ALL} }) {
  • &display_form;
  • exit;
  • }
  • unshift @{ $form->{ALL} }, { code => '.', description => $locale->text('Default Template') };
  • $href = "$form->{script}?action=list_templates&direction=$form->{direction}&oldsort=$form->{oldsort}&file=$form->{file}&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}";
  • $form->sort_order();
  • $form->{callback} = "$form->{script}?action=list_templates&direction=$form->{direction}&oldsort=$form->{oldsort}&file=$form->{file}&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}";
  • $callback = $form->escape($form->{callback});
  • chomp $myconfig{templates};
  • $form->{file} =~ s/$myconfig{templates}//;
  • $form->{file} =~ s/\///;
  • $form->{title} = $form->{file};
  • @column_index = $form->sort_columns(qw(code description));
  • $column_header{code} = qq|<th><a class="listheading" href=$href&sort=code>|.$locale->text('Code').qq|</a></th>|;
  • $column_header{description} = qq|<th><a class="listheading" href=$href&sort=description>|.$locale->text('Description').qq|</a></th>|;
  • $form->header;
  • print qq|
  • <body>
  • <table width=100%>
  • <tr>
  • <th class=listtop>$form->{title}</th>
  • </tr>
  • <tr height="5"></tr>
  • <tr>
  • <td>
  • <table width=100%>
  • <tr class="listheading">
  • |;
  • for (@column_index) { print "$column_header{$_}\n" }
  • print qq|
  • </tr>
  • |;
  • foreach $ref (@{ $form->{ALL} }) {
  • $i++; $i %= 2;
  • print qq|
  • <tr valign=top class=listrow$i>
  • |;
  • $column_data{code} = qq|<td><a href=$form->{script}?action=display_form&file=$myconfig{templates}/$ref->{code}/$form->{file}&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}&code=$ref->{code}&callback=$callback>$ref->{code}</td>|;
  • $column_data{description} = qq|<td>$ref->{description}</td>|;
  • for (@column_index) { print "$column_data{$_}\n" }
  • print qq|
  • </tr>
  • |;
  • }
  • print qq|
  • </table>
  • </td>
  • </tr>
  • <tr>
  • <td><hr size=3 noshade></td>
  • </tr>
  • </table>
  • <br>
  • <form method=post action=$form->{script}>
  • <input name=callback type=hidden value="$form->{callback}">
  • <input type=hidden name=type value=language>
  • <input type=hidden name=path value=$form->{path}>
  • <input type=hidden name=login value=$form->{login}>
  • <input type=hidden name=sessionid value=$form->{sessionid}>
  • |;
  • if ($form->{lynx}) {
  • require "bin/menu.pl";
  • &menubar;
  • }
  • print qq|
  • </form>
  • </body>
  • </html>
  • |;
  • }
  • sub display_form {
  • AM->load_template(\%myconfig, \%$form);
  • $form->{title} = $form->{file};
  • $form->{body} =~ s/<%include (.*?)%>/<a href=$form->{script}\?action=display_form&file=$myconfig{templates}\/$form->{code}\/$1&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}>$1<\/a>/g;
  • # if it is anything but html
  • if ($form->{file} !~ /\.html$/) {
  • $form->{body} = "<pre>\n$form->{body}\n</pre>";
  • }
  • $form->header;
  • print qq|
  • <body>
  • $form->{body}
  • <form method=post action=$form->{script}>
  • |;
  • $form->{type} = "template";
  • $form->hide_form(qw(file type path login sessionid));
  • print qq|
  • <button name="action" type="submit" class="submit" value="edit">|.$locale->text('Edit').qq|</button>|;
  • if ($form->{lynx}) {
  • require "bin/menu.pl";
  • &menubar;
  • }
  • print qq|
  • </form>
  • </body>
  • </html>
  • |;
  • }
  • sub edit_template {
  • AM->load_template(\%myconfig, \%$form);
  • $form->{title} = $locale->text('Edit Template');
  • # convert &nbsp to &amp;nbsp;
  • $form->{body} =~ s/&nbsp;/&amp;nbsp;/gi;
  • $form->header;
  • print qq|
  • <body>
  • <form method=post action=$form->{script}>
  • <input name=file type=hidden value=$form->{file}>
  • <input name=type type=hidden value=template>
  • <input type=hidden name=path value=$form->{path}>
  • <input type=hidden name=login value=$form->{login}>
  • <input type=hidden name=sessionid value=$form->{sessionid}>
  • <input name=callback type=hidden value="$form->{script}?action=display_form&file=$form->{file}&path=$form->{path}&login=$form->{login}&sessionid=$form->{sessionid}">
  • <textarea name=body rows=25 cols=70>
  • $form->{body}
  • </textarea>
  • <br>
  • <button type="submit" class="submit" name="action" value="save">|.$locale->text('Save').qq|</button>|;
  • if ($form->{lynx}) {
  • require "bin/menu.pl";
  • &menubar;
  • }
  • print q|
  • </form>
  • </body>
  • </html>
  • |;
  • }
  • sub save_template {
  • AM->save_template(\%myconfig, \%$form);
  • $form->redirect($locale->text('Template saved!'));
  • }
  • sub defaults {
  • # get defaults for account numbers and last numbers
  • AM->get_all_defaults(\%$form);
  • foreach $key (keys %{ $form->{accno} }) {
  • foreach $accno (sort keys %{ $form->{accno}{$key} }) {
  • $form->{account}{$key} .= "<option>$accno--$form->{accno}{$key}{$accno}{description}\n";
  • $form->{accno}{$form->{accno}{$key}{$accno}{id}} = $accno;
  • }
  • }
  • for (qw(IC IC_inventory IC_income IC_expense FX_gain FX_loss)) { $form->{account}{$_} =~ s/>$form->{accno}{$form->{defaults}{$_}}/ selected>$form->{accno}{$form->{defaults}{$_}}/ }
  • for (qw(accno defaults)) { delete $form->{$_} }
  • $form->{title} = $locale->text('System Defaults');
  • $form->header;
  • print qq|
  • <body>
  • <form method=post action=$form->{script}>
  • <input type=hidden name=type value=defaults>
  • <table width=100%>
  • <tr><th class=listtop>$form->{title}</th></tr>
  • <tr>
  • <td>
  • <table>
  • <tr>
  • <th align="right">|.$locale->text('Business Number').qq|</th>
  • <td><input name=businessnumber size=25 value="$form->{businessnumber}"></td>
  • </tr>
  • <tr>
  • <th align="right">|.$locale->text('Weight Unit').qq|</th>
  • <td><input name=weightunit size=5 value="$form->{weightunit}"></td>
  • </tr>
  • </table>
  • </td>
  • </tr>
  • <tr>
  • <th class="listheading">|.$locale->text('Last Numbers & Default Accounts').qq|</th>
  • </tr>
  • <tr>
  • <td>
  • <table>
  • <tr>
  • <th align="right" nowrap>|.$locale->text('Inventory').qq|</th>
  • <td><select name=IC>$form->{account}{IC}</select></td>
  • </tr>
  • <tr>
  • <th align="right" nowrap>|.$locale->text('Income').qq|</th>
  • <td><select name=IC_income>$form->{account}{IC_income}</select></td>
  • </tr>
  • <tr>
  • <th align="right" nowrap>|.$locale->text('Expense').qq|</th>
  • <td><select name=IC_expense>$form->{account}{IC_expense}</select></td>
  • </tr>
  • <tr>
  • <th align="right" nowrap>|.$locale->text('Foreign Exchange Gain').qq|</th>
  • <td><select name=FX_gain>$form->{account}{FX_gain}</select></td>
  • </tr>
  • <tr>
  • <th align="right" nowrap>|.$locale->text('Foreign Exchange Loss').qq|</th>
  • <td><select name=FX_loss>$form->{account}{FX_loss}</select></td>
  • </tr>
  • </table>
  • </td>
  • </tr>
  • <tr>
  • <th align=left>|.$locale->text('Enter up to 3 letters separated by a colon (i.e CAD:USD:EUR) for your native and foreign currencies').qq|</th>
  • </tr>
  • <tr>
  • <td>
  • <input name=curr size=40 value="$form->{curr}">
  • </td>
  • </tr>
  • <tr>
  • <td>
  • <table>
  • <tr>
  • <th align="right" nowrap>|.$locale->text('GL Reference Number').qq|</th>
  • <td><input name=glnumber size=40 value="$form->{glnumber}"></td>
  • </tr>
  • <tr>
  • <th align="right" nowrap>|.$locale->text('Sales Invoice/AR Transaction Number').qq|</th>
  • <td><input name=sinumber size=40 value="$form->{sinumber}"></td>
  • </tr>
  • <tr>
  • <th align="right" nowrap>|.$locale->text('Sales Order Number').qq|</th>
  • <td><input name=sonumber size=40 value="$form->{sonumber}"></td>
  • </tr>
  • <tr>
  • <th align="right" nowrap>|.$locale->text('Vendor Invoice/AP Transaction Number').qq|</th>
  • <td><input name=vinumber size=40 value="$form->{vinumber}"></td>
  • </tr>
  • <tr>
  • <th align="right" nowrap>|.$locale->text('Purchase Order Number').qq|</th>
  • <td><input name=ponumber size=40 value="$form->{ponumber}"></td>
  • </tr>
  • <tr>
  • <th align="right" nowrap>|.$locale->text('Sales Quotation Number').qq|</th>
  • <td><input name=sqnumber size=40 value="$form->{sqnumber}"></td>
  • </tr>
  • <tr>
  • <th align="right" nowrap>|.$locale->text('RFQ Number').qq|</th>
  • <td><input name=rfqnumber size=40 value="$form->{rfqnumber}"></td>
  • </tr>
  • <tr>
  • <th align="right" nowrap>|.$locale->text('Part Number').qq|</th>
  • <td><input name=partnumber size=40 value="$form->{partnumber}"></td>
  • </tr>
  • <tr>
  • <th align="right" nowrap>|.$locale->text('Job/Project Number').qq|</th>
  • <td><input name=projectnumber size=40 value="$form->{projectnumber}"></td>
  • </tr>
  • <tr>
  • <th align="right" nowrap>|.$locale->text('Employee Number').qq|</th>
  • <td><input name=employeenumber size=40 value="$form->{employeenumber}"></td>
  • </tr>
  • <tr>
  • <th align="right" nowrap>|.$locale->text('Customer Number').qq|</th>
  • <td><input name=customernumber size=40 value="$form->{customernumber}"></td>
  • </tr>
  • <tr>
  • <th align="right" nowrap>|.$locale->text('Vendor Number').qq|</th>
  • <td><input name=vendornumber size=40 value="$form->{vendornumber}"></td>
  • </tr>
  • </table>
  • </td>
  • </tr>
  • <tr>
  • <td><hr size=3 noshade></td>
  • </tr>
  • </table>
  • |;
  • $form->hide_form(qw(path login sessionid));
  • print qq|
  • <button type="submit" class="submit" name="action" value="save">|.$locale->text('Save').qq|</button>|;
  • if ($form->{lynx}) {
  • require "bin/menu.pl";
  • &menubar;
  • }
  • print qq|
  • </form>
  • </body>
  • </html>
  • |;
  • }
  • sub taxes {
  • # get tax account numbers
  • AM->taxes(\%myconfig, \%$form);
  • $i = 0;
  • foreach $ref (@{ $form->{taxrates} }) {
  • $i++;
  • $form->{"taxrate_$i"} = $form->format_amount(\%myconfig, $ref->{rate});
  • $form->{"taxdescription_$i"} = $ref->{description};
  • for (qw(taxnumber validto pass taxmodulename)) {
  • $form->{"${_}_$i"} = $ref->{$_};
  • }
  • $form->{taxaccounts} .= "$ref->{id}_$i ";
  • }
  • chop $form->{taxaccounts};
  • &display_taxes;
  • }
  • sub display_taxes {