Subversion Repositories Integrator Subversion

Rev

Rev 623 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 623 Rev 624
Line 4... Line 4...
4
import java.util.Date;
4
import java.util.Date;
-
 
5
import java.util.List;
5
6
6
public class VendaDTO implements Serializable {
7
public class VendaDTO implements Serializable {
7
8
8
        private static final long serialVersionUID = 1L;
9
        private static final long serialVersionUID = 1L;
9
       
10
       
Line 22... Line 23...
22
        private String notaFiscal;
23
        private String notaFiscal;
23
        /*
24
        /*
24
        private Maquineta maquineta;
25
        private Maquineta maquineta;
25
//      private String tipoFrete;
26
//      private String tipoFrete;
26
//      private Double valorFrete;
27
//      private Double valorFrete;
27
        private List<Lancamento> listaLancamentos;
-
 
-
 
28
 * */
-
 
29
        private List<LancamentoDTO> listaLancamentos;
-
 
30
        /*
28
        private List<VendaFormaPagamento> listaVendaFormaPagamentos;
31
        private List<VendaFormaPagamento> listaVendaFormaPagamentos;
29
       
32
       
30
        private String tipoSituacaoFinanceira;
33
        private String tipoSituacaoFinanceira;
31
        private String justificativaParaExcluir;
34
        private String justificativaParaExcluir;
32
       
35
       
Line 87... Line 90...
87
        public String getNotaFiscal() {
90
        public String getNotaFiscal() {
88
                return notaFiscal;
91
                return notaFiscal;
89
        }
92
        }
90
        public void setNotaFiscal(String notaFiscal) {
93
        public void setNotaFiscal(String notaFiscal) {
91
                this.notaFiscal = notaFiscal;
94
                this.notaFiscal = notaFiscal;
-
 
95
        }
-
 
96
       
-
 
97
        public List<LancamentoDTO> getListaLancamentos() {
-
 
98
                return listaLancamentos;
-
 
99
        }
-
 
100
        public void setListaLancamentos(List<LancamentoDTO> listaLancamentos) {
-
 
101
                this.listaLancamentos = listaLancamentos;
92
        }
102
        }
93
       
103
       
94
}
104
}