diff options
Diffstat (limited to 'sql-ledger/bin/mozilla/oe.pl')
-rw-r--r-- | sql-ledger/bin/mozilla/oe.pl | 1825 |
1 files changed, 1592 insertions, 233 deletions
diff --git a/sql-ledger/bin/mozilla/oe.pl b/sql-ledger/bin/mozilla/oe.pl index 6a8326ff2..1c494c11f 100644 --- a/sql-ledger/bin/mozilla/oe.pl +++ b/sql-ledger/bin/mozilla/oe.pl @@ -1,6 +1,6 @@ #===================================================================== # SQL-Ledger, Accounting -# Copyright (c) 1998-2002 +# Copyright (c) 2001 # # Author: Dieter Simader # Email: dsimader@sql-ledger.org @@ -22,6 +22,7 @@ #====================================================================== # # Order entry module +# Quotation module # #====================================================================== @@ -31,8 +32,9 @@ use SL::IR; use SL::IS; use SL::PE; -require "$form->{path}/io.pl"; require "$form->{path}/arap.pl"; +require "$form->{path}/io.pl"; + 1; # end of main @@ -48,6 +50,16 @@ sub add { $form->{title} = $locale->text('Add Sales Order'); $form->{vc} = 'customer'; } + if ($form->{type} eq 'request_quotation') { + $form->{title} = $locale->text('Add Request for Quotation'); + $form->{vc} = 'vendor'; + } + if ($form->{type} eq 'sales_quotation') { + $form->{title} = $locale->text('Add Quotation'); + $form->{vc} = 'customer'; + } + + $form->{callback} = "$form->{script}?action=add&type=$form->{type}&vc=$form->{vc}&login=$form->{login}&path=$form->{path}&sessionid=$form->{sessionid}" unless $form->{callback}; &order_links; &prepare_order; @@ -57,61 +69,122 @@ sub add { sub edit { - - if ($form->{type} eq 'purchase_order') { + + if ($form->{type} =~ /(purchase_order|bin_list)/) { $form->{title} = $locale->text('Edit Purchase Order'); $form->{vc} = 'vendor'; + $form->{type} = 'purchase_order'; } - if ($form->{type} eq 'sales_order') { + if ($form->{type} =~ /((sales|work)_order|(packing|pick)_list)/) { $form->{title} = $locale->text('Edit Sales Order'); $form->{vc} = 'customer'; + $form->{type} = 'sales_order'; } - + if ($form->{type} eq 'request_quotation') { + $form->{title} = $locale->text('Edit Request for Quotation'); + $form->{vc} = 'vendor'; + } + if ($form->{type} eq 'sales_quotation') { + $form->{title} = $locale->text('Edit Quotation'); + $form->{vc} = 'customer'; + } + &order_links; &prepare_order; - &display_form; - + } + sub order_links { + + # get customer/vendor + $form->all_vc(\%myconfig, $form->{vc}, ($form->{vc} eq 'customer') ? "AR" : "AP"); + + $form->get_partsgroup(\%myconfig); + if (@{ $form->{all_partsgroup} }) { + $form->{selectpartsgroup} = "<option>\n"; + map { $form->{selectpartsgroup} .= qq|<option value="$_->{partsgroup}--$_->{id}">$_->{partsgroup}\n| } @{ $form->{all_partsgroup} }; + } - # get vendors / customers - $form->all_vc(\%myconfig, $form->{vc}); + # retrieve order/quotation + OE->retrieve(\%myconfig, \%$form); + + # currencies + @curr = split /:/, $form->{currencies}; + chomp $curr[0]; + $form->{defaultcurrency} = $curr[0]; + $form->{currency} = $form->{defaultcurrency} unless $form->{currency}; + + map { $form->{selectcurrency} .= "<option>$_\n" } @curr; - # retrieve order - OE->retrieve_order(\%myconfig, \%$form); + $form->{oldlanguage_code} = $form->{language_code}; - $taxincluded = $form->{taxincluded}; + $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|; + } + } + } + + if (@{ $form->{all_projects} }) { + $form->{selectprojectnumber} = "<option>\n"; + map { $form->{selectprojectnumber} .= qq|<option value="$_->{projectnumber}--$_->{id}">$_->{projectnumber}\n| } @{ $form->{all_projects} }; + } + $form->{shipto} = 1 if $form->{id}; + if (@{ $form->{"all_$form->{vc}"} }) { + unless ($form->{"$form->{vc}_id"}) { + $form->{"$form->{vc}_id"} = $form->{"all_$form->{vc}"}->[0]->{id}; + } + } + # get customer / vendor - if ($form->{type} eq 'purchase_order') { + if ($form->{type} =~ /(purchase_order|request_quotation|receive_order)/ ) { IR->get_vendor(\%myconfig, \%$form); } - if ($form->{type} eq 'sales_order') { + if ($form->{type} =~ /(sales|ship)_(order|quotation)/) { IS->get_customer(\%myconfig, \%$form); } ($form->{$form->{vc}}) = split /--/, $form->{$form->{vc}}; $form->{"old$form->{vc}"} = qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|; - # build the popup menus + # build selection list if (@{ $form->{"all_$form->{vc}"} }) { $form->{$form->{vc}} = qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|; - map { $form->{"select$form->{vc}"} .= "<option>$_->{name}--$_->{id}\n" } (@{ $form->{"all_$form->{vc}"} }); + map { $form->{"select$form->{vc}"} .= qq|<option value="$_->{name}--$_->{id}">$_->{name}\n| } (@{ $form->{"all_$form->{vc}"} }); } - # currencies - @curr = split /:/, $form->{currencies}; - chomp $curr[0]; - $form->{defaultcurrency} = $curr[0]; - - map { $form->{selectcurrency} .= "<option>$_\n" } @curr; + # departments + if (@{ $form->{all_departments} }) { + $form->{selectdepartment} = "<option>\n"; + $form->{department} = "$form->{department}--$form->{department_id}"; - $form->{taxincluded} = $taxincluded if ($form->{id}); + map { $form->{selectdepartment} .= qq|<option value="$_->{description}--$_->{id}">$_->{description}\n| } (@{ $form->{all_departments} }); + } + + $form->{employee} = "$form->{employee}--$form->{employee_id}"; + + # sales staff + if (@{ $form->{all_employees} }) { + $form->{selectemployee} = ""; + map { $form->{selectemployee} .= qq|<option value="$_->{name}--$_->{id}">$_->{name}\n| } (@{ $form->{all_employees} }); + } + if (@{ $form->{all_languages} }) { + $form->{selectlanguage} = "<option>\n"; + map { $form->{selectlanguage} .= qq|<option value="$_->{code}">$_->{description}\n| } @{ $form->{all_languages} }; + } + # forex $form->{forex} = $form->{exchangerate}; @@ -120,16 +193,22 @@ sub order_links { sub prepare_order { - $form->{format} = "html"; - $form->{media} = "screen"; - + $form->{format} = "postscript" if $myconfig{printer}; + $form->{media} = $myconfig{printer}; + $form->{formname} = $form->{type}; + $form->{oldcurrency} = $form->{currency}; + if ($form->{id}) { - map { $form->{$_} =~ s/"/"/g } qw(invnumber shippingpoint notes shiptoname shiptoaddr1 shiptoaddr2 shiptoaddr3 shiptoaddr4 shiptocontact); + map { $form->{$_} = $form->quote($form->{$_}) } qw(ordnumber quonumber shippingpoint shipvia notes intnotes shiptoname shiptoaddress1 shiptoaddress2 shiptocity shiptostate shiptozipcode shiptocountry shiptocontact); - foreach $ref (@{ $form->{order_details} } ) { + foreach $ref (@{ $form->{form_details} } ) { $i++; map { $form->{"${_}_$i"} = $ref->{$_} } keys %{ $ref }; + + $form->{"projectnumber_$i"} = qq|$ref->{projectnumber}--$ref->{project_id}|; + $form->{"partsgroup_$i"} = qq|$ref->{partsgroup}--$ref->{partsgroup_id}|; + $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100); ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/); @@ -138,12 +217,26 @@ sub prepare_order { $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces); $form->{"qty_$i"} = $form->format_amount(\%myconfig, $form->{"qty_$i"}); + $form->{"oldqty_$i"} = $form->{"qty_$i"}; - map { $form->{"${_}_$i"} =~ s/"/"/g } qw(partnumber description unit); + map { $form->{"${_}_$i"} = $form->quote($form->{"${_}_$i"}) } qw(partnumber sku description unit); $form->{rowcount} = $i; } } + if ($form->{type} eq 'sales_quotation') { + $form->{readonly} = 1 if $myconfig{acs} =~ /Quotations--Quotation/; + } + if ($form->{type} eq 'request_quotation') { + $form->{readonly} = 1 if $myconfig{acs} =~ /Quotations--RFQ/; + } + if ($form->{type} eq 'sales_order') { + $form->{readonly} = 1 if $myconfig{acs} =~ /Order Entry--Sales Order/; + } + if ($form->{type} eq 'purchase_order') { + $form->{readonly} = 1 if $myconfig{acs} =~ /Order Entry--Purchase Order/; + } + } @@ -155,40 +248,36 @@ sub form_header { if ($form->{id}) { $openclosed = qq| <tr> - <td colspan=2 align=center> - <table> - <tr> - <th nowrap><input name=closed type=radio class=radio value=0 $checkedopen> |.$locale->text('Open').qq|</th> - <th nowrap><input name=closed type=radio class=radio value=1 $checkedclosed> |.$locale->text('Closed').qq|</th> - </tr> - </table> - </td> + <th nowrap align=right><input name=closed type=radio class=radio value=0 $checkedopen> |.$locale->text('Open').qq|</th> + <th nowrap align=left><input name=closed type=radio class=radio value=1 $checkedclosed> |.$locale->text('Closed').qq|</th> </tr> |; } # set option selected - foreach $item ($form->{vc}, currency) { + $form->{selectcurrency} =~ s/ selected//; + $form->{selectcurrency} =~ s/option>\Q$form->{currency}\E/option selected>$form->{currency}/; + + foreach $item ($form->{vc}, department, employee) { + $form->{"select$item"} = $form->unescape($form->{"select$item"}); $form->{"select$item"} =~ s/ selected//; - $form->{"select$item"} =~ s/option>\Q$form->{$item}\E/option selected>$form->{$item}/; + $form->{"select$item"} =~ s/(<option value="\Q$form->{$item}\E")/$1 selected/; } + $form->{exchangerate} = $form->format_amount(\%myconfig, $form->{exchangerate}); - $form->{creditlimit} = $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0"); - $form->{creditremaining} = $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0"); - $exchangerate = qq| <input type=hidden name=forex value=$form->{forex}> |; if ($form->{currency} ne $form->{defaultcurrency}) { if ($form->{forex}) { - $exchangerate .= qq|<th align=right>|.$locale->text('Exchangerate').qq|</th><td>$form->{exchangerate}</td> + $exchangerate .= qq|<th align=right>|.$locale->text('Exchange Rate').qq|</th><td>$form->{exchangerate}</td> <input type=hidden name=exchangerate value=$form->{exchangerate}> |; } else { - $exchangerate .= qq|<th align=right>|.$locale->text('Exchangerate').qq|</th><td><input name=exchangerate size=10 value=$form->{exchangerate}></td>|; + $exchangerate .= qq|<th align=right>|.$locale->text('Exchange Rate').qq|</th><td><input name=exchangerate size=10 value=$form->{exchangerate}></td>|; } } @@ -196,45 +285,160 @@ sub form_header { $vclabel = ucfirst $form->{vc}; $vclabel = $locale->text($vclabel); - if ($form->{type} eq 'sales_order') { + $terms = qq| + <tr> + <th align=right nowrap>|.$locale->text('Terms').qq|</th> + <td nowrap><input name=terms size="3" maxlength="3" value=$form->{terms}> |.$locale->text('days').qq|</td> + </tr> +|; + + + if ($form->{business}) { + $business = qq| + <tr> + <th align=right>|.$locale->text('Business').qq|</th> + <td>$form->{business}</td> + <th align=right>|.$locale->text('Trade Discount').qq|</th> + <td>|.$form->format_amount(\%myconfig, $form->{tradediscount} * 100).qq| %</td> + </tr> +|; + } + + if ($form->{type} !~ /_quotation$/) { + $ordnumber = qq| + <tr> + <th width=70% align=right nowrap>|.$locale->text('Order Number').qq|</th> + <td><input name=ordnumber size=20 value="$form->{ordnumber}"></td> + <input type=hidden name=quonumber value="$form->{quonumber}"> + </tr> + <tr> + <th align=right nowrap>|.$locale->text('Order Date').qq|</th> + <td><input name=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate}></td> + </tr> + <tr> + <th align=right nowrap=true>|.$locale->text('Required by').qq|</th> + <td><input name=reqdate size=11 title="$myconfig{dateformat}" value=$form->{reqdate}></td> + </tr> +|; - $n = ($form->{creditremaining} =~ /-/) ? "0" : "1"; + $n = ($form->{creditremaining} < 0) ? "0" : "1"; $creditremaining = qq| <tr> <td></td> <td colspan=3> - <table width=100%> + <table> <tr> - <th align=left nowrap>|.$locale->text('Credit Limit').qq|</th> - <td>$form->{creditlimit}</td> - <th align=left nowrap>|.$locale->text('Remaining').qq|</th> - <td class="plus$n">$form->{creditremaining}</td> + <th nowrap>|.$locale->text('Credit Limit').qq|</th> + <td>|.$form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0").qq|</td> + <td width=20%></td> + <th nowrap>|.$locale->text('Remaining').qq|</th> + <td class="plus$n" nowrap>|.$form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0").qq|</td> </tr> </table> </td> </tr> |; + } else { + $reqlabel = ($form->{type} eq 'sales_quotation') ? $locale->text('Valid until') : $locale->text('Required by'); + if ($form->{type} eq 'sales_quotation') { + $ordnumber = qq| + <tr> + <th width=70% align=right nowrap>|.$locale->text('Quotation Number').qq|</th> + <td><input name=quonumber size=20 value="$form->{quonumber}"></td> + <input type=hidden name=ordnumber value="$form->{ordnumber}"> + </tr> +|; + } else { + $ordnumber = qq| + <tr> + <th width=70% align=right nowrap>|.$locale->text('RFQ Number').qq|</th> + <td><input name=quonumber size=20 value="$form->{quonumber}"></td> + <input type=hidden name=ordnumber value="$form->{ordnumber}"> + </tr> +|; + + $terms = ""; + } + + + $ordnumber .= qq| + <tr> + <th align=right nowrap>|.$locale->text('Quotation Date').qq|</th> + <td><input name=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate}></td> + </tr> + <tr> + <th align=right nowrap=true>$reqlabel</th> + <td><input name=reqdate size=11 title="$myconfig{dateformat}" value=$form->{reqdate}></td> + </tr> +|; + } - $vc = ($form->{"select$form->{vc}"}) ? qq|<select name=$form->{vc}>$form->{"select$form->{vc}"}</select>\n<input type=hidden name="select$form->{vc}" value="$form->{"select$form->{vc}"}">| : qq|<input name=$form->{vc} value="$form->{$form->{vc}}" size=35>|; + if ($form->{"select$form->{vc}"}) { + $vc = qq|<select name=$form->{vc}>$form->{"select$form->{vc}"}</select> + <input type=hidden name="select$form->{vc}" value="| + .$form->escape($form->{"select$form->{vc}"},1).qq|">|; + } else { + $vc = qq|<input name=$form->{vc} value="$form->{$form->{vc}}" size=35>|; + } + + $department = qq| + <tr> + <th align="right" nowrap>|.$locale->text('Department').qq|</th> + <td colspan=3><select name=department>$form->{selectdepartment}</select> + <input type=hidden name=selectdepartment value="| + .$form->escape($form->{selectdepartment},1).qq|"> + </td> + </tr> +| if $form->{selectdepartment}; + + $employee = qq| + <input type=hidden name=employee value="$form->{employee}"> +|; + if ($form->{type} eq 'sales_order') { + if ($form->{selectemployee}) { + $employee = qq| + <tr> + <th align=right nowrap>|.$locale->text('Salesperson').qq|</th> + <td><select name=employee>$form->{selectemployee}</select></td> + <input type=hidden name=selectemployee value="|. + $form->escape($form->{selectemployee},1).qq|" + </tr> +|; + } + } else { + $employee = qq| + <tr> + <th align=right nowrap>|.$locale->text('Employee').qq|</th> + <td><select name=employee>$form->{selectemployee}</select></td> + <input type=hidden name=selectemployee value="|. + $form->escape($form->{selectemployee},1).qq|" + </tr> +|; + } + $form->header; print qq| <body> -<form method=post action=$form->{script}> +<form method=post action="$form->{script}#end"> <input type=hidden name=id value=$form->{id}> <input type=hidden name=type value=$form->{type}> +<input type=hidden name=formname value=$form->{formname}> <input type=hidden name=media value=$form->{media}> <input type=hidden name=format value=$form->{format}> +<input type=hidden name=queued value="$form->{queued}"> +<input type=hidden name=printed value="$form->{printed}"> +<input type=hidden name=emailed value="$form->{emailed}"> + <input type=hidden name=vc value=$form->{vc}> -<input type=hidden name=employee value="$form->{employee}"> <input type=hidden name=title value="$form->{title}"> @@ -242,8 +446,12 @@ sub form_header { <input type=hidden name=creditlimit value=$form->{creditlimit}> <input type=hidden name=creditremaining value=$form->{creditremaining}> +<input type=hidden name=tradediscount value=$form->{tradediscount}> +<input type=hidden name=business value="$form->{business}"> + + <table width=100%> - <tr> + <tr class=listtop> <th class=listtop>$form->{title}</th> </tr> <tr height="5"></tr> @@ -252,7 +460,7 @@ sub form_header { <table width="100%"> <tr valign=top> <td> - <table> + <table width=100%> <tr> <th align=right>$vclabel</th> <td colspan=3>$vc</td> @@ -260,6 +468,8 @@ sub form_header { <input type=hidden name="old$form->{vc}" value="$form->{"old$form->{vc}"}"> </tr> $creditremaining + $business + $department <tr> <th align=right>|.$locale->text('Currency').qq|</th> <td><select name=currency>$form->{selectcurrency}</select></td> @@ -268,30 +478,21 @@ sub form_header { $exchangerate </tr> <tr> - <th align=right>|.$locale->text('Ship via').qq|</th> + <th align=right>|.$locale->text('Shipping Point').qq|</th> <td colspan=3><input name=shippingpoint size=35 value="$form->{shippingpoint}"></td> </tr> + <tr> + <th align=right>|.$locale->text('Ship via').qq|</th> + <td colspan=3><input name=shipvia size=35 value="$form->{shipvia}"></td> + </tr> </table> </td> <td align=right> - <table width=100%> + <table> $openclosed - <tr> - <th align=right nowrap>|.$locale->text('Order Number').qq|</th> - <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td> - </tr> - <tr> - <th align=right nowrap>|.$locale->text('Order Date').qq|</th> - <td><input name=orddate size=11 title="$myconfig{dateformat}" value=$form->{orddate}></td> - </tr> - <tr> - <th align=right nowrap=true>|.$locale->text('Required by').qq|</th> - <td><input name=reqdate size=11 title="$myconfig{dateformat}" value=$form->{reqdate}></td> - </tr> - <tr> - <th align=right nowrap>|.$locale->text('Terms: Net').qq|</th> - <td nowrap=true><input name=terms size="3" maxlength="3" value=$form->{terms}> |.$locale->text('days').qq|</td> - </tr> + $employee + $ordnumber + $terms </table> </td> </tr> @@ -302,10 +503,12 @@ sub form_header { <!-- shipto are in hidden variables --> <input type=hidden name=shiptoname value="$form->{shiptoname}"> -<input type=hidden name=shiptoaddr1 value="$form->{shiptoaddr1}"> -<input type=hidden name=shiptoaddr2 value="$form->{shiptoaddr2}"> -<input type=hidden name=shiptoaddr3 value="$form->{shiptoaddr3}"> -<input type=hidden name=shiptoaddr4 value="$form->{shiptoaddr4}"> +<input type=hidden name=shiptoaddress1 value="$form->{shiptoaddress1}"> +<input type=hidden name=shiptoaddress2 value="$form->{shiptoaddress2}"> +<input type=hidden name=shiptocity value="$form->{shiptocity}"> +<input type=hidden name=shiptostate value="$form->{shiptostate}"> +<input type=hidden name=shiptozipcode value="$form->{shiptozipcode}"> +<input type=hidden name=shiptocountry value="$form->{shiptocountry}"> <input type=hidden name=shiptocontact value="$form->{shiptocontact}"> <input type=hidden name=shiptophone value="$form->{shiptophone}"> <input type=hidden name=shiptofax value="$form->{shiptofax}"> @@ -338,16 +541,28 @@ sub form_footer { $form->{invtotal} = $form->{invsubtotal}; - if (($rows = $form->numtextrows($form->{notes}, 50, 8)) < 2) { + if (($rows = $form->numtextrows($form->{notes}, 25, 8)) < 2) { $rows = 2; } - $notes = qq|<textarea name=notes rows=$rows cols=50 wrap=soft>$form->{notes}</textarea>|; + if (($introws = $form->numtextrows($form->{intnotes}, 35, 8)) < 2) { + $introws = 2; + } + $rows = ($rows > $introws) ? $rows : $introws; + $notes = qq|<textarea name=notes rows=$rows cols=25 wrap=soft>$form->{notes}</textarea>|; + $intnotes = qq|<textarea name=intnotes rows=$rows cols=35 wrap=soft>$form->{intnotes}</textarea>|; + - $taxincluded = ""; $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : ""; + + $taxincluded = ""; if ($form->{taxaccounts}) { $taxincluded = qq| - <input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}> <b>|.$locale->text('Tax Included').qq|</b><br><br> + <tr height="5"></tr> + <tr> + <td align=right> + <input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}></td> + <th align=left>|.$locale->text('Tax Included').qq|</th> + </tr> |; } @@ -381,30 +596,33 @@ sub form_footer { $form->{oldinvtotal} = $form->{invtotal}; $form->{invtotal} = $form->format_amount(\%myconfig, $form->{invtotal}, 2, 0); + print qq| <tr> <td> <table width=100%> - <tr valign=bottom> + <tr valign=top> <td> <table> <tr> <th align=left>|.$locale->text('Notes').qq|</th> + <th align=left>|.$locale->text('Internal Notes').qq|</th> </tr> - <tr> + <tr valign=top> <td>$notes</td> + <td>$intnotes</td> </tr> </table> </td> - <td align=right width=100%> - $taxincluded - <table width=100%> + <td align=right> + <table> $subtotal $tax <tr> <th align=right>|.$locale->text('Total').qq|</th> <td align=right>$form->{invtotal}</td> </tr> + $taxincluded </table> </td> </tr> @@ -414,6 +632,9 @@ sub form_footer { <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}> <input type=hidden name=oldtotalpaid value=$totalpaid> <tr> + <td><hr size=3 noshade></td> + </tr> + <tr> <td> |; @@ -422,12 +643,13 @@ sub form_footer { print qq| </td> </tr> - <tr> - <td><hr size=3 noshade></td> - </tr> </table> <br> +|; + + if (! $form->{readonly}) { + print qq| <input class=submit type=submit name=action value="|.$locale->text('Update').qq|"> <input class=submit type=submit name=action value="|.$locale->text('Ship to').qq|"> <input class=submit type=submit name=action value="|.$locale->text('Print').qq|"> @@ -435,13 +657,68 @@ sub form_footer { <input class=submit type=submit name=action value="|.$locale->text('Save').qq|"> |; + if ($latex) { + print qq| +<input class=submit type=submit name=action value="|.$locale->text('Print and Save').qq|">|; + } + if ($form->{id}) { print qq| <input class=submit type=submit name=action value="|.$locale->text('Save as new').qq|"> -<input class=submit type=submit name=action value="|.$locale->text('Delete').qq|"> -<input class=submit type=submit name=action value="|.$locale->text('Invoice').qq|"> +<input class=submit type=submit name=action value="|.$locale->text('Delete').qq|">|; + + if ($form->{type} =~ /sales_/) { + if ($myconfig{acs} !~ /AP--Sales Invoice/) { + print qq| +<input class=submit type=submit name=action value="|.$locale->text('Sales Invoice').qq|"> +|; + } + } else { + if ($myconfig{acs} !~ /AR--Vendor Invoice/) { + print qq| +<input class=submit type=submit name=action value="|.$locale->text('Vendor Invoice').qq|"> +|; + } + } + + if ($form->{type} eq 'sales_order') { + if ($myconfig{acs} !~ /Quotations--RFQ/) { + print qq| +<input class=submit type=submit name=action value="|.$locale->text('Quotation').qq|"> +|; + } + } + + if ($form->{type} eq 'purchase_order') { + if ($myconfig{acs} !~ /Quotations--RFQ/) { + print qq| +<input class=submit type=submit name=action value="|.$locale->text('RFQ').qq|"> +|; + } + } + + if ($form->{type} eq 'sales_quotation') { + if ($myconfig{acs} !~ /Order Entry--Sales Order/) { + print qq| +<input class=submit type=submit name=action value="|.$locale->text('Sales Order').qq|"> +|; + } + } + + if ($myconfig{acs} !~ /Order Entry--Purchase Order/) { + if ($form->{type} eq 'request_quotation') { + print qq| +<input class=submit type=submit name=action value="|.$locale->text('Purchase Order').qq|"> |; + } + } } + } + + if ($form->{menubar}) { + require "$form->{path}/menu.pl"; + &menubar; + } print qq| @@ -451,10 +728,12 @@ sub form_footer { <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}> </form> +<a name=end></a> + </body> </html> |; @@ -464,40 +743,45 @@ sub form_footer { sub update { - map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate creditlimit creditremaining); + map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate); &check_name($form->{vc}); - &check_project; $buysell = 'buy'; $buysell = 'sell' if ($form->{vc} eq 'vendor'); - $form->{exchangerate} = $exchangerate if ($form->{forex} = ($exchangerate = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{orddate}, $buysell))); + $form->{exchangerate} = $exchangerate if ($form->{forex} = ($exchangerate = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{transdate}, $buysell))); - my $i = $form->{rowcount}; $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1; + foreach $item (qw(partsgroup projectnumber)) { + $form->{"select$item"} = $form->unescape($form->{"select$item"}) if $form->{"select$item"}; + } + if (($form->{"partnumber_$i"} eq "") && ($form->{"description_$i"} eq "") && ($form->{"partsgroup_$i"} eq "")) { $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid}); &check_form; - + } else { - - if ($form->{type} eq 'purchase_order') { + + if ($form->{type} eq 'purchase_order' || $form->{type} eq 'request_quotation') { IR->retrieve_item(\%myconfig, \%$form); } - if ($form->{type} eq 'sales_order') { + if ($form->{type} eq 'sales_order' || $form->{type} eq 'sales_quotation') { IS->retrieve_item(\%myconfig, \%$form); } - my $rows = scalar @{ $form->{item_list} }; - + $rows = scalar @{ $form->{item_list} }; + $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{discount} * 100); if ($rows) { - $form->{"qty_$i"} = 1 unless ($form->{"qty_$i"}); + $form->{"qty_$i"} = 1; + if ($form->{type} !~ /_quotation/) { + $form->{"reqdate_$i"} = $form->{reqdate} unless $form->{"reqdate_$i"}; + } if ($rows > 1) { @@ -508,7 +792,7 @@ sub update { $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"}); - map { $form->{item_list}[$i]{$_} =~ s/"/"/g } qw(partnumber description unit); + map { $form->{item_list}[$i]{$_} = $form->quote($form->{item_list}[$i]{$_}) } qw(partnumber description unit); map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] }; $s = ($sellprice) ? $sellprice : $form->{"sellprice_$i"}; @@ -520,10 +804,13 @@ sub update { if ($sellprice) { $form->{"sellprice_$i"} = $sellprice; } else { - # if there is an exchange rate adjust sellprice + # if there is an exchange rate adjust prices + $form->{"sellprice_$i"} *= (1 - $form->{tradediscount}); $form->{"sellprice_$i"} /= $exchangerate; } + map { $form->{"${_}_$i"} /= $exchangerate } qw(listprice lastcost); + $amount = $form->{"sellprice_$i"} * $form->{"qty_$i"} * (1 - $form->{"discount_$i"} / 100); map { $form->{"${_}_base"} = 0 } (split / /, $form->{taxaccounts}); map { $form->{"${_}_base"} += $amount } (split / /, $form->{"taxaccounts_$i"}); @@ -531,7 +818,8 @@ sub update { $form->{creditremaining} -= $amount; - $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces); + map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}, $decimalplaces) } qw(sellprice listprice lastcost); + $form->{"qty_$i"} = $form->format_amount(\%myconfig, $form->{"qty_$i"}); } @@ -540,21 +828,23 @@ sub update { } else { # ok, so this is a new part # ask if it is a part or service item - + if ($form->{"partsgroup_$i"} && ($form->{"partsnumber_$i"} eq "") && ($form->{"description_$i"} eq "")) { $form->{rowcount}--; $form->{"discount_$i"} = ""; &display_form; } else { - - $form->{"id_$i"} = 0; + + $form->{"id_$i"} = 0; $form->{"unit_$i"} = $locale->text('ea'); + $form->{"reqdate_$i"} = $form->{reqdate} if $form->{type} !~ /_quotation/; &new_item; } } } + } @@ -564,16 +854,79 @@ sub search { if ($form->{type} eq 'purchase_order') { $form->{title} = $locale->text('Purchase Orders'); $form->{vc} = 'vendor'; + $ordlabel = $locale->text('Order Number'); + $ordnumber = 'ordnumber'; + $employee = $locale->text('Employee'); + } + if ($form->{type} eq 'request_quotation') { + $form->{title} = $locale->text('Request for Quotations'); + $form->{vc} = 'vendor'; + $ordlabel = $locale->text('RFQ Number'); + $ordnumber = 'quonumber'; + $employee = $locale->text('Employee'); + } + if ($form->{type} eq 'receive_order') { + $form->{title} = $locale->text('Receive Merchandise'); + $form->{vc} = 'vendor'; + $ordlabel = $locale->text('Order Number'); + $ordnumber = 'ordnumber'; + $employee = $locale->text('Employee'); } if ($form->{type} eq 'sales_order') { $form->{title} = $locale->text('Sales Orders'); $form->{vc} = 'customer'; + $ordlabel = $locale->text('Order Number'); + $ordnumber = 'ordnumber'; + $employee = $locale->text('Salesperson'); + } + if ($form->{type} eq 'ship_order') { + $form->{title} = $locale->text('Ship Merchandise'); + $form->{vc} = 'customer'; + $ordlabel = $locale->text('Order Number'); + $ordnumber = 'ordnumber'; + $employee = $locale->text('Salesperson'); + + } + + if ($form->{type} eq 'sales_quotation') { + $form->{title} = $locale->text('Quotations'); + $form->{vc} = 'customer'; + $ordlabel = $locale->text('Quotation Number'); + $ordnumber = 'quonumber'; + $employee = $locale->text('Employee'); + } + + $manager = qq| + <td><input name="l_manager" class=checkbox type=checkbox value=Y> |.$locale->text('Manager').qq|</td>|; + + if ($form->{type} =~ /(ship|receive)_order/) { + OE->get_warehouses(\%myconfig, \%$form); + + $manager = ""; + + # warehouse + if (@{ $form->{all_warehouses} }) { + $form->{selectwarehouse} = "<option>\n"; + $form->{warehouse} = qq|$form->{warehouse}--$form->{warehouse_id}|; + + map { $form->{selectwarehouse} .= qq|<option value="$_->{description}--$_->{id}">$_->{description}\n| } (@{ $form->{all_warehouses} }); + + $warehouse = qq| + <tr> + <th align=right>|.$locale->text('Warehouse').qq|</th> + <td><select name=warehouse>$form->{selectwarehouse}</select></td> + <input type=hidden name=selectwarehouse value="|. + $form->escape($form->{selectwarehouse},1).qq|"> + </tr> +|; + + } } # setup vendor / customer selection - $form->all_vc(\%myconfig, "$form->{vc}"); + $form->all_vc(\%myconfig, $form->{vc}, ($form->{vc} eq 'customer') ? "AR" : "AP"); - map { $vc .= "<option>$_->{name}--$_->{id}\n" } @{ $form->{"all_$form->{vc}"} }; + map { $vc .= qq|<option value="$_->{name}--$_->{id}">$_->{name}\n| } @{ $form->{"all_$form->{vc}"} }; $vclabel = ucfirst $form->{vc}; $vclabel = $locale->text($vclabel); @@ -583,6 +936,56 @@ sub search { $vc = ($vc) ? qq|<select name=$form->{vc}><option>\n$vc</select>| : qq|<input name=$form->{vc} size=35>|; + # departments + if (@{ $form->{all_departments} }) { + $form->{selectdepartment} = "<option>\n"; + + map { $form->{selectdepartment} .= qq|<option value="$_->{description}--$_->{id}">$_->{description}\n| } (@{ $form->{all_departments} }); + } + + $department = qq| + <tr> + <th align=right nowrap>|.$locale->text('Department').qq|</th> + <td colspan=3><select name=department>$form->{selectdepartment}</select></td> + </tr> +| if $form->{selectdepartment}; + + if ($form->{type} !~ /(ship|receive)_order/) { + $openclosed = qq| + <tr> + <td><input name="open" class=checkbox type=checkbox value=1 checked> |.$locale->text('Open').qq|</td> + <td><input name="closed" class=checkbox type=checkbox value=1 $form->{closed}> |.$locale->text('Closed').qq|</td> + </tr> +|; + } else { + + $openclosed = qq| + <input type=hidden name="open" value=1> +|; + } + + + # accounting years + $form->{selectaccountingyear} = "<option>\n"; + map { $form->{selectaccountingyear} .= qq|<option>$_\n| } @{ $form->{all_years} }; + $form->{selectaccountingmonth} = "<option>\n"; + map { $form->{selectaccountingmonth} .= qq|<option value=$_>|.$locale->text($form->{all_month}{$_}).qq|\n| } sort keys %{ $form->{all_month} }; + + $selectfrom = qq| + <tr> + <th align=right>|.$locale->text('Period').qq|</th> + <td colspan=3> + <select name=month>$form->{selectaccountingmonth}</select> + <select name=year>$form->{selectaccountingyear}</select> + <input name=interval class=radio type=radio value=0 checked>|.$locale->text('Current').qq| + <input name=interval class=radio type=radio value=1>|.$locale->text('Month').qq| + <input name=interval class=radio type=radio value=3>|.$locale->text('Quarter').qq| + <input name=interval class=radio type=radio value=12>|.$locale->text('Year').qq| + </td> + </tr> +|; + + $form->header; print qq| @@ -602,36 +1005,47 @@ sub search { <th align=right>$vclabel</th> <td colspan=3>$vc</td> </tr> + $warehouse + $department <tr> - <th align=right>|.$locale->text('Order Number').qq|</th> - <td colspan=3><input name=ordnumber size=20></td> + <th align=right>$ordlabel</th> + <td colspan=3><input name="$ordnumber" size=20></td> + </tr> + <tr> + <th align=right>|.$locale->text('Ship via').qq|</th> + <td colspan=3><input name="shipvia" size=40></td> </tr> <tr> <th align=right>|.$locale->text('From').qq|</th> <td><input name=transdatefrom size=11 title="$myconfig{dateformat}"></td> - <th align=right>|.$locale->text('to').qq|</th> + <th align=right>|.$locale->text('To').qq|</th> <td><input name=transdateto size=11 title="$myconfig{dateformat}"></td> </tr> <input type=hidden name=sort value=transdate> + $selectfrom <tr> <th align=right>|.$locale->text('Include in Report').qq|</th> <td colspan=3> <table> + $openclosed <tr> - <td><input name="open" class=checkbox type=checkbox value=1 checked> |.$locale->text('Open').qq|</td> - <td><input name="closed" class=checkbox type=checkbox value=1 $form->{closed}> |.$locale->text('Closed').qq|</td> - </tr> - <tr> - <td><input name="l_id" class=checkbox type=checkbox value=Y> |.$locale->text('ID').qq|</td> - <td><input name="l_ordnumber" class=checkbox type=checkbox value=Y checked> |.$locale->text('Order Number').qq|</td> - <td><input name="l_transdate" class=checkbox type=checkbox value=Y checked> |.$locale->text('Order Date').qq|</td> + <td><input name="l_id" class=checkbox type=checkbox value=Y> + |.$locale->text('ID').qq|</td> + <td><input name="l_$ordnumber" class=checkbox type=checkbox value=Y checked> $ordlabel</td> + <td><input name="l_transdate" class=checkbox type=checkbox value=Y checked> |.$locale->text('Date').qq|</td> <td><input name="l_reqdate" class=checkbox type=checkbox value=Y checked> |.$locale->text('Required by').qq|</td> </tr> <tr> <td><input name="l_name" class=checkbox type=checkbox value=Y checked> $vclabel</td> + <td><input name="l_employee" class=checkbox type=checkbox value=Y checked> $employee</td> + $manager + <td><input name="l_shipvia" class=checkbox type=checkbox value=Y> |.$locale->text('Ship via').qq|</td> + </tr> + <tr> <td><input name="l_netamount" class=checkbox type=checkbox value=Y> |.$locale->text('Amount').qq|</td> <td><input name="l_tax" class=checkbox type=checkbox value=Y> |.$locale->text('Tax').qq|</td> <td><input name="l_amount" class=checkbox type=checkbox value=Y checked> |.$locale->text('Total').qq|</td> + <td><input name="l_curr" class=checkbox type=checkbox value=Y checked> |.$locale->text('Currency').qq|</td> </tr> <tr> <td><input name="l_subtotal" class=checkbox type=checkbox value=Y> |.$locale->text('Subtotal').qq|</td> @@ -646,10 +1060,12 @@ sub search { </table> <br> -<input type=hidden name=nextsub value=orders> +<input type=hidden name=nextsub value=transactions> + <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=vc value=$form->{vc}> <input type=hidden name=type value=$form->{type}> @@ -663,29 +1079,47 @@ sub search { } -sub orders { +sub transactions { - $name = $form->{$form->{vc}}; - # split vendor / customer ($form->{$form->{vc}}, $form->{"$form->{vc}_id"}) = split(/--/, $form->{$form->{vc}}); + $ordnumber = ($form->{type} =~ /_order/) ? 'ordnumber' : 'quonumber'; + OE->transactions(\%myconfig, \%$form); + $number = $form->escape($form->{$ordnumber}); + $name = $form->escape($form->{$form->{vc}}); + $department = $form->escape($form->{department}); + $warehouse = $form->escape($form->{warehouse}); + $shipvia = $form->escape($form->{shipvia}); + # construct href - $href = "$form->{script}?path=$form->{path}&action=orders&type=$form->{type}&vc=$form->{vc}&login=$form->{login}&password=$form->{password}&transdatefrom=$form->{transdatefrom}&transdateto=$form->{transdateto}&open=$form->{open}&closed=$form->{closed}&ordnumber=" . $form->escape($form->{ordnumber}) . "&$form->{vc}=" . $form->escape($form->{$form->{vc}}); + $href = qq|$form->{script}?oldsort=$form->{oldsort}&direction=$form->{direction}&path=$form->{path}&action=transactions&type=$form->{type}&vc=$form->{vc}&login=$form->{login}&sessionid=$form->{sessionid}&transdatefrom=$form->{transdatefrom}&transdateto=$form->{transdateto}&open=$form->{open}&closed=$form->{closed}&$ordnumber=$number&$form->{vc}=$name--$form->{"$form->{vc}_id"}&department=$department&warehouse=$warehouse&shipvia=$shipvia|; # construct callback - $name =~ s/&/_/g; - $callback = "$form->{script}?path=$form->{path}&action=orders&type=$form->{type}&vc=$form->{vc}&login=$form->{login}&password=$form->{password}&transdatefrom=$form->{transdatefrom}&transdateto=$form->{transdateto}&open=$form->{open}&closed=$form->{closed}&ordnumber=$form->{ordnumber}&$form->{vc}=$name"; + $number = $form->escape($form->{$ordnumber},1); + $name = $form->escape($form->{$form->{vc}},1); + $department = $form->escape($form->{department},1); + $warehouse = $form->escape($form->{warehouse},1); + $shipvia = $form->escape($form->{shipvia},1); + + # flip direction + $form->sort_order(); + + $callback = qq|$form->{script}?oldsort=$form->{oldsort}&direction=$form->{direction}&path=$form->{path}&action=transactions&type=$form->{type}&vc=$form->{vc}&login=$form->{login}&sessionid=$form->{sessionid}&transdatefrom=$form->{transdatefrom}&transdateto=$form->{transdateto}&open=$form->{open}&closed=$form->{closed}&$ordnumber=$number&$form->{vc}=$name--$form->{"$form->{vc}_id"}&department=$department&warehouse=$warehouse&shipvia=$shipvia|; - @columns = $form->sort_columns(qw(transdate reqdate id ordnumber name netamount tax amount curr open closed)); + @columns = $form->sort_columns("transdate", "reqdate", "id", "$ordnumber", "name", "netamount", "tax", "amount", "curr", "employee", "manager", "shipvia", "open", "closed"); $form->{l_open} = $form->{l_closed} = "Y" if ($form->{open} && $form->{closed}) ; foreach $item (@columns) { if ($form->{"l_$item"} eq "Y") { push @column_index, $item; + + if ($form->{l_curr} && $item =~ /(amount|tax)/) { + push @column_index, "fx_$item"; + } # add column to href and callback $callback .= "&l_$item=Y"; @@ -699,74 +1133,151 @@ sub orders { } + $i = 1; if ($form->{vc} eq 'vendor') { - $form->{title} = $locale->text('Purchase Orders'); + if ($form->{type} eq 'receive_order') { + $form->{title} = $locale->text('Receive Merchandise'); + } elsif ($form->{type} eq 'purchase_order') { + $form->{title} = $locale->text('Purchase Orders'); + + if ($myconfig{acs} !~ /Order Entry--Order Entry/) { + $button{'Order Entry--Purchase Order'}{code} = qq|<input class=submit type=submit name=action value="|.$locale->text('Purchase Order').qq|"> |; + $button{'Order Entry--Sales Order'}{order} = $i++; + } + + } else { + $form->{title} = $locale->text('Request for Quotations'); + + if ($myconfig{acs} !~ /Quotations--Quotations/) { + $button{'Quotations--RFQ'}{code} = qq|<input class=submit type=submit name=action value="|.$locale->text('RFQ ').qq|"> |; + $button{'Quotations--RFQ'}{order} = $i++; + } + + } $name = $locale->text('Vendor'); + $employee = $locale->text('Employee'); } if ($form->{vc} eq 'customer') { - $form->{title} = $locale->text('Sales Orders'); + if ($form->{type} eq 'sales_order') { + $form->{title} = $locale->text('Sales Orders'); + $employee = $locale->text('Salesperson'); + + if ($myconfig{acs} !~ /Order Entry--Order Entry/) { + $button{'Order Entry--Sales Order'}{code} = qq|<input class=submit type=submit name=action value="|.$locale->text('Sales Order').qq|"> |; + $button{'Order Entry--Sales Order'}{order} = $i++; + } + + } elsif ($form->{type} eq 'ship_order') { + $form->{title} = $locale->text('Ship Merchandise'); + $employee = $locale->text('Salesperson'); + } else { + $form->{title} = $locale->text('Quotations'); + $employee = $locale->text('Employee'); + + if ($myconfig{acs} !~ /Quotations--Quotations/) { + $button{'Quotations--Quotation'}{code} = qq|<input class=submit type=submit name=action value="|.$locale->text('Quotation ').qq|"> |; + $button{'Quotations--Quotation'}{order} = $i++; + } + + } $name = $locale->text('Customer'); } - + + foreach $item (split /;/, $myconfig{acs}) { + delete $button{$item}; + } + $column_header{id} = qq|<th><a class=listheading href=$href&sort=id>|.$locale->text('ID').qq|</a></th>|; $column_header{transdate} = qq|<th><a class=listheading href=$href&sort=transdate>|.$locale->text('Date').qq|</a></th>|; $column_header{reqdate} = qq|<th><a class=listheading href=$href&sort=reqdate>|.$locale->text('Required by').qq|</a></th>|; $column_header{ordnumber} = qq|<th><a class=listheading href=$href&sort=ordnumber>|.$locale->text('Order').qq|</a></th>|; + $column_header{quonumber} = qq|<th><a class=listheading href=$href&sort=quonumber>|.$locale->text('Quotation').qq|</a></th>|; $column_header{name} = qq|<th><a class=listheading href=$href&sort=name>$name</a></th>|; $column_header{netamount} = qq|<th class=listheading>|.$locale->text('Amount').qq|</th>|; $column_header{tax} = qq|<th class=listheading>|.$locale->text('Tax').qq|</th>|; $column_header{amount} = qq|<th class=listheading>|.$locale->text('Total').qq|</th>|; - $column_header{curr} = qq|<th class=listheading>|.$locale->text('Curr').qq|</th>|; + $column_header{curr} = qq|<th><a class=listheading href=$href&sort=curr>|.$locale->text('Curr').qq|</a></th>|; + $column_header{shipvia} = qq|<th><a class=listheading href=$href&sort=shipvia>|.$locale->text('Ship via').qq|</a></th>|; $column_header{open} = qq|<th class=listheading>|.$locale->text('O').qq|</th>|; $column_header{closed} = qq|<th class=listheading>|.$locale->text('C').qq|</th>|; - if ($form->{open}) { - $option = $locale->text('Open'); - } - if ($form->{closed}) { - $option .= " : " if $form->{open}; - $option .= $locale->text('Closed'); - } + $column_header{employee} = qq|<th><a class=listheading href=$href&sort=employee>$employee</a></th>|; + $column_header{manager} = qq|<th><a class=listheading href=$href&sort=manager>|.$locale->text('Manager').qq|</a></th>|; + + map { $column_header{"fx_$_"} = "<th> </th>" } qw(amount tax netamount); + if ($form->{$form->{vc}}) { - $option .= "\n<br>"; - $option .= ucfirst $form->{vc}; + $option = $locale->text(ucfirst $form->{vc}); $option .= " : $form->{$form->{vc}}"; } + if ($form->{warehouse}) { + ($warehouse) = split /--/, $form->{warehouse}; + $option .= "\n<br>" if ($option); + $option .= $locale->text('Warehouse'); + $option .= " : $warehouse"; + } + if ($form->{department}) { + $option .= "\n<br>" if ($option); + ($department) = split /--/, $form->{department}; + $option .= $locale->text('Department')." : $department"; + } if ($form->{transdatefrom}) { $option .= "\n<br>".$locale->text('From')." ".$locale->date(\%myconfig, $form->{transdatefrom}, 1); } if ($form->{transdateto}) { - $option .= "\n<br>".$locale->text('to')." ".$locale->date(\%myconfig, $form->{transdateto}, 1); + $option .= "\n<br>".$locale->text('To')." ".$locale->date(\%myconfig, $form->{transdateto}, 1); + } + if ($form->{open}) { + $option .= "\n<br>" if ($option); + $option .= $locale->text('Open'); + } + if ($form->{closed}) { + $option .= "\n<br>" if ($option); + $option .= $locale->text('Closed'); } $form->header; - $colspan = $#column_index + 1; - print qq| <body> <table width=100%> - <tr><th class=listtop colspan=$colspan>$form->{title}</th></tr> + <tr> + <th class=listtop>$form->{title}</th> + </tr> <tr height="5"></tr> <tr> - <td colspan=$colspan>$option</td> + <td>$option</td> </tr> - <tr class=listheading>|; + <tr> + <td> + <table width=100%> + <tr class=listheading>|; -map { print "\n$column_header{$_}" } @column_index; + map { print "\n$column_header{$_}" } @column_index; -print qq| - </tr> + print qq| + </tr> |; # add sort and escape callback - $callback = $form->escape($callback . "&sort=$form->{sort}"); + $callback .= "&sort=$form->{sort}"; + $form->{callback} = $callback; + $callback = $form->escape($callback); + + # flip direction + $direction = ($form->{direction} eq 'ASC') ? "ASC" : "DESC"; + $href =~ s/&direction=(\w+)&/&direction=$direction&/; if (@{ $form->{OE} }) { $sameitem = $form->{OE}->[0]->{$form->{sort}}; } + $action = "edit"; + $action = "ship_receive" if ($form->{type} =~ /(ship|receive)_order/); + + $warehouse = $form->escape($form->{warehouse}); + foreach $oe (@{ $form->{OE} }) { if ($form->{l_subtotal} eq 'Y') { @@ -776,11 +1287,23 @@ print qq| } } - map { $oe->{$_} *= $oe->{exchangerate} } (qw(netamount amount)); + if ($form->{l_curr}) { + map { $oe->{"fx_$_"} = $oe->{$_} } (qw(netamount amount)); + $oe->{fx_tax} = $oe->{fx_amount} - $oe->{fx_netamount}; + map { $oe->{$_} *= $oe->{exchangerate} } (qw(netamount amount)); + + map { $column_data{"fx_$_"} = "<td align=right>".$form->format_amount(\%myconfig, $oe->{"fx_$_"}, 2, " ")."</td>" } qw(netamount amount); + $column_data{fx_tax} = "<td align=right>".$form->format_amount(\%myconfig, $oe->{fx_amount} - $oe->{fx_netamount}, 2, " ")."</td>"; + + $totalfxnetamount += $oe->{fx_netamount}; + $totalfxamount += $oe->{fx_amount}; + + $subtotalfxnetamount += $oe->{fx_netamount}; + $subtotalfxamount += $oe->{fx_amount}; + } - $column_data{netamount} = "<td align=right>".$form->format_amount(\%myconfig, $oe->{netamount}, 2, " ")."</td>"; + map { $column_data{$_} = "<td align=right>".$form->format_amount(\%myconfig, $oe->{$_}, 2, " ")."</td>" } qw(netamount amount); $column_data{tax} = "<td align=right>".$form->format_amount(\%myconfig, $oe->{amount} - $oe->{netamount}, 2, " ")."</td>"; - $column_data{amount} = "<td align=right>".$form->format_amount(\%myconfig, $oe->{amount}, 2, " ")."</td>"; $totalnetamount += $oe->{netamount}; $totalamount += $oe->{amount}; @@ -788,28 +1311,34 @@ print qq| $subtotalnetamount += $oe->{netamount}; $subtotalamount += $oe->{amount}; + $column_data{id} = "<td>$oe->{id}</td>"; $column_data{transdate} = "<td>$oe->{transdate} </td>"; $column_data{reqdate} = "<td>$oe->{reqdate} </td>"; - $column_data{ordnumber} = "<td><a href=oe.pl?path=$form->{path}&action=edit&type=$form->{type}&id=$oe->{id}&login=$form->{login}&password=$form->{password}&callback=$callback>$oe->{ordnumber}</a></td>"; - $column_data{name} = "<td>$oe->{name}</td>"; + $column_data{$ordnumber} = "<td><a href=oe.pl?path=$form->{path}&action=$action&type=$form->{type}&id=$oe->{id}&warehouse=$warehouse&vc=$form->{vc}&login=$form->{login}&sessionid=$form->{sessionid}&callback=$callback>$oe->{$ordnumber}</a></td>"; + + $name = $form->escape($oe->{name}); + $column_data{name} = qq|<td><a href=$href&$form->{vc}=$name--$oe->{"$form->{vc}_id"}&sort=$form->{sort}>$oe->{name}</a></td>|; + + map { $column_data{$_} = "<td>$oe->{$_} </td>" } qw(employee manager shipvia curr); if ($oe->{closed}) { - $column_data{closed} = "<td align=center>X</td>"; + $column_data{closed} = "<td align=center>*</td>"; $column_data{open} = "<td> </td>"; } else { $column_data{closed} = "<td> </td>"; - $column_data{open} = "<td align=center>X</td>"; + $column_data{open} = "<td align=center>*</td>"; } $i++; $i %= 2; - print "<tr class=listrow$i>"; + print " + <tr class=listrow$i>"; map { print "\n$column_data{$_}" } @column_index; print qq| - </tr> + </tr> |; } @@ -819,7 +1348,8 @@ print qq| } # print totals - print qq|<tr class=listtotal>|; + print qq| + <tr class=listtotal>|; map { $column_data{$_} = "<td> </td>" } @column_index; @@ -827,11 +1357,22 @@ print qq| $column_data{tax} = "<th class=listtotal align=right>".$form->format_amount(\%myconfig, $totalamount - $totalnetamount, 2, " ")."</th>"; $column_data{amount} = "<th class=listtotal align=right>".$form->format_amount(\%myconfig, $totalamount, 2, " ")."</th>"; - map { print "\n$column_data{$_}" } @column_index; + if ($form->{l_curr} && $form->{sort} eq 'curr' && $form->{l_subtotal}) { + $column_data{fx_netamount} = "<th class=listtotal align=right>".$form->format_amount(\%myconfig, $totalfxnetamount, 2, " ")."</th>"; + $column_data{fx_tax} = "<th class=listtotal align=right>".$form->format_amount(\%myconfig, $totalfxamount - $totalfxnetamount, 2, " ")."</th>"; + $column_data{fx_amount} = "<th class=listtotal align=right>".$form->format_amount(\%myconfig, $totalfxamount, 2, " ")."</th>"; + } + map { print "\n$column_data{$_}" } @column_index; + print qq| + </tr> + </td> + </table> + </tr> + <tr> + <td><hr size=3 noshade></td> </tr> - <tr><td colspan=8><hr size=3 noshade></td></tr> </table> <br> @@ -840,14 +1381,28 @@ print qq| <input name=callback type=hidden value="$form->{callback}"> <input type=hidden name=type value=$form->{type}> + +<input type=hidden name=$form->{vc} value="$form->{$form->{vc}}"> +<input type=hidden name="$form->{vc}_id" value=$form->{"$form->{vc}_id"}> <input type=hidden name=vc value=$form->{vc}> <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}> +|; + + if ($form->{type} !~ /(ship|receive)_order/) { + foreach $item (sort { $a->{order} <=> $b->{order} } %button) { + print $item->{code}; + } + } -<input class=submit type=submit name=action value=|.$locale->text('Add').qq| + if ($form->{menubar}) { + require "$form->{path}/menu.pl"; + &menubar; + } + print qq| </form> </body> @@ -866,15 +1421,26 @@ sub subtotal { $column_data{tax} = "<td class=listsubtotal align=right>".$form->format_amount(\%myconfig, $subtotalamount - $subtotalnetamount, 2, " ")."</th>"; $column_data{amount} = "<th class=listsubtotal align=right>".$form->format_amount(\%myconfig, $subtotalamount, 2, " ")."</th>"; + if ($form->{l_curr} && $form->{sort} eq 'curr' && $form->{l_subtotal}) { + $column_data{fx_netamount} = "<th class=listsubtotal align=right>".$form->format_amount(\%myconfig, $subtotalfxnetamount, 2, " ")."</th>"; + $column_data{fx_tax} = "<td class=listsubtotal align=right>".$form->format_amount(\%myconfig, $subtotalfxamount - $subtotalfxnetamount, 2, " ")."</th>"; + $column_data{fx_amount} = "<th class=listsubtotal align=right>".$form->format_amount(\%myconfig, $subtotalfxamount, 2, " ")."</th>"; + } + $subtotalnetamount = 0; $subtotalamount = 0; + + $subtotalfxnetamount = 0; + $subtotalfxamount = 0; - print "<tr class=listsubtotal>"; + print " + <tr class=listsubtotal> +"; map { print "\n$column_data{$_}" } @column_index; print qq| - </tr> + </tr> |; } @@ -882,8 +1448,11 @@ sub subtotal { sub save { - $form->isblank("ordnumber", $locale->text('Order Number missing!')); - $form->isblank("orddate", $locale->text('Order Date missing!')); + if ($form->{type} =~ /_order$/) { + $form->isblank("transdate", $locale->text('Order Date missing!')); + } else { + $form->isblank("transdate", $locale->text('Quotation Date missing!')); + } $msg = ucfirst $form->{vc}; $form->isblank($form->{vc}, $locale->text($msg . " missing!")); @@ -891,7 +1460,7 @@ sub save { # $locale->text('Customer missing!'); # $locale->text('Vendor missing!'); - $form->isblank("exchangerate", $locale->text('Exchangerate missing!')) if ($form->{currency} ne $form->{defaultcurrency}); + $form->isblank("exchangerate", $locale->text('Exchange rate missing!')) if ($form->{currency} ne $form->{defaultcurrency}); &validate_items; @@ -902,22 +1471,77 @@ sub save { } - # this is for the notes section for the [email] Subject - $form->{label} = ($form->{type} eq 'sales_order') ? $locale->text('Sales Order') : $locale->text('Purchase Order'); + # this is for the internal notes section for the [email] Subject + if ($form->{type} =~ /_order$/) { + if ($form->{type} eq 'sales_order') { + $form->{label} = $locale->text('Sales Order'); + + $numberfld = "sonumber"; + $ordnumber = "ordnumber"; + } else { + $form->{label} = $locale->text('Purchase Order'); + + $numberfld = "ponumber"; + $ordnumber = "ordnumber"; + } + + $err = $locale->text('Cannot save order!'); + + } else { + if ($form->{type} eq 'sales_quotation') { + $form->{label} = $locale->text('Quotation'); + + $numberfld = "sqnumber"; + $ordnumber = "quonumber"; + } else { + $form->{label} = $locale->text('Request for Quotation'); + + $numberfld = "rfqnumber"; + $ordnumber = "quonumber"; + } + + $err = $locale->text('Cannot save quotation!'); + + } - $form->{id} = 0 if $form->{saveasnew}; - - $form->redirect($locale->text('Order saved!')) if (OE->save_order(\%myconfig, \%$form)); - $form->error($locale->text('Cannot save order!')); + $form->{id} = 0 if $form->{saveasnew}; + + $form->{$ordnumber} = $form->update_defaults(\%myconfig, $numberfld) unless $form->{$ordnumber}; + + $form->redirect($locale->text('Order saved!')) if (OE->save(\%myconfig, \%$form)); + $form->error($err); + } +sub print_and_save { + + $form->error($locale->text('Select postscript or PDF!')) if $form->{format} !~ /(postscript|pdf)/; + $form->error($locale->text('Select Printer or Queue!')) if $form->{media} eq 'screen'; + + $old_form = new Form; + $form->{display_form} = "save"; + map { $old_form->{$_} = $form->{$_} } keys %$form; + $old_form->{rowcount}++; + + &print_form($old_form); + +} + sub delete { $form->header; + if ($form->{type} =~ /_order$/) { + $msg = $locale->text('Are you sure you want to delete Order Number'); + $ordnumber = 'ordnumber'; + } else { + $msg = $locale->text('Are you sure you want to delete Quotation Number'); + $ordnumber = 'quonumber'; + } + print qq| <body> @@ -925,19 +1549,14 @@ sub delete { |; # delete action variable - delete $form->{action}; + map { delete $form->{$_} } qw(action header); - foreach $key (keys %$form) { - $form->{$key} =~ s/"/"/g; - print qq|<input type=hidden name=$key value="$form->{$key}">\n|; - } + $form->hide_form(); print qq| <h2 class=confirm>|.$locale->text('Confirm!').qq|</h2> -<h4>| - .$locale->text('Are you sure you want to delete Order Number').qq| $form->{ordnumber} -</h4> +<h4>$msg $form->{$ordnumber}</h4> <p> <input name=action class=submit type=submit value="|.$locale->text('Yes').qq|"> </form> @@ -953,17 +1572,34 @@ sub delete { sub yes { - $form->redirect($locale->text('Order deleted!')) if (OE->delete_order(\%myconfig, \%$form)); - $form->error($locale->text('Cannot delete order!')); + if ($form->{type} =~ /_order$/) { + $msg = $locale->text('Order deleted!'); + $err = $locale->text('Cannot delete order!'); + } else { + $msg = $locale->text('Quotation deleted!'); + $err = $locale->text('Cannot delete quotation!'); + } + + $form->redirect($msg) if (OE->delete(\%myconfig, \%$form, $spool)); + $form->error($err); } +sub vendor_invoice { &invoice }; +sub sales_invoice { &invoice }; + sub invoice { - $form->isblank("ordnumber", $locale->text('Order Number missing!')); - $form->isblank("orddate", $locale->text('Order Date missing!')); + if ($form->{type} =~ /_order$/) { + $form->isblank("ordnumber", $locale->text('Order Number missing!')); + $form->isblank("transdate", $locale->text('Order Date missing!')); + } else { + $form->isblank("quonumber", $locale->text('Quotation Number missing!')); + $form->isblank("transdate", $locale->text('Quotation Date missing!')); + $form->{ordnumber} = ""; + } # if the name changed get new values if (&check_name($form->{vc})) { @@ -971,35 +1607,55 @@ sub invoice { exit; } + + if ($form->{type} =~ /_order/ && $form->{currency} ne $form->{defaultcurrency}) { + # check if we need a new exchangerate + $buysell = ($form->{type} eq 'sales_order') ? "buy" : "sell"; + + $orddate = $form->current_date(\%myconfig); + $exchangerate = $form->check_exchangerate(\%myconfig, $form->{currency}, $orddate, $buysell); + + if (!$exchangerate) { + &backorder_exchangerate($orddate, $buysell); + exit; + } + } + + + # close orders/quotations $form->{closed} = 1; - OE->save_order(\%myconfig, \%$form); + + OE->save(\%myconfig, \%$form); - $form->{orddate} = $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig); - $form->{duedate} = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1); + $form->{transdate} = $form->current_date(\%myconfig); + $form->{duedate} = $form->current_date(\%myconfig, $form->{transdate}, $form->{terms} * 1); $form->{id} = ''; $form->{closed} = 0; $form->{rowcount}--; $form->{shipto} = 1; - &create_backorder; - if ($form->{type} eq 'purchase_order') { + if ($form->{type} =~ /_order$/) { + $form->{exchangerate} = $exchangerate; + &create_backorder; + } + + + if ($form->{type} eq 'purchase_order' || $form->{type} eq 'request_quotation') { $form->{title} = $locale->text('Add Vendor Invoice'); $form->{script} = 'ir.pl'; $script = "ir"; $buysell = 'sell'; } - if ($form->{type} eq 'sales_order') { + if ($form->{type} eq 'sales_order' || $form->{type} eq 'sales_quotation') { $form->{title} = $locale->text('Add Sales Invoice'); $form->{script} = 'is.pl'; $script = "is"; $buysell = 'buy'; } - - # bo creates the id, reset it - map { $form->{$_} = "" } qw(id subject message cc bcc); + map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued); $form->{$form->{vc}} =~ s/--.*//g; $form->{type} = "invoice"; @@ -1008,56 +1664,152 @@ sub invoice { require "$form->{path}/$form->{script}"; - map { $form->{"select$_"} = "" } ($form->{vc}, currency); + # customized scripts + if (-f "$form->{path}/custom_$form->{script}") { + eval { require "$form->{path}/custom_$form->{script}"; }; + } + + # customized scripts for login + if (-f "$form->{path}/$form->{login}_$form->{script}") { + eval { require "$form->{path}/$form->{login}_$form->{script}"; }; + } - map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(creditlimit creditremaining); + map { $form->{"select$_"} = "" } ($form->{vc}, currency); + map { $temp{$_} = $form->{$_} } qw(currency oldcurrency employee department intnotes notes); - $currency = $form->{currency}; &invoice_links; - $form->{currency} = $currency; + $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal}); + + &prepare_invoice; + + map { $form->{$_} = $temp{$_} } keys %temp; + $form->{exchangerate} = ""; $form->{forex} = ""; - $form->{exchangerate} = $exchangerate if ($form->{forex} = ($exchangerate = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{invdate}, $buysell))); + $form->{exchangerate} = $exchangerate if ($form->{forex} = ($exchangerate = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{transdate}, $buysell))); - $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal}); + for $i (1 .. $form->{rowcount}) { + $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}; + map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}) } qw(qty sellprice discount); + } - &prepare_invoice; + map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued audittrail); - # format amounts - for $i (1 .. $form->{rowcount}) { - $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"}); + &display_form; - ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/); - $dec = length $dec; - $decimalplaces = ($dec > 2) ? $dec : 2; +} - $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces); - $form->{"qty_$i"} = $form->format_amount(\%myconfig, $form->{"qty_$i"}); - map { $form->{"${_}_$i"} =~ s/"/"/g } qw(partnumber description unit); - } - &display_form; +sub backorder_exchangerate { + my ($orddate, $buysell) = @_; + + $form->header; + + print qq| +<body> + +<form method=post action=$form->{script}> +|; + + # delete action variable + map { delete $form->{$_} } qw(action header exchangerate); + + $form->hide_form(); + + $form->{title} = $locale->text('Add Exchange Rate'); + + print qq| + +<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 type=hidden name=exchangeratedate value=$orddate> +<input type=hidden name=buysell value=$buysell> + +<table width=100%> + <tr><th class=listtop>$form->{title}</th></tr> + <tr height="5"></tr> + <tr> + <td> + <table> + <tr> + <th align=right>|.$locale->text('Currency').qq|</th> + <td>$form->{currency}</td> + </tr> + <tr> + <th align=right>|.$locale->text('Date').qq|</th> + <td>$orddate</td> + </tr> + <tr> + <th align=right>|.$locale->text('Exchange Rate').qq|</th> + <td><input name=exchangerate size=11></td> + </tr> + </table> + </td> + </tr> +</table> + +<hr size=3 noshade> + +<br> +<input type=hidden name=nextsub value=save_exchangerate> + +<input name=action class=submit type=submit value="|.$locale->text('Continue').qq|"> + +</form> + +</body> +</html> +|; + } -sub create_backorder { +sub save_exchangerate { + + $form->isblank("exchangerate", $locale->text('Exchange rate missing!')); + $form->{exchangerate} = $form->parse_amount(\%myconfig, $form->{exchangerate}); + $form->save_exchangerate(\%myconfig, $form->{currency}, $form->{exchangeratedate}, $form->{exchangerate}, $form->{buysell}); + + &invoice; + +} + +sub create_backorder { + + $form->{shipped} = 1; + # figure out if we need to create a backorder # items aren't saved if qty != 0 + $dec1 = $dec2 = 0; for $i (1 .. $form->{rowcount}) { - $totalqty += $qty = $form->parse_amount($myconfig, $form->{"qty_$i"}); - $totalship += $ship = $form->parse_amount($myconfig, $form->{"ship_$i"}); + ($dec) = ($form->{"qty_$i"} =~ /\.(\d+)/); + $dec = length $dec; + $dec1 = ($dec > $dec1) ? $dec : $dec1; + + ($dec) = ($form->{"ship_$i"} =~ /\.(\d+)/); + $dec = length $dec; + $dec2 = ($dec > $dec2) ? $dec : $dec2; + + $totalqty += $qty = $form->{"qty_$i"}; + $totalship += $ship = $form->{"ship_$i"}; $form->{"qty_$i"} = $qty - $ship; } + $totalqty = $form->round_amount($totalqty, $dec1); + $totalship = $form->round_amount($totalship, $dec2); + if ($totalship == 0) { map { $form->{"ship_$_"} = $form->{"qty_$_"} } (1 .. $form->{rowcount}); $form->{ordtotal} = 0; + $form->{shipped} = 0; return; } @@ -1067,23 +1819,29 @@ sub create_backorder { return; } - @flds = (qw(partnumber description qty ship unit sellprice discount id inventory_accno bin income_accno expense_accno listprice assembly taxaccounts)); + @flds = qw(partnumber sku description qty oldqty ship unit sellprice discount id inventory_accno bin income_accno expense_accno listprice assembly taxaccounts partsgroup reqdate pricematrix); - OE->save_order(\%myconfig, \%$form); - + for $i (1 .. $form->{rowcount}) { + map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}) } qw(qty sellprice discount); + + $form->{"oldship_$i"} = $form->{"ship_$i"}; + $form->{"ship_$i"} = 0; + } + + # clear flags + map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued audittrail); + + OE->save(\%myconfig, \%$form); + # rebuild rows for invoice @a = (); $count = 0; for $i (1 .. $form->{rowcount}) { + $form->{"qty_$i"} = $form->{"oldship_$i"}; + $form->{"oldqty_$i"} = $form->{"qty_$i"}; - # reformat values if there was a backorder quantity - if ($form->{"qty_$i"}) { - $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"}); - $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}); - } - - $form->{"qty_$i"} = $form->{"ship_$i"}; + $form->{"orderitems_id_$i"} = ""; if ($form->{"qty_$i"}) { push @a, {}; @@ -1095,7 +1853,7 @@ sub create_backorder { $form->redo_rows(\@flds, \@a, $count, $form->{rowcount}); $form->{rowcount} = $count; - + } @@ -1104,8 +1862,609 @@ sub save_as_new { $form->{saveasnew} = 1; $form->{closed} = 0; + map { delete $form->{$_} } qw(printed emailed queued); + &save; } +sub ship_receive { + + &order_links; + + &prepare_order; + + OE->get_warehouses(\%myconfig, \%$form); + + # warehouse + if (@{ $form->{all_warehouses} }) { + $form->{selectwarehouse} = "<option>\n"; + + map { $form->{selectwarehouse} .= qq|<option value="$_->{description}--$_->{id}">$_->{description}\n| } (@{ $form->{all_warehouses} }); + + if ($form->{warehouse}) { + $form->{selectwarehouse} = qq|<option value="$form->{warehouse}">|; + $form->{warehouse} =~ s/--.*//; + $form->{selectwarehouse} .= $form->{warehouse}; + } + } + + $form->{shippingdate} = $form->current_date(\%myconfig); + $form->{"$form->{vc}"} =~ s/--.*//; + $form->{"old$form->{vc}"} = qq|$form->{"$form->{vc}"}--$form->{"$form->{vc}_id"}|; + + @flds = (); + @a = (); + $count = 0; + foreach $key (keys %$form) { + if ($key =~ /_1$/) { + $key =~ s/_1//; + push @flds, $key; + } + } + + for $i (1 .. $form->{rowcount}) { + # undo formatting from prepare_order + map { $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"}) } qw(qty ship); + $n = ($form->{"qty_$i"} -= $form->{"ship_$i"}); + if (abs($n) > 0 && ($form->{"inventory_accno_$i"} || $form->{"assembly_$i"})) { + $form->{"ship_$i"} = ""; + $form->{"serialnumber_$i"} = ""; + + push @a, {}; + $j = $#a; + + map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds; + $count++; + } + } + + $form->redo_rows(\@flds, \@a, $count, $form->{rowcount}); + $form->{rowcount} = $count; + + &display_ship_receive; + +} + + +sub display_ship_receive { + + $vclabel = ucfirst $form->{vc}; + $vclabel = $locale->text($vclabel); + + $form->{rowcount}++; + + if ($form->{vc} eq 'customer') { + $form->{title} = $locale->text('Ship Merchandise'); + $shipped = $locale->text('Shipping Date'); + } else { + $form->{title} = $locale->text('Receive Merchandise'); + $shipped = $locale->text('Date Received'); + } + + # set option selected + foreach $item (warehouse, employee) { + $form->{"select$item"} = $form->unescape($form->{"select$item"}); + $form->{"select$item"} =~ s/ selected//; + $form->{"select$item"} =~ s/(<option value="\Q$form->{$item}\E")/$1 selected/; + } + + + $warehouse = qq| + <tr> + <th align=right>|.$locale->text('Warehouse').qq|</th> + <td><select name=warehouse>$form->{selectwarehouse}</select></td> + <input type=hidden name=selectwarehouse value="|. + $form->escape($form->{selectwarehouse},1).qq|"> + </tr> +| if $form->{selectwarehouse}; + + $employee = qq| + <tr> + <th align=right nowrap>|.$locale->text('Contact').qq|</th> + <td><select name=employee>$form->{selectemployee}</select></td> + <input type=hidden name=selectemployee value="|. + $form->escape($form->{selectemployee},1).qq|"> + </tr> +|; + + + $form->header; + + print qq| +<body> + +<form method=post action=$form->{script}> + +<input type=hidden name=id value=$form->{id}> + +<input type=hidden name=display_form value=display_ship_receive> + +<input type=hidden name=type value=$form->{type}> +<input type=hidden name=media value=$form->{media}> +<input type=hidden name=format value=$form->{format}> + +<input type=hidden name=queued value="$form->{queued}"> +<input type=hidden name=printed value="$form->{printed}"> +<input type=hidden name=emailed value="$form->{emailed}"> + +<input type=hidden name=vc value=$form->{vc}> +<input type=hidden name="old$form->{vc}" value="$form->{"old$form->{vc}"}"> + +<table width=100%> + <tr class=listtop> + <th class=listtop>$form->{title}</th> + </tr> + <tr height="5"></tr> + <tr> + <td> + <table width="100%"> + <tr valign=top> + <td> + <table width=100%> + <tr> + <th align=right>$vclabel</th> + <td colspan=3>$form->{$form->{vc}}</td> + <input type=hidden name=$form->{vc} value="$form->{$form->{vc}}"> + <input type=hidden name="$form->{vc}_id" value=$form->{"$form->{vc}_id"}> + </tr> + $department + <tr> + <th align=right>|.$locale->text('Shipping Point').qq|</th> + <td colspan=3> + <input name=shippingpoint size=35 value="$form->{shippingpoint}"> + </tr> + <tr> + <th align=right>|.$locale->text('Ship via').qq|</th> + <td colspan=3> + <input name=shipvia size=35 value="$form->{shipvia}"> + </tr> + $warehouse + </table> + </td> + <td align=right> + <table> + $employee + <tr> + <th align=right nowrap>|.$locale->text('Order Number').qq|</th> + <td>$form->{ordnumber}</td> + <input type=hidden name=ordnumber value="$form->{ordnumber}"> + </tr> + <tr> + <th align=right nowrap>|.$locale->text('Order Date').qq|</th> + <td>$form->{transdate}</td> + <input type=hidden name=transdate value=$form->{transdate}> + </tr> + <tr> + <th align=right nowrap>$shipped</th> + <td><input name=shippingdate size=11 value=$form->{shippingdate}></td> + </tr> + </table> + </td> + </tr> + </table> + </td> + </tr> + +<!-- shipto are in hidden variables --> + +<input type=hidden name=shiptoname value="$form->{shiptoname}"> +<input type=hidden name=shiptoaddress1 value="$form->{shiptoaddress1}"> +<input type=hidden name=shiptoaddress2 value="$form->{shiptoaddress2}"> +<input type=hidden name=shiptocity value="$form->{shiptocity}"> +<input type=hidden name=shiptostate value="$form->{shiptostate}"> +<input type=hidden name=shiptozipcode value="$form->{shiptozipcode}"> +<input type=hidden name=shiptocountry value="$form->{shiptocountry}"> +<input type=hidden name=shiptocontact value="$form->{shiptocontact}"> +<input type=hidden name=shiptophone value="$form->{shiptophone}"> +<input type=hidden name=shiptofax value="$form->{shiptofax}"> +<input type=hidden name=shiptoemail value="$form->{shiptoemail}"> + +<!-- email variables --> +<input type=hidden name=message value="$form->{message}"> +<input type=hidden name=email value="$form->{email}"> +<input type=hidden name=subject value="$form->{subject}"> +<input type=hidden name=cc value="$form->{cc}"> +<input type=hidden name=bcc value="$form->{bcc}"> + +|; + + @column_index = qw(partnumber); + + if ($form->{type} eq "ship_order") { + $column_data{ship} = qq|<th class=listheading>|.$locale->text('Ship').qq|</th>|; + } + if ($form->{type} eq "receive_order") { + $column_data{ship} = qq|<th class=listheading>|.$locale->text('Recd').qq|</th>|; + $column_data{sku} = qq|<th class=listheading>|.$locale->text('SKU').qq|</th>|; + push @column_index, "sku"; + } + push @column_index, qw(description qty ship unit bin serialnumber); + + my $colspan = $#column_index + 1; + + $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>|; + $column_data{unit} = qq|<th class=listheading nowrap>|.$locale->text('Unit').qq|</th>|; + $column_data{bin} = qq|<th class=listheading nowrap>|.$locale->text('Bin').qq|</th>|; + $column_data{serialnumber} = qq|<th class=listheading nowrap>|.$locale->text('Serial No.').qq|</th>|; + + print qq| + <tr> + <td> + <table width=100%> + <tr class=listheading>|; + + map { print "\n$column_data{$_}" } @column_index; + + print qq| + </tr> +|; + + + for $i (1 .. $form->{rowcount} - 1) { + + # undo formatting + $form->{"ship_$i"} = $form->parse_amount(\%myconfig, $form->{"ship_$i"}); + + map { $form->{"${_}_$i"} = $form->quote($form->{"${_}_$i"}) } qw(partnumber sku description unit bin serialnumber); + + $description = $form->{"description_$i"}; + $description =~ s/
/<br>/g; + + $column_data{partnumber} = qq|<td>$form->{"partnumber_$i"}<input type=hidden name="partnumber_$i" value="$form->{"partnumber_$i"}"></td>|; + $column_data{sku} = qq|<td>$form->{"sku_$i"}<input type=hidden name="sku_$i" value="$form->{"sku_$i"}"></td>|; + $column_data{description} = qq|<td>$description<input type=hidden name="description_$i" value="$form->{"description_$i"}"></td>|; + $column_data{qty} = qq|<td align=right>|.$form->format_amount(\%myconfig, $form->{"qty_$i"}).qq|<input type=hidden name="qty_$i" value="$form->{"qty_$i"}"></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>$form->{"unit_$i"}<input type=hidden name="unit_$i" value="$form->{"unit_$i"}"></td>|; + $column_data{bin} = qq|<td>$form->{"bin_$i"}<input type=hidden name="bin_$i" value="$form->{"bin_$i"}"></td>|; + + $column_data{serialnumber} = qq|<td><input name="serialnumber_$i" size=15 value="$form->{"serialnumber_$i"}"></td>|; + + print qq| + <tr valign=top>|; + + map { print "\n$column_data{$_}" } @column_index; + + 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="assembly_$i" value="$form->{"assembly_$i"}"> +<input type=hidden name="partsgroup_$i" value="$form->{"partsgroup_$i"}"> + +|; + + } + + print qq| + </table> + </td> + </tr> + <tr> + <td><hr size=3 noshade></td> + </tr> + <tr> + <td> +|; + + $form->{copies} = 1; + + &print_options; + + print qq| + </td> + </tr> +</table> +<br> +<input class=submit type=submit name=action value="|.$locale->text('Update').qq|"> +<input class=submit type=submit name=action value="|.$locale->text('Print').qq|"> +|; + + if ($form->{type} eq 'ship_order') { + print qq| +<input class=submit type=submit name=action value="|.$locale->text('Ship to').qq|"> +<input class=submit type=submit name=action value="|.$locale->text('E-mail').qq|"> +|; + } + + print qq| + +<input class=submit type=submit name=action value="|.$locale->text('Done').qq|"> +|; + + if ($form->{menubar}) { + require "$form->{path}/menu.pl"; + &menubar; + } + + print qq| + +<input type=hidden name=rowcount value=$form->{rowcount}> + +<input name=callback type=hidden value="$form->{callback}"> + +<input type=hidden name=path value=$form->{path}> +<input type=hidden name=login value=$form->{login}> +<input type=hidden name=sessionid value=$form->{sessionid}> + +</form> + +</body> +</html> +|; + + +} + + +sub done { + + if ($form->{type} eq 'ship_order') { + $form->isblank("shippingdate", $locale->text('Shipping Date missing!')); + } else { + $form->isblank("shippingdate", $locale->text('Date received missing!')); + } + + $total = 0; + map { $total += $form->{"ship_$_"} = $form->parse_amount(\%myconfig, $form->{"ship_$_"}) } (1 .. $form->{rowcount} - 1); + + $form->error($locale->text('Nothing entered!')) unless $total; + + $form->redirect($locale->text('Inventory saved!')) if OE->save_inventory(\%myconfig, \%$form); + $form->error($locale->text('Could not save!')); + +} + + +sub search_transfer { + + OE->get_warehouses(\%myconfig, \%$form); + + # warehouse + if (@{ $form->{all_warehouses} }) { + $form->{selectwarehouse} = "<option>\n"; + $form->{warehouse} = qq|$form->{warehouse}--$form->{warehouse_id}|; + + map { $form->{selectwarehouse} .= qq|<option value="$_->{description}--$_->{id}">$_->{description}\n| } (@{ $form->{all_warehouses} }); + } else { + $form->error($locale->text('Nothing to transfer!')); + } + + $form->get_partsgroup(\%myconfig, { all => 0, searchitems => 'part'}); + if (@{ $form->{all_partsgroup} }) { + $form->{selectpartsgroup} = "<option>\n"; + map { $form->{selectpartsgroup} .= qq|<option value="$_->{partsgroup}--$_->{id}">$_->{partsgroup}\n| } @{ $form->{all_partsgroup} }; + } + + $form->{title} = $locale->text('Transfer Inventory'); + + $form->header; + + print qq| +<body> + +<form method=post action=$form->{script}> + +<table width=100%> + <tr> + <th class=listtop>$form->{title}</th> + </tr> + <tr height="5"></tr> + <tr> + <td> + <table> + <tr> + <th align=right nowrap>|.$locale->text('Transfer to').qq|</th> + <td><select name=warehouse>$form->{selectwarehouse}</select></td> + </tr> + <tr> + <th align="right" nowrap="true">|.$locale->text('Part Number').qq|</th> + <td><input name=partnumber size=20></td> + </tr> + <tr> + <th align="right" nowrap="true">|.$locale->text('Description').qq|</th> + <td><input name=description size=40></td> + </tr> + <tr> + <th align=right nowrap>|.$locale->text('Group').qq|</th> + <td><select name=partsgroup><select>$form->{selectpartsgroup}</select></td> + </tr> + </table> + </td> + </tr> + <tr> + <td><hr size=3 noshade></td> + </tr> +</table> + +<br> +<input type=hidden name=sort value=partnumber> +<input type=hidden name=nextsub value=list_transfer> + +<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 class=submit type=submit name=action value="|.$locale->text('Continue').qq|"> +</form> + +</body> +</html> +|; + +} + + +sub list_transfer { + + OE->get_inventory(\%myconfig, \%$form); + + $partnumber = $form->escape($form->{partnumber}); + $warehouse = $form->escape($form->{warehouse}); + $description = $form->escape($form->{description}); + $partsgroup = $form->escape($form->{partsgroup}); + + # construct href + $href = "$form->{script}?path=$form->{path}&action=list_transfer&partnumber=$partnumber&warehouse=$warehouse&description=$description&partsgroup=$partsgroup&login=$form->{login}&sessionid=$form->{sessionid}"; + + # construct callback + $partnumber = $form->escape($form->{partnumber},1); + $warehouse = $form->escape($form->{warehouse},1); + $description = $form->escape($form->{description},1); + $partsgroup = $form->escape($form->{partsgroup},1); + + $callback = "$form->{script}?path=$form->{path}&action=list_transfer&partnumber=$partnumber&warehouse=$warehouse&description=$description&partsgroup=$partsgroup&login=$form->{login}&sessionid=$form->{sessionid}"; + + @column_index = $form->sort_columns(qw(partnumber description partsgroup make model warehouse qty transfer)); + + + $column_header{partnumber} = qq|<th><a class=listheading href=$href&sort=partnumber>|.$locale->text('Part Number').qq|</a></th>|; + $column_header{description} = qq|<th><a class=listheading href=$href&sort=description>|.$locale->text('Description').qq|</a></th>|; + $column_header{partsgroup} = qq|<th><a class=listheading href=$href&sort=partsgroup>|.$locale->text('Group').qq|</a></th>|; + $column_header{warehouse} = qq|<th><a class=listheading href=$href&sort=warehouse>|.$locale->text('From').qq|</a></th>|; + $column_header{qty} = qq|<th class=listheading>|.$locale->text('Qty').qq|</a></th>|; + $column_header{transfer} = qq|<th class=listheading>|.$locale->text('Transfer').qq|</a></th>|; + + + $option = $locale->text('Transfer to'); + + ($warehouse, $warehouse_id) = split /--/, $form->{warehouse}; + + if ($form->{warehouse}) { + $option .= " : $warehouse"; + } + if ($form->{partnumber}) { + $option .= "\n<br>" if ($option); + $option .= $locale->text('Part Number')." : $form->{partnumber}"; + } + if ($form->{description}) { + $option .= "\n<br>" if ($option); + $option .= $locale->text('Description')." : $form->{description}"; + } + if ($form->{partsgroup}) { + ($partsgroup) = split /--/, $form->{partsgroup}; + $option .= "\n<br>" if ($option); + $option .= $locale->text('Group')." : $partsgroup"; + } + + $form->{title} = $locale->text('Transfer Inventory'); + + $form->header; + + print qq| +<body> + +<form method=post action=$form->{script}> + +<input type=hidden name=warehouse_id value=$warehouse_id> + +<table width=100%> + <tr> + <th class=listtop>$form->{title}</th> + </tr> + <tr height="5"></tr> + <tr> + <td>$option</td> + </tr> + <tr> + <td> + <table width=100%> + <tr class=listheading>|; + +map { print "\n$column_header{$_}" } @column_index; + +print qq| + </tr> +|; + + + if (@{ $form->{all_inventory} }) { + $sameitem = $form->{all_inventory}->[0]->{$form->{sort}}; + } + + $i = 0; + foreach $ref (@{ $form->{all_inventory} }) { + + $i++; + + $column_data{partnumber} = qq|<td><input type=hidden name="id_$i" value=$ref->{id}>$ref->{partnumber}</td>|; + $column_data{description} = "<td>$ref->{description} </td>"; + $column_data{partsgroup} = "<td>$ref->{partsgroup} </td>"; + $column_data{warehouse} = qq|<td><input type=hidden name="warehouse_id_$i" value=$ref->{warehouse_id}>$ref->{warehouse} </td>|; + $column_data{qty} = qq|<td><input type=hidden name="qty_$i" value=$ref->{qty}>|.$form->format_amount(\%myconfig, $ref->{qty}).qq|</td>|; + $column_data{transfer} = qq|<td><input name="transfer_$i" size=4></td>|; + + $j++; $j %= 2; + print " + <tr class=listrow$j>"; + + map { print "\n$column_data{$_}" } @column_index; + + print qq| + </tr> +|; + + } + + print qq| + </table> + </td> + </tr> + + <tr> + <td><hr size=3 noshade></td> + </tr> +</table> + +<br> + +<input name=callback type=hidden value="$callback"> + +<input type=hidden name=rowcount value=$i> + +<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 class=submit type=submit name=action value="|.$locale->text('Transfer').qq|">|; + + if ($form->{menubar}) { + require "$form->{path}/menu.pl"; + &menubar; + } + + print qq| +</form> + +</body> +</html> +|; + + +} + + +sub transfer { + + $form->redirect($locale->text('Inventory transferred!')) if OE->transfer(\%myconfig, \%$form); + $form->error($locale->text('Could not transfer Inventory!')); + +} + + +sub rfq_ { &add }; +sub quotation_ { &add }; + + +sub redirect { + + $form->redirect; + $form->error($locale->text('Order processed!')); + +} + |