Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
2466 Tampilan

Hi Community,


I am working with Odoo 17, and I am wondering if there is a way to update the value in One2many without refreshing the page. For example, I have a One2many field in stock.picking related to the account.payment model. After manually creating the payment from the payment side, I would like to see the One2many field in another tab to have the payment information without refreshing the page.


Thank you 

Avatar
Buang
Jawaban Terbai

In Odoo, updating the value of a One2many field without refreshing the page typically involves using client-side actions with JavaScript. Here's an approach you can take to achieve this functionality:

  1. Create a Server-Side Method: Define a server-side method that will update the One2many field with the payment information. This method will be called from the client-side.
  2. Update the One2many Field: Implement the logic in the server-side method to update the One2many field with the payment information.
  3. Call the Server-Side Method from the Client-Side: Trigger the server-side method using JavaScript when the payment is created. This can be done by sending an RPC (Remote Procedure Call) request to the server.
  4. Update the View: Once the server-side method has updated the One2many field, update the view on the client-side to reflect the changes without refreshing the page.

Here's an example implementation:

from odoo import models, api

class StockPicking(models.Model):
    _inherit = 'stock.picking'

    @api.model
    def update_payment_information(self, picking_id, payment_data):
        picking = self.browse(picking_id)
        picking.write({
            'account_payment_ids': [(0, 0, payment_data)]  # Update One2many field
        })

In your JavaScript file or XML template, you can call this server-side method using Odoo's JavaScript framework:

 odoo.define('your_module_name.payment_update', function (require) {
    "use strict";

    var rpc = require('web.rpc');

    function updatePaymentInformation(picking_id, payment_data) {
        rpc.query({
            model: 'stock.picking',
            method: 'update_payment_information',
            args: [picking_id, payment_data],
        }).then(function () {
            // Update the view here if necessary
            // For example, refresh the One2many field
        });
    }

    // Call this function when payment is created
    // Pass picking_id and payment_data as arguments
    // For example:
    // updatePaymentInformation(picking_id, payment_data);

});

This script should be triggered when the payment is created. It will then call the server-side method update_payment_information, which updates the One2many field in the stock.picking model with the payment information. Finally, the view is updated to reflect the changes without refreshing the page.

Avatar
Buang
Penulis

Hi Shajahan,

Thank you so much for your reply.
May I ask how are you triggering the JS method, and what function can be used to refresh the One2many field?

I was trying to use this.props.record.load(), but it only works with the X2ManyField object. However, I cannot find this object anywhere in the Form Controller.

Nevertheless, One2many is not the only field that I want to refresh, I have a couple of fields that need to be refreshed like the state and payment widget info.

The result that I want to achieve is after I create the transfer, I stay in that tab. From another device, I will create the payment linking with that transfer. At this moment, the system will send a notification on all tabs(achieved) and the client side data of payment_ids(One2many), state(Selection) and the payment widget(JSON) should all be reloaded and align with the backend data.

Please let me know your thoughts.
Thank you

Post Terkait Replies Tampilan Aktivitas
3
Apr 25
970
2
Mar 24
4342
0
Okt 24
1007
2
Jun 18
12306
1
Mar 15
7529