Subversion Repositories Integrator Subversion

Rev

Rev 499 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
462 blopes 1
package br.com.ec.domain.service;
2
 
3
import br.com.ec.core.generic.GenericService;
485 blopes 4
import br.com.ec.domain.dto.CompraProdutoDTO;
462 blopes 5
import br.com.ec.domain.dto.NotaFiscalProdutoDTO;
499 blopes 6
import br.com.ec.domain.dto.ProdutoDTO;
462 blopes 7
import br.com.ec.domain.model.NotaFiscalProduto;
8
 
9
public interface NotaFiscalProdutoService extends GenericService<NotaFiscalProduto> {
10
 
11
        void excluirNotaFiscalProduto(NotaFiscalProdutoDTO notaFiscalProdutoDTO);
12
 
543 blopes 13
        void vincularProdutoNaNotaFiscal(Long sequencialNotaFiscal, ProdutoDTO produtoDTO, CompraProdutoDTO compraProdutoDTO);
14
 
462 blopes 15
        /*
16
        NotaFiscal detalhar(Long sequencialNotaFiscal);
17
 
18
        List<String> consultarNcms(ParametrosConsultaNotaFiscal parametrosConsultaNotaFiscalDTO);
19
 
20
        NotasFiscaisEmitidasDTO consultarValores(VigenciaDTO vigenciaDTO);
21
 
22
        void desvincularVenda(Long sequencialNotaFiscal);
23
 
24
        Venda vincularVenda(Long sequencialNotaFiscal, Long sequencialVendaParaVinculo);
25
 
26
        StreamedContent gerarDanfeNfe(Long sequencialNotaFiscal);
27
 
28
        StreamedContent gerarDanfeNfePreVisualizacao(Long sequencialNotaFiscal);
29
 
30
        List<NotaFiscalProdutoDTO> consultarProdutosVinculados(Long sequencialNotaFiscal);
31
 
32
        List<NotaFiscalReferenciadaDTO> consultarNfReferenciadas(Long sequencialNotaFiscal);
33
        */
34
 
35
}