1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118:
<?php
/**
* FlexiPeeHP Bricks - Convertor Class
*
* @author Vítězslav Dvořák <info@vitexsofware.cz>
* @copyright (G) 2017-2018 Vitex Software
*/
namespace FlexiPeeHP\Bricks;
/**
* Description of Convertor
*
* @author Vítězslav Dvořák <info@vitexsoftware.cz>
*/
class Convertor extends \Ease\Sand
{
/**
* Source Object
* @var \FlexiPeeHP\FlexiBeeRO
*/
private $input;
/**
* Destination Object
* @var \FlexiPeeHP\FlexiBeeRO
*/
private $output;
/**
*
* @var array
*/
private $rules = [];
/**
* Convertor
*
* @param \FlexiPeeHP\FlexiBeeRO $input
* @param \FlexiPeeHP\FlexiBeeRO $output
*/
public function __construct(\FlexiPeeHP\FlexiBeeRO $input = null,
\FlexiPeeHP\FlexiBeeRO $output = null)
{
parent::__construct();
if (!empty($input)) {
$this->setSource($input);
}
if (!empty($output)) {
$this->setDestination($output);
}
}
/**
*
* @param \FlexiPeeHP\FlexiBeeRO $source
*/
public function setSource(\FlexiPeeHP\FlexiBeeRO $source)
{
$this->input = $source;
}
/**
*
* @param \FlexiPeeHP\FlexiBeeRO $destinantion
*/
public function setDestination(\FlexiPeeHP\FlexiBeeRO $destination)
{
$this->output = $destination;
}
public function conversion()
{
$this->convertDocument();
return $this->output;
}
public function convertDocument()
{
switch (get_class($this->input)) {
case 'FlexiPeeHP\Banka':
switch (get_class($this->output)) {
case 'FlexiPeeHP\FakturaVydana':
// Banka['typPohybuK' => 'typPohybu.prijem'] -> FakturaVydana['typDokl' => 'ZDD']
// $this->output->setDataValue('firma', \FlexiPeeHP\FlexiBeeRO::code( $this->input->getDataValue('firma')));
$this->rules = $this->commonItems();
break;
default :
throw new Exception(sprintf(_('Unsupported Source document type %s'),
get_class($this->output)));
break;
}
break;
default:
throw new Exception(sprintf(_('Unsupported Source document type %s'),
get_class($this->input)));
break;
}
}
public function convertItems()
{
}
/**
*
* @return array
*/
public function commonItems()
{
return array_intersect(array_keys($this->input->getColumnsInfo()),
array_keys($this->output->getColumnsInfo()));
}
}