Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

POST records from portal into one2many fields

Odebírat

Get notified when there's activity on this post

This question has been flagged
valuesportalwebsiteOdoo13.0kwargs
4280 Zobrazení
Avatar
Abdullah

Hey i am trying to make a custom solution. At ERP end i have a module with both form and line view. For the portal my view is ready and all i have to do is to POST data into one2many fields i know how to do it for simple form but i am confused for my line view. here is my controller

@http.route('/create/evaluation-request', type='http', auth='public', website=True)
    def create_evaluation_request(self, **kw):
        evaluation = request.env['performance.evaluation']
        for key,value in kw.items(): #I used this loop to check values only
            print(key,value)#I dont know why this returns only first value of my line

 
         values = {
                        'emp_self': kw.get('emp_self'),
                        'remarks': kw.get('remarks'),
                     }

        evaluation.performance_lines.sudo().create(values)
        return request.render("gxs_performance_evaluation.evaluation_web_form_message", {})


Here is my Form view Template

<template id="performance_evaluation_record" name="Employee Performance">
            <t t-call="portal.portal_layout">
                <!--            <t t-set="o_portal_fullwidth_alert" groups="project.group_project_user">-->
                <!--                <t t-call="portal.portal_back_in_edit_mode">-->
                <!--                    <t t-set="backend_url" t-value="'/web#model=project.project&amp;id=%s&amp;view_type=form' % (project.id)"/>-->
                <!--                </t>-->
                <!--            </t>-->

                <t t-call="portal.portal_record_layout">
                    <t t-set="card_header">
                        <h5 class="mb-0">
                            <span class="float-right">
                                <a class="btn btn-success btn-sm" href="/performance-evaluations">
                                    <i class="fa fa-arrow-left"/>
                                    Back
                                </a>
                            </span>
                        </h5>
                    </t>
                    <t t-set="card_body">
                        <div class="container">
                            <form role="form" action="/create/evaluation-request/" method="POST">
                                <input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>
                                <div style="text-align: center; background-color:#002e5b;">
                                    <h2 style="color:#fde428;">
                                        <b>Performance Evaluation</b>
                                    </h2>
                                </div>
                                <br/>
                                <div class="row" style="text-align: center; width: 100%;">
                                    <strong style="margin-left: 20px">Name:</strong>
                                    <span t-field="performance.employee" style="padding-right: 120px;"/>

                                    <strong>Start Date:</strong>
                                    <span t-field="performance.start_date" style="padding-right: 120px;"/>

                                    <strong>End Date:</strong>
                                    <span t-field="performance.end_date" style="padding-right: 120px;"/>

                                    <strong>Deadline:</strong>
                                    <span style="color:Red;" t-field="performance.deadline"/>
                                </div>
                                <br/>
                                <div style="text-align: center; background-color:#002e5b;">
                                    <h2 style="color:#fde428;">
                                        <b>Key Performance Areas</b>
                                    </h2>
                                </div>
                                <table style="width: 100%;">
                                    <thead>
                                        <tr class="active">
                                            <th>Name</th>
                                            <th>Description</th>
                                            <th>Weightage</th>
                                            <th>Employee Rate</th>
                                            <th>Employee Remarks</th>
                                            <!--                                    <th>Final Rating</th>-->
                                            <!--                            <th>Responsible Approver</th>-->
                                        </tr>
                                    </thead>
                                    <t t-foreach="performance.performance_lines" t-as="perform">
                                        <tr>

                                            <td t-if="perform.display_type=='line_section'" colspan="5"
                                                style="background-color:#668cff; text-align: center; color:#fde428;">
                                                <span t-field="perform.name"/>
                                            </td>
                                            <td t-else="perform.display_type!='line_section'">
                                                <span t-field="perform.name"/>
                                            </td>


                                            <td>
                                                <span t-if="perform.display_type!='line_section'"
                                                      t-field="perform.kpa_text"/>
                                            </td>
                                            <td>
                                                <span t-if="perform.display_type!='line_section'"
                                                      t-field="perform.weightage"/>
                                            </td>
                                            <td>
                                                <input t-if="perform.display_type!='line_section'" type="number"
                                                       class="form-control emp_self" name="emp_self"
                                                       min="1" max="10"
                                                       placeholder="Employee Rating"/>
                                            </td>

                                            <td>
                                                <input t-if="perform.display_type!='line_section'" type="text"
                                                       class="form-control remarks" name="remarks"
                                                       placeholder="Employee Remarks" widget="text"/>
                                            </td>
                                        </tr>
                                    </t>
                                </table>
                                <div class="clearfix oe_login_buttons">
                                    <button type="submit" class="btn btn-success" style="float: right;">Submit</button>
                                </div>
                            </form>
                        </div>
                    </t>
                </t>
            </t>
        </template>



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

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

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
How to overwrite My Account Portal position?
account portal website Odoo13.0 rma
Avatar
Avatar
1
čvn 24
2115
How to access a custom module from the website (for portal users) [odoo13]
python portal website Odoo13.0 Odoo13
Avatar
Avatar
1
čvn 22
4310
ODOO 13 : How to put in place default values in each fields of my website form ? Vyřešeno
default form values website Odoo13.0
Avatar
Avatar
2
dub 22
4940
Error after changing some fields in 'my details' page.
portal website
Avatar
Avatar
1
led 23
2875
website.menu access rights for dedicated groups
portal website odoo17
Avatar
0
úno 25
2233
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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