fix(organizations): align demo statement signs
All checks were successful
CI/CD Pipeline / Quality Gate (push) Successful in 1m9s
CI/CD Pipeline / Build and Push Images (push) Successful in 20s
CI/CD Pipeline / Internal Notify (push) Successful in 0s
CI/CD Pipeline / Deploy Dev via Compose (push) Successful in 32s

This commit is contained in:
2026-08-10 14:40:56 +02:00
parent d03f38414a
commit 61e178544b
2 changed files with 8 additions and 8 deletions

View File

@@ -883,17 +883,17 @@ class TestCompanyDatasetService:
) )
current_tax = profit_before_tax * 19 // 100 current_tax = profit_before_tax * 19 // 100
deferred_tax = profit_before_tax // 100 deferred_tax = profit_before_tax // 100
income_tax = current_tax + deferred_tax income_tax = -current_tax + deferred_tax
other_tax_effects = amount(25, 1, 2) other_tax_effects = -amount(25, 1, 2)
net_profit = profit_before_tax - income_tax - other_tax_effects net_profit = profit_before_tax + income_tax + other_tax_effects
revaluation_result = amount(90, 3, 7) revaluation_result = amount(90, 3, 7)
other_operations_result = amount(55, 2, 5) other_operations_result = amount(55, 2, 5)
other_operations_tax = amount(18, 1, 1) other_operations_tax = -amount(18, 1, 1)
comprehensive_result = ( comprehensive_result = (
net_profit net_profit
+ revaluation_result + revaluation_result
+ other_operations_result + other_operations_result
- other_operations_tax + other_operations_tax
) )
basic_eps = max(1, net_profit // 1_000) basic_eps = max(1, net_profit // 1_000)
diluted_eps = max(1, basic_eps - 1) diluted_eps = max(1, basic_eps - 1)

View File

@@ -400,18 +400,18 @@ class TestCompaniesCommandsTest(TestCase):
) )
self.assertEqual( self.assertEqual(
values[("2", "2410")], values[("2", "2410")],
values[("2", "2411")] + values[("2", "2412")], -values[("2", "2411")] + values[("2", "2412")],
) )
self.assertEqual( self.assertEqual(
values[("2", "2400")], values[("2", "2400")],
values[("2", "2300")] - values[("2", "2410")] - values[("2", "2460")], values[("2", "2300")] + values[("2", "2410")] + values[("2", "2460")],
) )
self.assertEqual( self.assertEqual(
values[("2", "2500")], values[("2", "2500")],
values[("2", "2400")] values[("2", "2400")]
+ values[("2", "2510")] + values[("2", "2510")]
+ values[("2", "2520")] + values[("2", "2520")]
- values[("2", "2530")], + values[("2", "2530")],
) )
for previous_year, current_year in zip( for previous_year, current_year in zip(