19 lines
260 B
PHP
19 lines
260 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
Class importRewizor{
|
||
|
|
|
||
|
|
private $db;
|
||
|
|
private $file_name;
|
||
|
|
private $handle;
|
||
|
|
private $invoice;
|
||
|
|
|
||
|
|
function __construct($id){
|
||
|
|
$this->db=$GLOBALS['db'];
|
||
|
|
$this->invoice= new EcmInvoiceOut();
|
||
|
|
$this->invoice->retrieve($id);
|
||
|
|
$this->break;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|
||
|
|
?>
|