public RepUnqualifiedGoodsMgr(String reportTemplateFolder, IInspectResultMgr inspectResultMgr, ICodeMasterMgr codeMasterMgr)
        {
            this.reportTemplateFolder = reportTemplateFolder;
            this.inspectResultMgr = inspectResultMgr;
            this.codeMasterMgr = codeMasterMgr;

            //明细部分的行数
            this.pageDetailRowCount = 7;
            //列数  1起始
            this.columnCount = 9;
            //报表头的行数  1起始
            this.headRowCount = 10;
            //报表尾的行数  1起始
            this.bottomRowCount = 20;
        }
        public RepUnqualifiedGoodsMgr(String reportTemplateFolder, IInspectResultMgr inspectResultMgr, ICodeMasterMgr codeMasterMgr)
        {
            this.reportTemplateFolder = reportTemplateFolder;
            this.inspectResultMgr     = inspectResultMgr;
            this.codeMasterMgr        = codeMasterMgr;

            //明细部分的行数
            this.pageDetailRowCount = 7;
            //列数  1起始
            this.columnCount = 9;
            //报表头的行数  1起始
            this.headRowCount = 10;
            //报表尾的行数  1起始
            this.bottomRowCount = 20;
        }
Esempio n. 3
0
 public InspectOrderMgr(IInspectOrderDao entityDao,
                        INumberControlMgr numberControlMgr,
                        ILocationMgr locationMgr,
                        ILocationLotDetailMgr locationLotDetailMgr,
                        IInspectOrderDetailMgr inspectOrderDetailMgr,
                        IItemMgr itemMgr,
                        IUserMgr userMgr,
                        IBomDetailMgr bomDetailMgr,
                        IInspectResultMgr inspectResultMgr,
                        IFlowMgr flowMgr)
     : base(entityDao)
 {
     this.numberControlMgr      = numberControlMgr;
     this.locationMgr           = locationMgr;
     this.locationLotDetailMgr  = locationLotDetailMgr;
     this.inspectOrderDetailMgr = inspectOrderDetailMgr;
     this.itemMgr          = itemMgr;
     this.userMgr          = userMgr;
     this.bomDetailMgr     = bomDetailMgr;
     this.inspectResultMgr = inspectResultMgr;
     this.flowMgr          = flowMgr;
 }