PHP
2
Вклад в тег
$zaraza[] = array(
'positionId' => '1',
'name' => 'something stuff',
'quantity' => array(
'value' => 1,
'measure' => 'st'
),
'itemAmount' => $sum * 100, // возвращаемая сумма
//'itemCurrency' => 643,
'itemCode' => 'z-xc', // код продукта
'tax' => array(
'taxType' => 0
),
'itemPrice' => $sum * 100
);
$zaraza2 = array (
'cartItems' => array('items' => $zaraza)
);
$requestpay[ 'orderBundle' ] = json_encode($zaraza2); // ВСЯ ФИШКА ЗДЕСЬ
$args = array(
'post_type' => 'services',
'tax_query' => array(
array(
'taxonomy' => 'services-category',
'field' => 'id',
'terms' => 1093
))
);