تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
6107 أدوات العرض

I tried this code:

odoo.define('oepetstore.payment_widget', function (require) {

"use strict";

var payment_widget = require('account.account_payment_widget');

}); 


but I got this error: 

Missing dependencies: ["account.account_payment_widget"]

Non loaded modules: ["oepetstore.payment_widget"] 

الصورة الرمزية
إهمال
الكاتب

I'm replaced var payment_widget = require('account.account_payment_widget'); by var payment_widget = require('account.payment'); and show this message in console: undefined

Can I know, even after replacing require('account.account_payment_widget') with require('account.payment') , are you getting the same error in browser console?

If you want to inherit the existing widget, then you should do it using

var PaymentWidget = core.form_widget_registry.get('payment');

var PaymentWidgetExtended = PaymentWidget.extend({

.

.

functions you want to inherit

.

.

.

});

الكاتب

Hi Asmita, thanks for answer the question, specifically I'm trying to inherit the ShowPaymentLineWidget defined in account.payment class in account_payment_widget.js (account module) when i try to call this class (with var payment_widget = require('account.payment');) I got this message "undefined" at console, I tried your example and this is good for me, but making a little change this way PaymentWidget.include({...})

المنشورات ذات الصلة الردود أدوات العرض النشاط
0
أغسطس 23
194
1
فبراير 22
2395
0
أغسطس 18
5355
1
نوفمبر 24
1028
1
سبتمبر 23
3939