Revision 15dedf55
Von Bernd Bleßmann vor mehr als 1 Jahr hinzugefügt
SL/IC.pm | ||
---|---|---|
my @like_filters = (@simple_filters, @invoice_oi_filters);
|
||
my @all_columns = (@simple_filters, @makemodel_filters, @apoe_filters, @project_filters, qw(serialnumber));
|
||
my @simple_l_switches = (@all_columns, qw(notes listprice sellprice lastcost priceupdate weight unit rop image shop insertdate));
|
||
my %no_simple_l_switches = (warehouse => 'wh.description as warehouse', bin => 'bin.description as bin');
|
||
my %no_simple_l_switches = (warehouse => 'wh.description as warehouse', bin => 'bin.description as bin', price_factor_description => 'pfac.description as price_factor_description');
|
||
my @oe_flags = qw(bought sold onorder ordered rfq quoted);
|
||
my @qsooqr_flags = qw(invnumber ordnumber quonumber trans_id name module qty);
|
||
my @deliverydate_flags = qw(deliverydate);
|
bin/mozilla/ic.pl | ||
---|---|---|
'bin' => { 'text' => $locale->text('Default Bin'), },
|
||
'make' => { 'text' => $locale->text('Make'), },
|
||
'model' => { 'text' => $locale->text('Model'), },
|
||
'price_factor_description' => { 'text' => $locale->text('Price Factor'), },
|
||
);
|
||
|
||
$revers = $form->{revers};
|
||
... | ... | |
|
||
my @columns = qw(
|
||
partnumber type_and_classific description notes partsgroup warehouse bin
|
||
make model assembly_qty onhand rop soldtotal unit listprice
|
||
make model assembly_qty onhand rop soldtotal unit price_factor_description listprice
|
||
linetotallistprice sellprice linetotalsellprice lastcost assembly_lastcost linetotallastcost
|
||
priceupdate weight image drawing microfiche invnumber ordnumber quonumber
|
||
transdate name serialnumber deliverydate ean projectnumber projectdescription
|
||
... | ... | |
|
||
%column_defs = (%column_defs, %column_defs_cvars, %column_defs_pricegroups);
|
||
map { $column_defs{$_}->{visible} ||= $form->{"l_$_"} ? 1 : 0 } @columns;
|
||
map { $column_defs{$_}->{align} = 'right' } qw(assembly_qty onhand sellprice listprice lastcost assembly_lastcost linetotalsellprice linetotallastcost linetotallistprice rop weight soldtotal shop), @pricegroup_columns;
|
||
map { $column_defs{$_}->{align} = 'right' } qw(assembly_qty onhand sellprice listprice lastcost assembly_lastcost linetotalsellprice linetotallastcost linetotallistprice rop weight soldtotal shop price_factor_description), @pricegroup_columns;
|
||
|
||
my @hidden_variables = (
|
||
qw(l_subtotal l_linetotal searchitems itemstatus bom l_pricegroups insertdatefrom insertdateto),
|
||
... | ... | |
|
||
my $callback = build_std_url('action=generate_report', grep { $form->{$_} } @hidden_variables);
|
||
|
||
my @sort_full = qw(partnumber description onhand soldtotal deliverydate insertdate shop);
|
||
my @sort_full = qw(partnumber description onhand soldtotal deliverydate insertdate shop price_factor_description);
|
||
my @sort_no_revers = qw(partsgroup invnumber ordnumber quonumber name image drawing serialnumber);
|
||
|
||
foreach my $col (@sort_full) {
|
templates/design40_webpages/ic/search.html | ||
---|---|---|
<p>[% L.checkbox_tag('l_subtotal', label=LxERP.t8('Subtotal'), value='Y') %]</p>
|
||
<p>[% L.checkbox_tag('l_linetotal', label=LxERP.t8('Line Total'), value='Y', checked=1) %]</p>
|
||
<p>[% L.checkbox_tag('l_pricegroups', label=LxERP.t8('Pricegroups'), value='Y', checked=1) %]</p>
|
||
<p>[% L.checkbox_tag('l_price_factor_description', label=LxERP.t8('Price Factor'), value='Y') %]</p>
|
||
</div>
|
||
|
||
<div class="col list">
|
templates/webpages/ic/search.html | ||
---|---|---|
<td>[%- L.checkbox_tag('l_linetotal', label=LxERP.t8('Line Total'), value='Y', checked=1) %]</td>
|
||
</tr>
|
||
|
||
<tr>
|
||
<td>[%- L.checkbox_tag('l_price_factor_description', label=LxERP.t8('Price Factor'), value='Y') %]</td>
|
||
</tr>
|
||
|
||
<tr>
|
||
<td>[%- L.checkbox_tag('l_priceupdate', label=LxERP.t8('Price updated'), value='Y') %]</td>
|
||
<td>[%- L.checkbox_tag('l_deliverydate', label=LxERP.t8('Delivery Date'), value='Y') %]</td>
|
Auch abrufbar als: Unified diff
Artikelbericht: Preisfaktor anzeigen können