Revision fef43fa5
Von Sven Schöling vor fast 13 Jahren hinzugefügt
bin/mozilla/ic.pl | ||
---|---|---|
1043 | 1043 |
'listprice' => { 'text' => $locale->text('List Price'), }, |
1044 | 1044 |
'microfiche' => { 'text' => $locale->text('Microfiche'), }, |
1045 | 1045 |
'name' => { 'text' => $locale->text('Name'), }, |
1046 |
'onhand' => { 'text' => $locale->text('Qty'), }, |
|
1046 |
'onhand' => { 'text' => $locale->text('Stocked Qty'), },
|
|
1047 | 1047 |
'ordnumber' => { 'text' => $locale->text('Order Number'), }, |
1048 | 1048 |
'partnumber' => { 'text' => $locale->text('Part Number'), }, |
1049 | 1049 |
'partsgroup' => { 'text' => $locale->text('Group'), }, |
... | ... | |
1052 | 1052 |
'rop' => { 'text' => $locale->text('ROP'), }, |
1053 | 1053 |
'sellprice' => { 'text' => $locale->text('Sell Price'), }, |
1054 | 1054 |
'serialnumber' => { 'text' => $locale->text('Serial Number'), }, |
1055 |
'soldtotal' => { 'text' => $locale->text('soldtotal'), },
|
|
1055 |
'soldtotal' => { 'text' => $locale->text('Qty in Selected Records'), },
|
|
1056 | 1056 |
'transdate' => { 'text' => $locale->text('Transdate'), }, |
1057 | 1057 |
'unit' => { 'text' => $locale->text('Unit'), }, |
1058 | 1058 |
'weight' => { 'text' => $locale->text('Weight'), }, |
... | ... | |
1201 | 1201 |
IC->all_parts(\%myconfig, \%$form); |
1202 | 1202 |
|
1203 | 1203 |
my @columns = qw( |
1204 |
partnumber description partsgroup bin onhand rop unit listprice |
|
1204 |
partnumber description partsgroup bin onhand rop soldtotal unit listprice
|
|
1205 | 1205 |
linetotallistprice sellprice linetotalsellprice lastcost linetotallastcost |
1206 | 1206 |
priceupdate weight image drawing microfiche invnumber ordnumber quonumber |
1207 |
transdate name serialnumber soldtotal deliverydate ean
|
|
1207 |
transdate name serialnumber deliverydate ean |
|
1208 | 1208 |
); |
1209 | 1209 |
|
1210 | 1210 |
my @includeable_custom_variables = grep { $_->{includeable} } @{ $cvar_configs }; |
Auch abrufbar als: Unified diff
Menge und Soldtotal in Warensuche getrennt.
Fix zu Bug 1635. Ausserdem die Spalten umsortiert und die Spalten sinnvoller
benannt. Vorher wurde soldtotal im bsooqr mode auf die onhand Spalte gelegt,
das musste einfach nur entfernt werden.