openstamanager/modules/fatture/crea_documento.php

20 lines
404 B
PHP
Raw Normal View History

<?php
include_once __DIR__.'/../../core.php';
2019-12-13 15:56:52 +01:00
use Modules\Fatture\Fattura;
$documento = Fattura::find($id_record);
2019-02-14 17:49:58 +01:00
$options = [
2019-12-13 15:56:52 +01:00
'type' => 'nota_credito',
2019-02-14 17:49:58 +01:00
'op' => 'nota_credito',
2019-12-13 15:56:52 +01:00
'module' => 'Fatture di vendita',
'documento' => $documento,
2019-02-14 17:49:58 +01:00
'button' => tr('Aggiungi'),
'create_document' => true,
'allow-empty' => true,
];
2019-12-13 15:56:52 +01:00
echo App::load('importa.php', [], $options, true);