W
W
whatever732016-12-17 19:56:47
Freelance
whatever73, 2016-12-17 19:56:47

How to safely withdraw from Webmoney WMZ to a Sberbank ruble card?

Good afternoon, I’m interested in the question: will the monthly withdrawal of $ 600-700 to a ruble card (yes, exactly such conditions) of Sberbank attract the attention of the tax authorities?

Answer the question

In order to leave comments, you need to log in

6 answer(s)
A
Alexander Smirnov, 2016-12-17
@ap0stal

Even the withdrawal of $ 10,000 per month will not attract the attention of the tax authorities.
Withdraw through an intermediary, exchange rates are constantly changing, it is better to follow them on the monitoring site: https://www.bestchange.ru
PS: As for the volumes, I approve as the owner of one of the exchangers, in some months the volume of transactions per month is over 1.5 million rubles on Sber. No one made any claims, the only thing was that they started calling from Sberbank with a proposal to open deposits or arrange a mortgage at a special percentage.

A
Anna, 2016-12-17
@Naf_Naf

This can attract Sberbank employees, after which they will simply close your account and theoretically they can transfer data to the tax authorities. But it's more likely that the account will be closed.

I
ipswitch, 2016-12-19
@ipswitch

Read this article.
Find all the answers to your questions.
dataworld.info/webmoney-to-card-free-transfer.php

R
Rsa97, 2017-05-05
@Rsa97

It is possible like this:

SELECT `a`.*
FROM `articles` AS `a`
JOIN (
  SELECT GROUP_CONCAT(DISTINCT `tag_id` ORDER BY `tag_id`) AS `tags` 
    FROM `articleTags`
    WHERE `article_id` = :articleId
) AS `at`
JOIN (
  SELECT GROUP_CONCAT(DISTINCT `tag_id` ORDER BY `tag_id`) AS `tags`, `article_id`
    FROM `articleTags`
    GROUP BY `article_id`
) AS `st` ON `st`.`article_id` = `a`.`id` AND `st`.`tags` = `at`.`tags`

If the pairs (article, tag) are unique, then DISTINCT can be removed.

T
terrier, 2017-05-05
@terrier

Here it is more readable

CREATE FUNCTION is_tags_equal(article1 text, article2 text)
RETURNS boolean AS
$$
SELECT NOT EXISTS 
  (
    (SELECT tag FROM articles_tags WHERE article = article1 
      EXCEPT 
    SELECT tag FROM articles_tags WHERE article = article2)
    UNION ALL
    (SELECT tag FROM articles_tags WHERE article = article2 
      EXCEPT 
    SELECT tag FROM articles_tags WHERE article = article1)
  )
$$
LANGUAGE sql;

SELECT article FROM articles WHERE is_tags_equal(article, 'ArticleName') AND article != 'ArticleName';

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question