Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 69ad8bec

Von Thomas Kasulke vor etwa 18 Jahren hinzugefügt

  • ID 69ad8bec12ae8351fad7712b329e41081ce3689f
  • Vorgänger 13438aa4
  • Nachfolger 0d225f52

Historie eingefügt

Unterschiede anzeigen:

bin/mozilla/io.pl
$attachment_filename =~ s/ /_/g;
my %umlaute =
(
"
"?" => "ae", "?" => "oe", "?" => "ue",
"?" => "Ae", "?" => "Oe", "?" => "Ue",
"?" => "ss"
);
map({ $attachment_filename =~ s/$_/$umlaute{$_}/g; } keys(%umlaute));
} else {
$attachment_filename = "";
}
if ($form->{"email"}) {
$form->{"fokus"} = "Form.subject";
} else {
$form->{"fokus"} = "Form.email";
}
$form->header;
print qq|
<body onload="fokus()">
<form name="Form" method="post" action="$form->{script}">
<table width="100%">
<tr class="listtop">
<th class="listtop">$title</th>
</tr>
<tr height="5"></tr>
<tr>
<td>
<table>
<tr>
<th align="right" nowrap>| . $locale->text('To') . qq|</th>
<td><input name="email" size="30" value="| .
Q($form->{"email"}) . qq|"></td>
</tr>
<tr>
<th align="right" nowrap>| . $locale->text('Cc') . qq|</th>
<td><input name="cc" size="30" value="| .
Q($form->{"cc"}) . qq|"></td>
</tr>
$bcc
<tr>
<th align="right" nowrap>| . $locale->text('Subject') . qq|</th>
<td><input name="subject" size="30" value="| .
Q($form->{"subject"}) . qq|"></td>
</tr>
<tr>
<th align="right" nowrap>| . $locale->text('Attachment name') .
qq|</th>
<td><input name="attachment_filename" size="30" value="| .
Q($attachment_filename) . qq|"></td>
</table>
</td>
</tr>
<tr>
<td>
<table>
<tr>
<th align="left" nowrap>| . $locale->text('Message') . qq|</th>
</tr>
<tr>
<td><textarea name="message" rows="15" cols="60" wrap="soft">| .
H($form->{"message"}) . qq|</textarea></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
|;
&print_options;
map { delete $form->{$_} }
qw(action email cc bcc subject message formname sendmode format header override);
# save all other variables
foreach $key (keys %$form) {
$form->{$key} =~ s/\"/&quot;/g;
print qq|<input type="hidden" name="$key" value="| . Q($form->{$key}) . qq|">\n|;
}
print qq|
</td>
</tr>
<tr>
<td><hr size="3" noshade></td>
</tr>
</table>
<input type="hidden" name="nextsub" value="send_email">
<br>
<input name="action" class="submit" type="submit" value="|
. $locale->text('Continue') . qq|">
</form>
</body>
</html>
|;
$lxdebug->leave_sub();
}
sub send_email {
$lxdebug->enter_sub();
$old_form = new Form;
map { $old_form->{$_} = $form->{$_} } keys %$form;
$old_form->{media} = $form->{oldmedia};
&print_form($old_form);
$lxdebug->leave_sub();
}
sub print_options {
$lxdebug->enter_sub();
$form->{sendmode} = "attachment";
$form->{"format"} =
$form->{"format"} ? $form->{"format"} :
$myconfig{"template_format"} ? $myconfig{"template_format"} :
"pdf";
$form->{"copies"} =
$form->{"copies"} ? $form->{"copies"} :
$myconfig{"copies"} ? $myconfig{"copies"} :
3;
$form->{"media"} =
$form->{"media"} ? $form->{"media"} :
$myconfig{"default_media"} ? $myconfig{"default_media"} :
"screen";
$form->{"printer_id"} =
defined($form->{"printer_id"}) ? $form->{"printer_id"} :
$myconfig{"default_printer_id"} ? $myconfig{"default_printer_id"} :
"";
$form->{PD}{ $form->{formname} } = "selected";
$form->{DF}{ $form->{format} } = "selected";
$form->{OP}{ $form->{media} } = "selected";
$form->{SM}{ $form->{sendmode} } = "selected";
if ($form->{type} eq 'purchase_order') {
$type = qq|<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');
}
if ($form->{type} eq 'credit_note') {
$type = qq|<select name=formname>
<option value=credit_note $form->{PD}{credit_note}>|
. $locale->text('Credit Note');
}
if ($form->{type} eq 'sales_order') {
$type = qq|<select name=formname>
<option value=sales_order $form->{PD}{sales_order}>|
. $locale->text('Confirmation') . qq|
<option value=proforma $form->{PD}{proforma}>|
. $locale->text('Proforma 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');
}
if ($form->{type} =~ /_quotation$/) {
$type = qq|<select name=formname>
<option value="$`_quotation" $form->{PD}{"$`_quotation"}>|
. $locale->text('Quotation');
}
if ($form->{type} eq 'invoice') {
$type = qq|<select name=formname>
<option value=invoice $form->{PD}{invoice}>|
. $locale->text('Invoice') . qq|
<option value=proforma $form->{PD}{proforma}>|
. $locale->text('Proforma Invoice') . qq|
<option value=packing_list $form->{PD}{packing_list}>|
. $locale->text('Packing List');
}
if ($form->{type} eq 'invoice' && $form->{storno}) {
$type = qq|<select name=formname>
<option value=storno_invoice $form->{PD}{storno_invoice}>|
. $locale->text('Storno Invoice') . qq|
<option value=storno_packing_list $form->{PD}{storno_packing_list}>|
. $locale->text('Storno Packing List');
}
if ($form->{type} eq 'credit_note') {
$type = qq|<select name=formname>
<option value=credit_note $form->{PD}{credit_note}>|
. $locale->text('Credit Note');
}
if ($form->{media} eq 'email') {
$media = qq|<select name=sendmode>
<option value=attachment $form->{SM}{attachment}>|
. $locale->text('Attachment') . qq|
<option value=inline $form->{SM}{inline}>| . $locale->text('In-line');
} else {
$media = qq|<select name=media>
<option value=screen $form->{OP}{screen}>| . $locale->text('Screen');
if (scalar(keys (%{ $form->{printers} })) !=0 && $latex_templates) {
$media .= qq|
<option value=printer $form->{OP}{printer}>|
. $locale->text('Printer');
}
if ($latex_templates) {
$media .= qq|
<option value=queue $form->{OP}{queue}>| . $locale->text('Queue');
}
}
$format = qq|<select name=format>|;
if ($opendocument_templates && $openofficeorg_writer_bin &&
$xvfb_bin && (-x $openofficeorg_writer_bin) && (-x $xvfb_bin)) {
$format .= qq|<option value=opendocument_pdf | .
$form->{DF}{"opendocument_pdf"} . qq|>| .
$locale->text("PDF (OpenDocument/OASIS)") . qq|</option>|;
}
if ($latex_templates) {
$format .= qq|<option value=pdf $form->{DF}{pdf}>| .
$locale->text('PDF') . qq|</option>|;
}
$format .= qq|<option value=html $form->{DF}{html}>HTML</option>|;
if ($latex_templates) {
$format .= qq|<option value=postscript $form->{DF}{postscript}>| .
$locale->text('Postscript') . qq|</option>|;
}
if ($opendocument_templates) {
$format .= qq|<option value=opendocument $form->{DF}{opendocument}>| .
$locale->text("OpenDocument/OASIS") . qq|</option>|;
}
$format .= qq|</select>|;
if (scalar(keys (%{ $form->{languages} })) !=0) {
$language_select = qq|<select name=language_id>
<option value=""></option>}|;
foreach $item (@{ $form->{languages} }) {
if ($form->{language_id} eq $item->{id}) {
$language_select .= qq|<option value="$item->{id}" selected>$item->{description}</option>|;
} else {
$language_select .= qq|<option value="$item->{id}">$item->{description}</option>|;
}
}
}
if (scalar(keys (%{ $form->{printers} })) !=0) {
my $selected = !$form->{"printer_id"} ? "selected" : "";
$printer_select = qq|<select name=printer_id $selected>
<option value=""></option>|;
foreach $item (@{ $form->{printers} }) {
$selected = $item->{"id"} == $form->{"printer_id"} ? "selected" : "";
$printer_select .= qq|<option value="$item->{id}" $selected>$item->{printer_description}</option>|;
}
}
print qq|
<table width=100% cellspacing=0 cellpadding=0>
<tr>
<td>
<table>
<tr>
<td>$type</select></td>|;
if (scalar(keys (%{ $form->{languages} })) !=0) {
print qq|
<td>${language_select}</select></td>|;
}
print qq|
<td>$format</select></td>
<td>$media</select></td>|;
if (scalar(keys (%{ $form->{printers} })) !=0) {
print qq|
<td>$printer_select</select></td>
|;
}
if (scalar(keys (%{ $form->{printers} })) !=0 && $latex_templates && $form->{media} ne 'email') {
print qq|
<td>| . $locale->text('Copies') . qq|
<input name=copies size=2 value=$form->{copies}></td>
|;
}
$form->{groupitems} = "checked" if $form->{groupitems};
print qq|
<td>| . $locale->text('Group Items') . qq|</td>
<td><input name=groupitems type=checkbox class=checkbox $form->{groupitems}></td>
</tr>
</table>
</td>
<td align=right>
<table>
<tr>
|;
if ($form->{printed} =~ /$form->{formname}/) {
print qq|
<th>\|| . $locale->text('Printed') . qq|\|</th>
|;
}
if ($form->{emailed} =~ /$form->{formname}/) {
print qq|
<th>\|| . $locale->text('E-mailed') . qq|\|</th>
|;
}
if ($form->{queued} =~ /$form->{formname}/) {
print qq|
<th>\|| . $locale->text('Queued') . qq|\|</th>
|;
}
print qq|
</tr>
</table>
</td>
</tr>
</table>
|;
$lxdebug->leave_sub();
}
sub print {
$lxdebug->enter_sub();
# if this goes to the printer pass through
if ($form->{media} eq 'printer' || $form->{media} eq 'queue') {
$form->error($locale->text('Select postscript or PDF!'))
if ($form->{format} !~ /(postscript|pdf)/);
$old_form = new Form;
map { $old_form->{$_} = $form->{$_} } keys %$form;
}
if (!$form->{id} || (($form->{formname} eq "proforma") && !$form->{proforma} && (($form->{type} =~ /_order$/) || ($form->{type} =~ /_quotation$/)))) {
if ($form->{formname} eq "proforma") {
$form->{proforma} = 1;
}
$form->{print_and_save} = 1;
my $formname = $form->{formname};
&save();
$form->{formname} = $formname;
&edit();
exit;
}
&print_form($old_form);
$lxdebug->leave_sub();
}
sub print_form {
$lxdebug->enter_sub();
my ($old_form) = @_;
$inv = "inv";
$due = "due";
$numberfld = "invnumber";
$display_form =
($form->{display_form}) ? $form->{display_form} : "display_form";
# $form->{"notes"} will be overridden by the customer's/vendor's "notes" field. So save it here.
$form->{ $form->{"formname"} . "notes" } = $form->{"notes"};
if ($form->{formname} eq "invoice") {
$form->{label} = $locale->text('Invoice');
}
if ($form->{formname} eq "packing_list") {
# this is from an invoice
$form->{label} = $locale->text('Packing List');
}
if ($form->{formname} eq 'sales_order') {
$inv = "ord";
$due = "req";
$form->{"${inv}date"} = $form->{transdate};
$form->{label} = $locale->text('Sales Order');
$numberfld = "sonumber";
$order = 1;
}
if (($form->{type} eq 'invoice') && ($form->{formname} eq 'proforma') ) {
$inv = "inv";
$due = "due";
$form->{"${inv}date"} = $form->{invdate};
$form->{label} = $locale->text('Proforma Invoice');
$numberfld = "sonumber";
$order = 0;
}
if (($form->{type} eq 'sales_order') && ($form->{formname} eq 'proforma') ) {
$inv = "inv";
$due = "due";
$form->{"${inv}date"} = $form->{transdate};
$form->{"invdate"} = $form->{transdate};
$form->{invnumber} = $form->{ordnumber};
$form->{label} = $locale->text('Proforma Invoice');
$numberfld = "sonumber";
$order = 1;
}
if ($form->{formname} eq 'packing_list' && $form->{type} ne 'invoice') {
# we use the same packing list as from an invoice
$inv = "ord";
$due = "req";
$form->{invdate} = $form->{"${inv}date"} = $form->{transdate};
$form->{label} = $locale->text('Packing List');
$order = 1;
# set invnumber for template packing_list
$form->{invnumber} = $form->{ordnumber};
}
if ($form->{formname} eq 'pick_list') {
$inv = "ord";
$due = "req";
$form->{"${inv}date"} =
($form->{transdate}) ? $form->{transdate} : $form->{invdate};
$form->{label} = $locale->text('Pick List');
$order = 1 unless $form->{type} eq 'invoice';
}
if ($form->{formname} eq 'purchase_order') {
$inv = "ord";
$due = "req";
$form->{"${inv}date"} = $form->{transdate};
$form->{label} = $locale->text('Purchase Order');
$numberfld = "ponumber";
$order = 1;
}
if ($form->{formname} eq 'bin_list') {
$inv = "ord";
$due = "req";
$form->{"${inv}date"} = $form->{transdate};
$form->{label} = $locale->text('Bin List');
$order = 1;
}
if ($form->{formname} eq 'sales_quotation') {
$inv = "quo";
$due = "req";
$form->{"${inv}date"} = $form->{transdate};
$form->{label} = $locale->text('Quotation');
$numberfld = "sqnumber";
$order = 1;
}
if (($form->{type} eq 'sales_quotation') && ($form->{formname} eq 'proforma') ) {
$inv = "quo";
$due = "req";
$form->{"${inv}date"} = $form->{transdate};
$form->{"invdate"} = $form->{transdate};
$form->{label} = $locale->text('Proforma Invoice');
$numberfld = "sqnumber";
$order = 1;
}
if ($form->{formname} eq 'request_quotation') {
$inv = "quo";
$due = "req";
$form->{"${inv}date"} = $form->{transdate};
$form->{label} = $locale->text('Quotation');
$numberfld = "rfqnumber";
$order = 1;
}
$form->isblank("email", $locale->text('E-mail address missing!'))
if ($form->{media} eq 'email');
$form->isblank("${inv}date",
$locale->text($form->{label})
. ": "
. $locale->text(' Date missing!'));
# $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!')
# assign number
$form->{what_done} = $form->{formname};
if (!$form->{"${inv}number"} && !$form->{preview}) {
$form->{"${inv}number"} = $form->update_defaults(\%myconfig, $numberfld);
if ($form->{media} ne 'email') {
# get pricegroups for parts
IS->get_pricegroups_for_parts(\%myconfig, \%$form);
# build up html code for prices_$i
set_pricegroup($form->{rowcount});
$form->{rowcount}--;
&{"$display_form"};
# saving the history
if(!exists $form->{addition}) {
$form->{addition} = "PRINTED";
$form->save_history($form->dbconnect(\%myconfig));
}
# /saving the history
exit;
}
}
&validate_items;
# Save the email address given in the form because it should override the setting saved for the customer/vendor.
my ($saved_email, $saved_cc, $saved_bcc) =
($form->{"email"}, $form->{"cc"}, $form->{"bcc"});
$language_saved = $form->{language_id};
$payment_id_saved = $form->{payment_id};
&{"$form->{vc}_details"}();
$form->{language_id} = $language_saved;
$form->{payment_id} = $payment_id_saved;
$form->{"email"} = $saved_email if ($saved_email);
$form->{"cc"} = $saved_cc if ($saved_cc);
$form->{"bcc"} = $saved_bcc if ($saved_bcc);
my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates);
if ($form->{"language_id"}) {
($language_tc, $output_numberformat, $output_dateformat, $output_longdates) =
AM->get_language_details(\%myconfig, $form, $form->{language_id});
} else {
$output_dateformat = $myconfig{"dateformat"};
$output_numberformat = $myconfig{"numberformat"};
$output_longdates = 1;
}
($form->{employee}) = split /--/, $form->{employee};
# create the form variables
if ($order) {
OE->order_details(\%myconfig, \%$form);
} else {
IS->invoice_details(\%myconfig, \%$form, $locale);
}
if ($form->{shipto_id}) {
$form->get_shipto(\%myconfig);
}
@a = qw(name street zipcode city country);
$shipto = 1;
# if there is no shipto fill it in from billto
foreach $item (@a) {
if ($form->{"shipto$item"}) {
$shipto = 0;
last;
}
}
if ($shipto) {
if ( $form->{formname} eq 'purchase_order'
|| $form->{formname} eq 'request_quotation') {
$form->{shiptoname} = $myconfig{company};
$form->{shiptostreet} = $myconfig{address};
} else {
map { $form->{"shipto$_"} = $form->{$_} } @a;
}
}
$form->{notes} =~ s/^\s+//g;
$form->{templates} = "$myconfig{templates}";
$form->{language} = $form->get_template_language(\%myconfig);
$form->{printer_code} = $form->get_printer_code(\%myconfig);
if ($form->{language} ne "") {
map({ $form->{"unit"}->[$_] =
AM->translate_units($form, $form->{"language"},
$form->{"unit"}->[$_], $form->{"qty"}->[$_]); }
(0..scalar(@{$form->{"unit"}}) - 1));
$form->{language} = "_" . $form->{language};
}
# Format dates.
format_dates($output_dateformat, $output_longdates,
qw(invdate orddate quodate pldate duedate reqdate transdate
shippingdate deliverydate validitydate paymentdate
datepaid transdate_oe deliverydate_oe
employee_startdate employee_enddate
),
grep({ /^datepaid_\d+$/ ||
/^transdate_oe_\d+$/ ||
/^deliverydate_oe_\d+$/ ||
/^reqdate_\d+$/ ||
/^deliverydate_\d+$/ ||
/^transdate_\d+$/
} keys(%{$form})));
reformat_numbers($output_numberformat, 2,
qw(invtotal ordtotal quototal subtotal linetotal
listprice sellprice netprice discount
tax taxbase),
grep({ /^linetotal_\d+$/ ||
/^listprice_\d+$/ ||
/^sellprice_\d+$/ ||
/^netprice_\d+$/ ||
/^taxbase_\d+$/ ||
/^discount_\d+$/ ||
/^tax_\d+$/
} keys(%{$form})));
reformat_numbers($output_numberformat, undef,
qw(qty),
grep({ /^qty_\d+$/
} keys(%{$form})));
if ($form->{printer_code} ne "") {
$form->{printer_code} = "_" . $form->{printer_code};
}
$form->{IN} = "$form->{formname}$form->{language}$form->{printer_code}.html";
if ($form->{format} eq 'postscript') {
$form->{postscript} = 1;
$form->{IN} =~ s/html$/tex/;
} elsif ($form->{"format"} =~ /pdf/) {
$form->{pdf} = 1;
if ($form->{"format"} =~ /opendocument/) {
$form->{IN} =~ s/html$/odt/;
} else {
$form->{IN} =~ s/html$/tex/;
}
} elsif ($form->{"format"} =~ /opendocument/) {
$form->{"opendocument"} = 1;
$form->{"IN"} =~ s/html$/odt/;
}
if ($form->{media} eq 'printer') {
$form->{OUT} = "| $form->{printer_command} &>/dev/null";
$form->{printed} .= " $form->{formname}";
$form->{printed} =~ s/^ //;
}
$printed = $form->{printed};
if ($form->{media} eq 'email') {
$form->{subject} = qq|$form->{label} $form->{"${inv}number"}|
unless $form->{subject};
$form->{OUT} = "$sendmail";
$form->{emailed} .= " $form->{formname}";
$form->{emailed} =~ s/^ //;
}
$emailed = $form->{emailed};
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->{postscript}) ? '.ps' : '.pdf';
$form->{OUT} = ">$spool/$filename";
# add type
$form->{queued} .= " $form->{formname} $filename";
$form->{queued} =~ s/^ //;
}
$queued = $form->{queued};
# saving the history
if(!exists $form->{addition}) {
if($form->{media} =~ /printer/) {
$form->{addition} = "PRINTED";
}
elsif($form->{media} =~ /email/) {
$form->{addition} = "MAILED";
}
elsif($form->{media} =~ /queue/) {
$form->{addition} = "QUEUED";
}
elsif($form->{media} =~ /screen/) {
$form->{addition} = "SCREENED";
}
$form->save_history($form->dbconnect(\%myconfig));
}
# /saving the history
$form->parse_template(\%myconfig, $userspath);
$form->{callback} = "";
if ($form->{media} eq 'email') {
$form->{message} = $locale->text('sent') unless $form->{message};
}
$message = $form->{message};
# if we got back here restore the previous form
if ($form->{media} =~ /(printer|email|queue)/) {
$form->update_status(\%myconfig)
if ($form->{media} eq 'queue' && $form->{id});
if ($old_form) {
$old_form->{"${inv}number"} = $form->{"${inv}number"};
# restore and display form
map { $form->{$_} = $old_form->{$_} } keys %$old_form;
$form->{queued} = $queued;
$form->{printed} = $printed;
$form->{emailed} = $emailed;
$form->{message} = $message;
$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;
}
$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|);
}
if ($form->{printing}) {
&{"$display_form"};
exit;
}
$lxdebug->leave_sub();
}
sub customer_details {
$lxdebug->enter_sub();
IS->customer_details(\%myconfig, \%$form, @_);
$lxdebug->leave_sub();
}
sub vendor_details {
$lxdebug->enter_sub();
IR->vendor_details(\%myconfig, \%$form, @_);
$lxdebug->leave_sub();
}
sub post_as_new {
$lxdebug->enter_sub();
$form->{postasnew} = 1;
map { delete $form->{$_} } qw(printed emailed queued);
&post;
$lxdebug->leave_sub();
}
sub ship_to {
$lxdebug->enter_sub();
if ($form->{second_run}) {
$form->{print_and_post} = 0;
}
$title = $form->{title};
$form->{title} = $locale->text('Ship to');
map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
qw(exchangerate creditlimit creditremaining);
my @shipto_vars =
qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry
shiptocontact shiptophone shiptofax shiptoemail
shiptodepartment_1 shiptodepartment_2);
my @addr_vars =
(qw(name department_1 department_2 street zipcode city country
contact email phone fax));
# get details for name
&{"$form->{vc}_details"}(@addr_vars);
$number =
($form->{vc} eq 'customer')
? $locale->text('Customer Number')
: $locale->text('Vendor Number');
# get pricegroups for parts
IS->get_pricegroups_for_parts(\%myconfig, \%$form);
# build up html code for prices_$i
set_pricegroup($form->{rowcount});
$nextsub = ($form->{display_form}) ? $form->{display_form} : "display_form";
$form->{rowcount}--;
$form->header;
print qq|
<body>
<form method=post action=$form->{script}>
<table width=100%>
<tr>
<td>
<table>
<tr class=listheading>
<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>$number</th>
<td>$form->{"$form->{vc}number"}</td>
</tr>
<tr>
<th align=right nowrap>| . $locale->text('Company Name') . qq|</th>
<td>$form->{name}</td>
<td><input name=shiptoname size=35 value="$form->{shiptoname}"></td>
</tr>
<tr>
<th align=right nowrap>| . $locale->text('Department') . qq|</th>
<td>$form->{department_1}</td>
<td><input name=shiptodepartment_1 size=35 value="$form->{shiptodepartment_1}"></td>
</tr>
<tr>
<th align=right nowrap>&nbsp;</th>
<td>$form->{department_2}</td>
<td><input name=shiptodepartment_2 size=35 value="$form->{shiptodepartment_2}"></td>
</tr>
<tr>
<th align=right nowrap>| . $locale->text('Street') . qq|</th>
<td>$form->{street}</td>
<td><input name=shiptostreet size=35 value="$form->{shiptostreet}"></td>
</tr>
<tr>
<th align=right nowrap>| . $locale->text('Zipcode') . qq|</th>
<td>$form->{zipcode}</td>
<td><input name=shiptozipcode size=35 value="$form->{shiptozipcode}"></td>
</tr>
<tr>
<th align=right nowrap>| . $locale->text('City') . qq|</th>
<td>$form->{city}</td>
<td><input name=shiptocity size=35 value="$form->{shiptocity}"></td>
</tr>
<tr>
<th align=right nowrap>| . $locale->text('Country') . qq|</th>
<td>$form->{country}</td>
<td><input name=shiptocountry size=35 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 value="$form->{shiptocontact}"></td>
</tr>
<tr>
<th align=right nowrap>| . $locale->text('Phone') . qq|</th>
<td>$form->{phone}</td>
<td><input name=shiptophone size=20 value="$form->{shiptophone}"></td>
</tr>
<tr>
<th align=right nowrap>| . $locale->text('Fax') . qq|</th>
<td>$form->{fax}</td>
<td><input name=shiptofax size=20 value="$form->{shiptofax}"></td>
</tr>
<tr>
<th align=right nowrap>| . $locale->text('E-mail') . qq|</th>
<td>$form->{email}</td>
<td><input name=shiptoemail size=35 value="$form->{shiptoemail}"></td>
</tr>
</table>
</td>
</tr>
</table>
<input type=hidden name=nextsub value=$nextsub>
|;
# delete shipto
map({ delete $form->{$_} } (@shipto_vars, qw(header)));
$form->{title} = $title;
foreach $key (keys %$form) {
$form->{$key} =~ s/\"/&quot;/g;
print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
}
print qq|
<hr size=3 noshade>
<br>
<input class=submit type=submit name=action value="|
. $locale->text('Continue') . qq|">
</form>
</body>
</html>
|;
$lxdebug->leave_sub();
}
sub new_license {
$lxdebug->enter_sub();
my $row = shift;
# change callback
$form->{old_callback} = $form->escape($form->{callback}, 1);
$form->{callback} = $form->escape("$form->{script}?action=display_form", 1);
$form->{old_callback} = $form->escape($form->{old_callback}, 1);
# delete action
delete $form->{action};
$customer = $form->{customer};
map { $form->{"old_$_"} = $form->{"${_}_$row"} } qw(partnumber description);
# save all other form variables in a previousform variable
$form->{row} = $row;
foreach $key (keys %$form) {
# escape ampersands
$form->{$key} =~ s/&/%26/g;
$previousform .= qq|$key=$form->{$key}&|;
}
chop $previousform;
$previousform = $form->escape($previousform, 1);
$form->{script} = "licenses.pl";
map { $form->{$_} = $form->{"old_$_"} } qw(partnumber description);
map { $form->{$_} = $form->escape($form->{$_}, 1) }
qw(partnumber description);
$form->{callback} =
qq|$form->{script}?login=$form->{login}&path=$form->{path}&password=$form->{password}&action=add&vc=$form->{db}&$form->{db}_id=$form->{id}&$form->{db}=$name&type=$form->{type}&customer=$customer&partnumber=$form->{partnumber}&description=$form->{description}&previousform="$previousform"&initial=1|;
$form->redirect;
$lxdebug->leave_sub();
}
sub relink_accounts {
$lxdebug->enter_sub();
$form->{"taxaccounts"} =~ s/\s*$//;
$form->{"taxaccounts"} =~ s/^\s*//;
foreach my $accno (split(/\s*/, $form->{"taxaccounts"})) {
map({ delete($form->{"${accno}_${_}"}); } qw(rate description taxnumber));
}
$form->{"taxaccounts"} = "";
for (my $i = 1; $i <= $form->{"rowcount"}; $i++) {
if ($form->{"id_$i"}) {
IC->retrieve_accounts(\%myconfig, $form, $form->{"id_$i"}, $i, 1);
}
}
$lxdebug->leave_sub();
}
sub set_duedate {
$lxdebug->enter_sub();
$form->get_duedate(\%myconfig);
my $q = new CGI;
$result = "$form->{duedate}";
print $q->header();
print $result;
$lxdebug->leave_sub();
}

Auch abrufbar als: Unified diff