base init v17, 很多只改了版号,没验证

This commit is contained in:
Ivan Office
2023-11-06 15:37:16 +08:00
parent 62ea802b13
commit 587f5ad043
96 changed files with 53379 additions and 84 deletions

View File

@@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-
from . import main

View File

@@ -0,0 +1,10 @@
# -*- coding: utf-8 -*-
from odoo import http
class ChatgptController(http.Controller):
@http.route(['/chatgpt_form'], type='http', auth="public", csrf=False,
website=True)
def question_submit(self):
return http.request.render('app_chatgpt.connector')