Revision 29d63643
Von Philip Reetz vor mehr als 17 Jahren hinzugefügt
SL/CT.pm | ||
---|---|---|
764 | 764 |
my $query = |
765 | 765 |
qq|SELECT s.shiptoname, i.qty, | . |
766 | 766 |
qq| ${arap}.transdate, ${arap}.invnumber, ${arap}.ordnumber, | . |
767 |
qq| invoice.description, invoice.unit | .
|
|
767 |
qq| i.description, i.unit, i.sellprice | .
|
|
768 | 768 |
qq|FROM $arap | . |
769 | 769 |
qq|LEFT JOIN shipto s ON | . |
770 | 770 |
($arap eq "ar" |
bin/mozilla/ct.pl | ||
---|---|---|
1153 | 1153 |
transdate, |
1154 | 1154 |
description, |
1155 | 1155 |
qty, |
1156 |
unit); |
|
1156 |
unit, |
|
1157 |
sellprice); |
|
1157 | 1158 |
|
1158 | 1159 |
|
1159 | 1160 |
|
... | ... | |
1171 | 1172 |
qq|<th class=listheading>| . $locale->text('Qty') . qq|</th>|; |
1172 | 1173 |
$column_header{unit} = |
1173 | 1174 |
qq|<th class=listheading>| . $locale->text('Unit') . qq|</th>|; |
1175 |
$column_header{sellprice} = |
|
1176 |
qq|<th class=listheading>| . $locale->text('Sell Price') . qq|</th>|; |
|
1174 | 1177 |
$result .= qq| |
1175 | 1178 |
|
1176 | 1179 |
<table width=100%> |
... | ... | |
1195 | 1198 |
} else { |
1196 | 1199 |
map { $column_data{$_} = "<td>$ref->{$_} </td>" } @column_index; |
1197 | 1200 |
} |
1198 |
|
|
1201 |
$column_data{sellprice} = "<td>". $form->format_amount(\%myconfig,$ref->{sellprice},2)." </td>"; |
|
1199 | 1202 |
$i++; |
1200 | 1203 |
$i %= 2; |
1201 | 1204 |
$result .= " |
locale/de/ct | ||
---|---|---|
136 | 136 |
'Select a part' => 'Artikel auswählen', |
137 | 137 |
'Select a project' => 'Projekt auswählen', |
138 | 138 |
'Select an employee' => 'Angestellten auswählen', |
139 |
'Sell Price' => 'Verkaufspreis', |
|
139 | 140 |
'Shipping Address' => 'Lieferadresse', |
140 | 141 |
'Steuersatz' => 'Steuersatz', |
141 | 142 |
'Storno Invoice' => 'Stornorechnung', |
Auch abrufbar als: Unified diff
Fehler in der Datenbankabfrage fuer Lieferungen bei Kundenstammdaten, Ansicht erweitert um
Verkaufspreis