Revision 4ac2976f
Von Bernd Bleßmann vor etwa 12 Jahren hinzugefügt
SL/InstanceConfiguration.pm | ||
---|---|---|
49 | 49 |
return $self->{data}->{profit_determination}; |
50 | 50 |
} |
51 | 51 |
|
52 |
sub get_is_changeable { |
|
53 |
my ($self) = @_; |
|
54 |
return $self->{data}->{is_changeable}; |
|
55 |
} |
|
56 |
|
|
57 |
sub get_ir_changeable { |
|
58 |
my ($self) = @_; |
|
59 |
return $self->{data}->{ir_changeable}; |
|
60 |
} |
|
61 |
|
|
62 |
sub get_ar_changeable { |
|
63 |
my ($self) = @_; |
|
64 |
return $self->{data}->{ar_changeable}; |
|
65 |
} |
|
66 |
|
|
67 |
sub get_ap_changeable { |
|
68 |
my ($self) = @_; |
|
69 |
return $self->{data}->{ap_changeable}; |
|
70 |
} |
|
71 |
|
|
72 |
sub get_gl_changeable { |
|
73 |
my ($self) = @_; |
|
74 |
return $self->{data}->{gl_changeable}; |
|
75 |
} |
|
76 |
|
|
52 | 77 |
sub get_datev_check_on_sales_invoice { |
53 | 78 |
my ($self) = @_; |
54 | 79 |
return $self->{data}->{datev_check_on_sales_invoice}; |
... | ... | |
131 | 156 |
|
132 | 157 |
Returns the default profit determination method, balance or income |
133 | 158 |
|
159 |
|
|
160 |
=item C<get_is_changeable> |
|
161 |
|
|
162 |
=item C<get_ir_changeable> |
|
163 |
|
|
164 |
=item C<get_ar_changeable> |
|
165 |
|
|
166 |
=item C<get_ap_changeable> |
|
167 |
|
|
168 |
=item C<get_gl_changeable> |
|
169 |
|
|
170 |
Returns if and when these record types are changeable or deleteable after |
|
171 |
posting. 0 means never, 1 means always and 2 means on the same day. |
|
172 |
|
|
134 | 173 |
=item C<get_datev_check_on_sales_invoice> |
135 | 174 |
|
136 | 175 |
Returns true if datev check should be performed on sales invoices |
Auch abrufbar als: Unified diff
Änderbarkeit und Löschbarkeit von Belegen in Mandantenkonfiguration einstellbar.