using System;
using System.Collections.Generic;
using System.Text;
namespace DAL
{
public class Cls_S_Sc_WorkBillAutoSortBill : Cls_S_Xt_BaseBill
{
//
public Cls_S_Sc_WorkBillAutoSortBill()
{
base.ViewName = "h_v_Sc_WorkBillAutoSortBillList_Source";
base.mvarReportTitle = "排程派工单";
base.mvarItemKey = "3749";
base.sCondtion = " and HRelationQty<本日计划数 and HDeleteMan='' ";
base.sOrderSql = " order by 日期,hsubid";
base.sKeyCol = "部门";
base.ViewName2 = "h_v_Sc_WorkBillAutoSortBillList_Source";
base.mvarReportTitle2 = "排程派工单";
base.mvarItemKey2 = "3749";
base.sCondtion2 = " and HRelationQty<本日计划数 ";
base.sOrderSql2 = " order by 日期,hsubid";
base.sKeyCol2 = "部门";
}
//
///
/// 刷新源单
///
///
///
public override bool Refresh(string sWhere)
{
return base.Refresh(sWhere);
}
///
/// 刷新历史源单
///
///
///
public override bool Refresh2(string sWhere)
{
return base.Refresh2(sWhere);
}
}
}