29 lines
519 B
C#
29 lines
519 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Data;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using DeiNiu.wms.Data.Model;
|
|||
|
|
|||
|
namespace DeiNiu.wms.Logical
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
public class lCharts : lbase
|
|||
|
{
|
|||
|
|
|||
|
private WmsFlow wmsFlow = new WmsFlow();
|
|||
|
|
|||
|
public DataSet getDailyKanBanData()
|
|||
|
{
|
|||
|
return wmsFlow.getTodayKanban();
|
|||
|
}
|
|||
|
|
|||
|
public DataSet getErpOderData()
|
|||
|
{
|
|||
|
return new Erp_sale().getKanBanOrdersByState();
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|