diff --git a/MP.SPEC/Components/ListDossiers.razor.cs b/MP.SPEC/Components/ListDossiers.razor.cs index 2da19533..d91907a0 100644 --- a/MP.SPEC/Components/ListDossiers.razor.cs +++ b/MP.SPEC/Components/ListDossiers.razor.cs @@ -76,6 +76,12 @@ namespace MP.SPEC.Components #endregion Public Methods + #region Protected Fields + + protected string selAzienda = "*"; + + #endregion Protected Fields + #region Protected Properties [Inject] @@ -219,7 +225,8 @@ namespace MP.SPEC.Components { ListGruppiFase = await MDService.ElencoGruppiFase(); ListStati = await MDService.AnagStatiComm(); - ListArticoli = await MDService.ArticoliGetSearch(100000, "BAGLIETTO", ""); + selAzienda = await MDService.tryGetConfig("AZIENDA"); + ListArticoli = await MDService.ArticoliGetSearch(100000, selAzienda, ""); ListMacchine = await MDService.MacchineGetAll(); await reloadData(true); } diff --git a/MP.SPEC/Components/SelFilterXDL.razor b/MP.SPEC/Components/SelFilterXDL.razor new file mode 100644 index 00000000..725429e9 --- /dev/null +++ b/MP.SPEC/Components/SelFilterXDL.razor @@ -0,0 +1,89 @@ + +