Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision a493c210

Von G. Richardson vor fast 5 Jahren hinzugefügt

  • ID a493c210af861b1b92f4a674ddc808e975a2c6d3
  • Vorgänger ae7d5312
  • Nachfolger 4858eee4

year_end.t - Testjahr hartkodiert

da ansonsten in 2020 durch die Umsatzsteuerumstellung die Kontensalden
des Tests nicht stimmen.

Unterschiede anzeigen:

t/year_end/year_end.t
# * also the default test client has the accounting method "cash" rather than "accrual"
# (Ist-versteuerung, rather than Soll-versteuerung)
my $year = DateTime->today->year;
# hardcode for 2019, as this will break in 2020 due to change in tax (19/16 and 7/5) because we check for account sums
# can be changed back to current year in 2021
my $year = 2019; # DateTime->today->year;
my $start_of_year = DateTime->new(year => $year, month => 01, day => 01);
my $booking_date = DateTime->new(year => $year, month => 12, day => 22);
note('configuring accounts');
my $bank_account = SL::DB::BankAccount->new(
......
note('creating transactions');
my $ar_transaction = create_ar_transaction(
taxincluded => 0,
transdate => $booking_date,
bookings => [
{
chart => $income_chart, # income 19%, taxkey 3
......
$ar_transaction->pay_invoice(
chart_id => $bank_account->chart_id,
transdate => DateTime->today_local->to_kivitendo,
amount => $ar_transaction->amount,
transdate => $booking_date->to_kivitendo,
payment_type => 'without_skonto',
);
my $ar_transaction2 = create_ar_transaction(
taxincluded => 1,
transdate => $booking_date,
bookings => [
{
chart => $income_chart, # income 19%, taxkey 3
......
my $ap_transaction = create_ap_transaction(
taxincluded => 0,
transdate => $booking_date,
bookings => [
{
chart => SL::DB::Manager::Chart->find_by( accno => '3400' ), # Wareneingang 19%, taxkey 9
......
],
);
gl_booking(40, "01.01.$year", 'foo', 'bar', $bank, $privateinlagen, 1, 0);
gl_booking(40, $start_of_year, 'foo', 'bar', $bank, $privateinlagen, 1, 0);
is(SL::DB::Manager::AccTransaction->get_all_count( ), 13, 'acc_trans transactions created ok');
is(SL::DB::Manager::AccTransaction->get_all_count(where => [ ob_transaction => 1 ]), 2, 'acc_trans ob_transactions created ok');
......
# adjust that profit-loss-carry-over # chart, rather than creating a new entry
# for the loss.
gl_booking(10, "22.12.$year", 'foo', 'bar', $cash, $bank, 0, 0);
gl_booking(5, "22.12.$year", 'foo', 'bar', $betriebsbedarf, $cash, 0, 0);
gl_booking(10, $booking_date, 'foo', 'bar', $cash, $bank, 0, 0);
gl_booking(5, $booking_date, 'foo', 'bar', $betriebsbedarf, $cash, 0, 0);
SL::Controller::YearEndTransactions::_year_end_bookings( start_date => $start_date,
cb_date => $cb_date,
......
# wrapper around SL::Dev::Record::create_gl_transaction for quickly creating transactions
my ($amount, $date, $reference, $description, $gegenkonto, $konto, $ob, $cb) = @_;
my $transdate = $::locale->parse_date_to_object($date);
# my $transdate = $::locale->parse_date_to_object($date);
return create_gl_transaction(
ob_transaction => $ob,
cb_transaction => $cb,
transdate => $transdate,
transdate => $date,
reference => $reference,
description => $description,
bookings => [

Auch abrufbar als: Unified diff