Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Why 3rd party Accounting Report has (en_US) in every CoA?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
accountingcommunityLanguagesCybrosysodoo16features
2 Respostes
1966 Vistes
Avatar
efendy

Hello, i am using cybrosys accounting report, I want to ask, why everytime I generate accounting report like Profit and Loss, General Ledger, etc, the CoA will has (en_US) in front of it. I tried to change the database language but the result still the same. How can I remove this?



2
Avatar
Descartar
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi,

Please replace the financial_report_template with the below code: Then it will work fine.


<template id="dynamic_accounts_report.balance_sheet">
        <t t-call="web.html_container">
            <t t-call="web.internal_layout">
                <t t-set="data_report_margin_top" t-value="12"/>
<t t-set="data_report_header_spacing" t-value="9"/>
                <t t-set="data_report_dpi" t-value="110"/>
                <div class="page">
<h3><span t-esc="Filters.get('company_name')"/>:
                        <span t-esc="report_name"/>
                    </h3>

                    <div>
<span t-if="Filters.get('date_from')">
                            <strong>From:</strong>
                            <t t-esc="Filters['date_from']"/>
                        </span>

                        <span t-if="Filters.get('date_to')">
                            <strong>To:</strong>
                            <t t-esc="Filters['date_to']"/>
                        </span>

                        <div>
                            <div style="text-align:centre;" class="row">

                                <div class="col-2">
                                    <strong>Journals:</strong>
<t t-foreach="Filters['journals']"
                                       t-as="ps">
                                        <li>
                                            <t t-esc="ps"/>
                                        </li>
                                    </t>
                                </div>

                                <div class="col-2">
                                    <strong>Accounts:</strong>
<t t-foreach="Filters['accounts']"
                                       t-as="ps">
                                        <li>
                                            <t t-esc="ps"/>
                                        </li>
                                    </t>
                                </div>

                                <div class="col-2">
                                    <strong>Account Tags:</strong>
<t t-foreach="Filters['account_tags']"
                                       t-as="ps">
                                        <li>
                                            <t t-esc="ps"/>
                                        </li>
                                    </t>
                                </div>
                                <div class="col-2">
                                    <strong>Analytic:</strong>
<t t-foreach="Filters['analytics']"
                                       t-as="ps">
                                        <li>
                                            <t t-esc="ps"/>
                                        </li>
                                    </t>
                                </div>

                                <!--                                 <div class="col-2">-->
                                <!--                                        <strong>Analytic Tag:</strong>-->
<!-- <t t-foreach="Filters['analytic_tags']" t-as="ps">-->
                                <!--                                            <li>-->
                                <!--                                                <t t-esc="ps"/>-->
                                <!--                                            </li>-->
                                <!--                                        </t>-->
                                <!--                                </div>-->

                                <div class="col-3">
                                    <strong>Target move:</strong>
                                    <li>
<t t-esc="Filters['target_move']"/>
                                    </li>
                                </div>
                            </div>
                        </div>
                    </div>
                    <br></br>

                    <table class="table table-sm table-reports">
                        <thead>
                            <tr>
                                <th></th>
                                <th class="text-right">Debit</th>
                                <th class="text-right">Credit</th>
<th class="text-right">Balance001</th>
                            </tr>
                        </thead>
                        <tbody>
                            <tr t-foreach="report_lines" t-as="a">

                                <t t-if="a['level'] != 0">
                                    <t t-if="a.get('level') &gt; 2">
                                        <t t-set="style"
                                           t-value="'font-weight: normal;'"/>
                                    </t>
                                    <t t-if="not a.get('level') &gt; 2">
                                        <t t-set="style"
                                           t-value="'font-weight: bold;'"/>
                                    </t>
                                    <t t-if="a.get('code')">
                                        <t t-foreach="account_data" t-as="line">
                                            <t t-if="line['id'] == a.get('account')">
                                                <tr>
                                                    <td>
                                                        <span style="color: white;"
                                                              t-esc="'..' * a.get('level', 0) * 3"/>
                                                        <span>
                                                            <t t-set="language"
t-value="request.env.context.get('lang')"/>
                                                            <t t-esc="line['code']"/>
                                                            -
                                                            <t t-if="language != 'en_US'">
                                                                <t t-if="line['name'][lang] and lang != 'en_US'">
                                                                    <t t-esc="line['name'][lang]"/>
                                                                </t>
<t t-elif="line['name']['en_US']">
<t t-esc="line['name']['en_US']"/>
                                                                </t>
                                                            </t>
                                                            <t t-else="">
                                                                <t t-esc="line['name']"/>
                                                            </t>
                                                        </span>
                                                    </td>
                                                    <td class="text-right">
                                                        <span t-esc="line['debit']"
                                                              t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
                                                    </td>
                                                    <td class="text-right">
                                                        <span t-esc="line['credit']"
                                                              t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
                                                    </td>
                                                    <td class="text-right">
                                                        <span t-esc="line['balance']"
                                                              t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
                                                    </td>
                                                </tr>
                                            </t>
                                        </t>
                                    </t>
                                    <t t-else="">
                                        <td>
                                            <span style="color: white;"
                                                  t-esc="'..' * a.get('level', 0) * 3"/>
                                            <span t-att-style="style"
                                                  t-esc="a.get('name')"/>
                                        </td>
                                        <td class="text-right"
                                           >
                                            <span t-att-style="style"
                                                  t-esc="a.get('debit')"
                                                  t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
                                        </td>
                                        <td class="text-right"
                                           >
                                            <span t-att-style="style"
                                                  t-esc="a.get('credit')"
                                                  t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
                                        </td>
                                        <td class="text-right"
                                           >
                                            <span t-att-style="style"
                                                  t-esc="a.get('balance')"
                                                  t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
                                        </td>
                                    </t>

                                </t>
                            </tr>
                        </tbody>
                    </table>


                </div>
            </t>
        </t>
    </template>

We will soon update this on the Odoo App Store.

Hope it helps

0
Avatar
Descartar
Cybrosys Techno Solutions Pvt.Ltd

Please refer https://apps.odoo.com/apps/modules/16.0/dynamic_accounts_report/ for latest version.

Avatar
Niyas Raphy (Walnut Software Solutions)
Best Answer

Hi,
This may be some bugs happens with a recent update, as it is a third party app, you can report the same to the author in their support channel and get is solved.

Thanks

0
Avatar
Descartar
Enjoying the discussion? Don't just read, join in!

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

Registrar-se
Related Posts Respostes Vistes Activitat
Cybrosys Accounting Module
accounting community Cybrosys
Avatar
0
de juny 24
2326
om_account_accountant VS base_accounting_kit
accounting community odoo16features
Avatar
0
de març 24
5464
parent company process sale orders of it's child company in point of sale Solved
community Niyas Cybrosys odoo16features
Avatar
Avatar
1
d’abr. 24
1931
Issue with Balance in GL.
accounting balance CE Cybrosys odoo16features
Avatar
1
de març 24
3111
Day Book Entries
accounting community
Avatar
Avatar
Avatar
3
de juny 24
2971
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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