Á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
titleF460OK
linenumberstrue
#INCLUDE "totvs.ch"

/*/{Protheus.doc} User Function F460OK
    (Ponto de entrada para validar/manipular impressao do cheque)
    @type  Function
    @author Cassio S Dias
    @since 05/12/2023
    @version 12.1.2310
    @return lRet, logical
    @see (links_or_referenceshttps://tdn.totvs.com/x/zlw6M)
    /*/
User Function F460OK() as logical
	// posicionado na tabela "SEF" - Cheque

	Local lRet as logical
	Local cBenef as character

	cBenef := SEF->EF_BENEF
	lRet:=.T.
	
	If !EMPTY(cBenef)
		lRet:=.T.
	else
		Conout ("F460OK - Beneficiário não informado")
		lRet :=.F.
	ENDIF

Return lRet

...