X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Fct.pl;h=a4424307bdb460b31461e51c1bbedefe72a09416;hb=7c8ba0e3428528a57d6ac5feae91582560602028;hp=29a0283cdf461fcbbe939d8b2e8ea100dd1b4c9b;hpb=08ca74a8fe8fc1f9e528b0cc1172062c80283a36;p=kivitendo-erp.git diff --git a/bin/mozilla/ct.pl b/bin/mozilla/ct.pl index 29a0283cd..a4424307b 100644 --- a/bin/mozilla/ct.pl +++ b/bin/mozilla/ct.pl @@ -133,6 +133,7 @@ sub list_names { ); my @includeable_custom_variables = grep { $_->{includeable} } @{ $cvar_configs }; + my @searchable_custom_variables = grep { $_->{searchable} } @{ $cvar_configs }; my %column_defs_cvars = map { +"cvar_$_->{name}" => { 'text' => $_->{description} } } @includeable_custom_variables; push @columns, map { "cvar_$_->{name}" } @includeable_custom_variables; @@ -158,9 +159,9 @@ sub list_names { map { $column_defs{$_}->{visible} = $form->{"l_$_"} eq 'Y' } @columns; - my @hidden_variables = (qw(db status obsolete), map { "l_$_" } @columns); + my @hidden_variables = (qw(db status obsolete name contact email cp_name addr_city), "$form->{db}number", @searchable_custom_variables, map { "l_$_" } @columns); my @hidden_nondefault = grep({ $form->{$_} } @hidden_variables); - my $callback = build_std_url('action=list_names', grep { $form->{$_} } @hidden_variables); + my $callback = build_std_url('action=list_names', grep { $form->{$_} } @hidden_nondefault); $form->{callback} = "$callback&sort=" . E($form->{sort}) . "&sortdir=" . E($form->{sortdir}); foreach (@columns) { @@ -245,9 +246,6 @@ sub edit { CT->get_tuple(\%myconfig, \%$form); CT->populate_drop_down_boxes(\%myconfig, \%$form); - # format " into " - map { $form->{$_} =~ s/\"/"/g } keys %$form; - $form->{title} = "Edit"; # format discount @@ -273,7 +271,7 @@ sub form_header { $form->{is_admin} = $myconfig{role} eq 'admin'; $form->{is_customer} = $form->{db} eq 'customer'; $form->{salesman_label} = sub { $_[0]->{name} ne "" ? $_[0]->{name} : $_[0]->{login} }; - $form->{shipto_label} = sub { "$_[0]->{shiptoname} $_[0]->{shiptodepartment_1}" }; + $form->{shipto_label} = sub { my $s = shift(@_); join('; ', grep { $_ } map { $s->{"shipto$_"} } qw(name department_1 street city)) || ' ' }; $form->{contacts_label} = sub { join ", ", grep { $_ } $_[0]->{cp_name}, $_[0]->{cp_givenname} }; $form->{taxzone_id} = 0 if !$form->{id}; $form->{jsscript} = 1; @@ -314,7 +312,9 @@ sub form_footer { sub add_transaction { $lxdebug->enter_sub(); - $auth->assert('customer_vendor_edit & general_ledger'); + $auth->assert('customer_vendor_edit & ' . + '(general_ledger | invoice_edit | vendor_invoice_edit | ' . + ' request_quotation_edit | sales_quotation_edit | sales_order_edit | purchase_order_edit)'); # # saving the history # if(!exists $form->{addition}) { @@ -435,7 +435,11 @@ sub save_and_quotation { sub save_and_order { $lxdebug->enter_sub(); - $auth->assert('customer_vendor_edit & sales_order_edit'); + if ($form->{db} eq 'customer') { + $auth->assert('customer_vendor_edit & sales_order_edit'); + } else { + $auth->assert('customer_vendor_edit & purchase_order_edit'); + } $form->{script} = "oe.pl"; $form->{type} =