2017-08-04 16:28:16 +02:00
< ? php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager : il software gestionale open source per l ' assistenza tecnica e la fatturazione
2021-01-20 15:08:51 +01:00
* Copyright ( C ) DevCode s . r . l .
2020-09-07 15:04:06 +02:00
*
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation , either version 3 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program . If not , see < https :// www . gnu . org / licenses />.
*/
2017-08-04 16:28:16 +02:00
include_once __DIR__ . '/../../core.php' ;
2022-02-05 22:05:46 +01:00
use Modules\Interventi\Intervento ;
2024-03-06 17:26:58 +01:00
use Modules\Iva\Aliquota ;
2023-08-04 14:54:28 +02:00
use Modules\Ordini\Ordine ;
2019-01-01 11:39:20 +01:00
2023-12-06 17:24:23 +01:00
/*
2019-01-10 17:27:19 +01:00
* Funzione per generare un nuovo numero per l ' ordine .
2019-01-01 11:39:20 +01:00
*
* @ deprecated 2.4 . 5
2017-08-04 16:28:16 +02:00
*/
2023-12-06 16:48:54 +01:00
if ( ! function_exists ( 'get_new_numeroordine' )) {
function get_new_numeroordine ( $data )
{
global $dir ;
2017-08-04 16:28:16 +02:00
2023-12-06 16:48:54 +01:00
return Ordine :: getNextNumero ( $data , $dir );
}
2017-08-04 16:28:16 +02:00
}
2023-12-06 17:24:23 +01:00
/*
2017-08-04 16:28:16 +02:00
* Funzione per calcolare il numero secondario successivo utilizzando la maschera dalle impostazioni .
2019-01-01 11:39:20 +01:00
*
* @ deprecated 2.4 . 5
2017-08-04 16:28:16 +02:00
*/
2023-12-06 16:48:54 +01:00
if ( ! function_exists ( 'get_new_numerosecondarioordine' )) {
function get_new_numerosecondarioordine ( $data )
{
global $dir ;
global $id_segment ;
return Ordine :: getNextNumeroSecondario ( $data , $dir , $id_segment );
}
2017-08-04 16:28:16 +02:00
}
2023-12-06 17:24:23 +01:00
/*
2017-08-04 16:28:16 +02:00
* Calcolo imponibile ordine ( totale_righe - sconto ) .
2019-01-01 11:39:20 +01:00
*
* @ deprecated 2.4 . 5
2017-08-04 16:28:16 +02:00
*/
2023-12-06 16:48:54 +01:00
if ( ! function_exists ( 'get_imponibile_ordine' )) {
function get_imponibile_ordine ( $idordine )
{
$ordine = Ordine :: find ( $idordine );
return $ordine -> imponibile ;
}
2017-08-04 16:28:16 +02:00
}
2023-12-06 17:24:23 +01:00
/*
2017-08-04 16:28:16 +02:00
* Calcolo totale ordine ( imponibile + iva ) .
2019-01-01 11:39:20 +01:00
*
* @ deprecated 2.4 . 5
2017-08-04 16:28:16 +02:00
*/
2023-12-06 16:48:54 +01:00
if ( ! function_exists ( 'get_totale_ordine' )) {
function get_totale_ordine ( $idordine )
{
$ordine = Ordine :: find ( $idordine );
2017-08-04 16:28:16 +02:00
2023-12-06 16:48:54 +01:00
return $ordine -> totale ;
}
2017-08-04 16:28:16 +02:00
}
2023-12-06 17:24:23 +01:00
/*
2019-01-01 11:39:20 +01:00
* Calcolo netto a pagare ordine ( totale - ritenute - bolli ) .
*
* @ deprecated 2.4 . 5
2017-08-04 16:28:16 +02:00
*/
2023-12-06 16:48:54 +01:00
if ( ! function_exists ( 'get_netto_ordine' )) {
function get_netto_ordine ( $idordine )
{
$ordine = Ordine :: find ( $idordine );
2017-08-04 16:28:16 +02:00
2023-12-06 16:48:54 +01:00
return $ordine -> netto ;
}
}
2023-12-06 17:24:23 +01:00
/*
2017-08-04 16:28:16 +02:00
* Calcolo iva detraibile ordine .
2019-01-01 11:39:20 +01:00
*
* @ deprecated 2.4 . 5
2017-08-04 16:28:16 +02:00
*/
2023-12-06 16:48:54 +01:00
if ( ! function_exists ( 'get_ivadetraibile_ordine' )) {
function get_ivadetraibile_ordine ( $idordine )
{
$ordine = Ordine :: find ( $idordine );
2017-08-04 16:28:16 +02:00
2023-12-06 16:48:54 +01:00
return $ordine -> iva_detraibile ;
}
2017-08-04 16:28:16 +02:00
}
2023-12-06 17:24:23 +01:00
/*
2017-08-04 16:28:16 +02:00
* Calcolo iva indetraibile ordine .
2019-01-01 11:39:20 +01:00
*
* @ deprecated 2.4 . 5
2017-08-04 16:28:16 +02:00
*/
2023-12-06 16:48:54 +01:00
if ( ! function_exists ( 'get_ivaindetraibile_ordine' )) {
function get_ivaindetraibile_ordine ( $idordine )
{
$ordine = Ordine :: find ( $idordine );
2017-08-04 16:28:16 +02:00
2023-12-06 16:48:54 +01:00
return $ordine -> iva_indetraibile ;
}
2017-08-04 16:28:16 +02:00
}
2023-12-06 17:24:23 +01:00
/*
2017-08-04 16:28:16 +02:00
* Ricalcola i costi aggiuntivi in ordine ( rivalsa inps , ritenuta d ' acconto , marca da bollo )
* Deve essere eseguito ogni volta che si aggiunge o toglie una riga
* $idordine int ID del ordine
* $idrivalsainps int ID della rivalsa inps da applicare . Se omesso viene utilizzata quella impostata di default
* $idritenutaacconto int ID della ritenuta d ' acconto da applicare . Se omesso viene utilizzata quella impostata di default
* $bolli float Costi aggiuntivi delle marche da bollo . Se omesso verrà usata la cifra predefinita .
*/
2023-12-06 16:48:54 +01:00
if ( ! function_exists ( 'ricalcola_costiagg_ordine' )) {
function ricalcola_costiagg_ordine ( $idordine , $idrivalsainps = '' , $idritenutaacconto = '' , $bolli = '' )
{
global $dir ;
2017-08-04 16:28:16 +02:00
2023-12-06 16:48:54 +01:00
$dbo = database ();
2017-08-04 16:28:16 +02:00
2023-12-06 16:48:54 +01:00
// Se ci sono righe nel ordine faccio i conteggi, altrimenti azzero gli sconti e le spese aggiuntive (inps, ritenuta, marche da bollo)
$query = 'SELECT COUNT(id) AS righe FROM or_righe_ordini WHERE idordine=' . prepare ( $idordine );
2017-08-04 16:28:16 +02:00
$rs = $dbo -> fetchArray ( $query );
2023-12-06 16:48:54 +01:00
if ( $rs [ 0 ][ 'righe' ] > 0 ) {
$totale_imponibile = get_imponibile_ordine ( $idordine );
$totale_ordine = get_totale_ordine ( $idordine );
// Leggo gli id dei costi aggiuntivi
if ( $dir == 'uscita' ) {
$query2 = 'SELECT idrivalsainps, idritenutaacconto, bollo FROM or_ordini WHERE id=' . prepare ( $idordine );
$rs2 = $dbo -> fetchArray ( $query2 );
$idrivalsainps = $rs2 [ 0 ][ 'idrivalsainps' ];
$idritenutaacconto = $rs2 [ 0 ][ 'idritenutaacconto' ];
$bollo = $rs2 [ 0 ][ 'bollo' ];
}
// Leggo la rivalsa inps se c'è (per i ordine di vendita lo leggo dalle impostazioni)
if ( $dir == 'entrata' ) {
if ( ! empty ( $idrivalsainps )) {
$idrivalsainps = setting ( 'Cassa previdenziale predefinita' );
}
}
2017-08-04 16:28:16 +02:00
2023-12-06 16:48:54 +01:00
$query = 'SELECT percentuale FROM co_rivalse WHERE id=' . prepare ( $idrivalsainps );
$rs = $dbo -> fetchArray ( $query );
$rivalsainps = $totale_imponibile / 100 * $rs [ 0 ][ 'percentuale' ];
2017-08-04 16:28:16 +02:00
2023-12-06 16:48:54 +01:00
// Aggiorno la rivalsa inps
$dbo -> query ( " UPDATE or_ordini SET rivalsainps=' $rivalsainps ' WHERE id= " . prepare ( $idordine ));
2017-08-04 16:28:16 +02:00
2023-12-06 16:48:54 +01:00
// Leggo la ritenuta d'acconto se c'è
$totale_ordine = get_totale_ordine ( $idordine );
// Leggo la rivalsa inps se c'è (per i ordine di vendita lo leggo dalle impostazioni)
if ( ! empty ( $idritenutaacconto )) {
if ( $dir == 'entrata' ) {
$idritenutaacconto = setting ( " Ritenuta d'acconto predefinita " );
}
2017-08-04 16:28:16 +02:00
}
2023-12-06 16:48:54 +01:00
$query = 'SELECT percentuale FROM co_ritenutaacconto WHERE id=' . prepare ( $idritenutaacconto );
$rs = $dbo -> fetchArray ( $query );
$ritenutaacconto = $totale_ordine / 100 * $rs [ 0 ][ 'percentuale' ];
$netto_a_pagare = $totale_ordine - $ritenutaacconto ;
// Leggo la marca da bollo se c'è e se il netto a pagare supera la soglia
$bolli = str_replace ( ',' , '.' , $bolli );
$bolli = floatval ( $bolli );
if ( $dir == 'uscita' ) {
if ( $bolli != 0.00 ) {
$bolli = str_replace ( ',' , '.' , $bolli );
if ( abs ( $bolli ) > 0 && abs ( $netto_a_pagare > setting ( " Soglia minima per l'applicazione della marca da bollo " ))) {
$marca_da_bollo = str_replace ( ',' , '.' , $bolli );
} else {
$marca_da_bollo = 0.00 ;
}
2017-08-04 16:28:16 +02:00
}
2023-12-06 16:48:54 +01:00
} else {
$marca_da_bollo = 0.00 ;
2017-08-04 16:28:16 +02:00
}
2023-12-06 16:48:54 +01:00
// Leggo l'iva predefinita per calcolare l'iva aggiuntiva sulla rivalsa inps
2024-02-08 16:26:31 +01:00
$qi = Aliquota :: find ( setting ( 'Iva predefinita' )) -> percentuale ;
2024-04-03 17:28:18 +02:00
$iva_rivalsainps = $rivalsainps / 100 * $qi ;
2017-08-04 16:28:16 +02:00
2023-12-06 16:48:54 +01:00
$dbo -> query ( 'UPDATE or_ordini SET ritenutaacconto=' . prepare ( $ritenutaacconto ) . ', bollo=' . prepare ( $marca_da_bollo ) . ', iva_rivalsainps=' . prepare ( $iva_rivalsainps ) . ' WHERE id=' . prepare ( $idordine ));
} else {
$dbo -> query ( " UPDATE or_ordini SET ritenutaacconto='0', bollo='0', rivalsainps='0' WHERE id= " . prepare ( $idordine ));
}
2017-08-04 16:28:16 +02:00
}
}
2023-12-06 17:24:23 +01:00
/*
2017-08-04 16:28:16 +02:00
* Restituisce lo stato dell ' ordine in base alle righe .
*/
2023-12-06 16:48:54 +01:00
if ( ! function_exists ( 'get_stato_ordine' )) {
function get_stato_ordine ( $idordine )
{
$dbo = database ();
2018-06-22 17:04:37 +02:00
2023-12-06 16:48:54 +01:00
$rs_ordine = $dbo -> fetchArray ( " SELECT IFNULL(SUM(qta), 0) AS qta FROM or_righe_ordini WHERE idordine=' " . $idordine . " ' " );
$qta_ordine = $rs_ordine [ 0 ][ 'qta' ];
2018-06-22 17:04:37 +02:00
2024-01-15 15:30:45 +01:00
// Righe dell'ordine in ddt
2023-12-06 16:48:54 +01:00
$rs_ddt = $dbo -> fetchArray ( 'SELECT IFNULL(SUM(qta), 0) AS qta FROM dt_righe_ddt WHERE idordine=' . prepare ( $idordine ));
$qta_ddt = $rs_ddt [ 0 ][ 'qta' ];
2018-06-22 17:04:37 +02:00
2024-01-15 15:30:45 +01:00
// Righe dell'ordine in fattura
2023-12-06 16:48:54 +01:00
$rs_fattura = $dbo -> fetchArray ( 'SELECT IFNULL(SUM(qta), 0) AS qta FROM co_righe_documenti WHERE idordine=' . prepare ( $idordine ));
$qta_fattura = $rs_fattura [ 0 ][ 'qta' ];
2018-06-22 17:04:37 +02:00
2024-01-15 15:30:45 +01:00
// Righe dell'ordine in fattura passando da ddt
2023-12-06 16:48:54 +01:00
$rs_ddt_fattura = $dbo -> fetchArray ( " SELECT IFNULL(SUM(qta), 0) AS qta FROM co_righe_documenti WHERE idddt IN(SELECT DISTINCT idddt FROM dt_righe_ddt WHERE idordine=' " . $idordine . " ') " );
$qta_ddt_fattura = $rs_ddt_fattura [ 0 ][ 'qta' ];
2018-06-22 17:04:37 +02:00
2023-12-06 16:48:54 +01:00
if ( $qta_ddt == 0 ) {
$stato = 'Accettato' ;
}
if ( $qta_fattura == 0 ) {
$stato = 'Accettato' ;
}
if ( $qta_ddt > 0 && $qta_ddt < $qta_ordine && $qta_ordine > 0 ) {
$stato = 'Parzialmente evaso' ;
}
if ( $qta_ddt == $qta_ordine && $qta_ordine > 0 ) {
$stato = 'Evaso' ;
}
if ( $qta_fattura > 0 && $qta_fattura < $qta_ordine && $qta_ordine > 0 ) {
$stato = 'Parzialmente fatturato' ;
}
if ( $qta_fattura == $qta_ordine && $qta_ordine > 0 ) {
$stato = 'Fatturato' ;
}
if ( $qta_ddt_fattura > 0 && $qta_ddt_fattura < $qta_ordine && $qta_ordine > 0 ) {
$stato = 'Parzialmente fatturato' ;
}
if ( $qta_ddt_fattura == $qta_ordine && $qta_ordine > 0 ) {
$stato = 'Fatturato' ;
}
2018-05-22 14:41:42 +02:00
2023-12-06 16:48:54 +01:00
return $stato ;
}
2017-08-04 16:28:16 +02:00
}
2022-02-05 22:05:46 +01:00
2023-12-06 16:48:54 +01:00
if ( ! function_exists ( 'get_totale_interventi_ordine' )) {
function get_totale_interventi_ordine ( $idordine )
{
$interventi = Intervento :: where ( 'id_ordine' , $idordine ) -> get ();
$array_interventi = $interventi -> toArray ();
2022-02-05 22:05:46 +01:00
2023-12-06 16:48:54 +01:00
$totale = sum ( array_column ( $array_interventi , 'totale_imponibile' ));
2022-02-05 22:05:46 +01:00
2023-12-06 16:48:54 +01:00
return $totale ;
}
2023-12-06 17:24:23 +01:00
}