Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
Elearning Bug Tests courses multiple
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
Elearning Bug Tests courses multiple
About this forum
  1. eLearning
  2. Fórum

[18.0] Accounting : While creating a new financial report, can't get the correct value from other report

Odoberať

Get notified when there's activity on this post

This question has been flagged
1 Odpoveď
3580 Zobrazenia
Avatar
Mouyasser Maaoui

Hi, 
I was implementing a new financial report that inherit from cash flow report. In this report, I want to get some account.report.line from balance sheet report. After investing the documentation, I found that I need to create account.report.expression. So I used the "aggregation" engine and "cross_report" subformula but I found some difficulties trying to get the same value from the balance sheet report.
Here's the code of cash flow report :

<record id="l10n_tn_bs_cash_flow_report" model="account.report">
<field name="name">Cash Flow Statement</field>
<field name="root_report_id" ref="account_reports.cash_flow_report"/>
<field name="filter_unfold_all" eval="True"/>
<field name="filter_date_range" eval="False"/>
<field name="filter_analytic_groupby" eval="True"/>
<field name="filter_journals" eval="True"/>
<field name="country_id" ref="base.tn"/>
<field name="filter_multi_company">selector</field>
<field name="default_opening_date_filter">today</field>
<field name="column_ids">
<record id="l10n_tn_cfr_balance" model="account.report.column">
<field name="name">Balance</field>
<field name="expression_label">balance</field>
</record>
</field>
<field name="line_ids">
​ ​ ​<record id="l10n_tn_cfr_depreciation_provisions" model="account.report.line">
<field name="name">Depreciation and provisions</field>
<field name="code">l10n_tn_cfr_depreciation_provisions</field>
<field name="foldable" eval="True"/>
<field name="expression_ids">
<record id="l10n_tn_cfr_depreciation_provisions_balance"
model="account.report.expression">
<field name="label">balance</field>
<field name="engine">aggregation</field>
<field name="subformula">cross_report</field>
<field name="formula">l10n_tn_intangible_assets_depr.balance + l10n_tn_tangible_assets_depr.balance</field>
<field name="date_scope">from_beginning</field>
</record>
</field>
</record>
​ ​</field>
</record>


And here's the code balance sheet report :


<record id="l10n_tn_bs_account_report" model="account.report">
<field name="name">Balance Sheet</field>
<field name="root_report_id" ref="account_reports.balance_sheet" />
<field name="filter_unfold_all" eval="True" />
<field name="filter_date_range" eval="False" />
<field name="filter_analytic_groupby" eval="True" />
<field name="filter_journals" eval="True" />
<field name="country_id" ref="base.tn" />
<field name="filter_multi_company">selector</field>
<field name="column_ids">
<record id="l10n_tn_bs_column_balance" model="account.report.column">
<field name="name">Balance</field>
<field name="expression_label">balance</field>
</record>
</field>
<field name="line_ids">
​ ​<record id="l10n_tn_bs_intangible_assets_depr" model="account.report.line">
<field name="name">Less: depreciation</field>
<field name="code">l10n_tn_intangible_assets_depr</field>
<field name="groupby">account_id</field>
<field name="foldable" eval="True" />
<field name="account_codes_formula">281 + 291 + 2931</field>
</record>
​ ​<record id="l10n_tn_bs_tangible_assets_depr" model="account.report.line">
<field name="name">Less: depreciation</field>
<field name="code">l10n_tn_tangible_assets_depr</field>
<field name="groupby">account_id</field>
<field name="foldable" eval="True" />
<field name="account_codes_formula">282 + 292 + 2932 + 294
​ ​ ​ ​ ​</field>
</record>
​ </field>
</record>


And there are the some screen shots of values :

** Balance sheet : Intangible assets depreciation **


** Balance sheet : Tangible assets depreciation **



** Cash flow : Depreciation and provisions **



The value in cash flow should be -126127.240 DT but I'm getting 0.
What I'm doing wrong ?
Thank you.

0
Avatar
Zrušiť
Avatar
Mouyasser Maaoui
Autor Best Answer

Hello, 
I've tried to remove this line from the cash flow code 

<field name="root_report_id" ref="account_reports.cash_flow_report"/>

and create a new menu item to be able to consult the report and the report was fixed.
I think it was related to the original cash flow statement report which makes a restriction on some values needed in my new report.

0
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrácia
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now