Skip to content

Commit

Permalink
Merge branch 'master' of git.si.cnr.it:dev/sigla-main
Browse files Browse the repository at this point in the history
  • Loading branch information
raffaelepagano committed Oct 30, 2019
2 parents 957bfcf + 1106d00 commit 13330ee
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -19,7 +19,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>it.cnr.si.sigla</groupId>
<version>6.0.10-SNAPSHOT</version>
<version>6.0.11-SNAPSHOT</version>
<artifactId>sigla-parent</artifactId>
<description>Sistema Informativo per la Gestione delle Linee di Attività</description>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion sigla-backend/pom.xml
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>it.cnr.si.sigla</groupId>
<artifactId>sigla-parent</artifactId>
<version>6.0.10-SNAPSHOT</version>
<version>6.0.11-SNAPSHOT</version>
</parent>
<build>
<pluginManagement>
Expand Down
2 changes: 1 addition & 1 deletion sigla-ejb/pom.xml
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>it.cnr.si.sigla</groupId>
<artifactId>sigla-parent</artifactId>
<version>6.0.10-SNAPSHOT</version>
<version>6.0.11-SNAPSHOT</version>
</parent>
<build>
<pluginManagement>
Expand Down
Expand Up @@ -5556,7 +5556,7 @@ public void controlliQuadraturaTotaleFattura(UserContext aUC, Fattura_attivaBulk
if (differenzaIva.compareTo(BigDecimal.ZERO) > 0 && differenzaIva.compareTo(tolleranza) > 0){
throw new it.cnr.jada.comp.ApplicationException("Il totale documento per aliquota iva è maggiore di "+differenzaIva+" rispetto alla somma dei dettagli del documento. Aggiungere " + differenzaIva+" all'importo IVA(forzandolo) di una delle righe del documento.");
}
if (differenzaIva.compareTo(BigDecimal.ZERO) < 0 && differenzaIva.abs().compareTo(tolleranza) < 0){
if (differenzaIva.compareTo(BigDecimal.ZERO) < 0 && differenzaIva.abs().compareTo(tolleranza) > 0){
throw new it.cnr.jada.comp.ApplicationException("Il totale documento per aliquota iva è minore di "+differenzaIva+" rispetto alla somma dei dettagli del documento. Sottrarre " + differenzaIva.abs()+" dall'importo IVA(forzandolo) di una delle righe del documento.");
}
}
Expand Down
Expand Up @@ -24,10 +24,15 @@

public enum StatoVariazioneSostituzione {
DA_VARIARE("DA VARIARE", "DA_VARIARE"),
DA_SOSTITUIRE("DA SOSTITUIRE", "DA_SOSTITUIRE"),
VARIAZIONE_DEFINITIVA("VARIAZIONE DEFINITIVA", "VARIAZIONE_DEFINITIVA"),
SOSTITUZIONE_DEFINITIVA("SOSTITUZIONE DEFINITIVA", "SOSTITUZIONE_DEFINITIVA"),
VARIAZIONE_TRASMESSA("VARIAZIONE TRASMESSA", "VARIAZIONE_TRASMESSA"),
SOSTITUZIONE_TRASMESSA("SOSTITUZIONE TRASMESSA", "SOSTITUZIONE_TRASMESSA"),
VARIATO("VARIATO", "VARIATO"),
NON_VARIATO("NON VARIATO", "NON_VARIATO");
SOSTITUITO("SOSTITUITO", "SOSTITUITO"),
NON_VARIATO("NON VARIATO", "NON_VARIATO"),
NON_SOSTITUITO("NON SOSTITUITO", "NON_SOSTITUITO");

private final String label, value;

Expand Down
4 changes: 2 additions & 2 deletions sigla-web/pom.xml
Expand Up @@ -15,14 +15,14 @@
~ along with this program. If not, see <https://www.gnu.org/licenses />.
-->

<project xmlns="http://maven.apache.org//4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>sigla-web</artifactId>
<packaging>war</packaging>
<parent>
<groupId>it.cnr.si.sigla</groupId>
<artifactId>sigla-parent</artifactId>
<version>6.0.10-SNAPSHOT</version>
<version>6.0.11-SNAPSHOT</version>
</parent>
<dependencyManagement>
<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion sigla-ws/pom.xml
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>it.cnr.si.sigla</groupId>
<artifactId>sigla-parent</artifactId>
<version>6.0.10-SNAPSHOT</version>
<version>6.0.11-SNAPSHOT</version>
</parent>
<build>
<pluginManagement>
Expand Down

0 comments on commit 13330ee

Please sign in to comment.