1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2024-11-20 02:18:20 +01:00
This commit is contained in:
lxsang 2020-06-07 15:20:21 +02:00
parent fe4b1adb3b
commit 66bcfa83b0
3 changed files with 14 additions and 3 deletions

View File

@ -58,9 +58,9 @@ function IndexController:pdf(...)
if r then
local mime = std.mimeOf(tmp_file)
std.header(mime)
std.fb(tmp_file)
std.f(tmp_file)
return false
else
return self:error("Sorry.Problem generate PDF file")
end
end
end

View File

@ -54,6 +54,18 @@ local default_routes_dependencies = {
}
}
router:route('default', default_routes_dependencies )
BaseController:subclass("NotfoundController",{ registry = {}, models = {} })
function NotfoundController:index(...)
local args = {...}
local user = args[1]:gsub("Controller", ""):lower();
REQUEST.r = "index"
if REGISTRY.db then REGISTRY.db:close() end
REGISTRY.db = DBHelper:new{db = user}
REGISTRY.db:open()
router:delegate()
end
router:delegate()
if REGISTRY.db then REGISTRY.db:close() end

View File

@ -71,7 +71,6 @@ function DBHelper:find(tbl, cond)
sel = table.concat(cond.fields, ",")
--print(sel)
end
--print(cnd)
local data = sqlite.select(self.db, tbl, sel, cnd)
if data == nil then return nil end
local a = {}