X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Fap.pl;h=e3a92675cbb944f5642fb08525a0c75cd3dc865f;hb=a90b3fb8ebabdefdce605df9999fa8f284856e55;hp=a3869d13bc85ece79c04087e9b289b80435d4d33;hpb=25517b3d6cab7eb6c01a512979970ea4075e4a34;p=kivitendo-erp.git diff --git a/bin/mozilla/ap.pl b/bin/mozilla/ap.pl index a3869d13b..e3a92675c 100644 --- a/bin/mozilla/ap.pl +++ b/bin/mozilla/ap.pl @@ -501,7 +501,7 @@ sub form_header { my $item = shift; return [ $item->{id} .'--'. $item->{rate}, - $item->{taxdescription} .' '. ($item->{rate} * 100) .' %', + $item->{taxkey} . ' - ' . $item->{taxdescription} .' '. ($item->{rate} * 100) .' %', ]; }; @@ -1211,6 +1211,7 @@ sub add_from_purchase_order { $::form->{transdate} = $today->to_kivitendo; $::form->{duedate} = $today->to_kivitendo; $::form->{duedate} = $order->payment_terms->calc_date(reference_date => $today)->to_kivitendo if $order->payment_terms; + $::form->{deliverydate} = $order->reqdate->to_kivitendo if $order->reqdate; create_links(); my $config_po_ap_workflow_chart_id = $::instance_conf->get_workflow_po_ap_chart_id;