Harness ROAACNPRO-specific (gcAppPath propriu, spre deosebire de test_init_env_auto.prg care e fixat pe ROACONT), shadow pentru cauta_alfa() si testul care reproduce/confirma label-ul ANAF pe caut_client_contract_activ(), plus repro pentru scoping-ul gresit al lui poDate in do_cauta_partener (Thisform.poDate vs poDate PRIVATE).
272 lines
9.1 KiB
Plaintext
272 lines
9.1 KiB
Plaintext
* test_init_env_auto_acnpro.prg
|
|
* Varianta ROAACNPRO a test_init_env_auto.prg (COMUN\utile\Teste): acela seteaza gcAppPath fix pe
|
|
* D:\ROA\ROACONT\ (harness scris pentru ROACONT), deci nu poate testa cod din COMUN\ asa cum e
|
|
* editat in checkout-ul ROAACNPRO (fiecare aplicatie are propriul working copy SVN al COMUN\).
|
|
* Identic altfel, minus class libs/proceduri specifice ROACONT (contabilitate) care nu exista sub
|
|
* ROAACNPRO\COMUN sau ROAACNPRO\Clase.
|
|
*
|
|
* Utilizare: DO test_init_env_auto_acnpro WITH 'CENTRAL', 'MARIUSM_AUTO', 'parola'
|
|
* ATENTIE: mentine sincronizat cu test_init_env_auto.prg pentru partea comuna.
|
|
|
|
LPARAMETERS tcHost, tcSchema, tcPassword, tnAn, tnLuna
|
|
|
|
tcHost = IIF(EMPTY(tcHost), 'CENTRAL', tcHost)
|
|
tcSchema = IIF(EMPTY(tcSchema), 'MARIUSM_AUTO', tcSchema)
|
|
tcPassword = IIF(EMPTY(tcPassword), 'ROMFASTSOFT', tcPassword)
|
|
|
|
SET DELETED ON
|
|
SET ANSI ON
|
|
SET EXACT ON
|
|
SET SAFETY OFF
|
|
CLOSE DATABASES
|
|
SET CENTURY ON
|
|
SET DATE DMY
|
|
SET NULLDISPLAY TO ''
|
|
|
|
PUBLIC CT_SUCCES, CT_INSUCCES, crlf, gnAn, gnLuna, gnIdUtil, glEMama, gnIdFirma, gcCondSucursala, ;
|
|
gnIdSucursala, gcS, gcFirma, gcUserName, gcNumeProgram, gcAppName, glLunaInchisa, ;
|
|
buton, gnButon, pnButon, gl406, gcAcces
|
|
CT_SUCCES = 1
|
|
CT_INSUCCES = -1
|
|
crlf = CHR(13) + CHR(10)
|
|
gnAn = IIF(EMPTY(tnAn), YEAR(DATE()), tnAn)
|
|
gnLuna = IIF(EMPTY(tnLuna), MONTH(DATE()), tnLuna)
|
|
gnIdUtil = -3
|
|
gnIdFirma = 110
|
|
gcCondSucursala = []
|
|
gnIdSucursala = m.gnIdFirma
|
|
gcS = UPPER(ALLTRIM(tcSchema))
|
|
gcFirma = m.gcS
|
|
gcUserName = m.gcS
|
|
gcNumeProgram = [ROAACNPRO]
|
|
gcAppName = [ROAACNPRO]
|
|
glLunaInchisa = .F.
|
|
glEMama = .F.
|
|
gl406 = .F.
|
|
PUBLIC nror(65000)
|
|
buton = 1
|
|
gnButon = 1
|
|
pnButon = 1
|
|
|
|
LOCAL lcPath
|
|
PUBLIC gcAppPath, DIRGEN, gcBasePath, gcTempPath, gcGeneralIniFile, gcSettingsFile
|
|
gcAppPath = [D:\ROA\ROAACNPRO\]
|
|
Set Default To (gcAppPath)
|
|
lcPath = gcAppPath + 'Date;' + ;
|
|
gcAppPath + 'Include;' + ;
|
|
gcAppPath + 'FERESTRE;' + ;
|
|
gcAppPath + 'GRAFICE;' + ;
|
|
gcAppPath + 'CLASE;' + ;
|
|
gcAppPath + 'MENIURI;' + ;
|
|
gcAppPath + 'PROGRAME;' + ;
|
|
gcAppPath + 'RAPOARTE;' + ;
|
|
gcAppPath + 'COMUN\CLASE;' + ;
|
|
gcAppPath + 'COMUN\FERESTRE;' + ;
|
|
gcAppPath + 'COMUN\PROGRAME;' + ;
|
|
gcAppPath + 'COMUN\GRAFICE;' + ;
|
|
gcAppPath + 'COMUN\RAPOARTE;' + ;
|
|
gcAppPath + 'COMUN\UTILE\CALENDAR;' + ;
|
|
gcAppPath + 'COMUN\UTILE\CTL32;' + ;
|
|
gcAppPath + 'COMUN\UTILE\HPDF;' + ;
|
|
gcAppPath + 'COMUN\UTILE\HPDF\REPORTOUTPUT;' + ;
|
|
gcAppPath + 'COMUN\UTILE\WEB;' + ;
|
|
gcAppPath + 'COMUN\UTILE\NFJSON;' + ;
|
|
gcAppPath + 'COMUN\UTILE\NFXML;' + ;
|
|
gcAppPath + 'COMUN\UTILE\EXCEL;' + ;
|
|
gcAppPath + 'COMUN\UTILE\GRIDEXTRAS;' + ;
|
|
Addbs(Substr(gcAppPath,1,Rat([\],gcAppPath,2)))+[COMUNROA\]
|
|
SET PATH TO &lcPath ADDITIVE
|
|
|
|
Set Classlib To appwiz Additive
|
|
Set Classlib To CAUT Additive
|
|
Set Classlib To BAZA Additive
|
|
Set Classlib To comun Additive
|
|
Set Classlib To registry Additive
|
|
Set Classlib To cauta_alfa_forms.vcx Additive
|
|
Set Classlib To obalanta Additive
|
|
Set Classlib To ocriterii.vcx Additive
|
|
Set Classlib To ctl32_statusbar.vcx Additive
|
|
Set Classlib To ctl32_common.vcx Additive
|
|
Set Classlib To ctl32_structs.vcx Additive
|
|
Set Classlib To ctl32_progressbar.vcx Additive
|
|
|
|
Set Procedure To PROCEDURI Additive
|
|
Set Procedure To pmenu Additive
|
|
Set Procedure To proceduri_comune Additive
|
|
Set Procedure To mesaje Additive
|
|
Set Procedure To acces_meniu Additive
|
|
Set Procedure To quitapp Additive
|
|
Set Procedure To init_program Additive
|
|
Set Procedure To oproceduri_maintenance.PRG Additive
|
|
Set Procedure To gridproc Additive
|
|
Set Procedure To proceduri_excel Additive
|
|
Set Procedure To oserii_numere.PRG Additive
|
|
Set Procedure To cauta_alfa Additive
|
|
Set Procedure To oproceduri_parteneri Additive
|
|
Set Procedure To wwconfig Additive
|
|
Set Procedure To oexport Additive
|
|
SET PROCEDURE TO ocasabanca ADDITIVE
|
|
SET PROCEDURE TO importfromxlsx ADDITIVE
|
|
SET PROCEDURE TO appendfromxlsx.prg ADDITIVE
|
|
SET PROCEDURE TO overificari.prg ADDITIVE
|
|
SET PROCEDURE TO onomenclatoare.prg ADDITIVE
|
|
SET PROCEDURE TO excelxml.prg ADDITIVE
|
|
|
|
Set Classlib To DECABAZA Additive
|
|
Set Classlib To onomenclatoare Additive
|
|
Set Classlib To oparteneri Additive
|
|
Set Classlib To OCASABANCA Additive
|
|
Set Classlib To oCompensari Additive
|
|
Set Classlib To oRapoarte_cont Additive
|
|
Set Classlib To overificari Additive
|
|
Set Classlib To omodificari Additive
|
|
Set Classlib To ooptiuni Additive
|
|
Set Classlib To onote_contabile Additive
|
|
Set Classlib To odebcred Additive
|
|
Set Classlib To ferestre_oracle Additive
|
|
Set Classlib To caut_ora Additive
|
|
Set Classlib To otoolbar Additive
|
|
Set Classlib To serii_numere Additive
|
|
Set Classlib To anaf_efactura Additive
|
|
|
|
Set Classlib To Messagebox Additive
|
|
SET CLASSLIB TO wwdialogs ADDITIVE
|
|
SET CLASSLIB TO orapoarte.vcx additive
|
|
SET CLASSLIB TO accessibility.vcx ADDITIVE
|
|
SET CLASSLIB TO _calendar.vcx ADDITIVE
|
|
SET CLASSLIB TO orapoarte_comun.vcx ADDITIVE
|
|
|
|
Set Procedure To GENCURSOR.PRG Additive
|
|
Set Procedure To OPROCEDURI_COMUNE.PRG Additive
|
|
Set Procedure To OINIT_OPTIUNI.PRG Additive
|
|
Set Procedure To updateserver.PRG Additive
|
|
Set Procedure To oCompensari.PRG Additive
|
|
Set Procedure To oOperatii_comune.PRG Additive
|
|
Set Procedure To OPROCEDURI_aMS.PRG Additive
|
|
Set Procedure To oparteneri.PRG Additive
|
|
Set Procedure To orapoarte.PRG Additive
|
|
Set Procedure To ocautare Additive
|
|
Set Procedure To omeniu_initializari Additive
|
|
Set Procedure To osecurity Additive
|
|
Set Procedure To oheader Additive
|
|
Set Procedure To orefaceri Additive
|
|
Set Procedure To oproceduri_casademarcat Additive
|
|
Set Procedure To controllerecr Additive
|
|
Set Procedure To oproceduri_comune_imob.PRG Additive
|
|
Set Procedure To odocumente.PRG Additive
|
|
SET PROCEDURE TO orapoarte_dinamice.prg additive
|
|
SET PROCEDURE TO update_imob.prg ADDITIVE
|
|
Set Procedure To wwutils.PRG Additive
|
|
Set Procedure To wwxmlhttp.PRG Additive
|
|
Set Procedure To ini.PRG Additive
|
|
Set Procedure To regex.PRG Additive
|
|
Set Procedure To validare.PRG Additive
|
|
Set Procedure To oproceduri_evolutie Additive
|
|
Set Procedure To proceduri_rapoarte.PRG Additive
|
|
SET PROCEDURE TO anaf_efactura.prg ADDITIVE
|
|
SET PROCEDURE TO iniacces.prg ADDITIVE
|
|
SET PROCEDURE TO oupdate.prg additive
|
|
SET PROCEDURE TO procese.prg additive
|
|
SET PROCEDURE TO version.prg additive
|
|
SET PROCEDURE TO xmlaccess.prg additive
|
|
SET PROCEDURE TO xmlparser.prg additive
|
|
SET PROCEDURE TO filebringer.prg additive
|
|
SET PROCEDURE TO wwcodeupdate.prg additive
|
|
SET PROCEDURE TO wwhttp.prg ADDITIVE
|
|
SET PROCEDURE TO wwapi.prg ADDITIVE
|
|
|
|
Declare Integer GetPrivateProfileString In WIN32API ;
|
|
string, String, String, String @, Integer, String
|
|
Declare Integer WritePrivateProfileString In Win32Api ;
|
|
string, String, String, String
|
|
Declare Integer CopyFile In WIN32API ;
|
|
STRING lpExistingFileName, STRING lpNewFileName, INTEGER bFailIfExists
|
|
Declare Integer PathFileExists In shlwapi STRING pszPath
|
|
|
|
If Type('goApi') = 'U'
|
|
Public goApi
|
|
goApi = Newobject("wwAPI", "wwAPI.prg")
|
|
ENDIF
|
|
|
|
set procedure to oinit_optiuni.prg additive
|
|
set procedure to oproceduri_comune.prg additive
|
|
|
|
PUBLIC gnHandle, goExecutor, goConn, goFirma, goCalendar, poLog, goLog, goApp
|
|
DIRGEN = [D:\ROA\]
|
|
gcBasePath = dirgen
|
|
gcGeneralIniFile = DIRGEN + "settings.ini"
|
|
gcSettingsFile = m.gcGeneralIniFile
|
|
gcTempPath = Addbs(shortpath(goApi.GetTempPath())) + gcS + [\]
|
|
If !Directory(gcTempPath)
|
|
Md (gcTempPath)
|
|
Endif
|
|
gcAcces = [1;2;3;4;5;6;7;8;]
|
|
|
|
poLog = Newobject("Log_Mesaje","Log_Mesaje.prg")
|
|
goLog = poLog
|
|
goApp = Createobject("wzApplication")
|
|
gnHandle = 0
|
|
goExecutor = createobject("oExecutor")
|
|
goConn = createobject("oConn")
|
|
goConn.Connect(m.tcHost, m.tcSchema, m.tcPassword)
|
|
IF m.gnHandle <= 0
|
|
RETURN .F.
|
|
ENDIF
|
|
|
|
LOCAL llSucces, lcSql
|
|
goFirma = null
|
|
llSucces = goExecutor.oExecuta("select * from syn_v_nom_firme where schema = ?gcS", "cFirma")
|
|
IF m.llSucces
|
|
SELECT cFirma
|
|
gnIdFirma = id_firma
|
|
gnIdSucursala = null
|
|
gcFirma = ALLTRIM(firma)
|
|
SCATTER NAME goFirma
|
|
IF TYPE('goFirma.codfiscalfro') = 'U'
|
|
ADDPROPERTY(goFirma, 'codfiscalfro', ALLTRIM(STRTRAN(ALLTRIM(NVL(goFirma.cod_fiscal, '')), 'RO', '')))
|
|
ENDIF
|
|
ELSE
|
|
goFirma = CREATEOBJECT('custom')
|
|
goFirma.addproperty('cod_fiscal', '')
|
|
goFirma.addproperty('schema', m.gcS)
|
|
goFirma.addproperty('firma', m.gcS)
|
|
goFirma.addproperty('codfiscalfro', '')
|
|
ENDIF
|
|
USE IN (SELECT('cFirma'))
|
|
|
|
goCalendar = null
|
|
llSucces = goExecutor.oExecuta('SELECT anul, luna, tva_incasare FROM calendar WHERE an*12+luna = (select MAX(an*12+luna) FROM calendar)', 'cCalendar')
|
|
IF m.llSucces
|
|
SELECT cCalendar
|
|
GO TOP
|
|
IF EMPTY(m.tnAn)
|
|
gnAn = anul
|
|
gnLuna = luna
|
|
ENDIF
|
|
SCATTER NAME goCalendar
|
|
ENDIF
|
|
USE IN (SELECT('cCalendar'))
|
|
|
|
CREATE CURSOR dual (dummy c(10))
|
|
INSERT INTO dual (dummy) VALUES ("")
|
|
|
|
actualizeaza_optiuni()
|
|
Do optiuni_firma IN oinit_optiuni.prg
|
|
|
|
lcSql = [begin pack_sesiune.set_Id_Util(?gnIdUtil); end;]
|
|
llSucces = goExecutor.oExecuta(lcSql)
|
|
lcSql = [begin pack_sesiune.setluna(?gnLuna); pack_sesiune.setan(?gnAn); end;]
|
|
llSucces = goExecutor.oExecuta(lcSql)
|
|
lcSql = [begin pack_sesiune.setlunabal(?gnLuna); pack_sesiune.setanbal(?gnAn); end;]
|
|
llSucces = goExecutor.oExecuta(lcSql)
|
|
lcSql = [begin pack_contafin.SET_DATA_RON(?gcS); end;]
|
|
llSucces = goExecutor.oExecuta(lcSql)
|
|
lcSql = [begin pack_sesiune.set_data_ron(?gcS); end;]
|
|
llSucces = goExecutor.oExecuta(lcSql)
|
|
lcSql = [begin pack_contafin.set_id_sucursala(?gnIdSucursala); end;]
|
|
llSucces = goExecutor.oExecuta(lcSql)
|
|
lcSql = [begin pack_contafin.set_id_firma(?gnIdFirma); end;]
|
|
llSucces = goExecutor.oExecuta(lcSql)
|
|
|
|
RETURN .T.
|