PHP code example of mapik / pohoda-xml
1. Go to this page and download the library: Download mapik/pohoda-xml library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mapik / pohoda-xml example snippets
use Riesenia\Pohoda;
$pohoda = new Pohoda('ICO');
// create file
$pohoda->open($filename, 'i_obj1', 'Import orders');
// create order
$order = $pohoda->createOrder([
'numberOrder' => $order_number,
'isReserved' => true,
'date' => $created,
'text' => '...',
'partnerIdentity' => [
'address' => [
'name' => $billing_name,
'street' => $billing_street,
'city' => $billing_city,
'zip' => $billing_zip,
'email' => $email,
'phone' => $phone
],
'shipToAddress' => [
'name' => $shipping_name,
'street' => $shipping_street,
'city' => $shipping_city,
'zip' => $shipping_zip,
'email' => $email,
'phone' => $phone
]
]
]);
// add items
foreach ($items as $item) {
$order->addItem([
'code' => $item->code,
'text' => $item->text,
'quantity' => $item->quantity,
'payVAT' => false,
'rateVAT' => $item->rate,
'homeCurrency' => [
'unitPrice' => $item->unit_price
],
'stockItem' => [
'stockItem' => [
'id' => $item->pohoda_id
]
]
]);
}
// add summary
$order->addSummary([
'roundingDocument' => 'none'
]);
// add order to import (identified by $order_number)
$pohoda->addItem($order_number, $order);
// finish import file
$pohoda->close();
use Riesenia\Pohoda;
$pohoda = new Pohoda('ICO');
// create request for export
$pohoda->open($filename, 'e_zas1', 'Export stock');
$request = $pohoda->createListRequest([
'type' => 'Stock'
]);
// optional filter
$request->addUserFilterName('MyFilter');
$pohoda->addItem('Export 001', $request);
$pohoda->close();
// load file
$pohoda->loadStock($filename);
while ($stock = $pohoda->next()) {
// access header
$header = $stock->children('stk', true)->stockHeader;
// ...
}
use Riesenia\Pohoda;
$pohoda = new Pohoda('ICO');
// create request for deletion
$pohoda->open($filename, 'd_zas1', 'Delete stock');
$stock = $pohoda->createStock([]);
$stock->addActionType('delete', [
'code' => $code
]);
$pohoda->addItem($code, $stock);
$pohoda->close();