fix reload, new valute

This commit is contained in:
Er2 2022-02-13 14:06:46 +03:00
parent 70da2d717e
commit 08788c827e
3 changed files with 23 additions and 7 deletions

View File

@ -7,6 +7,7 @@ return {
end end
local path = 'src.'..cat..'.'..sub local path = 'src.'..cat..'.'..sub
C.api:off(package.loaded[path])
package.loaded[path] = nil package.loaded[path] = nil
local err, m = pcall(require, path) local err, m = pcall(require, path)

View File

@ -23,6 +23,15 @@ function rub:course(wants)
Name = 'Российский рубль', Name = 'Российский рубль',
Value = '1' Value = '1'
}) })
local uah = table.findV(resp.Valute, {CharCode = 'UAH'})
table.insert(resp.Valute, {
ID = 'R02000',
NumCode = '200',
CharCode = 'SHT',
Nominal = 1,
Name = 'Штаны',
Value = ('%f'):format(tonumber(uah.Value:gsub(',', '.'), nil) / uah.Nominal * 40)
})
wants = type(wants) == 'table' and wants or {} wants = type(wants) == 'table' and wants or {}
local r, founds = {}, {} local r, founds = {}, {}

View File

@ -5,14 +5,20 @@
end end
function table.find(t, w) function table.find(t, w)
local i for _,v in pairs(t) do
for k,v in pairs(t) do if v == w then return v end
if v == w then end
i = k end
break
end function table.findV(t, w)
local b
for _,v in pairs(t) do
for k,x in pairs(w) do
if x ~= v[k] then b=1; break end
end
if b then b = nil
else return v end
end end
return i
end end
function dump(t, d) function dump(t, d)