Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Guest House
    • Drankenhandelaar
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Solar Energy Systems
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC Services
    Others
    • Nonprofit Organization
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

How to get Employee Name on Analytic Journal Report

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
analyticreport
3202 Weergaven
Avatar
Matt

I'm editing the QWeb view of 'account.report_analyticjournal' and can't figure out the name of the field I want to display.  I want the report to show me the following columns: Date, Account Name, Employee, and Timesheet hours for that employee/date/account.  I'm almost there, as you can see below, I just need to know what to fill in near the bottom where I have written 'EMPLOYEE_NAME' in bold.  I have not changed any of the underlying relationships from the original QWeb view.  Any assistance or even guesses would be greatly appreciated.



<?xml version="1.0"?>

<t t-name="account.report_analyticjournal">

<t t-call="report.html_container">

<t t-foreach="docs" t-as="o">

<t t-call="report.internal_layout">

<div class="page">

<h2>Timesheet Journal</h2>

<div class="row mt32 mb32">

<div class="col-xs-3">

<strong>Period From:</strong>

<p t-esc="formatLang(data['form']['date1'], date=True)"/>

</div>

<div class="col-xs-3">

<strong>Period To:</strong>

<p t-esc="formatLang(data['form']['date2'], date=True)"/>

</div>

</div>

<table class="table table-condensed">

<thead>

<tr>

<th>Date</th>

<th>Code</th>

<th>Description</th>

<th>Task</th>

<th>General</th>

<th>Hours</th>

</tr>

</thead>

<tbody>

<t t-foreach="lines(o.id, data['form']['date1'], data['form']['date2'])" t-as="move">

<tr>

<td/>

<td/>

<td>

<span t-esc="move.name"/>

</td>

<td>

<span t-esc="move.account_id.name"/>

</td>

<td>

<span t-esc="formatLang(move.unit_amount.credit)"/>

</td>

<td/>

</tr>

<tr t-foreach="lines_a(move.id, o.id, data['form']['date1'], data['form']['date2'])" t-as="move_a">

<td>

<span t-esc="formatLang(move_a.date,date = True)"/>

</td>

<td>

<p t-if="move_a.code"><span t-esc="move_a.code"/></p>

</td>

<td>

<span t-esc="move_a.name"/>

</td>

<td><span t-esc="move_a.account_id.name"/></td>

<td/>

<td><span t-esc="formatLang(move_a.unit_amount)"/></td>

</tr>

</t>

<tr t-foreach="lines_a(False, o.id, data['form']['date1'], data['form']['date2'])" t-as="move_a">

<td><span t-esc="formatLang(move_a.date,date = True)"/></td>

<td><p t-if="move_a.code"><span t-esc="move_a.code"/></p></td>

<td><span t-esc="EMPLOYEE_NAME"/></td>

<td><span t-esc="move_a.account_id.name"/></td>

<td/>

<td><span t-esc="formatLang(move_a.unit_amount)"/></td>

</tr>

</tbody>

</table>

</div>

</t>

</t>

</t>

</t>

 

0
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
Is the Analytic Report from v15 removed in v16 ? If yes what is the alternative
analytic report odoo16features
Avatar
0
nov. 22
3053
Report with a different footer in the first page. How to do it?
report
Avatar
Avatar
2
nov. 25
178
How to make snaking column layout for report ?
report
Avatar
0
okt. 24
2438
Report between 2 accounts
report
Avatar
0
aug. 24
2154
Replacing the analytic fields with Sales Order number
analytic
Avatar
0
apr. 24
1949
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 is een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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