yangle
2023-05-24 b129762a4bb5ec2cde5edf16bc9cbda57c73587d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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 = "部门";
 
        }
        //
 
        /// <summary>
        /// 刷新源单
        /// </summary>
        /// <param name="sWhere"></param>
        /// <returns></returns>
        public override bool Refresh(string sWhere)
        {
            return base.Refresh(sWhere);
        }
 
        /// <summary>
        /// 刷新历史源单
        /// </summary>
        /// <param name="sWhere"></param>
        /// <returns></returns>
        public override bool Refresh2(string sWhere)
        {
            return base.Refresh2(sWhere);
        }
        
    }
}