Files
crm.twinpol.com/modules/EcmInvoiceOuts/importRewizor.php
2025-05-12 15:44:39 +00:00

19 lines
260 B
PHP
Executable File

<?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;
}
}
?>