Sintaxe:
#INCLUDE "PROTHEUS.CH"
#INCLUDE "FWMVCDEF.CH"
#INCLUDE "FATA600.CH"
User Function MyFata600()
Local nOperation := 3
Local aADZProduto := {}
Local aADYMaster := {}
Local aADZAcessor := {}
Local lRetorno := .T.
Private lMsErroAuto := .F.
RpcSetEnv( "T1", "D MG 01", "Admin", "",,, )
//-----------------------------------------------
// Cabeçalho da Proposta Comercial
//----------------------------------------------
aAdd( aADYMaster, {"ADY_OPORTU", cCodOport, Nil } )
aAdd( aADYMaster, {"ADY_REVISA", "01", Nil } )
aAdd( aADYMaster, {"ADY_DATA", dDatabase, Nil } )
aAdd( aADYMaster, {"ADY_ENTIDA", "1", Nil } ) //1=Cliente; 2=Prospect
aAdd( aADYMaster, {"ADY_CODIGO", "000001", Nil } )
aAdd( aADYMaster, {"ADY_LOJA", "00", Nil } )
aAdd( aADYMaster, {"ADY_TABELA", "001", Nil } )
//-----------------------------------------------
// Itens da Proposta Comercial - Folder Produtos
//-----------------------------------------------
aAdd( aADZProduto,{ {"ADZ_PRODUT", "CRM001", Nil } ,;
{"ADZ_CONDPG", "001", Nil } ,;
{"ADZ_TES", "502", Nil } ,;
{"ADZ_QTDVEN", 2, Nil } ,;
{"ADZ_CODAGR", "000004", Nil },;
{"ADZ_CODNIV", "001", Nil } } )
//-------------------------------------------------
// Itens da Proposta Comercial - Folder Acessórios
//-------------------------------------------------
aAdd( aADZAcessor, { {"ADZ_PRODUT", "CRM002", Nil },;
{"ADZ_CONDPG", "001", Nil } ,;
{"ADZ_TES", "502", Nil } ,;
{"ADZ_QTDVEN", 4, Nil } } )
FATA600( /*oMdlFt300*/, nOperation, aADYMaster, aADZProduto, aADZAcessor )
If lMsErroAuto
lRetorno := .F.
DisarmTransaction()
MostraErro()
Else
Conout( "Proposta incluída com sucesso.!" )
EndIf
RpcClearEnv()
Return(lRetorno)