Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagephp
themeConfluence
echo $merchant_helper->generateMerchantReceipt();

Резултаты работы

ВариантРезультат
positionsmerchantReceipt
Вариант 1
Code Block
languagephp
themeConfluence
Array ( 
	[0] => Array ( [quantity] => 1 [price] => 100 [tax] => 1 [text] => Товар 1 )
	[1] => Array ( [quantity] => 1 [price] => 50 [tax] => 1 [text] => Товар 2 )
	[2] => Array ( [quantity] => 1 [price] => 50 [tax] => 1 [text] => Товар 3 ) 
) 
Code Block
languagephp
themeConfluence
{"inn":"58465584558245","group":"Main","content":{"type":"1","positions":[{"quantity":1,"price":100,"tax":1,"text":"\u0422\u043e\u0432\u0430\u0440 1"},{"quantity":1,"price":50,"tax":1,"text":"\u0422\u043e\u0432\u0430\u0440 2"},{"quantity":1,"price":50,"tax":1,"text":"\u0422\u043e\u0432\u0430\u0440 3"}],"customerContact":"mail@mail.ru"}}
Вариант 2
Code Block
languagephp
themeConfluence
Array ( 
    [0] => Array ( [quantity] => 1 [price] => 10 [tax] => 1 [text] => Товар 1 )
    [1] => Array ( [quantity] => 1 [price] => 5 [tax] => 1 [text] => Товар 2 )
    [2] => Array ( [quantity] => 1 [price] => 5 [tax] => 1 [text] => Товар 3 )
) 
Code Block
languagephp
themeConfluence
{"inn":"58465584558245","group":"Main","content":{"type":"1","positions":[{"quantity":1,"price":10,"tax":1,"text":"\u0422\u043e\u0432\u0430\u0440 1"},{"quantity":1,"price":5,"tax":1,"text":"\u0422\u043e\u0432\u0430\u0440 2"},{"quantity":1,"price":5,"tax":1,"text":"\u0422\u043e\u0432\u0430\u0440 3"}],"customerContact":"mail@mail.ru"}}
Вариант 3
Code Block
languagephp
themeConfluence
Array ( 
	[0] => Array ( [quantity] => 1 [price] => 11.87 [tax] => 1 [text] => Товар 1 )
	[1] => Array ( [quantity] => 1 [price] => 4.1 [tax] => 1 [text] => Товар 2 )
	[2] => Array ( [quantity] => 1 [price] => 4.1 [tax] => 1 [text] => Товар 3 ) ) 
Code Block
languagephp
themeConfluence
{"inn":"58465584558245","group":"Main","content":{"type":"1","positions":[{"quantity":1,"price":11.87,"tax":1,"text":"\u0422\u043e\u0432\u0430\u0440 1"},{"quantity":1,"price":4.1,"tax":1,"text":"\u0422\u043e\u0432\u0430\u0440 2"},{"quantity":1,"price":4.1,"tax":1,"text":"\u0422\u043e\u0432\u0430\u0440 3"}],"customerContact":"mail@mail.ru"}}


Полный блок кода для всех вариантов

...