User Attribut "role" entfernt.
[kivitendo-erp.git] / bin / mozilla / io.pl
index c65d742..5df76ed 100644 (file)
@@ -38,7 +38,6 @@
 
 use Carp;
 use CGI;
-use CGI::Ajax;
 use List::Util qw(min max first);
 
 use SL::CVar;
@@ -113,7 +112,7 @@ sub display_row {
   my $form     = $main::form;
   my %myconfig = %main::myconfig;
   my $locale   = $main::locale;
-  my $cgi      = $main::cgi;
+  my $cgi      = $::request->{cgi};
 
   my $numrows = shift;
 
@@ -148,7 +147,6 @@ sub display_row {
     {  id => 'qty',           width => 5,     value => $locale->text('Qty'),                  display => 1, },
     {  id => 'price_factor',  width => 5,     value => $locale->text('Price Factor'),         display => !$is_delivery_order, },
     {  id => 'unit',          width => 5,     value => $locale->text('Unit'),                 display => 1, },
-    {  id => 'license',       width => 10,    value => $locale->text('License'),              display => 0, },
     {  id => 'serialnr',      width => 10,    value => $locale->text('Serial No.'),           display => 0, },
     {  id => 'projectnr',     width => 10,    value => $locale->text('Project'),              display => 0, },
     {  id => 'sellprice',     width => 15,    value => $locale->text('Price'),                display => !$is_delivery_order, },
@@ -351,13 +349,16 @@ sub display_row {
                    $marge_color, $locale->text('Ertrag'),$form->{"marge_absolut_$i"}, $form->{"marge_percent_$i"},
                    $locale->text('LP'), $form->format_amount(\%myconfig, $form->{"listprice_$i"}, 2),
                    $locale->text('EK'), $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, 2) }
-      if $form->{"id_$i"} && ($form->{type} =~ /^sales_/ ||  $form->{type} =~ /invoice/) && !$is_delivery_order;
+      if $form->{"id_$i"} && ($form->{type} =~ /^sales_/ ||  $form->{type} =~ /invoice/ || $form->{type} =~ /^credit_note$/ ) && !$is_delivery_order;
+
+    $form->{"listprice_$i"} = $form->format_amount(\%myconfig, $form->{"listprice_$i"}, 2)
+      if $form->{"id_$i"} && ($form->{type} =~ /^sales_/ ||  $form->{type} =~ /invoice/) ;
 # / marge calculations ending
 
 # calculate onhand
     if ($form->{"id_$i"}) {
       my $part         = IC->get_basic_part_info(id => $form->{"id_$i"});
-      my $onhand_color = 'color="#ff0000"' if  $part->{onhand} < $part->{rop};
+      my $onhand_color = $part->{onhand} < $part->{rop} ? 'color="#ff0000"' : '';
       push @ROW2, { value => sprintf "<b>%s</b> <font %s>%s %s</font>",
                       $locale->text('On Hand'),
                       $onhand_color,
@@ -413,7 +414,7 @@ sub set_pricegroup {
 
   my $form     = $main::form;
   my $locale   = $main::locale;
-  my $cgi      = $main::cgi;
+  my $cgi      = $::request->{cgi};
 
   _check_io_auth();
 
@@ -438,125 +439,28 @@ sub set_pricegroup {
 sub select_item {
   $main::lxdebug->enter_sub();
 
-  my %params   = @_;
-
-  my $form     = $main::form;
-  my %myconfig = %main::myconfig;
-  my $locale   = $main::locale;
-  my $cgi      = $main::cgi;
-
-  my $mode        = $params{mode} || croak "Missing parameter 'mode'";
-  my $is_purchase = $mode eq 'IS';
+  my %params = @_;
+  my $mode   = $params{mode} || croak "Missing parameter 'mode'";
 
   _check_io_auth();
 
-  my @column_index = qw(ndx partnumber description rop onhand unit sellprice);
-  my %column_data;
-  $column_data{ndx}        = qq|<th>&nbsp;</th>|;
-  $column_data{partnumber} =
-    qq|<th class="listheading">| . $locale->text('Number') . qq|</th>|;
-  $column_data{description} =
-    qq|<th class="listheading">| . $locale->text('Part Description') . qq|</th>|;
-  $column_data{sellprice} =
-    qq|<th class="listheading">| . $locale->text('Price') . qq|</th>|;
-  if ($is_purchase){
-    $column_data{rop} =
-    qq|<th class="listheading">| . $locale->text('ROP') . qq|</th>|;
-  }# ende if $is_purchase -> Überschrift Mindestlagerbestand - ähnliche Prüfung weiter unten
-  $column_data{onhand} =
-    qq|<th class="listheading">| . $locale->text('Qty') . qq|</th>|;
-  $column_data{unit} =
-    qq|<th class="listheading">| . $locale->text('Unit') . qq|</th>|;
-  # list items with radio button on a form
-  $form->header;
-
-  my $title   = $locale->text('Select from one of the items below');
-  my $colspan = $#column_index + 1;
-
-  print qq|
-  <body>
-
-<form method="post" action="$form->{script}">
-
-<table width="100%">
-  <tr>
-    <th class="listtop" colspan="$colspan">$title</th>
-  </tr>
-  <tr height="5"></tr>
-  <tr class="listheading">|;
-
-  map { print "\n$column_data{$_}" } @column_index;
-
-  print qq|</tr>|;
-
-  my $i = 0;
-  my $j;
-  foreach my $ref (@{ $form->{item_list} }) {
-    my $checked = ($i++) ? "" : "checked";
-
-    if ($::lx_office_conf{features}->{lizenzen}) {
-      if ($ref->{inventory_accno} > 0) {
-        $ref->{"lizenzen"} = qq|<option></option>|;
-        foreach my $item (@{ $form->{LIZENZEN}{ $ref->{"id"} } }) {
-          $ref->{"lizenzen"} .=
-            qq|<option value=\"$item->{"id"}\">$item->{"licensenumber"}</option>|;
-        }
-        $ref->{"lizenzen"} .= qq|<option value="-1">Neue Lizenz</option>|;
-        $ref->{"lizenzen"} =~ s/\"/&quot;/g;
-      }
-    }
-
-    my $display_sellprice  = $ref->{sellprice} * (1 - $form->{tradediscount});
-    $display_sellprice    /= $ref->{price_factor} if ($ref->{price_factor});
-    $display_sellprice     = $form->format_amount(\%myconfig, $display_sellprice, 2);
-    my $new_id             = $ref->{id};
-
-    map { $ref->{$_} = H($ref->{$_}) } qw(id partnumber description unit);
-
-    $column_data{ndx}         = qq|<td><input name="select_item_id" class="radio" type="radio" value="${new_id}" $checked></td>|;
-    $column_data{partnumber}  = qq|<td>$ref->{partnumber}</td>|;
-    $column_data{description} = qq|<td>$ref->{description}</td>|;
-    $column_data{sellprice}   = qq|<td align="right">${display_sellprice}</td>|;
-    $column_data{onhand}      = qq|<td align="right">| . $form->format_amount(\%myconfig, $ref->{onhand}, '', "&nbsp;") . qq|</td>|;
-    $column_data{unit}        = qq|<td>$ref->{unit}</td>|;
-
-    if ($is_purchase){
-      $column_data{rop}       = qq|<td align="right">| . $form->format_amount(\%myconfig, $ref->{rop}, '', "&nbsp;") . qq|</td>|;
-    }# ende if $is_purchase -> Falls der Aufruf über eine Einkaufsmaske kam, handelt es sich um einen Lieferantenauftrag und uns interessiert auch die Mindestbestandsmenge
-
-    $j++;
-    $j %= 2;
-    print qq|
-<tr class=listrow$j>|;
-
-    map { print "\n$column_data{$_}" } @column_index;
+  my $previous_form = $::auth->save_form_in_session(form => $::form);
+  $::form->{title}  = $::locale->text('Select from one of the items below');
+  $::form->header;
 
-    print("</tr>\n");
-  }
-
-  print qq|
-<tr><td colspan="8"><hr size="3" noshade></td></tr>
-</table>
-|;
+  my @item_list = map {
+    $_->{display_sellprice}  = $_->{sellprice} * (1 - $::form->{tradediscount});
+    $_->{display_sellprice} /= $_->{price_factor} if ($_->{price_factor});
+    $_;
+  } @{ $::form->{item_list} };
 
   # delete action variable
-  map { delete $form->{$_} } qw(action item_list header);
-
-  my $previous_form = $::auth->save_form_in_session(form => $form);
-
-  print qq|
-<input name="select_item_mode" type="hidden" value="$mode">
-<input name="select_item_previous_form" type="hidden" value="${previous_form}">
-<input type="hidden" name="nextsub" value="item_selected">
+  delete @{$::form}{qw(action item_list header)};
 
-<br>
-<input class="submit" type="submit" name="action" value="|
-    . $locale->text('Continue') . qq|">
-</form>
-
-</body>
-</html>
-|;
+  print $::form->parse_html_template('io/select_item', { PREVIOUS_FORM => $previous_form,
+                                                         MODE          => $mode,
+                                                         ITEM_LIST     => \@item_list,
+                                                         IS_PURCHASE   => $mode eq 'IS' });
 
   $main::lxdebug->leave_sub();
 }
@@ -598,8 +502,6 @@ sub item_selected {
        partsgroup formel longdescription not_discountable partnotes lastcost
        price_factor_id price_factor);
 
-  push @new_fields, 'lizenzen' if $::lx_office_conf{features}->{lizenzen};
-
   my $ic_cvar_configs = CVar->get_configs(module => 'IC');
   push @new_fields, map { "ic_cvar_$_->{name}" } @{ $ic_cvar_configs };
 
@@ -1049,7 +951,7 @@ sub edit_e_mail {
                                      subject       => $subject,
                                      print_options => print_options('inline' => 1),
                                      HIDDEN        => [ map +{ name => $_, value => $form->{$_} }, @hidden_keys ],
-                                     SHOW_BCC      => $myconfig{role} eq 'admin' });
+                                     SHOW_BCC      => $::auth->assert('email_bcc', 'may fail') });
 
   $main::lxdebug->leave_sub();
 }
@@ -1409,11 +1311,13 @@ sub print_form {
   my $payment_id_saved = $form->{payment_id};
   my $salesman_id_saved = $form->{salesman_id};
   my $cp_id_saved = $form->{cp_id};
+  my $taxzone_id_saved = $form->{taxzone_id};
 
   call_sub("$form->{vc}_details") if ($form->{vc});
 
   $form->{language_id} = $language_saved;
   $form->{payment_id} = $payment_id_saved;
+  $form->{taxzone_id} = $taxzone_id_saved;
 
   $form->{"email"} = $saved_email if ($saved_email);
   $form->{"cc"}    = $saved_cc    if ($saved_cc);
@@ -1436,6 +1340,10 @@ sub print_form {
     $output_longdates = 1;
   }
 
+  # Store the output number format so that the template modules know
+  # how to parse the amounts back if requested.
+  $myconfig{output_numberformat} = $output_numberformat || $myconfig{numberformat};
+
   ($form->{employee}) = split /--/, $form->{employee};
 
   # create the form variables
@@ -1552,7 +1460,7 @@ sub print_form {
     $extension            = 'xls';
   }
 
-  my $email_extension = '_email' if (($form->{media} eq 'email') && (-f "$myconfig{templates}/$form->{formname}_email$form->{language}${printer_code}.${extension}"));
+  my $email_extension = (($form->{media} eq 'email') && (-f "$myconfig{templates}/$form->{formname}_email$form->{language}${printer_code}.${extension}")) ? '_email' : '';
 
   $form->{IN}         = "$form->{formname}${email_extension}$form->{language}${printer_code}.${extension}";
 
@@ -1715,226 +1623,40 @@ sub post_as_new {
 sub ship_to {
   $main::lxdebug->enter_sub();
 
-  my $form     = $main::form;
-  my %myconfig = %main::myconfig;
-  my $locale   = $main::locale;
-  my $cgi      = $main::cgi;
-
   _check_io_auth();
 
-  if ($form->{second_run}) {
-    $form->{print_and_post} = 0;
-  }
+  $::form->{print_and_post} = 0 if $::form->{second_run};
 
-  my $title = $form->{title};
-  $form->{title} = $locale->text('Ship to');
+  map { $::form->{$_} = $::form->parse_amount(\%::myconfig, $::form->{$_}) } qw(exchangerate creditlimit creditremaining);
 
-  map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
-    qw(exchangerate creditlimit creditremaining);
-
-  my @shipto_vars =
-    qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry
-       shiptocontact shiptocp_gender 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
-  call_sub("$form->{vc}_details", @addr_vars);
-
-  my $number =
-    ($form->{vc} eq 'customer')
-    ? $locale->text('Customer Number')
-    : $locale->text('Vendor Number');
-
-  # sieht nicht nett aus, funktioniert aber
-  # das vorausgewählte select-feld wird über shiptocp_gender
-  # entsprechend vorbelegt
-  my $selected_m='';
-  my $selected_f='';
-  if ($form->{shiptocp_gender} eq 'm') {
-    $selected_m='selected';
-    $selected_f='';
-  } elsif ($form->{shiptocp_gender} eq 'f') {
-    $selected_m='';
-    $selected_f='selected';
-  }
+  # get details for customer/vendor
+  call_sub($::form->{vc} . "_details", qw(name department_1 department_2 street zipcode city country contact email phone fax), $::form->{vc} . "number");
 
   # get pricegroups for parts
-  IS->get_pricegroups_for_parts(\%myconfig, \%$form);
+  IS->get_pricegroups_for_parts(\%::myconfig, \%$::form);
 
   # build up html code for prices_$i
-  set_pricegroup($form->{rowcount});
+  set_pricegroup($::form->{rowcount});
 
-  my $nextsub = ($form->{display_form}) ? $form->{display_form} : "display_form";
-
-  $form->{rowcount}--;
+  $::form->{rowcount}--;
 
-  $form->header;
+  my @shipto_vars   = qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry
+                         shiptocontact shiptocp_gender shiptophone shiptofax shiptoemail
+                         shiptodepartment_1 shiptodepartment_2);
+  my $previous_form = $::auth->save_form_in_session(skip_keys => [ @shipto_vars, qw(header shipto_id) ]);
+  $::form->{title}  = $::locale->text('Ship to');
+  $::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('Gender') . qq|</th>
-          <td></td>
-          <td><select id="shiptocp_gender" name="shiptocp_gender">
-              <option value="m"| .  $selected_m . qq|>| . $locale->text('male') . qq|</option>
-              <option value="f"| .  $selected_f . qq|>| . $locale->text('female') . qq|</option>
-              </select>
-          </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>
-| . $cgi->hidden("-name" => "nextsub", "-value" => $nextsub);
-;
-
-
-
-  # delete shipto
-  map({ delete $form->{$_} } (@shipto_vars, qw(header shipto_id)));
-  $form->{title} = $title;
-
-  foreach my $key (keys %$form) {
-    next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
-    $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>
-|;
+  print $::form->parse_html_template('io/ship_to', { previousform => $previous_form,
+                                                     nextsub      => $::form->{display_form} || 'display_form',
+                                                   });
 
   $main::lxdebug->leave_sub();
 }
 
-sub new_license {
-  $main::lxdebug->enter_sub();
-
-  my $form     = $main::form;
-
-  _check_io_auth();
-
-  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};
-  my $customer = $form->{customer};
-  map { $form->{"old_$_"} = $form->{"${_}_$row"} } qw(partnumber description);
-
-  # save all other form variables in a previousform variable
-  $form->{row} = $row;
-  my $previousform;
-  foreach my $key (keys %$form) {
-    next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
-
-    # 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}?action=add&vc=$form->{db}&$form->{db}_id=$form->{id}&$form->{db}=$form->{name}&type=$form->{type}&customer=$customer&partnumber=$form->{partnumber}&description=$form->{description}&previousform="$previousform"&initial=1|;
-  $form->redirect;
-
-  $main::lxdebug->leave_sub();
+sub ship_to_entered {
+  $::auth->restore_form_from_session(delete $::form->{previousform});
+  call_sub($::form->{nextsub});
 }
 
 sub relink_accounts {
@@ -2077,6 +1799,8 @@ sub _render_custom_variables_inputs {
       $description = $cvar->{description} . ' ';
     }
 
+    my $form_key = "ic_cvar_" . $cvar->{name} . "_$params{row}";
+
     push @{ $params{ROW2} }, {
       line_break     => $num_visible_cvars == 1,
       description    => $description,
@@ -2087,7 +1811,7 @@ sub _render_custom_variables_inputs {
          name_prefix       => 'ic_',
          name_postfix      => "_$params{row}",
          valid             => $cvar->{valid},
-         value             => $form->{"ic_cvar_" . $cvar->{name} . "_$params{row}"},
+         value             => CVar->parse($::form->{$form_key}, $cvar),
       }
     };
   }