如何从Odoo 10中的JS函数更新One2many字段?

时间:2018-11-05 12:15:44

标签: javascript python odoo odoo-10

我的目的

我用JavaScript创建了一个带有按钮的小部件。我想修改一个 单击此按钮后,One2many字段。我的小部件显示在 sale.order表单视图,我想在单击后修改O2M order_line字段。

实际上,我正在尝试模拟 hr_timesheet_sheet 模块的一部分。此模块会在hr_timesheet_sheet.sheet表单视图中添加一个小部件,并且也有一个按钮,每次单击按钮时O2M timesheet_ids都会发生变化。

源代码

所以我一步一步地复制了该部分,但是在 update_sheets方法。这是源代码:

update_sheets: function() {
    if(this.querying) {
        return;
    }
    this.updating = true;

    var commands = [form_common.commands.delete_all()];
    _.each(this.get("sheets"), function (_data) {
        var data = _.clone(_data);
        if(data.id) {
            commands.push(form_common.commands.link_to(data.id));
            commands.push(form_common.commands.update(data.id, data));
        } else {
            commands.push(form_common.commands.create(data));
        }
    });

    var self = this;
    this.field_manager.set_values({'timesheet_ids': commands}).done(function() {
        self.updating = false;
    });
},

我的代码:第一次尝试

这是我的:

update_order_line_js: function() {
    if(this.querying) {
        return;
    }
    this.updating = true;

    var commands = [form_common.commands.delete_all()];
    _.each(this.get('order_line_js'), function (_data) {
        var data = _.clone(_data);
        if(data.id) {
            commands.push(form_common.commands.link_to(data.id));
            commands.push(form_common.commands.update(data.id, data));
        } else {
            commands.push(form_common.commands.create(data));
        }
    });

    var self = this;

    this.field_manager.set_values({'order_line': commands}).done(function() {
        self.updating = false;
    });
},

错误

如您所见,我仅更改了变量名,并且order_line_js包含sale.order.line数据,例如sheets包含account.analytic.line数据。

但是当调用update_order_line_js时,以下行将失败:

this.field_manager.set_values({'order_line': commands}).done(function() {
    self.updating = false;
});

并向我抛出此错误:

  

qty_invoiced域中的未知字段   [“ |”,[“ qty_invoiced”,“>”,0],[“ procurement_ids”,“!=”,[]]]

注意::如果我删除了commands.push(form_common.commands.create(data));语句中的行else,则错误消失了。

示例

例如,我有一个仅包含销售订单行的销售订单。该行的ID为28。当我向O2M order_line手动添加新行时,将调用update_order_line_js,错误之前的commands的内容如下:

[
    [5, false, false],
    [0, false, {
        analytic_tag_ids: [],
        customer_lead: 0,
        discount: 0,
        invoice_status: "no",
        layout_category_id: false,
        name: "[CONS_DEL03] Basic Computer Dvorak keyboard left-handed mouse",
        price_unit: 23500,
        procurement_ids: [],
        product_id: 32,
        product_uom: 1,
        product_uom_qty: 1,
        qty_delivered: 0,
        qty_delivered_updateable: true,
        sequence: 13,
        state: "draft",
        tax_id: []
    }],
    [4, 28, false],
    [1, 28, {
        analytic_tag_ids: [],
        company_id: [1, "Anubía Soluciones en la Nube, S.L."],
        create_date: "2018-10-30 09:03:34",
        create_uid: [1, "Administrator"],
        currency_id: [1, "EUR"],
        customer_lead: 0,
        discount: 0,
        display_name: "Screen X555",
        id: 28,
        invoice_lines: [],
        invoice_status: "to invoice",
        layout_category_id: false,
        layout_category_sequence: 0,
        name: "Screen X555",
        order_id: [11, "SO010"],
        order_partner_id: [8, "Agrolait"],
        price_reduce: 10,
        price_reduce_taxexcl: 10,
        price_reduce_taxinc: 12.1,
        price_subtotal: 10,
        price_tax: 2.1,
        price_total: 12.1,
        price_unit: 10,
        procurement_ids: [],
        product_id: [44, "Screen X555"],
        product_uom: [1, "Unit(s)"],
        product_uom_qty: 1,
        qty_delivered: 0,
        qty_delivered_updateable: true,
        qty_invoiced: 0,
        qty_to_invoice: 1,
        salesman_id: [1, "Administrator"],
        sequence: 12,
        state: "sale",
        tax_id: [1],
        write_date: "2018-10-30 09:03:34",
        write_uid: [1, "Administrator"]
    }]
]

我认为问题是因为字段qty_invoiced在现有行的字典中,但是为什么会引发错误?我对此感到困惑。

我的代码:第二次尝试

我还尝试了一种使用Python的方法,该方法是从JS on_click调用Python方法来更新当前的One2many销售订单行:

JS on_click内容

var sale_order_id = self.field_manager.datarecord.id;
var SaleOrder = new Model('sale.order');
SaleOrder.call(
    'test', [sale_order_id],
).then(function(result) {
    console.log(result);
});

Python方法

@api.model
def test(self, id):
    self = self.browse([id])
    self.update({
        'order_line': [(6, 0, [24, 27])],
    })
    return True

如您所见,我总是用ID为24和27的现有行(在我的测试数据库中)替换当前行,只是尝试这种方法。问题是One2many字段视图不会自动重新加载,因此在单击我的JS按钮后,我仍然看到旧记录,但是当我单击 Save 按钮时,我看到了记录24和27 。此外,如果单击 Discard 按钮,则会出现域错误,并且旧记录会被24和27覆盖,而忽略了 Discard 按钮的功能。我猜想在 onchange 方法中使用update实际上可以实现write功能(我不明白的是域错误)。

我的代码:第三次尝试

因此,我也尝试过这种方法,以直接在JS中更新O2M order_line

self.field_manager.fields['order_line'].viewmanager.views.list.controller.do_delete(
    self.field_manager.fields['order_line'].dataset.ids
);

该行效果很好,但是现在我需要添加旧记录和所需的新数据。我一直在搜索如何使用do_add_recorddo_edit,但是我仍然不知道他们需要哪些参数,我想知道我是否正在使事情变得比他们更复杂。

有人可以推荐我一些东西来实现我所需要的吗?或者有人知道我为什么会遇到qty_invoiced域错误吗?

1 个答案:

答案 0 :(得分:0)

最后,我找到了解决该问题的方法,但是我不太喜欢它:

update_order_line_js: function() {
    var self = this;
    if(self.querying) {
        return;
    }
    self.updating = true;
    setTimeout(function() {
        var commands = [form_common.commands.delete_all()];
        _.each(self.get('order_line_js'), function (_data) {
            var data = _.clone(_data);
            if(data.id) {
                commands.push(form_common.commands.link_to(data.id));
                commands.push(form_common.commands.update(data.id, data));
            } else {
                data['qty_invoiced'] = 0;
                data['procurement_ids'] = [];
                commands.push(form_common.commands.create(data));
            }
        });

        self.field_manager.set_values({'order_line': commands}).done(function() {    
            self.updating = false;     
        });
    }, 500)
},

如果记录尚不存在,则生成记录的数据必须包含字段qty_invoiced。为什么?我不知道。添加该行之后,问题消失了,但是然后我得到了最不可理解的错误,即无法获取未定义的属性集 ...经过大量调查,我发现JS在这里是个问题,我必须添加setTimeout。之后,至少在我的计算机上,一切运行正常。但是在某些特定情况下,我在域[“ |”,[“ qty_invoiced”,“>”,0],[“ procurement_ids”,“!=”,[]]中得到错误字段未知的采购ID。 / em>,它与让我问这个问题的基本相似,因此我以相同的方式解决了这个问题。

三种解决方案都不适合我,但至少我能够继续我的工作。