修改查询抽屉数,由原来ChannelStock改为从ChannelList表查询
This commit is contained in:
parent
b48f062e32
commit
d61d6e9c13
|
@ -453,7 +453,7 @@ namespace DM_Weight.ViewModels
|
||||||
|
|
||||||
public void FindDrawerCount()
|
public void FindDrawerCount()
|
||||||
{
|
{
|
||||||
int count = SqlSugarHelper.Db.Queryable<ChannelStock>().Where(cs => cs.DrawerType != 3)
|
int count = SqlSugarHelper.Db.Queryable<ChannelList>().Where(cs => cs.DrawerType != 3)
|
||||||
.Where(cs => cs.MachineId.Equals(ConfigurationManager.AppSettings["machineId"] ?? "DM1")).GroupBy(cs => cs.DrawerNo).Select(cs => SqlFunc.AggregateCount(cs.DrawerNo)).Count();
|
.Where(cs => cs.MachineId.Equals(ConfigurationManager.AppSettings["machineId"] ?? "DM1")).GroupBy(cs => cs.DrawerNo).Select(cs => SqlFunc.AggregateCount(cs.DrawerNo)).Count();
|
||||||
Is8Drawer = count < 9;
|
Is8Drawer = count < 9;
|
||||||
Is16Drawer = count >= 16;
|
Is16Drawer = count >= 16;
|
||||||
|
|
|
@ -330,7 +330,7 @@ namespace DM_Weight.ViewModels
|
||||||
|
|
||||||
public void FindDrawerCount()
|
public void FindDrawerCount()
|
||||||
{
|
{
|
||||||
int count = SqlSugarHelper.Db.Queryable<ChannelStock>().Where(cs => cs.DrawerType != 3)
|
int count = SqlSugarHelper.Db.Queryable<ChannelList>().Where(cs => cs.DrawerType != 3)
|
||||||
.Where(cs => cs.MachineId.Equals(ConfigurationManager.AppSettings["machineId"] ?? "DM1")).GroupBy(cs => cs.DrawerNo).Select(cs => SqlFunc.AggregateCount(cs.DrawerNo)).Count();
|
.Where(cs => cs.MachineId.Equals(ConfigurationManager.AppSettings["machineId"] ?? "DM1")).GroupBy(cs => cs.DrawerNo).Select(cs => SqlFunc.AggregateCount(cs.DrawerNo)).Count();
|
||||||
Is8Drawer = count < 9;
|
Is8Drawer = count < 9;
|
||||||
Is16Drawer = count >= 16;
|
Is16Drawer = count >= 16;
|
||||||
|
|
|
@ -280,7 +280,8 @@ namespace DM_Weight.ViewModels
|
||||||
|
|
||||||
public void FindDrawerCount()
|
public void FindDrawerCount()
|
||||||
{
|
{
|
||||||
int count = SqlSugarHelper.Db.Queryable<ChannelStock>().Where(cs => cs.DrawerType != 3)
|
//int count = SqlSugarHelper.Db.Queryable<ChannelStock>().Where(cs => cs.DrawerType != 3)
|
||||||
|
int count = SqlSugarHelper.Db.Queryable<ChannelList>().Where(cs => cs.DrawerType != 3)
|
||||||
.Where(cs => cs.MachineId.Equals(ConfigurationManager.AppSettings["machineId"] ?? "DM1")).GroupBy(cs => cs.DrawerNo).Select(cs => SqlFunc.AggregateCount(cs.DrawerNo)).Count();
|
.Where(cs => cs.MachineId.Equals(ConfigurationManager.AppSettings["machineId"] ?? "DM1")).GroupBy(cs => cs.DrawerNo).Select(cs => SqlFunc.AggregateCount(cs.DrawerNo)).Count();
|
||||||
Is8Drawer = count < 9;
|
Is8Drawer = count < 9;
|
||||||
Is16Drawer = count >= 16;
|
Is16Drawer = count >= 16;
|
||||||
|
|
|
@ -237,7 +237,7 @@ namespace DM_Weight.ViewModels
|
||||||
|
|
||||||
public void FindDrawerCount()
|
public void FindDrawerCount()
|
||||||
{
|
{
|
||||||
int count = SqlSugarHelper.Db.Queryable<ChannelStock>().Where(cs => cs.DrawerType != 3)
|
int count = SqlSugarHelper.Db.Queryable<ChannelList>().Where(cs => cs.DrawerType != 3)
|
||||||
.Where(cs => cs.MachineId.Equals(ConfigurationManager.AppSettings["machineId"] ?? "DM1")).GroupBy(cs => cs.DrawerNo).Select(cs => SqlFunc.AggregateCount(cs.DrawerNo)).Count();
|
.Where(cs => cs.MachineId.Equals(ConfigurationManager.AppSettings["machineId"] ?? "DM1")).GroupBy(cs => cs.DrawerNo).Select(cs => SqlFunc.AggregateCount(cs.DrawerNo)).Count();
|
||||||
|
|
||||||
Is16Drawer = count == 16;
|
Is16Drawer = count == 16;
|
||||||
|
|
Loading…
Reference in New Issue