Árvore de páginas

Versões comparadas

Chave

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

...

Bloco de código
languagevb
themeMidnight
firstline1
titleMT550EAI
linenumberstrue
#Include 'PROTHEUS.CH'


/*/{Protheus.doc} MT550EAI
    Permite alteração do JSON da mensagem única EAI
    @type  User Function
    @author TOTVS
    @since 27/10/2021
    @version version
    /*/
User function MT550EAI()

    Local jJson     := JsonObject():New()
    Local cJsonRet  := " "
    Local cTipo     := ParamIXB[1]
    Local cJson     := ParamIXB[2]
    Local cRet      := ''

    If cTipo == 'Json'
        cRet := jJson:FromJson(cJson)
        If ValType(cRet) == 'U'
            jJson['Content']['Description'] := AllTrim("TESTE") 
            cJsonRet := jJson:ToJSON()
        EndIf
    EndIf

Return cJsonRet


...