/*
* Copyright (C) 2012 AXIA Studio (http://www.axiastudio.com)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.axiastudio.suite.finanziaria.entities;
import com.axiastudio.suite.deliberedetermine.entities.Determina;
import com.axiastudio.suite.deliberedetermine.entities.MovimentoDetermina;
import java.util.Date;
import java.util.List;
/**
*
* @author AXIA Studio (http://www.axiastudio.com)
*
* Per le realtà che hanno una gestione delle finanziaria è possibile scrivere
* e registrare un'utilità per la gestione dell'interoperabilità di un gestore
* della finanziaria esterno.
*
* Tale utilità deve essere in grado di fornire la lista dei movimenti legati ad
* una determina, e di aprire un gestore dei movimenti per la loro modifica.
*
*/
public interface IFinanziaria {
public List<MovimentoDetermina> getMovimentiDetermina(Determina determina);
public void apriGestoreMovimenti(Determina determina);
public Boolean assegnaEsecutivitaAtto(Determina determina, Date data);
public Boolean trasformaBozzaInAtto(Determina determina, Date data);
}