2017-08-04 16:28:16 +02:00
< ? php
include_once __DIR__ . '/../../core.php' ;
2019-01-01 11:39:20 +01:00
use Modules\Preventivi\Preventivo ;
2017-08-04 16:28:16 +02:00
function get_imponibile_preventivo ( $idpreventivo )
{
2019-01-01 11:39:20 +01:00
$preventivo = Preventivo :: find ( $idpreventivo );
2017-08-04 16:28:16 +02:00
2019-07-11 17:44:42 +02:00
return $preventivo -> totale_imponibile ;
2017-08-04 16:28:16 +02:00
}
/**
* Restituisce lo stato dell ' ordine in base alle righe .
*/
function get_stato_preventivo ( $idpreventivo )
{
2018-09-20 12:05:22 +02:00
$dbo = database ();
2017-08-04 16:28:16 +02:00
$rs = $dbo -> fetchArray ( 'SELECT SUM(qta) AS qta, SUM(qta_evasa) AS qta_evasa FROM co_righe_preventivi GROUP BY idpreventivo HAVING idpreventivo=' . prepare ( $idpreventivo ));
if ( $rs [ 0 ][ 'qta_evasa' ] > 0 ) {
if ( $rs [ 0 ][ 'qta' ] > $rs [ 0 ][ 'qta_evasa' ]) {
return 'Parzialmente evaso' ;
} elseif ( $rs [ 0 ][ 'qta' ] == $rs [ 0 ][ 'qta_evasa' ]) {
return 'Evaso' ;
}
} else {
return 'Non evaso' ;
}
}