Думаю надо покопаться в файле 80x25lay.res
Цитата: local text = "";
if core.header.__ok then
if core.header.client.__ok then
text = text .. core.header.client.sur_name .. "\n";
if core.header.client.enterprisename:is_initialized() then
text = text .. core.header.client.enterprisename:get() .. "\n";
end
if core.header.client.inn:is_initialized() then
text = text .. core.header.client.inn:get() .. "\n"
end
end
Можно попытаться сюда впихнуть вырезку из receipt.lua.
Сам попробовать не могу из за отсутствия стенда.
Цитата: if core.header.__ok and core.header.client.__ok then
text = text .. "Баланс:\n";
local account = ukm.map.string.struct_balance_info.iterator(ukm.get_client_account_info(core.header.client).account_balance_info);
while account:next() do
text = text .. ukm.adjustment(account:first(), tostring(ukm.currency(account:second().balance)), __width,".") .. "\n";
end