Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • 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 Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & 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
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

POST records from portal into one2many fields

Subscribe

Get notified when there's activity on this post

This question has been flagged
valuesportalwebsiteOdoo13.0kwargs
4266 Views
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
Discard
Enjoying the discussion? Don't just read, join in!

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

Sign up
Related Posts Replies Views Activity
How to overwrite My Account Portal position?
account portal website Odoo13.0 rma
Avatar
Avatar
1
Jun 24
2091
How to access a custom module from the website (for portal users) [odoo13]
python portal website Odoo13.0 Odoo13
Avatar
Avatar
1
Jun 22
4292
ODOO 13 : How to put in place default values in each fields of my website form ? Solved
default form values website Odoo13.0
Avatar
Avatar
2
Apr 22
4930
Error after changing some fields in 'my details' page.
portal website
Avatar
Avatar
1
Jan 23
2846
website.menu access rights for dedicated groups
portal website odoo17
Avatar
0
Feb 25
2187
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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