c52f382ec2
Chore: Settle Choices form greatly simplified. Feature: Modifiers are now cached.
106 lines
3.6 KiB
C#
106 lines
3.6 KiB
C#
using NHibernate;
|
|
using Tanshu.Accounts.Entities;
|
|
using System.Linq;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq.Expressions;
|
|
using System.Configuration;
|
|
using Tanshu.Accounts.Entities.Auth;
|
|
|
|
namespace Tanshu.Accounts.Repository
|
|
{
|
|
public class Cache
|
|
{
|
|
private static IList<ProductGroup> cache = null;
|
|
private static Dictionary<int, PrintLocation> locations = new Dictionary<int, PrintLocation>();
|
|
private static Dictionary<Guid, IList<Modifier>> modifiers = new Dictionary<Guid, IList<Modifier>>();
|
|
private static string location = ConfigurationManager.AppSettings["Location"].ToLowerInvariant();
|
|
|
|
private static IList<Role> roles = null;
|
|
|
|
private static bool _log = false;
|
|
public static IList<ProductGroup> ProductGroups()
|
|
{
|
|
if (cache == null)
|
|
{
|
|
using (var bi = new ProductGroupBI())
|
|
{
|
|
var list = bi.SaleList();
|
|
foreach (var item in list)
|
|
{
|
|
NHibernateUtil.Initialize(item.Products);
|
|
}
|
|
cache = list;
|
|
}
|
|
}
|
|
return cache;
|
|
}
|
|
public static PrintLocation BasePrinter
|
|
{
|
|
get
|
|
{
|
|
if (!locations.ContainsKey(location.GetHashCode()))
|
|
{
|
|
using (var bi = new PrintLocationBI())
|
|
{
|
|
var loc = bi.Get(x => x.Location == location && x.ProductGroup == null);
|
|
locations.Add(location.GetHashCode(), loc);
|
|
}
|
|
}
|
|
return locations[location.GetHashCode()];
|
|
}
|
|
}
|
|
public static PrintLocation KotPrinter(Guid productGroupID)
|
|
{
|
|
if (!locations.ContainsKey(location.GetHashCode() ^ productGroupID.GetHashCode()))
|
|
{
|
|
using (var bi = new PrintLocationBI())
|
|
{
|
|
var loc = bi.Get(x => x.Location == location && x.ProductGroup.ProductGroupID == productGroupID) ??
|
|
bi.Get(x => x.Location == location && x.ProductGroup == null);
|
|
locations.Add(location.GetHashCode() ^ productGroupID.GetHashCode(), loc);
|
|
}
|
|
}
|
|
return locations[location.GetHashCode() ^ productGroupID.GetHashCode()];
|
|
}
|
|
public static IList<Modifier> ProductGroupModifiers(Guid productGroupID)
|
|
{
|
|
if (!modifiers.ContainsKey(productGroupID))
|
|
{
|
|
using (var bi = new ProductGroupModifierBI())
|
|
{
|
|
var list = bi.List(productGroupID);
|
|
modifiers.Add(productGroupID, list);
|
|
}
|
|
}
|
|
return modifiers[productGroupID];
|
|
}
|
|
public static IList<Role> UserRoles(Guid userID)
|
|
{
|
|
if (roles == null)
|
|
{
|
|
using (var bi = new UserBI())
|
|
{
|
|
roles = bi.Roles(userID);
|
|
}
|
|
}
|
|
return roles;
|
|
}
|
|
public static void ClearRoles()
|
|
{
|
|
roles = null;
|
|
}
|
|
|
|
public static void Invalidate()
|
|
{
|
|
cache = null;
|
|
locations = new Dictionary<int, PrintLocation>();
|
|
modifiers = new Dictionary<Guid, IList<Modifier>>();
|
|
}
|
|
public static bool Log
|
|
{
|
|
get { return _log; }
|
|
set { _log = value; }
|
|
}
|
|
}
|
|
} |