Merge branch 'R_10_00' of http://10.65.20.33/sirio/CAMPO/campo into R_10_00

This commit is contained in:
Mattia Tollari 2019-03-12 17:24:21 +01:00
commit e6370665b8
6 changed files with 33 additions and 4 deletions

View File

@ -195,7 +195,7 @@
<ClCompile Include="..\src\fp\fp0300.cpp" />
<ClCompile Include="..\src\fp\fp0400.cpp" />
<ClCompile Include="..\src\fp\fp0500.cpp">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
</ClCompile>
</ItemGroup>
@ -206,7 +206,7 @@
<ClInclude Include="..\src\fp\fp0300a.h" />
<ClInclude Include="..\src\fp\fp0400a.h" />
<ClInclude Include="..\src\fp\fp0500a.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</ExcludedFromBuild>
</ClInclude>
</ItemGroup>
<ItemGroup>

7
cd/test/fp0728.txt Normal file
View File

@ -0,0 +1,7 @@
fpmenu.men
fp0.exe
fp1.exe
fp1100a.msk
- Aggiunto programma stampa elenco bolli in fattura
- Data una ripulita al menu fp

22
cd/test/fp0728a.ini Normal file
View File

@ -0,0 +1,22 @@
[Main]
Demo=0
[fp1]
File(0) = fp0.exe|X
File(6) = fp1.exe|X
File(7) = fp1100a.msk|X
File(8) = fpmenu.men|X
Patch = 728
Versione = 21511200
[fp]
Data = 12-03-2019
Descrizione = Fattura Elettronica
Dischi = 1
Moduli = cg,ve
OEM =
Patch = 728
PostProcess =
PreProcess =
Versione = 21511200

BIN
cd/test/fp0728a1.zip Normal file

Binary file not shown.

View File

@ -11,7 +11,7 @@ int main(int argc, char** argv)
case 1: rt = fp0200(argc, argv); break; // Inserimento massivo PEC e Cod Sdi clifo
case 2: rt = fp0300(argc, argv); break; // Gestione fatture attive (PAA, Ex Fattura PA)
case 3: rt = fp0400(argc, argv); break; // Monitor fatture passive
//case 4: rt = fp0500(argc, argv); break; // Elenco mancate consegna
case 4: rt = fp0500(argc, argv); break; // Elenco mancate consegna
default: rt = fp0100(argc, argv); break; // Configurazione
}
return rt;

View File

@ -5,6 +5,6 @@ int fp0100(int argc, char* argv[]);
int fp0200(int argc, char* argv[]);
int fp0300(int argc, char* argv[]);
int fp0400(int argc, char* argv[]);
//int fp0500(int argc, char* argv[]);
int fp0500(int argc, char* argv[]);
#endif