Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
1 Ответить
2280 Представления

I have made controller in my module and have created one table similar to the controller(url link), now if user enters the data in url then in my database it should be automaticallly created i.e. in my table

Аватар
Отменить
Лучший ответ

Create record using Odoo Create method inside your URL controller function


from odoo.http import request
@http.route('/your/url',type='json', auth='user')
def invoice_payment(self, **kwargs):
    request.env['your.table'].create({'name': 'ABC','column2': 'XYX'})
Аватар
Отменить