X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/9a128e8bfd4f08c24e12b4ab7387efb3001d629f..762f348476e09df5619fa11d7ec070209cb843f4:/SL/Controller/Order.pm?ds=inline diff --git a/SL/Controller/Order.pm b/SL/Controller/Order.pm index 331855098..8023aa2b9 100644 --- a/SL/Controller/Order.pm +++ b/SL/Controller/Order.pm @@ -783,6 +783,8 @@ sub _make_item { $item->assign_attributes(%$attr); $item->longdescription($item->part->notes) if $is_new && !defined $attr->{longdescription}; + # item fields that currently can't be set in in row but are needed: + $item->lastcost($item->part->lastcost); return $item; } @@ -1154,9 +1156,9 @@ Email dialog =back -=item * +=item * C -js/kivi.Order.js: java script functions +java script functions =back @@ -1192,6 +1194,10 @@ js/kivi.Order.js: java script functions =item * force project if enabled in client config +=item * history + +=item * mtime check + =back =head1 KNOWN BUGS AND CAVEATS @@ -1200,10 +1206,6 @@ js/kivi.Order.js: java script functions =item * -C is not displayed until an order is saved - -=item * - Customer discount is not displayed as a valid discount in price source popup (this might be a bug in price sources) @@ -1232,9 +1234,22 @@ Table header is not sticky in the scrolling area. Sorting does not include C, neither does reordering. +This behavior was implemented intentionally. But we can discuss, which behavior +should be implemented. + =item * -C does not use the currently inserted string for filtering. +C does not use the currently inserted string for +filtering. + +=item * Performance + +Rendering a 50 items order takes twice as long as the old code. + +90% of that is rendering the (hidden) second rows, and 50% of those again are +checks for is_valid and C on the cvar input template. + +Suggestion: fetch second rows when asked for. =back