Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision a2c920be

Von Jan Büren vor fast 2 Jahren hinzugefügt

  • ID a2c920be722d4d0a2a4c0f2f7edb8d2e9a215e89
  • Vorgänger 3c3d13d8
  • Nachfolger 28b51413

Wechselkurs in form_header anzeigen, inkl. Herkunft (Beleg oder Tageskurs)

> form>radier entfernt und den Zustand readonly in allen 4
Buchungsmasken auch anhand der Zustände der action_bar Knöpfe
abhängig gemacht (in form oder TMPL_VARS gesetzt)

Unterschiede anzeigen:

bin/mozilla/ap.pl
394 394
  # type=submit $locale->text('Add Accounts Payables Transaction')
395 395
  # type=submit $locale->text('Edit Accounts Payables Transaction')
396 396

  
397
  my $readonly = $form->{id} ? "readonly" : "";
398

  
399
  $form->{radier} = ($::instance_conf->get_ap_changeable == 2)
400
                      ? ($form->current_date(\%myconfig) eq $form->{gldate})
401
                      : ($::instance_conf->get_ap_changeable == 1);
402
  $readonly       = $form->{radier} ? "" : $readonly;
403

  
404
  $form->{readonly} = $readonly;
405

  
406 397
  # currencies
407 398
  $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
408 399
  if ($form->{currency} ne $form->{defaultcurrency}) {
......
1407 1398
  if ($::form->{id} && SL::DB::Manager::ApGl->find_by(ap_id => $::form->{id})) {
1408 1399
    $is_linked_gl_transaction = 1;
1409 1400
  }
1401
  # add readonly state in $::form
1402
  $::form->{readonly} = !$may_edit_create                           ? 1
1403
                      : $is_closed                                  ? 1
1404
                      : $is_storno                                  ? 1
1405
                      : $has_storno                                 ? 1
1406
                      : ($::form->{id} && $change_never)            ? 1
1407
                      : ($::form->{id} && $change_on_same_day_only) ? 1
1408
                      : $is_linked_bank_transaction                 ? 1
1409
                      : $has_sepa_exports                           ? 1
1410
                      : 0;
1410 1411

  
1411 1412
  my $create_post_action = sub {
1412 1413
    # $_[0]: description

Auch abrufbar als: Unified diff