İçereği Atla
Odoo Menü
  • Portal
  • Ücretsiz deneyin
  • Uygulamalar
    Finans
    • Muhasebe
    • Faturalama
    • Masraf Yönetimi
    • Elektronik Çizelge (BI)
    • Belgeler
    • İmza
    Satış
    • Müşteri İlişkileri Yönetimi (CRM)
    • Satış
    • Satış Noktası Mağaza
    • Satış Noktası Restoran
    • Abonelikler
    • Kiralama
    Web Sitesi
    • Web Sitesi Oluşturucu
    • eTicaret
    • Blog
    • Forum
    • Canlı Sohbet
    • eÖğrenme
    Tedarik Zinciri
    • Envanter
    • Üretim
    • Ürün Yaşam Döngüsü Yönetimi
    • Satın Alma
    • Bakım
    • Kalite
    İnsan Kaynakları
    • Çalışanlar
    • İşe Alım
    • İzin
    • Değerlendirme
    • Referans
    • Filo Yönetimi
    Pazarlama
    • Sosyal Medyada Pazarlama
    • E-posta ile Pazarlama
    • SMS ile Pazarlama
    • Etkinlikler
    • Pazarlama Otomasyonu
    • Anket
    Hizmetler
    • Proje Yönetimi
    • Çalışma Çizelgeleri
    • Saha Hizmeti
    • Yardım Masası
    • Planlama
    • Randevular
    Verimlilik
    • Sohbet
    • Onay
    • Nesnelerin İnterneti
    • VoIP
    • Bilgi Bankası
    • WhatsApp
    Üçüncü taraf uygulamalar Odoo Stüdyo Odoo Bulut Platformu
  • Sektörler
    Perakende satış
    • Kitapçı
    • Giyim Mağazası
    • Mobilya Mağazası
    • Gıda Marketi
    • Hırdavat Dükkanı
    • Oyuncak Dükkanı
    Gıda ve Konaklama
    • Bar ve Pub
    • Restoran
    • Fast Food Restoranı
    • Konuk Evi
    • İçecek Distribütörü
    • Otel
    Gayrimenkul
    • Emlak Acentesi
    • Mimarlık Firması
    • İnşaat
    • Emlak Yönetimi
    • Bahçe Tasarımı
    • Mülk Sahipleri Derneği
    Uzmanlık
    • Muhasebe Firması
    • Odoo Partner
    • Pazarlama Ajansı
    • Hukuk Firması
    • Yetenek Kazanımı
    • Denetim ve Belgelendirme
    Üretim
    • Tekstil
    • Metal
    • Mobilyalar
    • Gıda
    • Bira fabrikası
    • Kurumsal Hediye
    Sağlık ve Spor
    • Spor Kulübü
    • Optik Mağazası
    • Fitness Merkezi
    • Sağlıklı Yaşam Merkezi
    • Eczane
    • Kuaför Salonu
    Ticaret
    • Tamirci
    • BT Donanım & Destek
    • Güneş Enerjisi Sistemleri
    • Ayakkabı İmalatçısı
    • Temizlik Hizmetleri
    • HVAC Hizmetleri
    Diğerleri
    • Kar Amacı Gütmeyen Kuruluş
    • Çevre Ajansı
    • Reklam Panosu Kiralama
    • Fotoğrafçılık
    • Bisiklet Kiralama
    • Yazılım Bayisi
    Tüm Sektörlere Göz Atın
  • Topluluk
    Öğrenim
    • Eğitim Araçları
    • Dokümantasyon
    • Sertifikasyonlar
    • Eğitim Etkinlikleri
    • Blog
    • Podcast
    Eğitim ve Gelişim
    • Eğitim Programı
    • Scale Up! İşletme Oyunu
    • Odoo'yu Ziyaret Edin
    Yazılım
    • İndirin
    • Sürümleri Kıyaslayın
    • Sürümler
    İş Birliği
    • Github
    • Forum
    • Etkinlikler
    • Çeviriler
    • Partner Olun
    • Partnerler için Hizmetler
    • Muhasebe Firmanızı Kaydettirin
    Hizmetler
    • Partner Bulun
    • Muhasebeci Bulun
    • Bir danışmanla görüşün
    • Kurulum Hizmetleri
    • Müşteri Referansları
    • Destek
    • Sürüm Yükseltme
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Demo randevusu alın
  • Fiyatlandırma
  • Yardım

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

  • Müşteri İlişkileri Yönetimi
  • e-Commerce
  • Muhasebe
  • Envanter
  • PoS
  • Proje Yönetimi
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
Yardım

POST records from portal into one2many fields

Abone Ol

Get notified when there's activity on this post

Bu soru işaretlendi
valuesportalwebsiteOdoo13.0kwargs
4270 Görünümler
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
Vazgeç
Enjoying the discussion? Don't just read, join in!

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

Üye Ol
İlgili Gönderiler Cevaplar Görünümler Aktivite
How to overwrite My Account Portal position?
account portal website Odoo13.0 rma
Avatar
Avatar
1
Haz 24
2098
How to access a custom module from the website (for portal users) [odoo13]
python portal website Odoo13.0 Odoo13
Avatar
Avatar
1
Haz 22
4293
ODOO 13 : How to put in place default values in each fields of my website form ? Çözüldü
default form values website Odoo13.0
Avatar
Avatar
2
Nis 22
4936
Error after changing some fields in 'my details' page.
portal website
Avatar
Avatar
1
Oca 23
2857
website.menu access rights for dedicated groups
portal website odoo17
Avatar
0
Şub 25
2210
Topluluk
  • Eğitim Araçları
  • Dokümantasyon
  • Forum
Açık Kaynak
  • İndirin
  • Github
  • Runbot
  • Çeviriler
Hizmetler
  • Odoo.sh Hosting
  • Destek
  • Sürüm Yükseltme
  • Özel Geliştirmeler
  • Eğitim
  • Muhasebeci Bulun
  • Partner Bulun
  • Partner Olun
Hakkında
  • Şirketimiz
  • Pazarlama Gereçleri
  • İletişim
  • Kariyer
  • Etkinlikler
  • Podcast
  • Blog
  • Müşteriler
  • Hukuki • Gizlilik
  • Güvenlik
الْعَرَبيّة 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, müşteri ilişkileri yönetimi, eTicaret, muhasebe, envanter, satış noktası, proje yönetimi gibi şirketinizin tüm ihtiyaçlarını karşılayan bir açık kaynak işletme uygulamaları paketidir.

Odoo’nun eşsiz değer önermesi, aynı anda hem kullanımının çok kolay olup hem de tamamen entegre olmasıdır.

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