DebugConfig
This commit is contained in:
@@ -11,7 +11,8 @@ namespace BeWo
|
|||||||
SimpleAutoLogin,
|
SimpleAutoLogin,
|
||||||
FeatureCustomerWohnhilfe,
|
FeatureCustomerWohnhilfe,
|
||||||
FeatureWohnheimWohneinheit,
|
FeatureWohnheimWohneinheit,
|
||||||
FeatureAuswertungenQuittierungsbelege
|
FeatureAuswertungenQuittierungsbelege,
|
||||||
|
FeatureDokumentenVorlage
|
||||||
}
|
}
|
||||||
|
|
||||||
public class DebugConfig
|
public class DebugConfig
|
||||||
@@ -23,7 +24,7 @@ namespace BeWo
|
|||||||
{
|
{
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
|
|
||||||
return _CurrentConfig ?? (_CurrentConfig = SimpleAutoLogin);
|
return _CurrentConfig ?? (_CurrentConfig = Feature_Dokumenten_Vorlage);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -77,5 +78,12 @@ namespace BeWo
|
|||||||
AutoLogin = true,
|
AutoLogin = true,
|
||||||
SelectView = UIContext.Report
|
SelectView = UIContext.Report
|
||||||
};
|
};
|
||||||
|
|
||||||
|
public static DebugConfig Feature_Dokumenten_Vorlage => new DebugConfig()
|
||||||
|
{
|
||||||
|
DebugConfigMode = DebugConfigMode.FeatureDokumentenVorlage,
|
||||||
|
AutoLogin = true,
|
||||||
|
SelectView = UIContext.Dokumente
|
||||||
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,7 +21,6 @@ namespace BeWo.Service.Vorlagen
|
|||||||
var alleVorlagentabellen = DAOFactory.GenericDAO.GetAllActive<Vorlagentabelle>();
|
var alleVorlagentabellen = DAOFactory.GenericDAO.GetAllActive<Vorlagentabelle>();
|
||||||
|
|
||||||
return MapperFactory.VorlagentabelleDC_Vorlagentabelle.MapToNewDCs(alleVorlagentabellen);
|
return MapperFactory.VorlagentabelleDC_Vorlagentabelle.MapToNewDCs(alleVorlagentabellen);
|
||||||
|
|
||||||
}
|
}
|
||||||
public static DokumentvorlageDC InsertTemplate(DokumentvorlageDC dc)
|
public static DokumentvorlageDC InsertTemplate(DokumentvorlageDC dc)
|
||||||
{
|
{
|
||||||
@@ -162,8 +161,6 @@ namespace BeWo.Service.Vorlagen
|
|||||||
sonstiges.Children.Add(datum);
|
sonstiges.Children.Add(datum);
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
liste.Add(personendaten);
|
liste.Add(personendaten);
|
||||||
liste.Add(adressdatenKlient);
|
liste.Add(adressdatenKlient);
|
||||||
//liste.Add(adressdatenOrganisation);
|
//liste.Add(adressdatenOrganisation);
|
||||||
|
|||||||
Reference in New Issue
Block a user