project_task_partner_info/controllers/controllers.py

22 lines
848 B
Python

# -*- coding: utf-8 -*-
# from odoo import http
# class InvoiceFromTask(http.Controller):
# @http.route('/invoice_from_task/invoice_from_task', auth='public')
# def index(self, **kw):
# return "Hello, world"
# @http.route('/invoice_from_task/invoice_from_task/objects', auth='public')
# def list(self, **kw):
# return http.request.render('invoice_from_task.listing', {
# 'root': '/invoice_from_task/invoice_from_task',
# 'objects': http.request.env['invoice_from_task.invoice_from_task'].search([]),
# })
# @http.route('/invoice_from_task/invoice_from_task/objects/<model("invoice_from_task.invoice_from_task"):obj>', auth='public')
# def object(self, obj, **kw):
# return http.request.render('invoice_from_task.object', {
# 'object': obj
# })