Árvore de páginas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

...

Bloco de código
languagecpp
themeMidnight
firstline1
title FA280FBW 
linenumberstrue
#INCLUDE "TOTVS.CH"

/*/{Protheus.doc} User Function FA280FBW
    (Ponto de entrada para filtrar os titulos a serem exibidos na mbrowse do faturas a receber)
    @type  Function
    @author Cássio S. Dias
    @since 08/11/2023
    @version 12.1.2310
    @return cQuery, Caracter
    @see (https://tdn.totvs.com/x/DF74Lw)
    /*/
User Function FA280FBW() as Caracter
	Local cQuery:=' '

//Exibir apenas faturas em aberto com o prefixo "FIN"
	cQuery 	+= " AND E1_PREFIXO= 'FIN ' "
	cQuery 	+= " AND E1_BAIXA= ' ' "
	cQuery	+= " AND D_E_L_E_T_ = ' '"

Return cQuery

...