Revision 35ca31c0
Von Niclas Zimmermann vor etwa 12 Jahren hinzugefügt
SL/IC.pm | ||
---|---|---|
793 | 793 |
my @apoe_filters = qw(transdate); |
794 | 794 |
my @like_filters = (@simple_filters, @invoice_oi_filters); |
795 | 795 |
my @all_columns = (@simple_filters, @makemodel_filters, @apoe_filters, @project_filters, qw(serialnumber)); |
796 |
my @simple_l_switches = (@all_columns, qw(listprice sellprice lastcost priceupdate weight unit bin rop image)); |
|
796 |
my @simple_l_switches = (@all_columns, qw(notes listprice sellprice lastcost priceupdate weight unit bin rop image));
|
|
797 | 797 |
my @oe_flags = qw(bought sold onorder ordered rfq quoted); |
798 | 798 |
my @qsooqr_flags = qw(invnumber ordnumber quonumber trans_id name module qty); |
799 | 799 |
my @deliverydate_flags = qw(deliverydate); |
... | ... | |
1094 | 1094 |
if ($form->{searchitems} eq 'assembly' && $form->{bom}) { |
1095 | 1095 |
$query = |
1096 | 1096 |
qq|SELECT p.id, p.partnumber, p.description, a.qty AS onhand, |
1097 |
p.unit, p.bin, |
|
1097 |
p.unit, p.bin, p.notes,
|
|
1098 | 1098 |
p.sellprice, p.listprice, p.lastcost, |
1099 | 1099 |
p.rop, p.weight, p.priceupdate, |
1100 | 1100 |
p.image, p.drawing, p.microfiche, |
bin/mozilla/ic.pl | ||
---|---|---|
1032 | 1032 |
'bin' => { 'text' => $locale->text('Bin'), }, |
1033 | 1033 |
'deliverydate' => { 'text' => $locale->text('deliverydate'), }, |
1034 | 1034 |
'description' => { 'text' => $locale->text('Part Description'), }, |
1035 |
'notes' => { 'text' => $locale->text('Notes'), }, |
|
1035 | 1036 |
'drawing' => { 'text' => $locale->text('Drawing'), }, |
1036 | 1037 |
'ean' => { 'text' => $locale->text('EAN'), }, |
1037 | 1038 |
'image' => { 'text' => $locale->text('Image'), }, |
... | ... | |
1214 | 1215 |
IC->all_parts(\%myconfig, \%$form); |
1215 | 1216 |
|
1216 | 1217 |
my @columns = qw( |
1217 |
partnumber description partsgroup bin onhand rop soldtotal unit listprice |
|
1218 |
partnumber description notes partsgroup bin onhand rop soldtotal unit listprice
|
|
1218 | 1219 |
linetotallistprice sellprice linetotalsellprice lastcost linetotallastcost |
1219 | 1220 |
priceupdate weight image drawing microfiche invnumber ordnumber quonumber |
1220 | 1221 |
transdate name serialnumber deliverydate ean projectnumber projectdescription |
templates/webpages/ic/search.html | ||
---|---|---|
286 | 286 |
</td> |
287 | 287 |
</tr> |
288 | 288 |
|
289 |
<tr> |
|
290 |
<td> |
|
291 |
<input name="l_notes" id="l_notes" class="checkbox" type="checkbox" value="Y"> |
|
292 |
<label for="l_notes">[% 'Notes' | $T8 %]</label> |
|
293 |
</td> |
|
294 |
</tr> |
|
295 |
|
|
289 | 296 |
[% CUSTOM_VARIABLES_INCLUSION_CODE %] |
290 | 297 |
</table> |
291 | 298 |
</td> |
Auch abrufbar als: Unified diff
Bemerkungen im Warenbericht
Im Warenbericht kann man jetzt auch Bemerkungen zu den einzelnen
Waren anzeigen lassen.