-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathLBNEWEMP.prw
294 lines (218 loc) · 8.42 KB
/
LBNEWEMP.prw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
#Include 'Protheus.ch'
#Include 'ParmType.ch'
#Include 'Fileio.ch'
#Include 'TOPCONN.CH'
#Include "TBICONN.CH"
#Include "TBICODE.CH"
User Function LBNEWEMP; Return // "dummy" function - Internal Use
//------------------------------------------------------------------------------------------
/*/{Protheus.doc} LbNewEmp
@class : LbNewEmp
@Sample : LbNewEmp():New()
@description : Classe responsavel por fazer a troca de empresa em tempo de execução.
A troca so e permitida caso o usuario possua acesso.
@Param : Nulo
@return : Object
@obs : Permite ser inserido em bloco de transação podendo realizar o Disarmtransaction()
de registros de N empresas.
@project : Generico
@ --------------|----------------
@author : Lucas.Brustolin
@since : 03/04/2020
@version : Protheus 12.1.17
/*/
//------------------------------------------------------------------------------------------
CLASS LbNewEmp
Data oAppBk As Object
Data CodEmpBkp As String
Data CodFilBkp As String
Data CodEmp As String
Data CodFil As String
Data Error As String
Data EmpAccess As Array
Data AreaSM0 As Array
METHOD New() CONSTRUCTOR // Metodo construtor - criação do objeto
METHOD SetEmp() // Metodo para setar a troca de empresa
METHOD Restore() // Metodo para restaurar a troca de empresa
ENDCLASS
//------------------------------------------------------------------------------------------
/*/{Protheus.doc} New
@class : LbNewEmp
@Sample : LbNewEmp():New()
@description : Classe responsavel para criação do objeto
@Param : Nulo
@return : Object
@ --------------|----------------
@author : Lucas.Brustolin
@since : 03/04/2020
@version : Protheus 12.1.17
/*/
//------------------------------------------------------------------------------------------
Method New() Class LbNewEmp
Self:oAppBk := Iif ( Type( 'oApp' ) == 'O', oApp, Nil )
Self:CodEmpBkp := cEmpAnt
Self:CodFilBkp := cFilAnt
Self:CodEmp := cEmpAnt
Self:CodFil := cFilAnt
Self:EmpAccess := FWEmpLoad(.F.)
DbSelectArea("SM0")
Self:AreaSM0 := SM0->(GetArea())
Return( Self )
//------------------------------------------------------------------------------------------
/*/{Protheus.doc} SetEmp
@class : LbNewEmp
@Sample : LbNewEmp():SetEmp(CodEmp, CodFil)
@description : Metodo responsavel por fazer a troca de empresa em tempo de execução.
A troca so e permitida caso o usuario possua acesso.
@Param : CodEmp - Empresa
@Param : CodFil - Filial
@return : lAccess .T. Se houve a troca de empresa caso contrario .F.
@ --------------|----------------
@author : Lucas.Brustolin
@since : 03/04/2020
@version : Protheus 12.1.17
/*/
//------------------------------------------------------------------------------------------
Method SetEmp( CodEmp, CodFil ) Class LbNewEmp
Local lAccess := .F.
PARAMTYPE 0 VAR CodEmp AS CHARACTER
PARAMTYPE 1 VAR CodFil AS CHARACTER
lAccess := CodEmp <> cEmpAnt .And. CodFil <> cFilAnt
If ( lAccess )
// Lista Empresas que usuario tem Acesso
// ::EmpAccess- array
// 1 - Codigo da empresa
// 2 - Nome da empresa
// 3 - Codigo da filial
// 4 - Nome da filials
lAccess := aScan( ::EmpAccess, {|x| x[1] == CodEmp .And. x[3] == CodFil } ) > 0
If ( lAccess )
// ------------------------------------+
// TROCA EMPRESA EM TEMPO DE EXECUCAO |
// ------------------------------------+
lAccess := ChangeEmp( CodEmp, CodFil )
::Error := Iif ( lAccess,"", "Falha interna ao abrir Empresa\Filial: " + CRLF + CRLF + ;
"Empresa: " + CodEmp + CRLF + ;
"Filial: " + CodFil )
Else
::Error := "Usuario sem permissao de acesso a Empresa\Filial: " + CRLF + CRLF + ;
"Empresa: " + CodEmp + CRLF + ;
"Filial: " + CodFil
EndIf
Else
::Error := "Empresa e filial informada ja se encontra ativa"
EndIf
Return( lAccess )
//------------------------------------------------------------------------------------------
/*/{Protheus.doc} Restore
@type : Metodo
@Sample : LbNewEmp():Restore()
@description : Metodo responsavel por restaurar a troca de empresa em tempo de execução.
Considera empresa\filial antes da criação do objeto
@Param : CodEmp - Empresa
@Param : CodFil - Filial
@return : lAccess .T. Se houve a troca de empresa caso contrario .F.
@ --------------|----------------
@author : Lucas.Brustolin
@since : 03/04/2020
@version : Protheus 12.1.17
/*/
//------------------------------------------------------------------------------------------
Method Restore() Class LbNewEmp
Local lChange := .F.
// ------------------------------------+
// TROCA EMPRESA EM TEMPO DE EXECUCAO |
// ------------------------------------+
lChange := ChangeEmp( ::CodEmpBkp, ::CodFilBkp )
If ( lChange )
oApp := Iif ( ValType( Self:oAppBk ) == 'O', Self:oAppBk, Nil )
::Error := ""
Else
::Error := "Falha interna ao restaurar empresa em tempo de execucao"
EndIf
RestArea( ::AreaSM0 )
Return( lChange )
//------------------------------------------------------------------------------------------
/*/{Protheus.doc} ChangeEmp
@type : Metodo
@Sample : ChangeEmp( cCodEmp, cCodFil )
@description : Funcao responsavel efetivar a troca da empresa em tempo de execucao
@Param : CodEmp - Codigo da Empresa que sera aberta
@Param : CodFil - Codigo da Filial que sera aberta
@return : lChange - Retorna .T. Se houve a troca de empresa caso contrario .F.
@ --------------|----------------
@author : Lucas.Brustolin
@since : 03/04/2020
@version : Protheus 12.1.17
/*/
//------------------------------------------------------------------------------------------
Static Function ChangeEmp( cCodEmp, cCodFil )
Local lChange := .F.
DbCloseAll() //-- Fecha todas as tabela que estao abertas
OpenSM0() //-- Abre Arquivo de empresa (Empresa/Filial)
DbSelectArea("SM0") //-- Posiciona tabela de empresa = SM0
SM0->( DbSetOrder(1)) //-- Seta ordem
If SM0->( DbSeek( cCodEmp + cCodFil)) //-- Posiciona Empresa e filial
//-- Atualiza as variais de sistema
cEmpAnt := SM0->M0_CODIGO
cFilAnt := AllTrim(SM0->M0_CODFIL)
OpenFile(cEmpAnt + cFilAnt) //-- Efetiva abertura da empresa a processar
lRefresh := .T. //-- Variavel Private para Atualizar as Tabelas
lChange := cCodEmp == AllTrim( cEmpAnt ) .And. ;
cCodFil == AllTrim( cFilAnt )
EndIf
Return( lChange )
#Include 'Protheus.ch'
// -----------------------------------------------------------
// EXEMPLO DE UTILIZACAO DA CLASSE QUE FAZ A TROCA DE EMPRESA [ LbNewEmp ]
//
// LbNewEmp():New() -- Instacia objeto
// LbNewEmp():SetEmp( Empresa, Filial ) -- Faz a troca de empresa
// LbNewEmp():Restore( ) -- Retorna para empresa de origem (Antes do SetEmp)
// ----------------------------------------------------------
User Function Teste001()
Local oEmpresa := Nil
Begin Transaction
oEmpresa := LbNewEmp():New()
// ---------------------------------------------+
// ACESSA EMPRESA 01 E ALTERA O CAD DE CLIENTES |
// ---------------------------------------------+
If oEmpresa:SetEmp( "01", "06" )
If ( cEmpAnt == "01" .And. cFilAnt = "06" )
cNome := POSICIONE("SA1",1,xFilial("SA1")+ "002084068" ,"A1_NOME")
If !Empty( cNome )
RecLock("SA1", .F. )
SA1->A1_NOME := AllTrim(cNome) + " x"
SA1->( MsUnLock() )
EndIf
EndIf
Else
FwAlertInfp( oEmpresa:Error,"Atencao" )
EndIf
// ---------------------------------------------+
// ACESSA EMPRESA 02 E ALTERA O CAD DE CLIENTES |
// ---------------------------------------------+
If oEmpresa:SetEmp( "02", "01" )
If ( cEmpAnt == "02" .And. cFilAnt = "01" )
cNome := POSICIONE("SA1",1,xFilial("SA1")+ "001074099" ,"A1_NOME")
If !Empty( cNome )
RecLock("SA1", .F. )
SA1->A1_NOME := AllTrim(cNome) + " x"
SA1->( MsUnLock() )
// TESTE COM TRANSACTION
// --------------------------------------------------------------------+
// DESFAZ ALTERACOES DE AMBOS CADASTROS CLIENTES REF. EMPREESA 01 E 02 |
// --------------------------------------------------------------------+
//Forca o Disarm
DisarmTransaction()
EndIf
EndIf
Else
FwAlertInfp( oEmpresa:Error,"Atencao" )
EndIf
// ----------------------------------------------------------------------------+
// RESTAURA \ RETORNA PARA EMPRESA DE ORIGEM - PARA CONTINUAR O PROCESSAMENTO |
// ----------------------------------------------------------------------------+
oEmpresa:Restore()
End Transaction
Return()