Árvore de páginas

Versões comparadas

Chave

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

...

Bloco de código
languagejava
themeMidnight
firstline1
titleFT560FIL
linenumberstrue
#INCLUDE "TOTVS.CH"

/*/{Protheus.doc} User Function FT560FIL
    (Ponto de entrada permite definir Filtros na mBrowse)
    @type  CHARACTER
    @author Cassio S. Dias
    @since 13/11/2023
    @version 12.1.2310
    @return cQuery, CHARACTER
    @see (https://tdn.totvs.com/x/ej-4Lw)
    /*/
User Function FT560FIL() as CHARACTER
	Local cQuery:=''

	// MovimentoMovimentos em aberto.
	cQuery 	+= " AND EU_BAIXA = ' '"
    cQuery	+= " AND D_E_L_E_T_ = ' '"

Return cQuery

...