Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision e06a7e08

Von Moritz Bunkus vor fast 18 Jahren hinzugefügt

  • ID e06a7e08648363ef8c8ef14678ab853ae7bdd670
  • Vorgänger 99131585
  • Nachfolger bab39fc2

Einkaufs- und Verkaufsmasken: Die potenziell langen Drop-Down-Boxen auf der linken Seite haben alle die selbe Breite.

Unterschiede anzeigen:

bin/mozilla/ir.pl
<tr>
<th align="right">| . $locale->text('Contact Person') . qq|</th>
<td>| .
NTI($cgi->popup_menu('-name' => 'cp_id', '-values' => \@values,
NTI($cgi->popup_menu('-name' => 'cp_id', '-values' => \@values, '-style' => 'width: 250px',
'-labels' => \%labels, '-default' => $form->{"cp_id"}))
. qq|
</td>
......
<td>| .
NTI($cgi->popup_menu('-name' => 'vendor', '-default' => $form->{"vendor"},
'-onChange' => 'document.getElementById(\'update_button\').click();',
'-values' => \@values, '-labels' => \%labels)) . qq|
'-values' => \@values, '-labels' => \%labels, '-style' => 'width: 250px')) . qq|
<input type="button" value="?" onclick="show_vc_details('vendor')">
</td>|;
......
<th align="right">| . $locale->text('Steuersatz') . qq|</th>
<td>| .
NTI($cgi->popup_menu('-name' => 'taxzone_id', '-default' => $form->{"taxzone_id"},
'-values' => \@values, '-labels' => \%labels)) . qq|
'-values' => \@values, '-labels' => \%labels, '-style' => 'width: 250px')) . qq|
</td>
</tr>|;
......
$department = qq|
<tr>
<th align="right" nowrap>| . $locale->text('Department') . qq|</th>
<td colspan="3"><select name="department">$form->{selectdepartment}</select>
<td colspan="3"><select name="department" style="width: 250px">$form->{selectdepartment}</select>
<input type="hidden" name="selectdepartment" value="$form->{selectdepartment}">
</td>
</tr>
......
</tr>
<tr>
<th align="right">| . $locale->text('Record in') . qq|</th>
<td colspan="3"><select name="AP">$form->{selectAP}</select></td>
<td colspan="3"><select name="AP" style="width: 250px">$form->{selectAP}</select></td>
<input type="hidden" name="selectAP" value="$form->{selectAP}">
</tr>
$taxzone
bin/mozilla/is.pl
<tr>
<th align="right">| . $locale->text('Contact Person') . qq|</th>
<td>| .
NTI($cgi->popup_menu('-name' => 'cp_id', '-values' => \@values,
NTI($cgi->popup_menu('-name' => 'cp_id', '-values' => \@values, '-style' => 'width: 250px',
'-labels' => \%labels, '-default' => $form->{"cp_id"}))
. qq|
</td>
......
? qq|<input type="text" value="| . H($form->{"oldcustomer"}) . qq|" name="customer">|
: (NTI($cgi->popup_menu('-name' => 'customer', '-default' => $form->{oldcustomer},
'-onChange' => 'document.getElementById(\'update_button\').click();',
'-values' => \@values, '-labels' => \%labels)))) . qq|
'-values' => \@values, '-labels' => \%labels, '-style' => 'width: 250px')))) . qq|
<input type="button" value="?" onclick="show_vc_details('customer')">
</td>|;
......
<tr>
<th align="right">| . $locale->text('Shipping Address') . qq|</th>
<td>| .
NTI($cgi->popup_menu('-name' => 'shipto_id', '-values' => \@values,
NTI($cgi->popup_menu('-name' => 'shipto_id', '-values' => \@values, '-style' => 'width: 250px',
'-labels' => \%labels, '-default' => $form->{"shipto_id"}))
. qq|</td>|;
}
......
<th align="right">| . $locale->text('Steuersatz') . qq|</th>
<td>| .
NTI($cgi->popup_menu('-name' => 'taxzone_id', '-default' => $form->{"taxzone_id"},
'-values' => \@values, '-labels' => \%labels)) . qq|
'-values' => \@values, '-labels' => \%labels, '-style' => 'width: 250px',)) . qq|
</td>
</tr>|;
......
$department = qq|
<tr>
<th align="right" nowrap>| . $locale->text('Department') . qq|</th>
<td colspan="3"><select name="department">$form->{selectdepartment}</select>
<td colspan="3"><select name="department" style="width: 250px">$form->{selectdepartment}</select>
<input type="hidden" name="selectdepartment" value="$form->{selectdepartment}">
</td>
</tr>
......
$business
<tr>
<th align="right" nowrap>| . $locale->text('Record in') . qq|</th>
<td colspan="3"><select name="AR" style="width:280px;">$form->{selectAR}</select></td>
<td colspan="3"><select name="AR" style="width:250px;">$form->{selectAR}</select></td>
<input type="hidden" name="selectAR" value="$form->{selectAR}">
</tr>
$taxzone
bin/mozilla/oe.pl
<tr>
<th align="right">| . $locale->text('Contact Person') . qq|</th>
<td>| .
NTI($cgi->popup_menu('-name' => 'cp_id', '-values' => \@values,
NTI($cgi->popup_menu('-name' => 'cp_id', '-values' => \@values, '-style' => 'width: 250px',
'-labels' => \%labels, '-default' => $form->{"cp_id"}))
. qq|
</td>
......
? qq|<input type="text" value="| . H($form->{"old$form->{vc}"}) . qq|" name="$form->{vc}">|
: (NTI($cgi->popup_menu('-name' => "$form->{vc}", '-default' => $form->{"old$form->{vc}"},
'-onChange' => 'document.getElementById(\'update_button\').click();',
'-values' => \@values, '-labels' => \%labels)))) . qq|
'-values' => \@values, '-labels' => \%labels, '-style' => 'width: 250px')))) . qq|
<input type="button" value="?" onclick="show_vc_details('$form->{vc}')">
</td><input type=hidden name="select$form->{vc}" value="| .
Q($form->{"select$form->{vc}"}) . qq|">|;
......
$payments = qq|
<th align="right">| . $locale->text('Payment Terms') . qq|</th>
<td>| .
NTI($cgi->popup_menu('-name' => 'payment_id', '-values' => \@values,
NTI($cgi->popup_menu('-name' => 'payment_id', '-values' => \@values, '-style' => 'width: 250px',
'-labels' => \%labels, '-default' => $form->{payment_id}))
. qq|</td>|;
......
<tr>
<th align="right">| . $locale->text('Shipping Address') . qq|</th>
<td>| .
NTI($cgi->popup_menu('-name' => 'shipto_id', '-values' => \@values,
NTI($cgi->popup_menu('-name' => 'shipto_id', '-values' => \@values, '-style' => 'width: 250px',
'-labels' => \%labels, '-default' => $form->{"shipto_id"}))
. qq|</td>|;
}
......
<th align="right">| . $locale->text('Steuersatz') . qq|</th>
<td>| .
NTI($cgi->popup_menu('-name' => 'taxzone_id', '-default' => $form->{"taxzone_id"},
'-values' => \@values, '-labels' => \%labels)) . qq|
'-values' => \@values, '-labels' => \%labels, '-style' => 'width: 250px')) . qq|
</td>
</tr>|;
......
$department = qq|
<tr>
<th align="right" nowrap>| . $locale->text('Department') . qq|</th>
<td colspan=3><select name=department>$form->{selectdepartment}</select>
<td colspan=3><select name=department style="width: 250px">$form->{selectdepartment}</select>
<input type=hidden name=selectdepartment value="$form->{selectdepartment}">
</td>
</tr> | if $form->{selectdepartment};

Auch abrufbar als: Unified diff