Revision ae0968da
Von Moritz Bunkus vor etwa 12 Jahren hinzugefügt
SL/CA.pm | ||
---|---|---|
203 | 203 |
$project = qq| AND ac.project_id = ? |; |
204 | 204 |
@project_values = (conv_i($form->{project_id})); |
205 | 205 |
} |
206 |
my $acc_cash_where = ""; |
|
207 |
my $ar_cash_where = ""; |
|
208 |
my $ap_cash_where = ""; |
|
209 |
|
|
210 |
|
|
211 |
if ($form->{method} eq "cash") { |
|
212 |
$where = qq| (ac.trans_id IN (SELECT id FROM ar WHERE datepaid>= ? AND datepaid<= ? UNION SELECT id FROM ap WHERE datepaid>= ? AND datepaid<= ? UNION SELECT id FROM gl WHERE transdate>= ? AND transdate<= ?)) |; |
|
213 |
@where_values = (); |
|
214 |
push(@where_values, conv_date($form->{fromdate})); |
|
215 |
push(@where_values, conv_date($form->{todate})); |
|
216 |
push(@where_values, conv_date($form->{fromdate})); |
|
217 |
push(@where_values, conv_date($form->{todate})); |
|
218 |
push(@where_values, conv_date($form->{fromdate})); |
|
219 |
push(@where_values, conv_date($form->{todate})); |
|
220 |
} |
|
221 |
|
|
222 | 206 |
|
223 | 207 |
if ($form->{accno}) { |
224 | 208 |
|
Auch abrufbar als: Unified diff
Kontoübersicht: Unterscheidung nach Bilanzierung/EUR entfernt
Bei einem Konto ergibt es keinen Sinn, auch Buchungen außerhalb des
Zeitraumes anzuzeigen. Dafür gibt es GuV, Bilanz etc. Also die
Auswahlmöglichkeit dafür entfernen.
Fixt #1893.