Patch level : 12.0

Files correlati     :
Commento:

Corretto errore su monitor fatture passive. Non venivano più filtrati i documenti in base al tipo di fornitore (associato, non associato)
This commit is contained in:
smen 2023-06-20 16:02:30 +02:00
parent 9c089785bd
commit 71b60590bc
3 changed files with 3 additions and 2 deletions

View File

@ -11,7 +11,7 @@
</ProjectConfiguration> </ProjectConfiguration>
</ItemGroup> </ItemGroup>
<PropertyGroup Label="Globals"> <PropertyGroup Label="Globals">
<ProjectGuid>{835D0414-DB92-4563-AB84-2FC250C68947}</ProjectGuid> <ProjectGuid>{9C91BACF-9A70-4973-B8CC-FA3D2AF9867C}</ProjectGuid>
<RootNamespace>xvtdb</RootNamespace> <RootNamespace>xvtdb</RootNamespace>
<ProjectName>xvtdb</ProjectName> <ProjectName>xvtdb</ProjectName>
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion> <WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>

View File

@ -314,7 +314,7 @@ void TPassive_mask::aggiungi_riga(TLocalisamfile& clifo, TSheet_field& sf, TShee
const bool data_range = dataregcont >= TDate(get(F_DATAINIREG)) && dataregcont <= TDate(get(F_DATAENDREG)); const bool data_range = dataregcont >= TDate(get(F_DATAINIREG)) && dataregcont <= TDate(get(F_DATAENDREG));
if (filter_elab.blank() && forn_code != 0 // Filtro sui non associati if (filter_elab.blank() && forn_code != 0 // Filtro sui non associati
|| filter_elab == FILTER_ASS && (forn_code == 0 || forn_code == -16) && !is_contab // Filtro sui associati e non contab. || filter_elab == FILTER_ASS && (forn_code == 0 || forn_code == -16 || forn_code == 2) && !is_contab // Filtro sui associati e non contab.
|| filter_elab == FILTER_CONT && forn_code == 0 && is_contab && data_range // Filtro solo contabilizzati e data || filter_elab == FILTER_CONT && forn_code == 0 && is_contab && data_range // Filtro solo contabilizzati e data
|| filter_elab == FILTER_ALL) // Tutte || filter_elab == FILTER_ALL) // Tutte
{ {

View File

@ -4,6 +4,7 @@
#include <tsdb.h> #include <tsdb.h>
#include <utility.h> #include <utility.h>
#include <config.h> #include <config.h>
#include <memory>
#include "../ve/velib05.h" #include "../ve/velib05.h"
#include "../fe/felib.h" #include "../fe/felib.h"