$::cgi entfernt.
[kivitendo-erp.git] / bin / mozilla / arap.pl
index 0278aa5..3b1a443 100644 (file)
@@ -59,7 +59,7 @@ sub check_name {
                 'request_quotation_edit       | sales_quotation_edit      | purchase_order_edit | cash         |' .
                 'purchase_delivery_order_edit | sales_delivery_order_edit');
 
-  my ($name) = @_;
+  my ($name, %params) = @_;
 
   $name = $name eq "customer" ? "customer" : "vendor";
 
@@ -99,9 +99,17 @@ sub check_name {
       $form->{calctax}      = 1;
 
       # return one name or a list of names in $form->{name_list}
-      if (($i = $form->get_name(\%myconfig, $name)) > 1) {
-        &select_name($name);
-        exit;
+      $i = $form->get_name(\%myconfig, $name);
+
+      if ($i > 1) {
+        if ($params{no_select}) {
+          # $locale->text('Customer')
+          # $locale->text('Vendor')
+          $form->error($locale->text("More than one #1 found matching, please be more specific.", $locale->text(ucfirst $name)));
+        } else {
+          &select_name($name);
+          ::end_of_request();
+        }
       }
 
       if ($i == 1) {
@@ -310,7 +318,7 @@ sub check_project {
           # check form->{project_list} how many there are
           $form->{rownumber} = $i;
           &select_project($i ? undef : 1, $nextsub);
-          exit;
+          ::end_of_request();
         }
 
         if ($rows == 1) {
@@ -332,157 +340,190 @@ sub check_project {
 }
 
 sub select_project {
+  $::lxdebug->enter_sub;
+
+  $::auth->assert('general_ledger         | vendor_invoice_edit  | sales_order_edit    | invoice_edit |' .
+                  'request_quotation_edit | sales_quotation_edit | purchase_order_edit | cash         | report');
+
+  my ($is_global, $nextsub) = @_;
+  my $project_list = delete $::form->{project_list};
+
+  map { delete $::form->{$_} } qw(action header update);
+
+  my @hiddens;
+  for my $key (keys %$::form) {
+    next if $key eq 'login' || $key eq 'password' || '' ne ref $::form->{$key};
+    push @hiddens, { key => $key, value => $::form->{$key} };
+  }
+  push @hiddens, { key => 'is_global',                value => $is_global },
+                 { key => 'project_selected_nextsub', value => $nextsub };
+
+  $::form->header;
+  print $::form->parse_html_template('arap/select_project', { hiddens => \@hiddens, project_list => $project_list });
+
+  $::lxdebug->leave_sub;
+}
+
+sub project_selected {
   $main::lxdebug->enter_sub();
 
   my $form     = $main::form;
-  my $locale   = $main::locale;
-  my $cgi      = $main::cgi;
 
   $main::auth->assert('general_ledger         | vendor_invoice_edit  | sales_order_edit    | invoice_edit |' .
                 'request_quotation_edit | sales_quotation_edit | purchase_order_edit | cash         | report');
 
-  my ($is_global, $nextsub) = @_;
+  # replace the variable with the one checked
 
-  my @column_index = qw(ndx projectnumber description);
+  # index for new item
+  my $i = $form->{ndx};
 
-  my %column_data;
-  $column_data{ndx}           = qq|<th>&nbsp;</th>|;
-  $column_data{projectnumber} = qq|<th>| . $locale->text('Number') . qq|</th>|;
-  $column_data{description}   =
-    qq|<th>| . $locale->text('Description') . qq|</th>|;
+  my $prefix = $form->{"is_global"} ? "global" : "";
+  my $suffix = $form->{"is_global"} ? "" : "_$form->{rownumber}";
 
-  # list items with radio button on a form
-  $form->header;
+  $form->{"${prefix}projectnumber${suffix}"} =
+    $form->{"new_projectnumber_$i"};
+  $form->{"old${prefix}projectnumber${suffix}"} =
+    $form->{"new_projectnumber_$i"};
+  $form->{"${prefix}project_id${suffix}"} = $form->{"new_id_$i"};
 
-  my $title = $locale->text('Select from one of the projects below');
+  # delete all the new_ variables
+  for $i (1 .. $form->{lastndx}) {
+    map { delete $form->{"new_${_}_$i"} } qw(id projectnumber description);
+  }
 
-  print qq|
-<body>
+  my $nextsub = $form->{project_selected_nextsub} || 'update';
 
-<form method=post action=$form->{script}>
+  map { delete $form->{$_} } qw(ndx lastndx nextsub is_global project_selected_nextsub);
 
-<input type=hidden name=rownumber value=$form->{rownumber}>
+  call_sub($nextsub);
 
-<table width=100%>
-  <tr>
-    <th class=listtop>$title</th>
-  </tr>
-  <tr space=5></tr>
-  <tr>
-    <td>
-      <table width=100%>
-        <tr class=listheading>|;
+  $main::lxdebug->leave_sub();
+}
 
-  map { print "\n$column_data{$_}" } @column_index;
+sub continue       { call_sub($main::form->{"nextsub"}); }
 
-  print qq|
-        </tr>
-|;
+1;
 
-  my $i = 0;
-  my $j;
-  foreach my $ref (@{ $form->{project_list} }) {
-    my $checked = ($i++) ? "" : "checked";
+__END__
 
-    $ref->{name} =~ s/\"/&quot;/g;
+=head1 NAME
 
-    $column_data{ndx} =
-      qq|<td><input name=ndx class=radio type=radio value=$i $checked></td>|;
-    $column_data{projectnumber} =
-      qq|<td><input name="new_projectnumber_$i" type=hidden value="$ref->{projectnumber}">$ref->{projectnumber}</td>|;
-    $column_data{description} = qq|<td>$ref->{description}</td>|;
+arap.pl - helper functions or customer/vendor retrieval
 
-    $j++;
-    $j %= 2;
-    print qq|
-        <tr class=listrow$j>|;
+=head1 SYNOPSIS
 
-    map { print "\n$column_data{$_}" } @column_index;
+ check_name('vendor')
+ check_project();
 
-    print qq|
-        </tr>
+=head1 DESCRIPTION
 
-<input name="new_id_$i" type=hidden value=$ref->{id}>
+Don't use anyting in this file without extreme care, and even then be prepared for massive headaches.
 
-|;
+It's a collection of helper routines that wrap the customer/vendor dropdown/textfield duality into something even complexer.
 
-  }
+=head1 FUNCTIONS
 
-  print qq|
-      </table>
-    </td>
-  </tr>
-  <tr>
-    <td><hr size=3 noshade></td>
-  </tr>
-</table>
+=head2 check_name customer|vendor
 
-<input name=lastndx type=hidden value=$i>
+check_name was originally meant to update the selected customer or vendor. The
+way it does that has generted more hate than almost any other part of this
+software.
 
-|;
+What it does is:
 
-  # delete action variable
-  map { delete $form->{$_} } qw(action project_list header update);
+=over 4
 
-  # save all other form variables
-  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 name=$key type=hidden value="$form->{$key}">\n|;
-  }
+=item *
 
-  print
-      $cgi->hidden('-name' => 'is_global',                '-default' => [$is_global])
-    . $cgi->hidden('-name' => 'project_selected_nextsub', '-default' => [$nextsub])
-    . qq|<input type=hidden name=nextsub value=project_selected>
+It checks if a vendor or customer is given. No failsafe, vendor fallback if
+$_[0] is something fancy.
 
-<br>
-<input class=submit type=submit name=action value="|
-    . $locale->text('Continue') . qq|">
-</form>
+=item *
 
-</body>
-</html>
-|;
+It assumes, that there is a field named customer or vendor in $form.
 
-  $main::lxdebug->leave_sub();
-}
+=item *
 
-sub project_selected {
-  $main::lxdebug->enter_sub();
+It assumes, that this field is filled with name--id, and tries to split that.
+sql ledger uses that combination to get ids into the select keys.
 
-  my $form     = $main::form;
+=item *
 
-  $main::auth->assert('general_ledger         | vendor_invoice_edit  | sales_order_edit    | invoice_edit |' .
-                'request_quotation_edit | sales_quotation_edit | purchase_order_edit | cash         | report');
+It looks for a field selectcustomer or selectvendor in $form. sql ledger used
+to store a copy of the html select in there. (again, don't ask)
 
-  # replace the variable with the one checked
+=item *
 
-  # index for new item
-  my $i = $form->{ndx};
+If this field exists, it looks for a field called oldcustomer or oldvendor, in
+which the old name--id string was stored in sql ledger, and compares those.
 
-  my $prefix = $form->{"is_global"} ? "global" : "";
-  my $suffix = $form->{"is_global"} ? "" : "_$form->{rownumber}";
+=item *
 
-  $form->{"${prefix}projectnumber${suffix}"} =
-    $form->{"new_projectnumber_$i"};
-  $form->{"old${prefix}projectnumber${suffix}"} =
-    $form->{"new_projectnumber_$i"};
-  $form->{"${prefix}project_id${suffix}"} = $form->{"new_id_$i"};
+if they don't match, it will set customer_id or vendor_id in $form, load the
+entry (which will clobber everything in $form named like a column in customer
+oder vendor) and return.
 
-  # delete all the new_ variables
-  for $i (1 .. $form->{lastndx}) {
-    map { delete $form->{"new_${_}_$i"} } qw(id projectnumber description);
-  }
+=item *
 
-  my $nextsub = $form->{project_selected_nextsub} || 'update';
+If there was no select* entry, it assumes that vclimit was lower than the
+number of entries, and that an input field was generated. In that case the
+splitting is omitted (since users don't generally include ids in entered names)
 
-  map { delete $form->{$_} } qw(ndx lastndx nextsub is_global project_selected_nextsub);
+=item *
 
-  call_sub($nextsub);
+It looks for a *_id field, and combines it with the given input into a name--id
+entry and compares it to the old* entry. (Missing any of these will instantly
+break check_namea.
 
-  $main::lxdebug->leave_sub();
-}
+=item *
 
-sub continue       { call_sub($main::form->{"nextsub"}); }
+If those do not match, $form->get_name is called to get matching results.
+get_name only matches by *number and name, not by id, don't try to get it to do
+so.
+
+=item *
+
+The results are stored in $form>{name_list} but a count is returned, and
+checked.
+
+=item *
+
+If only one result was found, *_id, * and old* are copied into $form, the entry
+is loaded (like above, clobbering)
+
+=item *
+
+If there is more than one, a selection dialog is rendered
+
+=item *
+
+If none is found, an error is generated.
+
+=back
+
+=head3 I built a customer/vendor box somewhere and it doesn't work, what's wrong?
+
+Make sure a select* field is given if and only if you render a select box. The
+actual contents are ignored, but recognition fails if not present.
+
+Make sure old* and *_id fields are set correctly (name--id form for old*). They
+are necessary in all steps and branches.
+
+Since get_customer and get_vendor clobber a lot of fields, make sure what
+changes exactly.
+
+=head3 select- version works fine, but things go awry when I use a textbox, any idea?
+
+If there is more than one match, check_name will display a select form, that
+will redirect to the original C<nextsub>. Unfortunately any hidden vars or
+input fields will be lost in the process unless saved before in a callback.
+
+If you still want to use it, you can disable this feature, like this:
+
+  check_name('customer', no_select => 1)
+
+In that case multiple matches will trigger an error.
+
+Otherwise you'll have to care to include a complete state in callback.
 
+=cut