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
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • 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
    Others
    • 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
  • Help

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)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

PORTAL USER VIEW

Odoberať

Get notified when there's activity on this post

This question has been flagged
portal-user
1 Odpoveď
4284 Zobrazenia
Avatar
Admin User

How can I add the repair orders to the portal users view?
The only thing that appears right now are the help desk tickets.

0
Avatar
Zrušiť
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi

You need to create a controller for passing the data :

module_name.py




from odoo import http
from odoo.http import request
class RepairOrder(http.Controller):
@http.route(['/repair/order], type="http", auth="public", website=True)
def maintenance_report(self, **kw):
repair_order = request.env['repair.order'].sudo().search([])
values = {
'datas': repair_order,}
return request.render("portal_users.repair_order_page", values)

class MyPortal(CustomerPortal):

    def _prepare_home_portal_values(self, counters):

        values = super()._prepare_home_portal_values(counters)

        partner = request.env.user.partner_id

        repair_count = request.env['repair.order'].sudo().search_count([('employee_id',

                                                             '=', partner.id)])

        values['repair_count'] = repair_count

        return values


Templates:

<template id="repair_order_page" name="Repair Order">
      <t t-call="website.layout">
      <t t-set="breadcrumbs_searchbar" t-value="True"/>
      <form>
      <div id="wrap_maintenance">
      <div>
        <center>
            <h1 style="margin: 20px;">
              <b>Repair Order</b>
            </h1>
        </center>
      </div>
      <table class="table table-sm table-reports" style="border:1px solid black;">
      <thead>
          <tr>
              <th colspan="6" class="text-left">Order</th>
              <th colspan="6" class="text-center">Reference</th>

         </tr>
     </thead>
     <tbody class="text-left">
        <t>
           <tr class="report_table" t-foreach="datas" t-as="main">
           <input id="main_id" type="hidden" t-att-value="main.id"/>
 
         <td colspan="6">
              <span id="main_ref" t-esc="main[id]"/>
           </td>
           <td colspan="6">
              <span id="main_name t-esc="main['name']"/>
           </td>
           </tr>
        </t>
   </tbody>
   </table>
</div>
</form>
</t>
</template>

you can add the CSS for each class


For more reference, you can refer to the Blog: https://www.cybrosys.com/blog/how-to-create-a-custom-report-in-odoo-15-portal-view" target="_blank">https://www.cybrosys.com/blog/how-to-create-a-custom-report-in-odoo-15-portal-view

or you can refer to the related apps: https://apps.odoo.com/apps/modules/16.0/website_portal_events/" target="_blank">https://apps.odoo.com/apps/modules/16.0/website_portal_events/
href="https://apps.odoo.com/apps/modules/16.0/vendor_portal_odoo/" target="_blank">https://apps.odoo.com/apps/modules/16.0/vendor_portal_odoo/



Hope it helps

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
Related Posts Replies Zobrazenia Aktivita
How many times a user is logging into portal?
portal-user
Avatar
2
okt 24
34
How to Grant Portal Access to multiple users ?
portal-user
Avatar
Avatar
Avatar
2
máj 24
4471
Time Off module in portal Solved
portal-user time off
Avatar
Avatar
1
aug 25
1073
Sharing Documents with Portal users Solved
document portal-user
Avatar
Avatar
Avatar
Avatar
Avatar
5
júl 25
13294
Portal user Access Rights
access rights portal-user
Avatar
Avatar
1
júl 24
2967
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