Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 8917f20a

Von Kivitendo Admin vor fast 9 Jahren hinzugefügt

  • ID 8917f20a9741fe87460d1f9158a73807ec3c228c
  • Vorgänger 01b298ec
  • Nachfolger ea507623

Standardforderungskonto und Verbindlichkeitskonto in Mandantenkonfiguration

Dort kann man in Zukunft angeben, welche Konten vorausgewählt sein
sollen.
Wird allerdings noch nicht in den Masken benutzt.

Unterschiede anzeigen:

SL/DB/MetaSetup/Default.pm
16 16
  allow_sales_invoice_from_sales_order      => { type => 'boolean', default => 'true', not_null => 1 },
17 17
  allow_sales_invoice_from_sales_quotation  => { type => 'boolean', default => 'true', not_null => 1 },
18 18
  ap_changeable                             => { type => 'integer', default => 2, not_null => 1 },
19
  ap_chart_id                               => { type => 'integer' },
19 20
  ap_show_mark_as_paid                      => { type => 'boolean', default => 'true' },
20 21
  ar_changeable                             => { type => 'integer', default => 2, not_null => 1 },
22
  ar_chart_id                               => { type => 'integer' },
21 23
  ar_paid_accno_id                          => { type => 'integer' },
22 24
  ar_show_mark_as_paid                      => { type => 'boolean', default => 'true' },
23 25
  articlenumber                             => { type => 'text' },
......
124 126
__PACKAGE__->meta->allow_inline_column_values(1);
125 127

  
126 128
__PACKAGE__->meta->foreign_keys(
129
  ap_chart => {
130
    class       => 'SL::DB::Chart',
131
    key_columns => { ap_chart_id => 'id' },
132
  },
133

  
134
  ar_chart => {
135
    class       => 'SL::DB::Chart',
136
    key_columns => { ar_chart_id => 'id' },
137
  },
127 138
  bin => {
128 139
    class       => 'SL::DB::Bin',
129 140
    key_columns => { bin_id => 'id' },

Auch abrufbar als: Unified diff