Skip to content

Commit

Permalink
Consultazione Variazioni: aggiunto filtro per tipologia variazioni. R…
Browse files Browse the repository at this point in the history
…esolve issue #63
  • Loading branch information
raffaelepagano committed Feb 8, 2021
1 parent fe30fc2 commit 31bccf7
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-- DDL for View V_CONS_VAR_COMP_RES
--------------------------------------------------------

CREATE OR REPLACE FORCE VIEW "V_CONS_VAR_COMP_RES" ("TIPO_VAR", "ESERCIZIO", "NUM_VAR", "RIFERIMENTI_DESC_VARIAZIONE", "DESC_VARIAZIONE", "CDR_PROPONENTE", "DESC_CDR_PROPONENTE", "ES_RESIDUO", "CDR_ASSEGN", "DESC_CDR_ASSEGN", "DS_TIPO_VARIAZIONE", "STATO", "FONTE", "IMPORTO", "IM_DEC_INT", "IM_DEC_EST", "IM_ACC_INT", "IM_ACC_EST", "IM_ENTRATA", "GAE", "VOCE_DEL_PIANO", "DT_APPROVAZIONE") AS
CREATE OR REPLACE FORCE VIEW "V_CONS_VAR_COMP_RES" ("TIPO_VAR", "ESERCIZIO", "NUM_VAR", "RIFERIMENTI_DESC_VARIAZIONE", "DESC_VARIAZIONE", "CDR_PROPONENTE", "DESC_CDR_PROPONENTE", "ES_RESIDUO", "CDR_ASSEGN", "DESC_CDR_ASSEGN", "DS_TIPO_VARIAZIONE", "STATO", "FONTE", "IMPORTO", "IM_DEC_INT", "IM_DEC_EST", "IM_ACC_INT", "IM_ACC_EST", "IM_ENTRATA", "GAE", "VOCE_DEL_PIANO", "DT_APPROVAZIONE", "TI_MOTIVAZIONE_VARIAZIONE") AS
(
select
'Competenza' tipo_var, a.esercizio, a.pg_variazione_pdg num_var, a.ds_variazione riferimenti_desc_variazione, a.riferimenti desc_variazione, a.cd_centro_responsabilita cdr_proponente,
Expand All @@ -11,7 +11,7 @@ select
(select c.ds_cdr from cdr c where b.cd_cdr_assegnatario = c.cd_centro_responsabilita) desc_cdr_assegn,
d.ds_tipo_variazione ds_tipo_variazione,
a.stato, a.tipologia_fin fonte, 0 importo, b.im_spese_gest_decentrata_int im_dec_int, b.im_spese_gest_decentrata_est im_dec_est, b.im_spese_gest_accentrata_int im_acc_int, b.im_spese_gest_accentrata_est im_acc_est,
b.im_entrata,b.cd_linea_attivita gae, b.cd_elemento_voce voce_del_piano,a.dt_approvazione
b.im_entrata,b.cd_linea_attivita gae, b.cd_elemento_voce voce_del_piano,a.dt_approvazione,a.ti_motivazione_variazione
from
pdg_variazione a, pdg_variazione_riga_gest b, cdr c, tipo_variazione d
where
Expand All @@ -27,7 +27,8 @@ select
a.esercizio_res es_residuo, b.cd_cdr cdr_assegn,
(select c.ds_cdr from cdr c where b.cd_cdr = c.cd_centro_responsabilita) desc_cdr_assegn,
a.tipologia ds_tipo_variazione,
a.stato, a.tipologia_fin fonte, b.im_variazione importo, 0 im_dec_int, 0 im_dec_est, 0 im_acc_int, 0 im_acc_est,0 im_entrata, b.cd_linea_attivita gae, b.cd_elemento_voce voce_del_piano,a.dt_approvazione
a.stato, a.tipologia_fin fonte, b.im_variazione importo, 0 im_dec_int, 0 im_dec_est, 0 im_acc_int, 0 im_acc_est,0 im_entrata, b.cd_linea_attivita gae,
b.cd_elemento_voce voce_del_piano,a.dt_approvazione,a.ti_motivazione_variazione
from
var_stanz_res a, var_stanz_res_riga b, cdr c
where
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
*/
package it.cnr.contab.pdg01.consultazioni.bulk;

import it.cnr.contab.pdg00.bulk.Pdg_variazioneBulk;
import it.cnr.contab.utenze00.bp.CNRUserContext;
import it.cnr.jada.action.ActionContext;
import it.cnr.jada.bulk.OggettoBulk;
Expand Down Expand Up @@ -94,6 +95,9 @@ public class VConsVarCompResBulk extends OggettoBulk implements Persistent {
// dtApprovazione TIMESTAMP(7)
private java.sql.Timestamp dtApprovazione;

// TI_MOTIVAZIONE_VARIAZIONE VARCHAR2(10)
private java.lang.String tiMotivazioneVariazione;

/**
* Created by BulkGenerator 2.0 [07/12/2009]
* Table name: V_CONS_VAR_COMP_RES
Expand Down Expand Up @@ -410,4 +414,16 @@ public java.sql.Timestamp getDtApprovazione() {
public void setDtApprovazione(java.sql.Timestamp dtApprovazione) {
this.dtApprovazione = dtApprovazione;
}

public String getTiMotivazioneVariazione() {
return tiMotivazioneVariazione;
}

public void setTiMotivazioneVariazione(String tiMotivazioneVariazione) {
this.tiMotivazioneVariazione = tiMotivazioneVariazione;
}

public final java.util.Dictionary getTiMotivazioneVariazioneForSearchKeys() {
return Pdg_variazioneBulk.tiMotivazioneVariazioneForSearchKeys;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,19 @@
property="dtApprovazione"
inputType="TEXT"
formatName="date_short"
label="Data approvazione" />
label="Data approvazione" />
<fieldProperty
name="tiMotivazioneVariazione"
property="tiMotivazioneVariazione"
inputType="SELECT"
keysProperty="tiMotivazioneVariazioneForSearchKeys"
maxLength="10"
enabledOnInsert="true"
enabledOnSearch="true"
enabledOnEdit="true"
nullable="false"
label="Finalità della Variazione" />

<form
name="searchtool">
</form>
Expand Down Expand Up @@ -251,7 +263,10 @@
<formFieldProperty
name="voceDelPiano" />
<formFieldProperty
name="dtApprovazione" />
name="dtApprovazione" />
<formFieldProperty
name="tiMotivazioneVariazione" />

<findFieldProperty
name="tipoVar" />
<findFieldProperty
Expand Down Expand Up @@ -295,7 +310,10 @@
<findFieldProperty
name="voceDelPiano" />
<findFieldProperty
name="dtApprovazione" />
name="dtApprovazione" />
<findFieldProperty
name="tiMotivazioneVariazione" />

<columnFieldProperty
name="tipoVar" />
<columnFieldProperty
Expand Down Expand Up @@ -339,5 +357,7 @@
<columnFieldProperty
name="voceDelPiano" />
<columnFieldProperty
name="dtApprovazione" />
name="dtApprovazione" />
<columnFieldProperty
name="tiMotivazioneVariazione" />
</bulkInfo>
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,15 @@
propertyName="dtApprovazione"
sqlTypeName="TIMESTAMP"
columnSize="7"
nullable="true" />
nullable="true" />
<columnMapping
columnName="TI_MOTIVAZIONE_VARIAZIONE"
propertyName="tiMotivazioneVariazione"
sqlTypeName="VARCHAR"
columnSize="3"
nullable="true"/>
</defaultColumnMap>

<persistentProperty
name="tipoVar" />
<persistentProperty
Expand Down Expand Up @@ -203,5 +210,7 @@
<persistentProperty
name="voceDelPiano" />
<persistentProperty
name="dtApprovazione" />
name="dtApprovazione" />
<persistentProperty
name="tiMotivazioneVariazione" />
</SQLPersistentInfo>
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
~ You should have received a copy of the GNU Affero General Public License
~ along with this program. If not, see <https://www.gnu.org/licenses/>.
-->

<bulkInfo
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://contab.cnr.it/schema/SIGLA"
Expand Down

0 comments on commit 31bccf7

Please sign in to comment.