Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lua getClientCodes #317

Open
IFetisov opened this issue Dec 1, 2021 · 1 comment
Open

lua getClientCodes #317

IFetisov opened this issue Dec 1, 2021 · 1 comment

Comments

@IFetisov
Copy link

IFetisov commented Dec 1, 2021

Кто-нибудь пользуется этой функцией.
У меня локально такая версия.
--- Функция возвращает все коды клиента

function qsfunctions.getClientCodes(msg)
local ListCodes={}
for i=0,getNumberOf("money_limits")-1 do
	local clientcodes = getItem("money_limits",i)
	table.insert(ListCodes,clientcodes)
end
msg.data=ListCodes
return msg
end

Здесь лежит такая (При запуске она у меня куда то в бесконечный цикл уходит)
--- Функция возвращает все коды клиента

function qsfunctions.getClientCodes(msg)
local client_codes = {}
for i=0,getNumberOf("MONEY_LIMITS")-1 do
	local clientcode = getItem("MONEY_LIMITS",i).client_code
	if clientcode ~= nil then
		fnd = false
		for index, value in ipairs(client_codes) do
			if value == clientcode then
				fnd = true
			end
		end
		if fnd == false then
			table.insert(client_codes, clientcode)
		end
	end
end
msg.data = client_codes
return msg
end
@Pr0phet1c
Copy link
Collaborator

Странно. Эта функция встроена в демо-приложение, и вроде никто больше не жаловался на его зависание.
Сам только что проверил - у меня все работает. Правда, у меня только один код клиента, но это не должно оказывать существенного влияния на работоспособность функции.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants