L
L
lavezzi12021-05-20 13:56:32
PHP
lavezzi1, 2021-05-20 13:56:32

Do I need an online checkout in my case?

Hello, I'm a SP on sleep, I work under a contract, I accept payments ONLY to PayPal from the USA, then to a current account. Software development, consulting by area. How does online checkout fit in here? Or is she not needed?

Answer the question

In order to leave comments, you need to log in

6 answer(s)
0
0xD34F, 2018-12-07
@VerbAlexVlad

preg_match_all('/[A-Z]+ - \d+(,\d+)?/', $str, $matches);
$data = array_map(function($n) {
  $d = explode(' - ', $n);
  return [
    'size' => $d[0],
    'value' => $d[1]
  ];
}, array_unique($matches[0]));

A
akamap, 2018-12-07
@akamap

to the clumsy contest

$string = "S - 64см. S - 64см. M - 64,4см. L - 64,8см. L - 64,8см.";

$a = array_map(function ($item) {
    $t = explode('-', trim($item));
    return [$t[0], (float)str_replace(',', '.', $t[1])];
}, explode('. ', $string));

print_r($a);

D
Dmitry., 2021-05-20
@gravity

Apparently, we are talking about Russia? If from physical persons, it is necessary. From YL / IP is not needed.

V
Vasily Bannikov, 2021-05-20
@vabka

You provide services under a contract. It doesn't seem to be needed.

A
Alexander, 2021-07-01
@Survtur

If some physicist pays you (any way!), and you don't give him a check, and the tax office somehow finds out about it, then this will be a violation.

J
Julia Bedrosova, 2021-07-01
@Bedrosova

When using PayPal, a cash register is needed, it doesn’t matter who pays, a physicist or a lawyer, but until July 1, 2021, those individual entrepreneurs who provide their own services without the use of hired employees had a cash amnesty, it has been extended for 2 years already, maybe it will be extended further, wait for new information.
Or let your client pay you directly to the account as a legal entity - then no cash desk is needed.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question