вот код этого Метода класса GLOBAL
Код:
static container str2con_RU(str _string, str _separator = ",")
{
container con;
int pos, oldPos = 1;
do
{
pos = strScan(_string, _separator, pos ? pos + strLen(_separator) : 1, strLen(_string));
con += subStr(_string, oldPos, pos ? pos - oldPos : strLen(_string) + 1 - oldPos);
oldPos = pos + strLen(_separator);
}
while (pos);
return con;
}
А у вас какая версия Аксапты?
Дело все именно в функции str2con - она (ее код можно посмотреть там же) съедает ваши нолики
И убедитесь, что символ разделителя - ',' не используется в вашем коде товара, или что это там было. (см. пост Belugin

)