zzr99
2022-08-22 d7fea8884bbad8d34bda41ff8e05873cebc3b7f1
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_ICMOSortBill : Cls_S_Xt_BaseBill
    {
 
        //
        public Cls_S_Sc_ICMOSortBill()
        { 
            base.ViewName = "h_v_Sc_ICMOSortBillHisList_Source";
            base.mvarReportTitle = "生产派工单";
            base.mvarItemKey = "3708";
            base.sCondtion = "  and HRelationQty<本日计划数 and HDeleteMan='' ";
            base.sOrderSql = " order by 日期,hsubid";
            base.sKeyCol = "部门";
 
            base.ViewName2 = "h_v_Sc_ICMOSortBillHisList_Source";
            base.mvarReportTitle2 = "生产派工单";
            base.mvarItemKey2 = "3708";
            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);
        }
        
    }
}