Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

How to customize Sale Order "Accept & Sign" modal to include required custom fields?

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
saleportal16.0
1221 Widoki
Awatar
Richard PALO

In France, it's legally required to include the customer's purchase order reference ("numéro de bon de commande") on confirmed sales orders. We need to collect this information during the signature process in the portal.


I'm trying to add a required `client_order_ref` field to the signature modal in sale orders, but the `SignatureForm` widget only transmits `name` and `signature` parameters to the server.


Currently I'm working on

- **Odoo Version**: Community 16.0

- **Module**: Custom signature_advanced module

- **Goal**: Add required customer PO reference field to signature modal


I've tried 


 1. Template Inheritance

```xml

<template id="portal_signature_client_ref" inherit_id="sale.sale_order_portal_template">

    <xpath expr="//div[@id='modalaccept']//main[@id='sign-dialog']/p" position="after">

        <div class="form-group mb-3">

            <label for="client_order_ref">Customer PO Reference *</label>

            <input type="text" name="client_order_ref" id="client_order_ref"

                   class="form-control" required="required"/>

        </div>

    </xpath>

</template>

```


 2. JavaScript Widget Extension

```javascript

publicWidget.registry.SignatureForm.include({

    _onClickSignSubmit: function (ev) {

        var clientRef = $('#modalaccept #client_order_ref').val();

        if (clientRef) {

            this.rpcParams.client_order_ref = clientRef;

        }

        return this._super.apply(this, arguments);

    },

});

```


 3. Controller Override

```python

@http.route(["/my/orders/<int:order_id>/accept"], type="json", auth="public", website=True)

def portal_quote_accept(self, order_id, access_token=None, **kw):

    client_order_ref = kw.get('client_order_ref')  # Always None

    # ... rest of processing

```


The problem remains that the field appears in the modal and validation works, but `client_order_ref` never reaches the controller. Server logs show only `name` and `signature` in received parameters.


Questions

1. **How does the `SignatureForm` widget determine which fields to include in the RPC call?**

2. **What's the proper way to extend it to include custom fields from the modal?**

3. **Is there a better approach than overriding the widget?**


Additional Context

- Field validation works (JavaScript detects the value)

- DOM contains the field with correct value

- Only RPC transmission fails

- Need solution that survives module updates


Any guidance on the correct approach would be greatly appreciated. 

This seems like a common requirement for B2B scenarios.


BTW, using

- Python 3.13, PostgreSQL 17

- Custom module extends `sale`, `portal`

- Using `publicWidget.registry.SignatureForm.include()`


Thank you for any insights!
Cheers

0
Awatar
Odrzuć
Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
How to make Products public in the Portal Sale module?
sale portal
Awatar
0
lis 16
3930
Getting an error when I try to give Portal Access to a customer
portal
Awatar
0
lis 25
67
Trying to replace default “Invoices & Bills” breadcrumb in Odoo portal
portal
Awatar
Awatar
1
lis 25
431
Dynamically update cart icon after adding products from a reorder popup in Custom Odoo portal
portal
Awatar
Awatar
1
lis 25
360
is possible to add 2 filters to the web portal similar to searchbar_filters?
portal
Awatar
Awatar
Awatar
2
lip 25
2283
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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