X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=t%2Fdb_helper%2Fprice_tax_calculator.t;h=a4f6ddcaffe7afa22bae239b0792903658f9d51c;hb=24d1656ebd75cc1125b15b1c9727cae0fb4417d1;hp=c55dd04e7b00d90257995ef7b3c15e2f466fd6c0;hpb=dd75973a716c63d66df1348dc928a64f3f260352;p=kivitendo-erp.git diff --git a/t/db_helper/price_tax_calculator.t b/t/db_helper/price_tax_calculator.t index c55dd04e7..a4f6ddcaf 100644 --- a/t/db_helper/price_tax_calculator.t +++ b/t/db_helper/price_tax_calculator.t @@ -24,6 +24,7 @@ use SL::DB::Unit; use SL::DB::TaxZone; my ($customer, @parts, $buchungsgruppe, $buchungsgruppe7, $unit, $employee, $tax, $tax7, $taxzone); +my ($transdate); sub clear_up { SL::DB::Manager::Order->delete_all(all => 1); @@ -92,6 +93,16 @@ sub new_invoice { my %params = @_; return create_sales_invoice( + transdate => $transdate, + taxzone_id => $taxzone->id, + %params, + ); +} +sub new_order { + my %params = @_; + + return create_sales_order( + transdate => $transdate, taxzone_id => $taxzone->id, %params, ); @@ -107,6 +118,16 @@ sub new_item { %params, ); } +sub new_order_item { + my (%params) = @_; + + my $part = delete($params{part}) || $parts[0]; + + return create_order_item( + part => $part, + %params, + ); +} sub test_default_invoice_one_item_19_tax_not_included() { reset_state(); @@ -117,7 +138,7 @@ sub test_default_invoice_one_item_19_tax_not_included() { invoiceitems => [ $item ], ); - my $taxkey = $item->part->get_taxkey(date => DateTime->today_local, is_sales => 1, taxzone => $invoice->taxzone_id); + my $taxkey = $item->part->get_taxkey(date => $transdate, is_sales => 1, taxzone => $invoice->taxzone_id); # sellprice 2.34 * qty 2.5 = 5.85 # 19%(5.85) = 1.1115; rounded = 1.11 @@ -153,9 +174,12 @@ sub test_default_invoice_one_item_19_tax_not_included() { [], ], exchangerate => 1, - taxes => { + taxes_by_chart_id => { $tax->chart_id => 1.11, }, + taxes_by_tax_id => { + $tax->id => 1.1115, + }, items => [ { linetotal => 5.85, linetotal_cost => 4.83, @@ -178,8 +202,8 @@ sub test_default_invoice_two_items_19_7_tax_not_included() { invoiceitems => [ $item1, $item2 ], ); - my $taxkey1 = $item1->part->get_taxkey(date => DateTime->today_local, is_sales => 1, taxzone => $invoice->taxzone_id); - my $taxkey2 = $item2->part->get_taxkey(date => DateTime->today_local, is_sales => 1, taxzone => $invoice->taxzone_id); + my $taxkey1 = $item1->part->get_taxkey(date => $transdate, is_sales => 1, taxzone => $invoice->taxzone_id); + my $taxkey2 = $item2->part->get_taxkey(date => $transdate, is_sales => 1, taxzone => $invoice->taxzone_id); # item 1: # sellprice 2.34 * qty 2.5 = 5.85 @@ -193,6 +217,7 @@ sub test_default_invoice_two_items_19_7_tax_not_included() { # item 2: # sellprice 9.714 * qty 1.2 = 11.6568 rounded 11.66 # 7%(11.6568) = 0.815976; rounded = 0.82 + # 7%(11.66) = 0.8162 # total rounded = 12.48 # lastcost 5.473 * qty 1.2 = 6.5676; rounded 6.57 @@ -234,10 +259,14 @@ sub test_default_invoice_two_items_19_7_tax_not_included() { [], [], ], exchangerate => 1, - taxes => { + taxes_by_chart_id => { $tax->chart_id => 1.11, $tax7->chart_id => 0.82, }, + taxes_by_tax_id => { + $tax->id => 1.1115, + $tax7->id => 0.8162, + }, items => [ { linetotal => 5.85, linetotal_cost => 4.83, @@ -267,47 +296,37 @@ sub test_default_invoice_three_items_sellprice_rounding_discount() { invoiceitems => [ $item1, $item2, $item3 ], ); - my %taxkeys = map { ($_->id => $_->get_taxkey(date => DateTime->today_local, is_sales => 1, taxzone => $invoice->taxzone_id)) } uniq map { $_->part } ($item1, $item2, $item3); - - # this is how price_tax_calculator is implemented. It differs from - # the way sales_order / invoice - forms are calculating: - # linetotal = sellprice 5.55 * qty 1 * (1 - 0.05) = 5.2725; rounded 5.27 - # linetotal = sellprice 5.50 * qty 1 * (1 - 0.05) = 5.225 rounded 5.23 - # linetotal = sellprice 5.00 * qty 1 * (1 - 0.05) = 4.75; rounded 4.75 - # ... + my %taxkeys = map { ($_->id => $_->get_taxkey(date => $transdate, is_sales => 1, taxzone => $invoice->taxzone_id)) } uniq map { $_->part } ($item1, $item2, $item3); # item 1: # discount = sellprice 5.55 * discount (0.05) = 0.2775; rounded 0.28 - # sellprice = sellprice 5.55 - discount 0.28 = 5.27; rounded 5.27 - # linetotal = sellprice 5.27 * qty 1 = 5.27; rounded 5.27 + # linetotal = sellprice 5.55 * (1 - discount 0.05) * qty 1 = 5.2725; rounded 5.27 # 19%(5.27) = 1.0013; rounded = 1.00 # total rounded = 6.27 # lastcost 1.93 * qty 1 = 1.93; rounded 1.93 - # line marge_total = 3.34 + # line marge_total = 5.27 - 1.93 = 3.34 # line marge_percent = 63.3776091081594 # item 2: # discount = sellprice 5.50 * discount 0.05 = 0.275; rounded 0.28 - # sellprice = sellprice 5.50 - discount 0.28 = 5.22; rounded 5.22 - # linetotal = sellprice 5.22 * qty 1 = 5.22; rounded 5.22 - # 19%(5.22) = 0.9918; rounded = 0.99 - # total rounded = 6.21 + # linetotal = sellprice 5.50 * (1 - discount 0.05) * qty 1 = 5.225; rounded 5.23 + # 19%(5.23) = .99370; rounded = 0.99 + # total rounded = 6.22 # lastcost 1.93 * qty 1 = 1.93; rounded 1.93 - # line marge_total = 5.22 - 1.93 = 3.29 - # line marge_percent = 3.29/5.22 = 0.630268199233716 + # line marge_total = 5.23 - 1.93 = 3.30 + # line marge_percent = 3.30/5.23 = 0.630975143403442 # item 3: - # discount = sellprice 5.00 * discount 0.25 = 0.25; rounded 0.25 - # sellprice = sellprice 5.00 - discount 0.25 = 4.75; rounded 4.75 - # linetotal = sellprice 4.75 * qty 1 = 4.75; rounded 4.75 + # discount = sellprice 5.00 * discount 0.05 = 0.05 = 0.25; rounded 0.25 + # linetotal = sellprice 5.00 (1 - discount 0.05) * qty 1 = 4.75; rounded 4.75 # 19%(4.75) = 0.9025; rounded = 0.90 # total rounded = 5.65 # lastcost 1.93 * qty 1 = 1.93; rounded 1.93 - # line marge_total = 2.82 - # line marge_percent = 59.3684210526316 + # line marge_total = 4.75 - 1.93 = 2.82 + # line marge_percent = 2.82/4.75 = 59.3684210526316 my $title = 'default invoice, three items, sellprice, rounding, discount'; my %data = $invoice->calculate_prices_and_taxes; @@ -316,29 +335,29 @@ sub test_default_invoice_three_items_sellprice_rounding_discount() { is($item1->marge_percent, 63.3776091081594, "${title}: item1 marge_percent"); is($item1->marge_price_factor, 1, "${title}: item1 marge_price_factor"); - is($item2->marge_total, 3.29, "${title}: item2 marge_total"); - is($item2->marge_percent, 63.0268199233716, "${title}: item2 marge_percent"); + is($item2->marge_total, 3.30, "${title}: item2 marge_total"); + is($item2->marge_percent, 63.0975143403442, "${title}: item2 marge_percent"); is($item2->marge_price_factor, 1, "${title}: item2 marge_price_factor"); is($item3->marge_total, 2.82, "${title}: item3 marge_total"); is($item3->marge_percent, 59.3684210526316, "${title}: item3 marge_percent"); is($item3->marge_price_factor, 1, "${title}: item3 marge_price_factor"); - is($invoice->netamount, 5.27 + 5.22 + 4.75, "${title}: netamount"); + is($invoice->netamount, 5.27 + 5.23 + 4.75, "${title}: netamount"); - # 6.27 + 6.21 + 5.65 = 18.13 - # 1.19*(5.27 + 5.22 + 4.75) = 18.1356; rounded 18.14 - #is($invoice->amount, 6.27 + 6.21 + 5.65, "${title}: amount"); - is($invoice->amount, 18.14, "${title}: amount"); + # 6.27 + 6.22 + 5.65 = 18.14 + # 1.19*(5.27 + 5.23 + 4.75) = 18.1475; rounded 18.15 + #is($invoice->amount, 6.27 + 6.22 + 5.65, "${title}: amount"); + is($invoice->amount, 18.15, "${title}: amount"); - is($invoice->marge_total, 3.34 + 3.29 + 2.82, "${title}: marge_total"); - is($invoice->marge_percent, 62.007874015748, "${title}: marge_percent"); + is($invoice->marge_total, 3.34 + 3.30 + 2.82, "${title}: marge_total"); + is($invoice->marge_percent, 62.0327868852459, "${title}: marge_percent"); is_deeply(\%data, { allocated => {}, amounts => { $buchungsgruppe->income_accno_id($taxzone) => { - amount => 15.24, + amount => 15.25, tax_id => $tax->id, taxkey => 3, }, @@ -348,9 +367,12 @@ sub test_default_invoice_three_items_sellprice_rounding_discount() { [], [], [], ], exchangerate => 1, - taxes => { + taxes_by_chart_id => { $tax->chart_id => 2.9, }, + taxes_by_tax_id => { + $tax->id => 2.89750, + }, items => [ { linetotal => 5.27, linetotal_cost => 1.93, @@ -358,10 +380,10 @@ sub test_default_invoice_three_items_sellprice_rounding_discount() { tax_amount => 1.0013, taxkey_id => $taxkeys{$item1->parts_id}->id, }, - { linetotal => 5.22, + { linetotal => 5.23, linetotal_cost => 1.93, - sellprice => 5.22, - tax_amount => 0.9918, + sellprice => 5.23, + tax_amount => 0.9937, taxkey_id => $taxkeys{$item2->parts_id}->id, }, { linetotal => 4.75, @@ -384,21 +406,13 @@ sub test_default_invoice_one_item_19_tax_not_included_rounding_discount() { invoiceitems => [ $item ], ); - my %taxkeys = map { ($_->id => $_->get_taxkey(date => DateTime->today_local, is_sales => 1, taxzone => $invoice->taxzone_id)) } uniq map { $_->part } ($item); + my %taxkeys = map { ($_->id => $_->get_taxkey(date => $transdate, is_sales => 1, taxzone => $invoice->taxzone_id)) } uniq map { $_->part } ($item); - # PTC and ar form calculate linetotal differently: # 6 parts for 0.60 with 3% discount # - # ar form: # linetotal = sellprice 0.60 * qty 6 * discount (1 - 0.03) = 3.492 rounded 3.49 # total = 3.49 + 0.66 = 4.15 # - # PTC: - # discount = sellprice 0.60 * discount (0.03) = 0.018; rounded 0.02 - # sellprice = sellprice 0.60 - discount 0.02 = 0.58 - # linetotal = sellprice 0.58 * qty 6 = 3.48 - # 19%(3.48) = 0.6612; rounded = 0.66 - # total rounded = 3.48 + 0.66 = 4.14 my $title = 'default invoice, one item, sellprice, rounding, discount'; my %data = $invoice->calculate_prices_and_taxes; @@ -424,9 +438,12 @@ sub test_default_invoice_one_item_19_tax_not_included_rounding_discount() { [], ], exchangerate => 1, - taxes => { + taxes_by_chart_id => { $tax->chart_id => 0.66, }, + taxes_by_tax_id => { + $tax->id => 0.66310, + }, items => [ { linetotal => 3.49, linetotal_cost => 0, @@ -435,6 +452,7 @@ sub test_default_invoice_one_item_19_tax_not_included_rounding_discount() { taxkey_id => $taxkeys{$item->parts_id}->id, }, ], + rounding => 0, }, "${title}: calculated data"); } @@ -447,23 +465,9 @@ sub test_default_invoice_one_item_19_tax_not_included_rounding_discount_huge_qty invoiceitems => [ $item ], ); - my %taxkeys = map { ($_->id => $_->get_taxkey(date => DateTime->today_local, is_sales => 1, taxzone => $invoice->taxzone_id)) } uniq map { $_->part } ($item); + my %taxkeys = map { ($_->id => $_->get_taxkey(date => $transdate, is_sales => 1, taxzone => $invoice->taxzone_id)) } uniq map { $_->part } ($item); - # PTC and ar form calculate linetotal differently: - # 6 parts for 0.60 with 3% discount - # - # ar form: - # linetotal = sellprice 0.60 * qty 6 * discount (1 - 0.03) = 3.492 rounded 3.49 - # total = 3.49 + 0.66 = 4.15 - # - # PTC: - # discount = sellprice 0.60 * discount (0.03) = 0.018; rounded 0.02 - # sellprice = sellprice 0.60 - discount 0.02 = 0.58 - # linetotal = sellprice 0.58 * qty 6 = 3.48 - # 19%(3.48) = 0.6612; rounded = 0.66 - # total rounded = 3.48 + 0.66 = 4.14 - - my $title = 'default invoice, one item, sellprice, rounding, discount'; + my $title = 'default invoice, one item, 19% tax not included, rounding, discount, huge qty'; my %data = $invoice->calculate_prices_and_taxes; is($invoice->netamount, 9700, "${title}: netamount"); @@ -487,9 +491,12 @@ sub test_default_invoice_one_item_19_tax_not_included_rounding_discount_huge_qty [], ], exchangerate => 1, - taxes => { + taxes_by_chart_id => { $tax->chart_id => 1843, }, + taxes_by_tax_id => { + $tax->id => 1843, + }, items => [ { linetotal => 9700, linetotal_cost => 0, @@ -502,13 +509,168 @@ sub test_default_invoice_one_item_19_tax_not_included_rounding_discount_huge_qty }, "${title}: calculated data"); } +sub test_default_invoice_one_item_19_tax_not_included_rounding_discount_big_qty_low_sellprice() { + reset_state(); + + my $item = new_item(qty => 10001, sellprice => 0.007, discount => 0.035); + my $invoice = new_invoice( + taxincluded => 0, + invoiceitems => [ $item ], + ); + + my %taxkeys = map { ($_->id => $_->get_taxkey(date => $transdate, is_sales => 1, taxzone => $invoice->taxzone_id)) } uniq map { $_->part } ($item); + + # item 1: + # discount = sellprice 0.007 * discount (0.035) = 0.000245; rounded 0.00 + # sellprice = sellprice 0.007 - discount 0.00 = 0.007 + # linetotal = sellprice 0.007 * qty 10001 * (1 - 0.035) = 67.556755; rounded 67.56 + # 19%(67.56) = 12.8364; rounded = 12.84 + # total rounded = 80.40 + + # lastcost 1.93 * qty 10001 = 19301.93; rounded 19301.93 + # line marge_total = 67.56-19301.93 = -19234.37 + # line marge_percent = 100*-19234.37/67.56 = -28470.0562462996 + + my $title = 'default invoice one item 19 tax not included rounding discount big qty low sellprice'; + my %data = $invoice->calculate_prices_and_taxes; + + is($invoice->netamount, 67.56, "${title}: netamount"); + + is($invoice->amount, 80.40, "${title}: amount"); + + is($invoice->marge_total, -19234.37, "${title}: marge_total"); + is($invoice->marge_percent, -28470.0562462996, "${title}: marge_percent"); + + is_deeply(\%data, { + allocated => {}, + amounts => { + $buchungsgruppe->income_accno_id($taxzone) => { + amount => 67.56, + tax_id => $tax->id, + taxkey => 3, + }, + }, + amounts_cogs => {}, + assembly_items => [ + [], + ], + exchangerate => 1, + taxes_by_chart_id => { + $tax->chart_id => 12.84, + }, + taxes_by_tax_id => { + $tax->id => 12.8364, + }, + items => [ + { linetotal => 67.56, + linetotal_cost => 19301.93, + sellprice => 0.007, + tax_amount => 12.8364, + taxkey_id => $taxkeys{$item->parts_id}->id, + }, + ], + rounding => 0, + }, "${title}: calculated data"); +} +sub test_default_order_two_items_19_one_optional() { + reset_state(); + + my $item = new_order_item(qty => 2.5); + my $item_optional = new_order_item(qty => 2.5, optional => 1); + + my $order = new_order( + taxincluded => 0, + orderitems => [ $item, $item_optional ], + ); + + my $taxkey = $item->part->get_taxkey(date => $transdate, is_sales => 1, taxzone => $order->taxzone_id); + + # sellprice 2.34 * qty 2.5 = 5.85 + # 19%(5.85) = 1.1115; rounded = 1.11 + # total rounded = 6.96 + + # lastcost 1.93 * qty 2.5 = 4.825; rounded 4.83 + # line marge_total = 1.02 + # line marge_percent = 17.4358974358974 + + my $title = 'default order, two item, one item optional, 19% tax not included'; + my %data = $order->calculate_prices_and_taxes; + + is($item->marge_total, 1.02, "${title}: item marge_total"); + is($item->marge_percent, 17.4358974358974, "${title}: item marge_percent"); + is($item->marge_price_factor, 1, "${title}: item marge_price_factor"); + + # optional items have a linetotal and marge, but ... + is($item_optional->marge_total, 1.02, "${title}: item optional marge_total"); + is($item_optional->marge_percent, 17.4358974358974, "${title}: item optional marge_percent"); + is($item_optional->marge_price_factor, 1, "${title}: item optional marge_price_factor"); + + # ... should not be calculated for the record sum + is($order->netamount, 5.85, "${title}: netamount"); + is($order->amount, 6.96, "${title}: amount"); + is($order->marge_total, 1.02, "${title}: marge_total"); + is($order->marge_percent, 17.4358974358974, "${title}: marge_percent"); + is($order->orderitems->[1]->optional, 1, "${title}: second order item has attribute optional"); + # diag explain $order->orderitems->[1]->optional; + # diag explain \%data; + is_deeply(\%data, { + allocated => {}, + amounts => { + $buchungsgruppe->income_accno_id($taxzone) => { + amount => 5.85, + tax_id => $tax->id, + taxkey => 3, + }, + }, + amounts_cogs => {}, + assembly_items => [ + [], + [], + ], + exchangerate => 1, + taxes_by_chart_id => { + $tax->chart_id => 1.11, + }, + taxes_by_tax_id => { + $tax->id => 1.1115, + }, + items => [ + { linetotal => 5.85, + linetotal_cost => 4.83, + sellprice => 2.34, + tax_amount => 1.1115, + taxkey_id => $taxkey->id, + }, + { linetotal => 5.85, + linetotal_cost => 4.83, + sellprice => 2.34, + tax_amount => 1.1115, + taxkey_id => $taxkey->id, + }, + ], + rounding => 0, + }, "${title}: calculated data"); +} + + Support::TestSetup::login(); +$transdate = DateTime->today_local; +$transdate->set_year(2019) if $transdate->year == 2020; # use year 2019 in 2020, because of tax rate change in Germany + test_default_invoice_one_item_19_tax_not_included(); test_default_invoice_two_items_19_7_tax_not_included(); test_default_invoice_three_items_sellprice_rounding_discount(); test_default_invoice_one_item_19_tax_not_included_rounding_discount(); test_default_invoice_one_item_19_tax_not_included_rounding_discount_huge_qty(); +test_default_invoice_one_item_19_tax_not_included_rounding_discount_big_qty_low_sellprice(); +test_default_order_two_items_19_one_optional(); clear_up(); done_testing(); + +# vim: ft=perl +# set emacs to perl mode +# Local Variables: +# mode: perl +# End: