Revision 2e8b803f
Von Bernd Bleßmann vor fast 9 Jahren hinzugefügt
bin/mozilla/ct.pl | ||
---|---|---|
136 | 136 |
push @options, $locale->text('Orphaned'); |
137 | 137 |
} |
138 | 138 |
|
139 |
push @options, $locale->text('Name') . " : $form->{name}" if $form->{name}; |
|
140 |
push @options, $locale->text('Contact') . " : $form->{contact}" if $form->{contact}; |
|
141 |
push @options, $locale->text('Number') . qq| : $form->{"$form->{db}number"}| if $form->{"$form->{db}number"}; |
|
142 |
push @options, $locale->text('E-mail') . " : $form->{email}" if $form->{email}; |
|
143 |
push @options, $locale->text('Contact person (surname)') . " : $form->{cp_name}" if $form->{cp_name}; |
|
144 |
push @options, $locale->text('Billing/shipping address (city)') . " : $form->{addr_city}" if $form->{addr_city}; |
|
145 |
push @options, $locale->text('Billing/shipping address (zipcode)') . " : $form->{addr_zipcode}" if $form->{addr_zipcode};
|
|
146 |
push @options, $locale->text('Billing/shipping address (street)') . " : $form->{addr_street}" if $form->{addr_street};
|
|
147 |
push @options, $locale->text('Billing/shipping address (country)') . " : $form->{addr_country}" if $form->{addr_country};
|
|
148 |
push @options, $locale->text('Billing/shipping address (GLN)') . " : $form->{addr_gln}" if $form->{addr_gln}; |
|
139 |
push @options, $locale->text('Name') . " : $form->{name}" if $form->{name};
|
|
140 |
push @options, $locale->text('Contact') . " : $form->{contact}" if $form->{contact};
|
|
141 |
push @options, $locale->text('Number') . qq| : $form->{"$form->{db}number"}| if $form->{"$form->{db}number"};
|
|
142 |
push @options, $locale->text('E-mail') . " : $form->{email}" if $form->{email};
|
|
143 |
push @options, $locale->text('Contact person (surname)') . " : $form->{cp_name}" if $form->{cp_name};
|
|
144 |
push @options, $locale->text('Billing/shipping address (city)') . " : $form->{addr_city}" if $form->{addr_city};
|
|
145 |
push @options, $locale->text('Billing/shipping address (zipcode)') . " : $form->{addr_zipcode}" if $form->{addr_zipcode}; |
|
146 |
push @options, $locale->text('Billing/shipping address (street)') . " : $form->{addr_street}" if $form->{addr_street}; |
|
147 |
push @options, $locale->text('Billing/shipping address (country)') . " : $form->{addr_country}" if $form->{addr_country}; |
|
148 |
push @options, $locale->text('Billing/shipping address (GLN)') . " : $form->{addr_gln}" if $form->{addr_gln};
|
|
149 | 149 |
|
150 | 150 |
if ($form->{business_id}) { |
151 | 151 |
my $business = SL::DB::Manager::Business->find_by(id => $form->{business_id}); |
templates/webpages/ct/search.html | ||
---|---|---|
35 | 35 |
<th align="right" nowrap>[% 'Billing/shipping address (street)' | $T8 %]</th> |
36 | 36 |
<td><input name="addr_street" size="35"></td> |
37 | 37 |
</tr> |
38 |
<tr> |
|
38 |
<tr>
|
|
39 | 39 |
<th align="right" nowrap>[% 'Billing/shipping address (zipcode)' | $T8 %]</th> |
40 | 40 |
<td><input name="addr_zipcode" size="35"></td> |
41 |
</tr> |
|
41 |
</tr>
|
|
42 | 42 |
<tr> |
43 | 43 |
<th align="right" nowrap>[% 'Billing/shipping address (city)' | $T8 %]</th> |
44 | 44 |
<td><input name="addr_city" size="35"></td> |
... | ... | |
176 | 176 |
<td> |
177 | 177 |
<input name="l_country" id="l_country" type="checkbox" class="checkbox" value="Y" checked> |
178 | 178 |
<label for="l_country">[% 'Country' | $T8 %]</label> |
179 |
</td> |
|
179 |
</td>
|
|
180 | 180 |
</tr> |
181 | 181 |
<tr> |
182 | 182 |
<td> |
... | ... | |
198 | 198 |
</tr> |
199 | 199 |
[% IF IS_CUSTOMER %] |
200 | 200 |
<tr> |
201 |
<td> |
|
202 |
<input name="l_salesman" id="l_salesman" type="checkbox" class="checkbox" value="Y"> |
|
203 |
<label for="l_salesman">[% 'Salesman' | $T8 %]</label> |
|
204 |
</td> |
|
205 |
<td> |
|
206 |
<input name="l_pricegroup" id="l_pricegroup" type="checkbox" class="checkbox" value="Y"> |
|
207 |
<label for="l_pricegroup">[% 'Pricegroup' | $T8 %]</label> |
|
208 |
</td> |
|
201 |
<td>
|
|
202 |
<input name="l_salesman" id="l_salesman" type="checkbox" class="checkbox" value="Y">
|
|
203 |
<label for="l_salesman">[% 'Salesman' | $T8 %]</label>
|
|
204 |
</td>
|
|
205 |
<td>
|
|
206 |
<input name="l_pricegroup" id="l_pricegroup" type="checkbox" class="checkbox" value="Y">
|
|
207 |
<label for="l_pricegroup">[% 'Pricegroup' | $T8 %]</label>
|
|
208 |
</td>
|
|
209 | 209 |
</tr> |
210 | 210 |
[% END %] |
211 | 211 |
|
Auch abrufbar als: Unified diff
Kosmetik