Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 055a6bf2

Von Moritz Bunkus vor fast 18 Jahren hinzugefügt

  • ID 055a6bf2aa1a2ce48d02ea57ed066a813f5c9434
  • Vorgänger d4cfda7f
  • Nachfolger b0e933c2

Das Verhalten der Checkbox "Formulardetails anzeigen/verstecken" kann in den Benutzereinstellungen vorbelegt werden.

Unterschiede anzeigen:

SL/User.pm
1086 1086
    dbname dbuser dbpasswd email fax name numberformat in_numberformat password
1087 1087
    printer role sid signature stylesheet tel templates vclimit angebote bestellungen rechnungen
1088 1088
    anfragen lieferantenbestellungen einkaufsrechnungen taxnumber co_ustid duns menustyle
1089
    template_format copies);
1089
    template_format copies show_form_details);
1090 1090

  
1091 1091
  $main::lxdebug->leave_sub();
1092 1092

  
bin/mozilla/am.pl
3001 3001
    $menustyle_v3 = "checked";
3002 3002
  }
3003 3003

  
3004
  my ($show_form_details, $hide_form_details);
3005
  $myconfig{"show_form_details"} = 1
3006
    unless (defined($myconfig{"show_form_details"}));
3007
  $show_form_details = "checked" if ($myconfig{"show_form_details"});
3008
  $hide_form_details = "checked" unless ($myconfig{"show_form_details"});
3009

  
3004 3010
  print qq|
3005 3011
<body>
3006 3012

  
......
3080 3086
    $locale->text("Top (Javascript)") . qq|
3081 3087
    <input name=menustyle type=radio class=radio value=old $menustyle_old>&nbsp;| .
3082 3088
    $locale->text("Old (on the side)") . qq|</td>
3083
	</tr>	
3089
  </tr>
3090
  <tr>
3091
    <th align=right>| . $locale->text('Form details (second row)') . qq|</th>
3092
    <td><input type="radio" id="rad_show_form_details" name="show_form_details" value="1" $show_form_details>&nbsp;
3093
    <label for="rad_show_form_details">| . $locale->text('Show by default') . qq|</label>
3094
    <input type="radio" id="rad_hide_form_details" name="show_form_details" value="0" $hide_form_details>&nbsp;
3095
    <label for="rad_hide_form_details">| . $locale->text('Hide by default') . qq|</label></td>
3096
	</tr>
3084 3097
	<input name=printer type=hidden value="$myconfig{printer}">
3085 3098
	<tr class=listheading>
3086 3099
	  <th colspan=2>| . $locale->text("Print options") . qq|</th>
bin/mozilla/io.pl
198 198
    . qq|</th>|;
199 199
############## ENDE Neueintrag ##################
200 200

  
201
  $form->{"show_details"} =
202
    !defined($form->{"show_details"}) ? 1 :
203
    $form->{"show_details"} ? 1 : 0;
201
  $myconfig{"show_form_details"} = 1
202
    unless (defined($myconfig{"show_form_details"}));
203
  $form->{"show_details"} = $myconfig{"show_form_details"}
204
    unless (defined($form->{"show_details"}));
205
  $form->{"show_details"} = $form->{"show_details"} ? 1 : 0;
204 206
  my $show_details_new = 1 - $form->{"show_details"};
205 207
  my $show_details_checked = $form->{"show_details"} ? "checked" : "";
206 208

  
locale/de/all
445 445
  'For each unit there\'s either no or exactly one base unit. If you chose a base unit then you also have to chose a factor. That way the new unit will be defined as a multiple of the base unit. The base unit must be the &quot;smaller&quot; one. A factor may not be less than 1. Therefore you may define &quot;kg&quot; with the base unit &quot;g&quot; and a factor of &quot;1&quot;, but not the other way round.' => 'Einheiten haben entweder keine oder genau eine Basiseinheit, von der sie ein Vielfaches sind. Wenn Sie eine Basiseinheit ausw&auml;hlen, dann m&uuml;ssen Sie auch einen Faktor eingeben. Sie m&uuml;ssen Einheiten als ein Vielfaches einer kleineren Einheit eingeben. So ist die Definition von &quot;kg&quot; mit der Basiseinheit &quot;g&quot; und dem Faktor 1000 zul&auml;ssig, die Definition von &quot;g&quot; mit der Basiseinheit &quot;kg&quot; und dem Faktor &quot;0,001&quot; hingegen nicht.',
446 446
  'Foreign Exchange Gain'       => 'Wechselkursertr?ge',
447 447
  'Foreign Exchange Loss'       => 'Wechselkursaufwendungen',
448
  'Form details (second row)'   => 'Formulardetails (zweite Positionszeile)',
448 449
  'Formula'                     => 'Formel',
449 450
  'Free report period'          => 'Freier Zeitraum',
450 451
  'Fristsetzung'                => 'Fristsetzung',
......
469 470
  'HTML'                        => 'HTML',
470 471
  'Heading'                     => '?berschrift',
471 472
  'Help'                        => 'Hilfe',
473
  'Hide by default'             => 'Standardm&auml;&szlig;ig verstecken',
472 474
  'Hint-Missing-Preferences'    => 'Bitte fehlende USTVA Einstellungen erg?nzen (Men?punkt: Programm)',
473 475
  'Hints'                       => 'Hinweise',
474 476
  'Homepage'                    => 'Homepage',
......
887 889
  'Shopartikel'                 => 'Shopartikel',
888 890
  'Short'                       => 'kurz',
889 891
  'Show'                        => 'Zeigen',
892
  'Show by default'             => 'Standardm&auml;&szlig;ig anzeigen',
890 893
  'Show details'                => 'Details anzeigen',
891 894
  'Show old dunnings'           => 'Alte Mahnungen anzeigen',
892 895
  'Signature'                   => 'Unterschrift',
locale/de/am
110 110
  'Folgekonto'                  => 'Folgekonto',
111 111
  'Foreign Exchange Gain'       => 'Wechselkursertr?ge',
112 112
  'Foreign Exchange Loss'       => 'Wechselkursaufwendungen',
113
  'Form details (second row)'   => 'Formulardetails (zweite Positionszeile)',
113 114
  'GIFI'                        => 'GIFI',
114 115
  'GIFI deleted!'               => 'GIFI gel?scht!',
115 116
  'GIFI missing!'               => 'GIFI fehlt!',
116 117
  'GIFI saved!'                 => 'GIFI gespeichert!',
117 118
  'G?ltig ab'                   => 'G?ltig ab',
118 119
  'Heading'                     => '?berschrift',
120
  'Hide by default'             => 'Standardm&auml;&szlig;ig verstecken',
119 121
  'Include in drop-down menus'  => 'In Aufklappmen? aufnehmen',
120 122
  'Input Number Format'         => 'Zahlenformat (Eingabe)',
121 123
  'Inventory'                   => 'Inventar',
......
200 202
  'Select an employee'          => 'Angestellten ausw&auml;hlen',
201 203
  'Service Items'               => 'Dienstleistungen',
202 204
  'Setup Menu'                  => 'Men?setup',
205
  'Show by default'             => 'Standardm&auml;&szlig;ig anzeigen',
203 206
  'Signature'                   => 'Unterschrift',
204 207
  'Skonto'                      => 'Skonto',
205 208
  'Skonto Terms'                => 'Zahlungsziel Skonto',

Auch abrufbar als: Unified diff