Public release from ruodoo-project: 19.0 - 2026-05-31 21:19:12 UTC

This commit is contained in:
CI Publish Bot
2026-05-31 21:19:21 +00:00
commit aa4214c195
1213 changed files with 183945 additions and 0 deletions

View File

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