summaryrefslogtreecommitdiff
path: root/sql-ledger/bin/mozilla/io.pl
diff options
context:
space:
mode:
authorivan <ivan>2004-11-15 10:35:56 +0000
committerivan <ivan>2004-11-15 10:35:56 +0000
commit32306b5f8ffe4ce594409aa6e89626740b225a39 (patch)
tree8dba82e8424ebe8d089b4e0ef579d87db06742a3 /sql-ledger/bin/mozilla/io.pl
parent52072fcd26f2faf57923f598c358e7f47c4e2643 (diff)
import sql-ledger 2.4.4SQL_LEDGER
Diffstat (limited to 'sql-ledger/bin/mozilla/io.pl')
-rw-r--r--sql-ledger/bin/mozilla/io.pl1078
1 files changed, 783 insertions, 295 deletions
diff --git a/sql-ledger/bin/mozilla/io.pl b/sql-ledger/bin/mozilla/io.pl
index 751d9a2ed..22228a9f8 100644
--- a/sql-ledger/bin/mozilla/io.pl
+++ b/sql-ledger/bin/mozilla/io.pl
@@ -1,6 +1,6 @@
######################################################################
# SQL-Ledger, Accounting
-# Copyright (c) 1998-2002
+# Copyright (c) 2002
#
# Author: Dieter Simader
# Email: dsimader@sql-ledger.org
@@ -19,7 +19,6 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-#
#######################################################################
#
# common routines used in is, ir, oe
@@ -71,35 +70,46 @@ if (-f "$form->{path}/$form->{login}_io.pl") {
sub display_row {
my $numrows = shift;
- @column_index = (partnumber, description, qty);
-
+ @column_index = qw(runningnumber partnumber description qty);
+
if ($form->{type} eq "sales_order") {
- if ($form->{id}) {
- push @column_index, "ship";
- $column_data{ship} = qq|<th class=listheading align=left width="auto">|.$locale->text('Ship').qq|</th>|;
- }
+ push @column_index, "ship";
+ $column_data{ship} = qq|<th class=listheading align=center width="auto">|.$locale->text('Ship').qq|</th>|;
}
if ($form->{type} eq "purchase_order") {
- if ($form->{id}) {
- push @column_index, "ship";
- $column_data{ship} = qq|<th class=listheading align=left width="auto">|.$locale->text('Recd').qq|</th>|;
- }
+ push @column_index, "ship";
+ $column_data{ship} = qq|<th class=listheading align=center width="auto">|.$locale->text('Recd').qq|</th>|;
}
-
- push @column_index, qw(unit sellprice);
-
- if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_order') {
- push @column_index, qw(discount);
+
+ foreach $item (qw(projectnumber partsgroup)) {
+ $form->{"select$item"} = $form->unescape($form->{"select$item"}) if $form->{"select$item"};
}
-
- push @column_index, "linetotal";
+
+ if ($form->{language_code} ne $form->{oldlanguage_code}) {
+ # rebuild partsgroup
+ $form->get_partsgroup(\%myconfig, { language_code => $form->{language_code} });
+ if (@ { $form->{all_partsgroup} }) {
+ $form->{selectpartsgroup} = "<option>\n";
+ foreach $ref (@ { $form->{all_partsgroup} }) {
+ if ($ref->{translation}) {
+ $form->{selectpartsgroup} .= qq|<option value="$ref->{partsgroup}--$ref->{id}">$ref->{translation}\n|;
+ } else {
+ $form->{selectpartsgroup} .= qq|<option value="$ref->{partsgroup}--$ref->{id}">$ref->{partsgroup}\n|;
+ }
+ }
+ }
+ $form->{oldlanguage_code} = $form->{language_code};
+ }
+
+
+ push @column_index, qw(unit sellprice discount linetotal);
my $colspan = $#column_index + 1;
-
$form->{invsubtotal} = 0;
map { $form->{"${_}_base"} = 0 } (split / /, $form->{taxaccounts});
+ $column_data{runningnumber} = qq|<th class=listheading nowrap>|.$locale->text('No.').qq|</th>|;
$column_data{partnumber} = qq|<th class=listheading nowrap>|.$locale->text('Number').qq|</th>|;
$column_data{description} = qq|<th class=listheading nowrap>|.$locale->text('Description').qq|</th>|;
$column_data{qty} = qq|<th class=listheading nowrap>|.$locale->text('Qty').qq|</th>|;
@@ -122,45 +132,81 @@ sub display_row {
|;
+ $deliverydate = $locale->text('Delivery Date');
+ $serialnumber = $locale->text('Serial No.');
$projectnumber = $locale->text('Project');
- $runningnumber = $locale->text('No.');
- $partsgroup = $locale->text('Group');
+ $group = $locale->text('Group');
+ $sku = $locale->text('SKU');
+
+ $delvar = 'deliverydate';
- if ($form->{type} =~ /_order/) {
+ if ($form->{type} =~ /_(order|quotation)$/) {
$reqdate = $locale->text('Required by');
- $delvar = "reqdate";
- } else {
- $deliverydate = $locale->text('Delivery Date');
- $delvar = "deliverydate";
+ $delvar = 'reqdate';
}
-
-
+
+ $exchangerate = $form->parse_amount(\%myconfig, $form->{exchangerate});
+ $exchangerate = ($exchangerate) ? $exchangerate : 1;
+
for $i (1 .. $numrows) {
# undo formatting
map { $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"}) } qw(qty ship discount sellprice);
-
+
($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
$dec = length $dec;
$decimalplaces = ($dec > 2) ? $dec : 2;
+
+ if (($form->{"qty_$i"} != $form->{"oldqty_$i"}) || ($form->{currency} ne $form->{oldcurrency})) {
+ # check for a pricematrix
+ @a = split / /, $form->{"pricematrix_$i"};
+ if ((scalar @a) > 2 || $form->{currency} ne $form->{oldcurrency}) {
+ foreach $item (@a) {
+ ($q, $p) = split /:/, $item;
+ if ($p != 0 && $form->{"qty_$i"} > $q) {
+ $form->{"sellprice_$i"} = $form->round_amount($p / $exchangerate, $decimalplaces);
+ }
+ }
+ }
+ }
$discount = $form->round_amount($form->{"sellprice_$i"} * $form->{"discount_$i"}/100, $decimalplaces);
$linetotal = $form->round_amount($form->{"sellprice_$i"} - $discount, $decimalplaces);
$linetotal = $form->round_amount($linetotal * $form->{"qty_$i"}, 2);
- # convert " to &quot;
- map { $form->{"${_}_$i"} =~ s/"/&quot;/g } qw(partnumber description unit);
+ map { $form->{"${_}_$i"} = $form->quote($form->{"${_}_$i"}) } qw(partnumber sku description unit);
+
+ $skunumber = qq|
+ <p><b>$sku</b> $form->{"sku_$i"}| if ($form->{vc} eq 'vendor' && $form->{"sku_$i"});
+
+
+ if ($form->{selectpartsgroup}) {
+ if ($i < $numrows) {
+ $partsgroup = qq|
+ <p><b>$group</b>
+ <input type=hidden name="partsgroup_$i" value="$form->{"partsgroup_$i"}">|;
+ ($form->{"partsgroup_$i"}) = split /--/, $form->{"partsgroup_$i"};
+ $partsgroup .= $form->{"partsgroup_$i"};
+ $partsgroup = "" unless $form->{"partsgroup_$i"};
+ }
+ }
- $column_data{partnumber} = qq|<td><input name="partnumber_$i" size=20 value="$form->{"partnumber_$i"}"></td>|;
+ $delivery = qq|
+ <b>${$delvar}</b>
+ <input name="${delvar}_$i" size=11 title="$myconfig{dateformat}" value="$form->{"${delvar}_$i"}">
+|;
+
+ $column_data{runningnumber} = qq|<td><input name="runningnumber_$i" size=3 value=$i></td>|;
+ $column_data{partnumber} = qq|<td><input name="partnumber_$i" size=15 value="$form->{"partnumber_$i"}">$skunumber</td>|;
- if (($rows = $form->numtextrows($form->{"description_$i"}, 30, 6)) > 1) {
- $column_data{description} = qq|<td><textarea name="description_$i" rows=$rows cols=30 wrap=soft>$form->{"description_$i"}</textarea></td>|;
+ if (($rows = $form->numtextrows($form->{"description_$i"}, 25, 6)) > 1) {
+ $column_data{description} = qq|<td><textarea name="description_$i" rows=$rows cols=25 wrap=soft>$form->{"description_$i"}</textarea>$partsgroup</td>|;
} else {
- $column_data{description} = qq|<td><input name="description_$i" size=30 value="$form->{"description_$i"}"></td>|;
+ $column_data{description} = qq|<td><input name="description_$i" size=30 value="$form->{"description_$i"}">$partsgroup</td>|;
}
$column_data{qty} = qq|<td align=right><input name="qty_$i" size=5 value=|.$form->format_amount(\%myconfig, $form->{"qty_$i"}).qq|></td>|;
$column_data{ship} = qq|<td align=right><input name="ship_$i" size=5 value=|.$form->format_amount(\%myconfig, $form->{"ship_$i"}).qq|></td>|;
- $column_data{unit} = qq|<td><input name="unit_$i" size=5 maxsize=5 value="$form->{"unit_$i"}"></td>|;
+ $column_data{unit} = qq|<td><input name="unit_$i" size=5 value="$form->{"unit_$i"}"></td>|;
$column_data{sellprice} = qq|<td align=right><input name="sellprice_$i" size=9 value=|.$form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces).qq|></td>|;
$column_data{discount} = qq|<td align=right><input name="discount_$i" size=3 value=|.$form->format_amount(\%myconfig, $form->{"discount_$i"}).qq|></td>|;
$column_data{linetotal} = qq|<td align=right>|.$form->format_amount(\%myconfig, $linetotal, 2).qq|</td>|;
@@ -174,44 +220,66 @@ sub display_row {
print qq|
</tr>
+<input type=hidden name="orderitems_id_$i" value=$form->{"orderitems_id_$i"}>
+
<input type=hidden name="id_$i" value=$form->{"id_$i"}>
<input type=hidden name="inventory_accno_$i" value=$form->{"inventory_accno_$i"}>
<input type=hidden name="bin_$i" value="$form->{"bin_$i"}">
+<input type=hidden name="weight_$i" value="$form->{"weight_$i"}">
<input type=hidden name="income_accno_$i" value=$form->{"income_accno_$i"}>
<input type=hidden name="expense_accno_$i" value=$form->{"expense_accno_$i"}>
<input type=hidden name="listprice_$i" value="$form->{"listprice_$i"}">
<input type=hidden name="assembly_$i" value="$form->{"assembly_$i"}">
<input type=hidden name="taxaccounts_$i" value="$form->{"taxaccounts_$i"}">
+<input type=hidden name="pricematrix_$i" value="$form->{"pricematrix_$i"}">
+<input type=hidden name="oldqty_$i" value="$form->{"qty_$i"}">
+<input type=hidden name="sku_$i" value="$form->{"sku_$i"}">
|;
+ $form->{selectprojectnumber} =~ s/ selected//;
+ $form->{selectprojectnumber} =~ s/(<option value="\Q$form->{"projectnumber_$i"}\E")/$1 selected/;
+
+ $project = qq|
+ <b>$projectnumber</b>
+ <select name="projectnumber_$i">$form->{selectprojectnumber}</select>
+| if $form->{selectprojectnumber};
+
+ $serial = qq|
+ <b>$serialnumber</b> <input name="serialnumber_$i" size=15 value="$form->{"serialnumber_$i"}">| if $form->{type} !~ /_quotation/;
+
+ $partsgroup = "";
+ if ($i == $numrows) {
+ if ($form->{selectpartsgroup}) {
+ $partsgroup = qq|
+ <b>$group</b>
+ <select name="partsgroup_$i">$form->{selectpartsgroup}</select>
+|;
+ }
+
+ $serial = "";
+ $project = "";
+ $delivery = ""
+ }
+
+
# print second row
print qq|
<tr>
<td colspan=$colspan>
- <table>
- <tr>
- <th>$runningnumber</th>
- <td><input name="runningnumber_$i" size=3 value=$i></td>
- <td width=20></td>
- <th>$partsgroup</th>
- <td><input name="partsgroup_$i" size=10 value="$form->{"partsgroup_$i"}">
- <th>${$delvar}</th>
- <td><input name="${delvar}_$i" size=11 title="$myconfig{dateformat}" value="$form->{"${delvar}_$i"}"></td>
- <th>$projectnumber</th>
- <td><input name="projectnumber_$i" size=10 value="$form->{"projectnumber_$i"}">
- <input type=hidden name="oldprojectnumber_$i" value="$form->{"oldprojectnumber_$i"}">
- <input type=hidden name="project_id_$i" value="$form->{"project_id_$i"}"></td>
- </tr>
- </table>
+ $delivery
+ $serial
+ $project
+ $partsgroup
</td>
</tr>
<tr>
<td colspan=$colspan><hr size=1 noshade></td>
</tr>
|;
-
+ $skunumber = "";
+
map { $form->{"${_}_base"} += $linetotal } (split / /, $form->{"taxaccounts_$i"});
$form->{invsubtotal} += $linetotal;
@@ -223,65 +291,101 @@ sub display_row {
</tr>
|;
+ print qq|
+
+<input type=hidden name=oldcurrency value=$form->{currency}>
+<input type=hidden name=audittrail value="$form->{audittrail}">
+
+<input type=hidden name=selectpartsgroup value="|.$form->escape($form->{selectpartsgroup},1).qq|">
+<input type=hidden name=selectprojectnumber value="|.$form->escape($form->{selectprojectnumber},1).qq|">
+|;
+
}
sub select_item {
-
- @column_index = qw(ndx partnumber description onhand sellprice);
+
+ if ($form->{vc} eq "vendor") {
+ @column_index = qw(ndx partnumber sku description partsgroup onhand sellprice);
+ } else {
+ @column_index = qw(ndx partnumber description partsgroup onhand sellprice);
+ }
$column_data{ndx} = qq|<th>&nbsp;</th>|;
$column_data{partnumber} = qq|<th class=listheading>|.$locale->text('Number').qq|</th>|;
+ $column_data{sku} = qq|<th class=listheading>|.$locale->text('SKU').qq|</th>|;
$column_data{description} = qq|<th class=listheading>|.$locale->text('Description').qq|</th>|;
+ $column_data{partsgroup} = qq|<th class=listheading>|.$locale->text('Group').qq|</th>|;
$column_data{sellprice} = qq|<th class=listheading>|.$locale->text('Price').qq|</th>|;
$column_data{onhand} = qq|<th class=listheading>|.$locale->text('Qty').qq|</th>|;
-
+ $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
+
# list items with radio button on a form
$form->header;
$title = $locale->text('Select from one of the items below');
- $colspan = $#column_index + 1;
print qq|
<body>
-<form method=post action=$form->{script}>
+<form method=post action="$form->{script}#end">
<table width=100%>
<tr>
- <th class=listtop colspan=$colspan>$title</th>
+ <th class=listtop>$title</th>
</tr>
<tr height="5"></tr>
- <tr class=listheading>|;
+ <tr>
+ <td>$option</td>
+ </tr>
+ <tr>
+ <td>
+ <table width=100%>
+ <tr class=listheading>|;
map { print "\n$column_data{$_}" } @column_index;
- print qq|</tr>|;
+ print qq|
+ </tr>
+|;
my $i = 0;
foreach $ref (@{ $form->{item_list} }) {
$checked = ($i++) ? "" : "checked";
- map { $ref->{$_} =~ s/"/&quot;/g } qw(partnumber description unit);
+ map { $ref->{$_} = $form->quote($ref->{$_}) } qw(sku partnumber description unit);
+
+ $ref->{sellprice} = $form->round_amount($ref->{sellprice} * (1 - $form->{tradediscount}), 2);
$column_data{ndx} = qq|<td><input name=ndx class=radio type=radio value=$i $checked></td>|;
- $column_data{partnumber} = qq|<td><input name="new_partnumber_$i" type=hidden value="$ref->{partnumber}">$ref->{partnumber}</td>|;
- $column_data{description} = qq|<td><input name="new_description_$i" type=hidden value="$ref->{description}">$ref->{description}</td>|;
- $column_data{sellprice} = qq|<td align=right><input name="new_sellprice_$i" type=hidden value=$ref->{sellprice}>|.$form->format_amount(\%myconfig, $ref->{sellprice}, 2, "&nbsp;").qq|</td>|;
- $column_data{onhand} = qq|<td align=right><input name="new_onhand_$i" type=hidden value=$ref->{onhand}>|.$form->format_amount(\%myconfig, $ref->{onhand}, '', "&nbsp;").qq|</td>|;
+ $column_data{partnumber} = qq|<td>$ref->{partnumber}</td>|;
+ $column_data{sku} = qq|<td>$ref->{sku}</td>|;
+ $column_data{description} = qq|<td>$ref->{description}</td>|;
+ $column_data{partsgroup} = qq|<td>$ref->{partsgroup}</td>|;
+ $column_data{sellprice} = qq|<td align=right>|.$form->format_amount(\%myconfig, $ref->{sellprice} / $exchangerate, 2, "&nbsp;").qq|</td>|;
+ $column_data{onhand} = qq|<td align=right>|.$form->format_amount(\%myconfig, $ref->{onhand}, '', "&nbsp;").qq|</td>|;
$j++; $j %= 2;
print qq|
-<tr class=listrow$j>|;
+ <tr class=listrow$j>|;
map { print "\n$column_data{$_}" } @column_index;
print qq|
-</tr>
+ </tr>
+<input name="new_partnumber_$i" type=hidden value="$ref->{partnumber}">
+<input name="new_sku_$i" type=hidden value="$ref->{sku}">
+<input name="new_description_$i" type=hidden value="$ref->{description}">
+<input name="new_partsgroup_$i" type=hidden value="$ref->{partsgroup}">
+<input name="new_partsgroup_id_$i" type=hidden value="$ref->{partsgroup_id}">
<input name="new_bin_$i" type=hidden value="$ref->{bin}">
+<input name="new_weight_$i" type=hidden value=$ref->{weight}>
+<input name="new_sellprice_$i" type=hidden value=$ref->{sellprice}>
<input name="new_listprice_$i" type=hidden value=$ref->{listprice}>
+<input name="new_lastcost_$i" type=hidden value=$ref->{lastcost}>
+<input name="new_onhand_$i" type=hidden value=$ref->{onhand}>
<input name="new_inventory_accno_$i" type=hidden value=$ref->{inventory_accno}>
<input name="new_income_accno_$i" type=hidden value=$ref->{income_accno}>
<input name="new_expense_accno_$i" type=hidden value=$ref->{expense_accno}>
@@ -289,7 +393,7 @@ sub select_item {
<input name="new_weight_$i" type=hidden value="$ref->{weight}">
<input name="new_assembly_$i" type=hidden value="$ref->{assembly}">
<input name="new_taxaccounts_$i" type=hidden value="$ref->{taxaccounts}">
-<input name="new_partsgroup_$i" type=hidden value="$ref->{partsgroup}">
+<input name="new_pricematrix_$i" type=hidden value="$ref->{pricematrix}">
<input name="new_id_$i" type=hidden value=$ref->{id}>
@@ -298,7 +402,12 @@ sub select_item {
}
print qq|
-<tr><td colspan=8><hr size=3 noshade></td></tr>
+ </table>
+ </td>
+ </tr>
+ <tr>
+ <td><hr size=3 noshade></td>
+ </tr>
</table>
<input name=lastndx type=hidden value=$i>
@@ -306,15 +415,10 @@ sub select_item {
|;
# delete action variable
- delete $form->{action};
- delete $form->{item_list};
-
- # save all other form variables
- foreach $key (keys %${form}) {
- $form->{$key} =~ s/"/&quot;/g;
- print qq|<input name=$key type=hidden value="$form->{$key}">\n|;
- }
+ map { delete $form->{$_} } qw(action item_list header);
+ $form->hide_form();
+
print qq|
<input type=hidden name=nextsub value=item_selected>
@@ -342,7 +446,9 @@ sub item_selected {
# if there was a price entered, override it
$sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
- map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} } qw(id partnumber description sellprice listprice inventory_accno income_accno expense_accno bin unit weight assembly taxaccounts partsgroup);
+ map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} } qw(id partnumber sku description sellprice listprice lastcost inventory_accno income_accno expense_accno bin unit weight assembly taxaccounts pricematrix);
+
+ $form->{"partsgroup_$i"} = qq|$form->{"new_partsgroup_$j"}--$form->{"new_partsgroup_id_$j"}|;
($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
$dec = length $dec;
@@ -358,7 +464,12 @@ sub item_selected {
}
}
- map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(sellprice weight);
+ if (($form->{exchangerate} * 1) != 0) {
+ map { $form->{"${_}_$i"} /= $form->{exchangerate} } qw(listprice lastcost);
+ }
+
+ # this is for the assembly
+ map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(sellprice listprice weight);
$form->{sellprice} += ($form->{"sellprice_$i"} * $form->{"qty_$i"});
$form->{weight} += ($form->{"weight_$i"} * $form->{"qty_$i"});
@@ -373,25 +484,25 @@ sub item_selected {
# delete all the new_ variables
for $i (1 .. $form->{lastndx}) {
- map { delete $form->{"new_${_}_$i"} } qw(partnumber description sellprice bin listprice inventory_accno income_accno expense_accno unit assembly taxaccounts id);
+ map { delete $form->{"new_${_}_$i"} } qw(partnumber sku description sellprice bin listprice lastcost inventory_accno income_accno expense_accno unit assembly taxaccounts id pricematrix weight);
}
map { delete $form->{$_} } qw(ndx lastndx nextsub);
- if ($form->{item} eq 'assembly') {
- map { $form->{"qty_$_"} = $form->parse_amount(\%myconfig, $form->{"qty_$_"}) } (1 .. $i);
- } else {
- # format amounts for invoice / order
- map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}, $decimalplaces) } qw(sellprice listprice);
- }
+ # format amounts
+ map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}, $decimalplaces) } qw(sellprice listprice lastcost) if $form->{item} ne 'assembly';
&display_form;
-
+
}
sub new_item {
+ if ($form->{language_code} && $form->{"description_$form->{rowcount}"}) {
+ $form->error($locale->text('Translation not on file!'));
+ }
+
# change callback
$form->{old_callback} = $form->escape($form->{callback},1);
$form->{callback} = $form->escape("$form->{script}?action=display_form",1);
@@ -399,27 +510,31 @@ sub new_item {
# delete action
delete $form->{action};
- # save all other form variables in a previous_form variable
- foreach $key (keys %$form) {
- # escape ampersands
- $form->{$key} =~ s/&/%26/g;
- $previous_form .= qq|$key=$form->{$key}&|;
+ # save all other form variables in a previousform variable
+ if (!$form->{previousform}) {
+ foreach $key (keys %$form) {
+ # escape ampersands
+ $form->{$key} =~ s/&/%26/g;
+ $form->{previousform} .= qq|$key=$form->{$key}&|;
+ }
+ chop $form->{previousform};
+ $form->{previousform} = $form->escape($form->{previousform}, 1);
}
- chop $previous_form;
- $previous_form = $form->escape($previous_form, 1);
$i = $form->{rowcount};
- map { $form->{"${_}_$i"} =~ s/"/&quot;/g } qw(partnumber description);
+ map { $form->{"${_}_$i"} = $form->quote($form->{"${_}_$i"}) } qw(partnumber description);
$form->header;
print qq|
<body>
-<h4 class=error>|.$locale->text('Item not on file!').qq|
+<h4 class=error>|.$locale->text('Item not on file!').qq|</h4>|;
-<p>
-|.$locale->text('What type of item is this?').qq|</h4>
+ if ($myconfig{acs} !~ /(Goods \& Services--Add Part|Goods \& Services--Add Service)/) {
+
+ print qq|
+<h4>|.$locale->text('What type of item is this?').qq|</h4>
<form method=post action=ic.pl>
@@ -430,21 +545,24 @@ sub new_item {
<input class=radio type=radio name=item value=service>&nbsp;|.$locale->text('Service')
.qq|
-<input type=hidden name=previous_form value="$previous_form">
+<input type=hidden name=previousform value="$form->{previousform}">
<input type=hidden name=partnumber value="$form->{"partnumber_$i"}">
<input type=hidden name=description value="$form->{"description_$i"}">
<input type=hidden name=rowcount value=$form->{rowcount}>
<input type=hidden name=path value=$form->{path}>
<input type=hidden name=login value=$form->{login}>
-<input type=hidden name=password value=$form->{password}>
+<input type=hidden name=sessionid value=$form->{sessionid}>
<input type=hidden name=nextsub value=add>
<p>
<input class=submit type=submit name=action value="|.$locale->text('Continue').qq|">
</form>
+|;
+ }
+ print qq|
</body>
</html>
|;
@@ -455,26 +573,40 @@ sub new_item {
sub display_form {
+ # if we have a display_form
+ if ($form->{display_form}) {
+ &{ "$form->{display_form}" };
+ exit;
+ }
+
&form_header;
$numrows = ++$form->{rowcount};
$subroutine = "display_row";
if ($form->{item} eq 'part') {
- $numrows = ++$form->{makemodel_rows};
- $subroutine = "makemodel_row";
+ # create makemodel rows
+ &makemodel_row(++$form->{makemodel_rows});
+
+ &vendor_row(++$form->{vendor_rows});
+
+ $numrows = ++$form->{customer_rows};
+ $subroutine = "customer_row";
}
if ($form->{item} eq 'assembly') {
- $numrows = ++$form->{makemodel_rows};
- $subroutine = "makemodel_row";
-
# create makemodel rows
- &{ $subroutine }($numrows);
-
- $numrows = ++$form->{assembly_rows};
- $subroutine = "assembly_row";
+ &makemodel_row(++$form->{makemodel_rows});
+
+ $numrows = ++$form->{customer_rows};
+ $subroutine = "customer_row";
}
if ($form->{item} eq 'service') {
+ &vendor_row(++$form->{vendor_rows});
+
+ $numrows = ++$form->{customer_rows};
+ $subroutine = "customer_row";
+ }
+ if ($form->{item} eq 'labor') {
$numrows = 0;
}
@@ -491,17 +623,23 @@ sub check_form {
my @a = ();
my $count = 0;
- my @flds = (qw(id partnumber description qty sellprice unit discount inventory_accno income_accno expense_accno listprice taxaccounts bin assembly weight projectnumber project_id oldprojectnumber runningnumber partsgroup));
+ my $i;
+ my $j;
+ my @flds = qw(id partnumber sku description qty ship sellprice unit discount inventory_accno income_accno expense_accno listprice taxaccounts bin assembly weight projectnumber runningnumber serialnumber partsgroup reqdate pricematrix);
# remove any makes or model rows
if ($form->{item} eq 'part') {
- map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(listprice sellprice lastcost weight rop);
+ map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(listprice sellprice lastcost weight rop markup);
- @flds = (make, model);
- for my $i (1 .. ($form->{makemodel_rows})) {
+ &calc_markup;
+
+ @flds = qw(make model);
+ $count = 0;
+ @a = ();
+ for $i (1 .. $form->{makemodel_rows}) {
if (($form->{"make_$i"} ne "") || ($form->{"model_$i"} ne "")) {
push @a, {};
- my $j = $#a;
+ $j = $#a;
map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
$count++;
@@ -511,13 +649,30 @@ sub check_form {
$form->redo_rows(\@flds, \@a, $count, $form->{makemodel_rows});
$form->{makemodel_rows} = $count;
- } elsif ($form->{item} eq 'assembly') {
+ &check_vendor;
+ &check_customer;
+
+ } elsif ($form->{item} eq 'service') {
+
+ map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(sellprice listprice lastcost markup);
+
+ &calc_markup;
+ &check_vendor;
+ &check_customer;
+ } elsif ($form->{item} eq 'assembly') {
+
$form->{sellprice} = 0;
$form->{weight} = 0;
- map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(listprice rop);
+ $form->{lastcost} = 0;
+ $form->{listprice} = 0;
+
+ map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(rop stock markup);
- @flds = qw(id qty unit bom partnumber description sellprice weight runningnumber partsgroup);
+
+ @flds = qw(id qty unit bom adj partnumber description sellprice listprice weight runningnumber partsgroup);
+ $count = 0;
+ @a = ();
for my $i (1 .. ($form->{assembly_rows} - 1)) {
if ($form->{"qty_$i"}) {
@@ -528,13 +683,18 @@ sub check_form {
map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
- $form->{sellprice} += ($form->{"qty_$i"} * $form->{"sellprice_$i"});
- $form->{weight} += ($form->{"qty_$i"} * $form->{"weight_$i"});
+ map { $form->{$_} += ($form->{"${_}_$i"} * $form->{"qty_$i"}) } qw(sellprice listprice weight lastcost);
+
$count++;
}
}
- $form->{sellprice} = $form->round_amount($form->{sellprice}, 2);
+ if ($form->{markup} && $form->{markup} != $form->{oldmarkup}) {
+ $form->{sellprice} = 0;
+ &calc_markup;
+ }
+
+ map { $form->{$_} = $form->round_amount($form->{$_}, 2) } qw(sellprice lastcost listprice);
$form->redo_rows(\@flds, \@a, $count, $form->{assembly_rows});
$form->{assembly_rows} = $count;
@@ -556,11 +716,15 @@ sub check_form {
$form->redo_rows(\@flds, \@a, $count, $form->{makemodel_rows});
$form->{makemodel_rows} = $count;
+ &check_customer;
+
} else {
# this section applies to invoices and orders
# remove any empty numbers
+ $count = 0;
+ @a = ();
if ($form->{rowcount}) {
for my $i (1 .. $form->{rowcount} - 1) {
if ($form->{"partnumber_$i"}) {
@@ -585,6 +749,28 @@ sub check_form {
}
+sub calc_markup {
+
+ if ($form->{markup}) {
+ if ($form->{markup} != $form->{oldmarkup}) {
+ if ($form->{lastcost}) {
+ $form->{sellprice} = $form->{lastcost} * (1 + $form->{markup}/100);
+ $form->{sellprice} = $form->round_amount($form->{sellprice}, 2);
+ } else {
+ $form->{lastcost} = $form->{sellprice} / (1 + $form->{markup}/100);
+ $form->{lastcost} = $form->round_amount($form->{lastcost}, 2);
+ }
+ }
+ } else {
+ if ($form->{lastcost}) {
+ $form->{markup} = $form->round_amount(((1 - $form->{sellprice} / $form->{lastcost}) * 100), 1);
+ }
+ $form->{markup} = "" if $form->{markup} == 0;
+ }
+
+}
+
+
sub invoicetotal {
$form->{oldinvtotal} = 0;
@@ -631,60 +817,100 @@ sub validate_items {
}
-sub order {
- $form->{ordnumber} = $form->{invnumber};
+sub purchase_order {
+
+ $form->{title} = $locale->text('Add Purchase Order');
+ $form->{vc} = 'vendor';
+ $form->{type} = 'purchase_order';
+ $buysell = 'sell';
- $form->{id} = '';
+ &create_form;
- if ($form->{script} eq 'ir.pl') {
- $form->{title} = $locale->text('Add Purchase Order');
- $form->{vc} = 'vendor';
- $form->{type} = 'purchase_order';
- $buysell = 'sell';
- }
- if ($form->{script} eq 'is.pl') {
- $form->{title} = $locale->text('Add Sales Order');
- $form->{vc} = 'customer';
- $form->{type} = 'sales_order';
- $buysell = 'buy';
- }
+}
+
+
+sub sales_order {
+
+ $form->{title} = $locale->text('Add Sales Order');
+ $form->{vc} = 'customer';
+ $form->{type} = 'sales_order';
+ $buysell = 'buy';
+
+ &create_form;
+
+}
+
+
+sub rfq {
+
+ $form->{title} = $locale->text('Add Request for Quotation');
+ $form->{vc} = 'vendor';
+ $form->{type} = 'request_quotation';
+ $buysell = 'sell';
+
+ &create_form;
+
+}
+
+
+sub quotation {
+
+ $form->{title} = $locale->text('Add Quotation');
+ $form->{vc} = 'customer';
+ $form->{type} = 'sales_quotation';
+ $buysell = 'buy';
+
+ &create_form;
+
+}
+
+
+sub create_form {
+
+ map { delete $form->{$_} } qw(id printed emailed queued);
+
$form->{script} = 'oe.pl';
$form->{shipto} = 1;
-
- $form->{rowcount}--;
+
+ $form->{rowcount}-- if $form->{rowcount};
require "$form->{path}/$form->{script}";
map { $form->{"select$_"} = "" } ($form->{vc}, currency);
- $currency = $form->{currency};
-
+ map { $temp{$_} = $form->{$_} } qw(currency employee department intnotes notes language_code);
+
&order_links;
- $form->{currency} = $currency;
+ map { $form->{$_} = $temp{$_} if $temp{$_} } keys %temp;
+
$form->{exchangerate} = "";
$form->{forex} = "";
- $form->{exchangerate} = $exchangerate if ($form->{forex} = ($exchangerate = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{orddate}, $buysell)));
+ if ($form->{currency} ne $form->{defaultcurrency}) {
+ $form->{exchangerate} = $exchangerate if ($form->{forex} = ($exchangerate = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{transdate}, $buysell)));
+ }
&prepare_order;
+
&display_form;
}
-sub e_mail {
+sub e_mail {
- if ($myconfig{admin}) {
+ $bcc = qq|<input type=hidden name=bcc value="$form->{bcc}">|;
+ if ($myconfig{role} =~ /(admin|manager)/) {
$bcc = qq|
<th align=right nowrap=true>|.$locale->text('Bcc').qq|</th>
<td><input name=bcc size=30 value="$form->{bcc}"></td>
|;
}
- if ($form->{type} eq 'packing_list') {
+ if ($form->{formname} =~ /(pick|packing|bin)_list/) {
$form->{email} = $form->{shiptoemail} if $form->{shiptoemail};
}
@@ -692,15 +918,12 @@ sub e_mail {
$name =~ s/--.*//g;
$title = $locale->text('E-mail')." $name";
- $form->{oldmedia} = $form->{media};
- $form->{media} = "email";
-
$form->header;
print qq|
<body>
-<form method=post action=$form->{script}>
+<form method=post action="$form->{script}#end">
<table width=100%>
<tr class=listtop>
@@ -711,7 +934,7 @@ sub e_mail {
<td>
<table width=100%>
<tr>
- <th align=right nowrap>|.$locale->text('To').qq|</th>
+ <th align=right nowrap>|.$locale->text('E-mail').qq|</th>
<td><input name=email size=30 value="$form->{email}"></td>
<th align=right nowrap>|.$locale->text('Cc').qq|</th>
<td><input name=cc size=30 value="$form->{cc}"></td>
@@ -740,15 +963,15 @@ sub e_mail {
<td>
|;
+ $form->{oldmedia} = $form->{media};
+ $form->{media} = "email";
+ $form->{format} = "pdf";
+
&print_options;
- map { delete $form->{$_} } qw(action email cc bcc subject message type sendmode format);
+ map { delete $form->{$_} } qw(action email cc bcc subject message formname sendmode format header);
- # save all other variables
- foreach $key (keys %$form) {
- $form->{$key} =~ s/"/&quot;/g;
- print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
- }
+ $form->hide_form();
print qq|
</td>
@@ -774,8 +997,10 @@ sub e_mail {
sub send_email {
$old_form = new Form;
+
map { $old_form->{$_} = $form->{$_} } keys %$form;
- $old_form->{media} = $form->{oldmedia};
+ $old_form->{media} = $old_form->{oldmedia};
+
&print_form($old_form);
}
@@ -785,232 +1010,482 @@ sub send_email {
sub print_options {
$form->{sendmode} = "attachment";
- $form->{copies} = 3 unless $form->{copies};
+ $form->{copies} = 1 unless $form->{copies};
- $form->{PD}{$form->{type}} = "checked";
- $form->{DF}{$form->{format}} = "checked";
- $form->{OP}{$form->{media}} = "checked";
- $form->{SM}{$form->{sendmode}} = "checked";
+ $form->{PD}{$form->{formname}} = "selected";
+ $form->{DF}{$form->{format}} = "selected";
+ $form->{SM}{$form->{sendmode}} = "selected";
- if ($form->{type} =~ /_order/) {
- $order = qq|
- <td align=right><input class=radio type=radio name=type value="$`_order" $form->{PD}{"$`_order"}></td><td>|.$locale->text('Order').qq|</td>
-|;
- } else {
- $invoice = qq|
- <td align=right><input class=radio type=radio name=type value=invoice $form->{PD}{invoice}></td><td>|.$locale->text('Invoice').qq|</td>
- <td align=right><input class=radio type=radio name=type value=packing_list $form->{PD}{packing_list}></td><td>|.$locale->text('Packing List').qq|</td>
-|;
+ if ($form->{selectlanguage}) {
+ $form->{"selectlanguage"} = $form->unescape($form->{"selectlanguage"});
+ $form->{"selectlanguage"} =~ s/ selected//;
+ $form->{"selectlanguage"} =~ s/(<option value="\Q$form->{language_code}\E")/$1 selected/;
+ $lang = qq|<td><select name=language_code>$form->{selectlanguage}</select></td>
+ <input type=hidden name=oldlanguage_code value=$form->{oldlanguage_code}>
+ <input type=hidden name=selectlanguage value="|.
+ $form->escape($form->{selectlanguage},1).qq|">|;
}
-
+
+ if ($form->{type} eq 'purchase_order') {
+ $type = qq|<td><select name=formname>
+ <option value=purchase_order $form->{PD}{purchase_order}>|.$locale->text('Purchase Order').qq|
+ <option value=bin_list $form->{PD}{bin_list}>|.$locale->text('Bin List').qq|</select></td>|;
+ }
+
+ if ($form->{type} eq 'sales_order') {
+ $type = qq|<td><select name=formname>
+ <option value=sales_order $form->{PD}{sales_order}>|.$locale->text('Sales Order').qq|
+ <option value=work_order $form->{PD}{work_order}>|.$locale->text('Work Order').qq|
+ <option value=pick_list $form->{PD}{pick_list}>|.$locale->text('Pick List').qq|
+ <option value=packing_list $form->{PD}{packing_list}>|.$locale->text('Packing List').qq|</select></td>|;
+ }
+
+ if ($form->{type} =~ /_quotation$/) {
+ $type = qq|<td><select name=formname>
+ <option value="$`_quotation" $form->{PD}{"$`_quotation"}>|.$locale->text('Quotation').qq|</select></td>|;
+ }
+
+ if ($form->{type} eq 'invoice') {
+ $type = qq|<td><select name=formname>
+ <option value=invoice $form->{PD}{invoice}>|.$locale->text('Invoice').qq|
+ <option value=pick_list $form->{PD}{pick_list}>|.$locale->text('Pick List').qq|
+ <option value=packing_list $form->{PD}{packing_list}>|.$locale->text('Packing List').qq|</select></td>|;
+ }
+
+ if ($form->{type} eq 'ship_order') {
+ $type = qq|<td><select name=formname>
+ <option value=pick_list $form->{PD}{pick_list}>|.$locale->text('Pick List').qq|
+ <option value=packing_list $form->{PD}{packing_list}>|.$locale->text('Packing List').qq|</select></td>|;
+ }
+
+ if ($form->{type} eq 'receive_order') {
+ $type = qq|<td><select name=formname>
+ <option value=bin_list $form->{PD}{bin_list}>|.$locale->text('Bin List').qq|</select></td>|;
+ }
+
if ($form->{media} eq 'email') {
- $email = qq|
- <td align=center><input class=radio type=radio name=sendmode value=attachment $form->{SM}{attachment}> |.$locale->text('Attachment')
- .qq| <input class=radio type=radio name=sendmode value=inline $form->{SM}{inline}> |.$locale->text('In-line').qq|</td>
-|;
+ $media = qq|<td><select name=sendmode>
+ <option value=attachment $form->{SM}{attachment}>|.$locale->text('Attachment').qq|
+ <option value=inline $form->{SM}{inline}>|.$locale->text('In-line').qq|</select></td>|;
} else {
- $screen = qq|
- <td align=right><input class=radio type=radio name=media value=screen $form->{OP}{screen}></td>
- <td>|.$locale->text('Screen').qq|</td>
-|;
+ $media = qq|<td><select name=media>
+ <option value=screen>|.$locale->text('Screen');
+ if (%printer && $latex) {
+ map { $media .= qq|
+ <option value="$_">$_| } sort keys %printer;
+ }
+ if ($latex) {
+ $media .= qq|
+ <option value="queue">|.$locale->text('Queue');
+ }
+ $media .= qq|</select></td>|;
+
+ # set option selected
+ $media =~ s/(<option value="\Q$form->{media}\E")/$1 selected/;
+
}
- print qq|
-<table width=100%>
- <tr valign=top>
- $invoice
- $order
- <td align=right><input class=radio type=radio name=format value=html $form->{DF}{html}></td>
- <td>html</td>
-|;
+ $format = qq|<td><select name=format>
+ <option value=html $form->{DF}{html}>html|;
+
+# <option value=txt $form->{DF}{txt}>txt|;
if ($latex) {
- print qq|
- <td align=right><input class=radio type=radio name=format value=postscript $form->{DF}{postscript}></td>
- <td>|.$locale->text('Postscript').qq|</td>
- <td align=right><input class=radio type=radio name=format value=pdf $form->{DF}{pdf}></td>
- <td>|.$locale->text('PDF').qq|</td>
-|;
+ $format .= qq|
+ <option value=postscript $form->{DF}{postscript}>|.$locale->text('Postscript').qq|
+ <option value=pdf $form->{DF}{pdf}>|.$locale->text('PDF');
}
+ $format .= qq|</select></td>|;
print qq|
- $screen
+<table width=100% cellspacing=0 cellpadding=0>
+ <tr>
+ <td>
+ <table>
+ <tr>
+ $type
+ $lang
+ $format
+ $media
|;
- if ($screen) {
- if ($myconfig{printer} && $latex) {
- print qq|
- <td align=right><input class=radio type=radio name=media value=printer $form->{OP}{printer}></td>
- <td>|.$locale->text('Printer')
- .qq| (|.$locale->text('Copies')
- .qq| <input name=copies size=2 value=$form->{copies}>)</td>
+ if (%printer && $latex && $form->{media} ne 'email') {
+ print qq|
+ <td>|.$locale->text('Copies').qq|
+ <input name=copies size=2 value=$form->{copies}></td>
|;
- }
}
+ $form->{groupprojectnumber} = "checked" if $form->{groupprojectnumber};
+ $form->{grouppartsgroup} = "checked" if $form->{grouppartsgroup};
+
+ print qq|
+ <td>|.$locale->text('Group Items').qq|</td>
+ <td>
+ <input name=groupprojectnumber type=checkbox class=checkbox $form->{groupprojectnumber}>
+ |.$locale->text('Project').qq|
+ <input name=grouppartsgroup type=checkbox class=checkbox $form->{grouppartsgroup}>
+ |.$locale->text('Group').qq|
+ </td>
+ </tr>
+ </table>
+ </td>
+ <td align=right>
+|;
+
+ if ($form->{printed} =~ /$form->{formname}/) {
+ print $locale->text('Printed').qq|<br>|;
+ }
+
+ if ($form->{emailed} =~ /$form->{formname}/) {
+ print $locale->text('E-mailed').qq|<br>|;
+ }
- $form->{groupitems} = "checked" if $form->{groupitems};
+ if ($form->{queued} =~ /$form->{formname}/) {
+ print $locale->text('Queued');
+ }
print qq|
- $email
- <td align=right><input name=groupitems type=checkbox class=checkbox $form->{groupitems}></td>
- <td>|.$locale->text('Group Items').qq|</td>
+ </td>
</tr>
</table>
|;
+
}
+
sub print {
-
+
# if this goes to the printer pass through
- if ($form->{media} eq 'printer') {
- $form->error($locale->text('Select postscript or PDF!')) if ($form->{format} !~ /(postscript|pdf)/);
+ if ($form->{media} !~ /(screen|email)/) {
+ $form->error($locale->text('Select txt, postscript or PDF!')) if ($form->{format} !~ /(txt|postscript|pdf)/);
$old_form = new Form;
map { $old_form->{$_} = $form->{$_} } keys %$form;
+
}
-
+
&print_form($old_form);
}
sub print_form {
- my $old_form = shift;
-
+ my ($old_form) = @_;
+
$inv = "inv";
$due = "due";
- if ($form->{type} eq "invoice") {
+ $numberfld = "sinumber";
+
+ $display_form = ($form->{display_form}) ? $form->{display_form} : "display_form";
+
+ if ($form->{formname} eq "invoice") {
$form->{label} = $locale->text('Invoice');
}
- if ($form->{type} eq "packing_list") {
- $form->{label} = $locale->text('Packing List');
- }
- if ($form->{type} eq 'sales_order') {
+ if ($form->{formname} eq 'sales_order') {
$inv = "ord";
$due = "req";
$form->{label} = $locale->text('Sales Order');
+ $numberfld = "sonumber";
+ $order = 1;
}
- if ($form->{type} eq 'purchase_order') {
+ if ($form->{formname} eq 'work_order') {
+ $inv = "ord";
+ $due = "req";
+ $form->{label} = $locale->text('Work Order');
+ $numberfld = "sonumber";
+ $order = 1;
+ }
+ if ($form->{formname} eq 'packing_list') {
+ # we use the same packing list as from an invoice
+ $form->{label} = $locale->text('Packing List');
+
+ if ($form->{type} ne 'invoice') {
+ $inv = "ord";
+ $due = "req";
+ $numberfld = "sonumber";
+ $order = 1;
+ }
+ }
+ if ($form->{formname} eq 'pick_list') {
+ $form->{label} = $locale->text('Pick List');
+ if ($form->{type} ne 'invoice') {
+ $inv = "ord";
+ $due = "req";
+ $order = 1;
+ $numberfld = "sonumber";
+ }
+ }
+ if ($form->{formname} eq 'purchase_order') {
$inv = "ord";
$due = "req";
$form->{label} = $locale->text('Purchase Order');
+ $numberfld = "ponumber";
+ $order = 1;
+ }
+ if ($form->{formname} eq 'bin_list') {
+ $inv = "ord";
+ $due = "req";
+ $form->{label} = $locale->text('Bin List');
+ $numberfld = "ponumber";
+ $order = 1;
+ }
+ if ($form->{formname} eq 'sales_quotation') {
+ $inv = "quo";
+ $due = "req";
+ $form->{label} = $locale->text('Quotation');
+ $numberfld = "sqnumber";
+ $order = 1;
+ }
+ if ($form->{formname} eq 'request_quotation') {
+ $inv = "quo";
+ $due = "req";
+ $form->{label} = $locale->text('Quotation');
+ $numberfld = "rfqnumber";
+ $order = 1;
}
+
+ $form->{"${inv}date"} = $form->{transdate};
$form->isblank("email", $locale->text('E-mail address missing!')) if ($form->{media} eq 'email');
- $form->isblank("${inv}number", $locale->text($form->{label} .' Number missing!'));
$form->isblank("${inv}date", $locale->text($form->{label} .' Date missing!'));
+ # get next number
+ if (! $form->{"${inv}number"}) {
+ $form->{"${inv}number"} = $form->update_defaults(\%myconfig, $numberfld);
+ if ($form->{media} eq 'screen') {
+ &update;
+ exit;
+ }
+ }
+
+
# $locale->text('Invoice Number missing!')
# $locale->text('Invoice Date missing!')
# $locale->text('Packing List Number missing!')
# $locale->text('Packing List Date missing!')
# $locale->text('Order Number missing!')
# $locale->text('Order Date missing!')
+# $locale->text('Quotation Number missing!')
+# $locale->text('Quotation Date missing!')
&validate_items;
&{ "$form->{vc}_details" };
@a = ();
- map { push @a, ("partnumber_$_", "description_$_") } (1 .. $form->{rowcount});
+ foreach $i (1 .. $form->{rowcount}) {
+ push @a, ("partnumber_$i", "description_$i", "projectnumber_$i", "partsgroup_$i", "serialnumber_$i", "bin_$i", "unit_$i");
+ }
map { push @a, "${_}_description" } split / /, $form->{taxaccounts};
- $form->format_string(@a);
+ $ARAP = ($form->{vc} eq 'customer') ? "AR" : "AP";
+ push @a, $ARAP;
+
# format payment dates
- map { $form->{"datepaid_$_"} = $locale->date(\%myconfig, $form->{"datepaid_$_"}) } (1 .. $form->{paidaccounts});
+ for $i (1 .. $form->{paidaccounts} - 1) {
+ if (exists $form->{longformat}) {
+ $form->{"datepaid_$i"} = $locale->date(\%myconfig, $form->{"datepaid_$i"}, $form->{longformat});
+ }
+
+ push @a, "${ARAP}_paid_$i", "source_$i", "memo_$i";
+ }
+
+ $form->format_string(@a);
- # create the form variables for the invoice, packing list or order
- if ($form->{type} =~ /order$/) {
+ ($form->{employee}) = split /--/, $form->{employee};
+ ($form->{warehouse}, $form->{warehouse_id}) = split /--/, $form->{warehouse};
+
+ # this is a label for the subtotals
+ $form->{groupsubtotaldescription} = $locale->text('Subtotal') if not exists $form->{groupsubtotaldescription};
+ delete $form->{groupsubtotaldescription} if $form->{deletegroupsubtotal};
+
+ # create the form variables
+ if ($order) {
OE->order_details(\%myconfig, \%$form);
} else {
IS->invoice_details(\%myconfig, \%$form);
}
- $form->{"${inv}date"} = $locale->date(\%myconfig, $form->{"${inv}date"}, 1);
- $form->{"${due}date"} = $locale->date(\%myconfig, $form->{"${due}date"}, 1);
-
+ if (exists $form->{longformat}) {
+ map { $form->{$_} = $locale->date(\%myconfig, $form->{$_}, $form->{longformat}) } ("${inv}date", "${due}date", "shippingdate", "transdate");
+ }
- @a = qw(name addr1 addr2 addr3 addr4);
+ @a = qw(name address1 address2 city state zipcode country);
- $fillshipto = 1;
+ $shipto = 1;
# if there is no shipto fill it in from billto
foreach $item (@a) {
if ($form->{"shipto$item"}) {
- $fillshipto = 0;
+ $shipto = 0;
last;
}
}
- if ($fillshipto) {
- if ($form->{type} eq 'purchase_order') {
+ if ($shipto) {
+ if ($form->{formname} eq 'purchase_order' || $form->{formname} eq 'request_quotation') {
$form->{shiptoname} = $myconfig{company};
- $form->{shiptoaddr1} = $myconfig{address};
+ $form->{shiptoaddress1} = $myconfig{address};
} else {
- map { $form->{"shipto$_"} = $form->{$_} } @a;
+ if ($form->{formname} !~ /bin_list/) {
+ map { $form->{"shipto$_"} = $form->{$_} } @a;
+ }
}
}
$form->{notes} =~ s/^\s+//g;
# some of the stuff could have umlauts so we translate them
- push @a, qw(shiptoname shiptoaddr1 shiptoaddr2 shiptoaddr3 shiptoaddr4 shippingpoint company address signature notes);
+ push @a, qw(contact shiptoname shiptoaddress1 shiptoaddress2 shiptocity shiptostate shiptozipcode shiptocountry shiptocontact shiptoemail shippingpoint shipvia notes employee warehouse);
- push @a, ("${inv}date", "${due}date");
+ push @a, ("${inv}number", "${inv}date", "${due}date", "email", "cc", "bcc");
+ map { $form->{$_} = $myconfig{$_} } (qw(company address tel fax signature businessnumber));
+ map { $form->{"user$_"} = $myconfig{$_} } qw(name email);
+ push @a, qw(company address tel fax signature businessnumber username useremail);
+
$form->format_string(@a);
$form->{templates} = "$myconfig{templates}";
- $form->{IN} = "$form->{type}.html";
+ $form->{IN} = "$form->{formname}.$form->{format}";
- if ($form->{format} eq 'postscript') {
- $form->{postscript} = 1;
- $form->{IN} =~ s/html$/tex/;
- }
- if ($form->{format} eq 'pdf') {
- $form->{pdf} = 1;
- $form->{IN} =~ s/html$/tex/;
+ if ($form->{format} =~ /(postscript|pdf)/) {
+ $form->{IN} =~ s/$&$/tex/;
}
- $form->format_string(email, shiptoemail, cc, bcc) if $form->{format} =~ /(pdf|postscript)/;
-
- if ($form->{media} eq 'printer') {
- $form->{OUT} = "| $myconfig{printer}";
+ $form->{pre} = "<body bgcolor=#ffffff>\n<pre>" if $form->{format} eq 'txt';
+
+ if ($form->{media} !~ /(screen|queue|email)/) {
+ $form->{OUT} = "| $printer{$form->{media}}";
+
+ if ($form->{printed} !~ /$form->{formname}/) {
+
+ $form->{printed} .= " $form->{formname}";
+ $form->{printed} =~ s/^ //;
+
+ $form->update_status(\%myconfig);
+ }
+
+ $old_form->{printed} = $form->{printed};
+
+ %audittrail = ( tablename => ($order) ? 'oe' : lc $ARAP,
+ reference => $form->{"${inv}number"},
+ formname => $form->{formname},
+ action => 'printed',
+ id => $form->{id} );
+
+ $old_form->{audittrail} .= $form->audittrail("", \%myconfig, \%audittrail);
+
}
+
if ($form->{media} eq 'email') {
$form->{subject} = qq|$form->{label} $form->{"${inv}number"}| unless $form->{subject};
-
+
+ $form->{plainpaper} = 1;
$form->{OUT} = "$sendmail";
+
+ if ($form->{emailed} !~ /$form->{formname}/) {
+ $form->{emailed} .= " $form->{formname}";
+ $form->{emailed} =~ s/^ //;
+
+ # save status
+ $form->update_status(\%myconfig);
+ }
+
+ $now = scalar localtime;
+ $cc = $locale->text('Cc').qq|: $form->{cc}\n| if $form->{cc};
+ $bcc = $locale->text('Bcc').qq|: $form->{bcc}\n| if $form->{bcc};
+
+ $old_form->{intnotes} = qq|$old_form->{intnotes}\n\n| if $old_form->{intnotes};
+ $old_form->{intnotes} .= qq|[email]
+|.$locale->text('Date').qq|: $now
+|.$locale->text('To').qq|: $form->{email}
+$cc${bcc}|.$locale->text('Subject').qq|: $form->{subject}\n|;
+
+ $old_form->{intnotes} .= qq|\n|.$locale->text('Message').qq|: |;
+ $old_form->{intnotes} .= ($form->{message}) ? $form->{message} : $locale->text('sent');
+
+ $old_form->{message} = $form->{message};
+ $old_form->{emailed} = $form->{emailed};
+
+ $old_form->{format} = "postscript" if $myconfig{printer};
+ $old_form->{media} = $myconfig{printer};
+
+ $old_form->save_intnotes(\%myconfig, ($order) ? 'oe' : lc $ARAP);
+
+ %audittrail = ( tablename => ($order) ? 'oe' : lc $ARAP,
+ reference => $form->{"${inv}number"},
+ formname => $form->{formname},
+ action => 'emailed',
+ id => $form->{id} );
+
+ $old_form->{audittrail} .= $form->audittrail("", \%myconfig, \%audittrail);
+ }
+
+
+ if ($form->{media} eq 'queue') {
+ %queued = split / /, $form->{queued};
+
+ if ($filename = $queued{$form->{formname}}) {
+ $form->{queued} =~ s/$form->{formname} $filename//;
+ unlink "$spool/$filename";
+ $filename =~ s/\..*$//g;
+ } else {
+ $filename = time;
+ $filename .= $$;
+ }
+
+ $filename .= ($form->{format} eq 'postscript') ? '.ps' : '.pdf';
+ $form->{OUT} = ">$spool/$filename";
+
+ $form->{queued} .= " $form->{formname} $filename";
+ $form->{queued} =~ s/^ //;
+
+ # save status
+ $form->update_status(\%myconfig);
+
+ $old_form->{queued} = $form->{queued};
+
+ %audittrail = ( tablename => ($order) ? 'oe' : lc $ARAP,
+ reference => $form->{"${inv}number"},
+ formname => $form->{formname},
+ action => 'queued',
+ id => $form->{id} );
+
+ $old_form->{audittrail} .= $form->audittrail("", \%myconfig, \%audittrail);
+
}
-
- $form->parse_template(\%myconfig, $userspath);
- $form->{callback} = "";
+ $form->{fileid} = $form->{"${inv}number"};
+ $form->{fileid} =~ s/(\s|\W)+//g;
+ $form->parse_template(\%myconfig, $userspath);
+
# if we got back here restore the previous form
- if ($form->{media} =~ /(printer|email)/) {
- if ($old_form) {
- # restore and display form
- map { $form->{$_} = $old_form->{$_} } keys %$old_form;
- $form->{rowcount}--;
- map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate creditlimit creditremaining);
-
- for $i (1 .. $form->{paidaccounts}) {
- map { $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"}) } qw(paid exchangerate);
- }
-
- &display_form;
- exit;
+ if ($old_form) {
+
+ $old_form->{"${inv}number"} = $form->{"${inv}number"};
+
+ # restore and display form
+ map { $form->{$_} = $old_form->{$_} } keys %$old_form;
+ delete $form->{pre};
+
+ $form->{rowcount}--;
+
+ map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate creditlimit creditremaining);
+
+ for $i (1 .. $form->{paidaccounts}) {
+ map { $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"}) } qw(paid exchangerate);
}
- $msg = ($form->{media} eq 'printer') ? $locale->text('sent to printer') : $locale->text('emailed to')." $form->{email}";
- $form->redirect(qq|$form->{label} $form->{"${inv}number"} $msg|);
+ &{ "$display_form" };
+
}
}
@@ -1033,6 +1508,8 @@ sub vendor_details {
sub post_as_new {
$form->{postasnew} = 1;
+ map { delete $form->{$_} } qw(printed emailed queued);
+
&post;
}
@@ -1042,14 +1519,18 @@ sub ship_to {
$title = $form->{title};
$form->{title} = $locale->text('Ship to');
-
- $form->{rowcount}--;
map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate creditlimit creditremaining);
# get details for name
&{ "$form->{vc}_details" };
+ $number = ($form->{vc} eq 'customer') ? $locale->text('Customer Number') : $locale->text('Vendor Number');
+
+ $nextsub = ($form->{display_form}) ? $form->{display_form} : "display_form";
+
+ $form->{rowcount}--;
+
$form->header;
print qq|
@@ -1062,53 +1543,63 @@ sub ship_to {
<td>
<table>
<tr class=listheading>
- <th class=listheading colspan=2 width=50%>|.$locale->text('To').qq|</th>
- <th class=listheading width=50%>|.$locale->text('Ship to').qq|</th>
+ <th class=listheading colspan=2 width=50%>|.$locale->text('Billing Address').qq|</th>
+ <th class=listheading width=50%>|.$locale->text('Shipping Address').qq|</th>
</tr>
<tr height="5"></tr>
<tr>
- <th align=right nowrap>|.$locale->text('Number').qq|</th>
+ <th align=right nowrap>$number</th>
<td>$form->{"$form->{vc}number"}</td>
</tr>
<tr>
- <th align=right nowrap>|.$locale->text('Name').qq|</th>
+ <th align=right nowrap>|.$locale->text('Company Name').qq|</th>
<td>$form->{name}</td>
- <td><input name=shiptoname size=35 maxsize=35 value="$form->{shiptoname}"></td>
+ <td><input name=shiptoname size=35 maxlength=64 value="$form->{shiptoname}"></td>
</tr>
<tr>
<th align=right nowrap>|.$locale->text('Address').qq|</th>
- <td>$form->{addr1}</td>
- <td><input name=shiptoaddr1 size=35 maxsize=35 value="$form->{shiptoaddr1}"></td>
+ <td>$form->{address1}</td>
+ <td><input name=shiptoaddress1 size=35 maxlength=32 value="$form->{shiptoaddress1}"></td>
</tr>
<tr>
<th></th>
- <td>$form->{addr2}</td>
- <td><input name=shiptoaddr2 size=35 maxsize=35 value="$form->{shiptoaddr2}"></td>
+ <td>$form->{address2}</td>
+ <td><input name=shiptoaddress2 size=35 maxlength=32 value="$form->{shiptoaddress2}"></td>
</tr>
<tr>
- <th></th>
- <td>$form->{addr3}</td>
- <td><input name=shiptoaddr3 size=35 maxsize=35 value="$form->{shiptoaddr3}"></td>
+ <th align=right nowrap>|.$locale->text('City').qq|</th>
+ <td>$form->{city}</td>
+ <td><input name=shiptocity size=35 maxlength=32 value="$form->{shiptocity}"></td>
</tr>
<tr>
- <th></th>
- <td>$form->{addr4}</td>
- <td><input name=shiptoaddr4 size=35 maxsize=35 value="$form->{shiptoaddr4}"></td>
+ <th align=right nowrap>|.$locale->text('State/Province').qq|</th>
+ <td>$form->{state}</td>
+ <td><input name=shiptostate size=35 maxlength=32 value="$form->{shiptostate}"></td>
+ </tr>
+ <tr>
+ <th align=right nowrap>|.$locale->text('Zip/Postal Code').qq|</th>
+ <td>$form->{zipcode}</td>
+ <td><input name=shiptozipcode size=10 maxlength=10 value="$form->{shiptozipcode}"></td>
+ </tr>
+ <tr>
+ <th align=right nowrap>|.$locale->text('Country').qq|</th>
+ <td>$form->{country}</td>
+ <td><input name=shiptocountry size=35 maxlength=32 value="$form->{shiptocountry}"></td>
</tr>
<tr>
<th align=right nowrap>|.$locale->text('Contact').qq|</th>
<td>$form->{contact}</td>
- <td><input name=shiptocontact size=35 maxsize=35 value="$form->{shiptocontact}"></td>
+ <td><input name=shiptocontact size=35 maxlength=64 value="$form->{shiptocontact}"></td>
</tr>
<tr>
<th align=right nowrap>|.$locale->text('Phone').qq|</th>
<td>$form->{"$form->{vc}phone"}</td>
- <td><input name=shiptophone size=20 maxsize=20 value="$form->{shiptophone}"></td>
+ <td><input name=shiptophone size=20 value="$form->{shiptophone}"></td>
</tr>
<tr>
<th align=right nowrap>|.$locale->text('Fax').qq|</th>
<td>$form->{"$form->{vc}fax"}</td>
- <td><input name=shiptofax size=20 maxsize=20 value="$form->{shiptofax}"></td>
+ <td><input name=shiptofax size=20 value="$form->{shiptofax}"></td>
</tr>
<tr>
<th align=right nowrap>|.$locale->text('E-mail').qq|</th>
@@ -1119,21 +1610,18 @@ sub ship_to {
</td>
</tr>
</table>
+
+<input type=hidden name=nextsub value=$nextsub>
|;
# delete shipto
- map { delete $form->{$_} } qw(shiptoname shiptoaddr1 shiptoaddr2 shiptoaddr3 shiptoaddr4 shiptocontact shiptophone shiptofax shiptoemail);
+ map { delete $form->{$_} } qw(shiptoname shiptoaddress1 shiptoaddress2 shiptocity shiptostate shiptozipcode shiptocountry shiptocontact shiptophone shiptofax shiptoemail header);
$form->{title} = $title;
- foreach $key (keys %$form) {
- $form->{$key} =~ s/"/&quot;/g;
- print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
- }
+ $form->hide_form();
print qq|
-<input type=hidden name=nextsub value=display_form>
-
<hr size=3 noshade>
<br>