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

Action to update a value in multiple records

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
actionv12
2 Odpowiedzi
21467 Widoki
Awatar
Ali Mahmoud

Hi,

i have a field called "phase" inside "account.payment" model.

i want to create an action that change the phase of selected payments, not only one payment,  to a phase i choose

it's my first time to do something like this. so any help or suggestion ,or how to start, would be welcome

Thanks!

1
Awatar
Odrzuć
Awatar
Waleed Ali Mohsen
Najlepsza odpowiedź

Hi,

You can use wizard with transient model and add “Update Payments Phase” action to Actions menu, so you will select the payments from list view and then from action you will select “Update Payments Phase” action and the wizard form will be shown and you will select the phase from the list and you will have a button in wizard form to update the phase and you will write the code which change the phase to the selected phase.

Transient Model (Wizard)


class AccountPaymentsPhaseWizard(models.TransientModel):
_name = "account.payments.phase.wizard"
_description = "Update the phase for multi payemnt"

# define the phase field which you will use to change the phase for the selected payments, for example if the phase field is a selection
phase = fields.Selection([('phase1', 'phase1'), ('phase2', 'phase2'), ('phase3', 'phase3')],string='phase')

# method update_payments_phase which will be called from wizard once click on Update phase button
@api.multi
def update_payments_phase(self):
# return all selected payments using active_ids and you can filter them and use any validation you want
payments = self.env['account.payments'].browse(self._context.get('active_ids'))
# loop the payments
for payment in payments:
# set the selected phase for each payment
payment.phase = self.phase

Form View and action for transient model:

<record id="view_account_payment_from_change_phase" model="ir.ui.view">
<field name="name">account.phase.payments.wizard</field>
<field name="model">account.payments.phase.wizard</field>
<field name="arch" type="xml">
<form string="Change Phase">
<field name=" phase"/>
<footer>
<button string='Update Phase' name="update_payments_phase" type="object" class="btn-primary"/>
<button string="Cancel" class="btn-default" special="cancel"/>
</footer>
</form>
</field>
</record>

<!-- Action to launch Wizard for change phase of payments from action menu -->
<record id=" view_account_payment_from_change_phase_action" model="ir.actions.act_window">
<field name="name">Update Payments Phase</field>
<field name="res_model">account.payments.phase.wizard</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
<field name="view_id" ref="view_account_payment_from_change_phase"/>
<field name="target">new</field>
<field name="binding_model_id" ref="account.model_account_payment"/>
</record>



1
Awatar
Odrzuć
Ali Mahmoud
Autor

Thank you, That's what i needed exactly, but i'm getting this error when trying to change the phase:

The operation cannot be completed, probably due to the following:

- deletion: you may be trying to delete a record while other records still reference it

- creation/update: a mandatory field is not correctly set

[object with reference: payment_type - payment.type]

and when i see the log, i see that this action is creating a new payment, not updating an existed one

any suggestion?

Thanks again

Waleed Ali Mohsen

Could you please share you code?

Ali Mahmoud
Autor

in models:

class AccountPaymentsPhaseWizard(models.TransientModel):

_name = 'account.payments.phase.wizard'

_inherit = 'account.payment'

@api.multi

def update_payments_phase(self):

payments = self.env['account.payment'].browse(self._context.get('active_ids'))

for payment in payments:

payment.phase = self.phase

in views:

<record id="view_account_payment_from_change_phase" model="ir.ui.view">

<field name="name">account.payments.phase.wizard</field>

<field name="model">account.payments.phase.wizard</field>

<field name="arch" type="xml">

<form string="Change Phase">

<field name="phase"/>

<footer>

<button string='Update Phase' name="update_payments_phase" type="object" class="btn-primary"/>

<button string="Cancel" class="btn-default" special="cancel"/>

</footer>

</form>

</field>

</record>

<!-- Action to launch Wizard for change phase of payments from action menu -->

<record id="view_account_payment_from_change_phase_action" model="ir.actions.act_window">

<field name="name">Update Payments Phase</field>

<field name="res_model">account.payments.phase.wizard</field>

<field name="view_type">form</field>

<field name="view_mode">form</field>

<field name="view_id" ref="view_account_payment_from_change_phase"/>

<field name="target">new</field>

<field name="binding_model_id" ref="account.model_account_payment"/>

</record>

Waleed Ali Mohsen

You should not inherit from account.payment, please see my answer code above.

You have to define a field phase in wizard same as the one in account.payment

class AccountPaymentsPhaseWizard(models.TransientModel):

_name = 'account.payments.phase.wizard'

phase = fields.Selection([('phase1', 'phase1'), ('phase2', 'phase2'), ('phase3', 'phase3')],string='phase')

@api.multi

def update_payments_phase(self):

payments = self.env['account.payment'].browse(self._context.get('active_ids'))

for payment in payments:

payment.phase = self.phase

Ali Mahmoud
Autor

yes, it was my mistake.

It works now! Thanks

Waleed Ali Mohsen

Nice to hear that.

Boby

Hi Waleed Mohsen,

I have question about filtering that browse, you said # return all selected payments using active_ids and you can filter them and use any validation you want.

I have problem to find the active_ids and the state must only in 'open'

Any advice?

Awatar
Kanakinfosystems
Najlepsza odpowiedź

Hello, 

You can do with the Server Action. 

For Static Value
​

A)Where you have to select the "Updated the Record" and model is "account.payment" 
and on the Data to write just added that field and it's value and save that record and create the action and run on selected records.
 

For Dynamic Value

B) You can do with "Execute Python code" and run that with function.
will update the value dynamically(based on you code).


Thanks,
​
1
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ść
Get current menuitem ID and action ID of a form. Rozwiązane
action menuitem v12
Awatar
Awatar
2
gru 19
11262
UI is inappropriate when i install custom module in odoo19
action
Awatar
0
lis 25
37
Guia Basica ¿Cómo puedo hablar con un asesor de Volaris?
action
Awatar
0
lis 25
2
Need Advice For Migrate Thousands of Messy SKUs
action
Awatar
0
lis 25
8
Pickup Date for E-Commerce Rozwiązane
action
Awatar
Awatar
Awatar
2
lis 25
227
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