Цитата: Tiger ➤ А покажите print_amount_coupon?
-- Печать суммовых купонов
function print_amount_coupon(__rep, __print_data)
local printer = ukm.get_printer(ukm.printer_type_master());
if printer then
local text = "";
local width = printer:get_width();
text = text .. ukm.center("----ТоргТочка----", width, " ") .. "\n";
text = text .. ukm.center("Количество подарков ограниченно.", width, " ") .. "\n";
text = text .. ukm.center("Внешний вид призов может отличаться ", width, " ") .. "\n";
text = text .. ukm.center("от изображений в рекламных материалах.", width, " ") .. "\n";
text = text .. ukm.center("Подробнее в магазинах и", width, " ") .. "\n";
text = text .. ukm.center("хттп://вк.ком/траливали", width, " ") .. "\n";
__print_data:add(text, ukm.printer_type_master());
end
end