示例#1
0
 public PickListMgr(IPickListDao entityDao,
                    IEntityPreferenceMgr entityPreferenceMgr,
                    INumberControlMgr numberControlMgr,
                    IPickListDetailMgr pickListDetailMgr,
                    IPickListResultMgr pickListResultMgr,
                    ILocationMgr locationMgr,
                    ILocationLotDetailMgr locationLotDetailMgr,
                    IOrderLocationTransactionMgr orderLocationTransactionMgr,
                    IUserMgr userMgr,
                    ILanguageMgr languageMgr,
                    ICriteriaMgr criteriaMgr,
                    ICodeMasterMgr codeMasterMgr,
                    IFlowMgr flowMgr)
     : base(entityDao)
 {
     this.entityPreferenceMgr         = entityPreferenceMgr;
     this.numberControlMgr            = numberControlMgr;
     this.pickListDetailMgr           = pickListDetailMgr;
     this.pickListResultMgr           = pickListResultMgr;
     this.locationMgr                 = locationMgr;
     this.locationLotDetailMgr        = locationLotDetailMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.userMgr       = userMgr;
     this.languageMgr   = languageMgr;
     this.criteriaMgr   = criteriaMgr;
     this.codeMasterMgr = codeMasterMgr;
     this.flowMgr       = flowMgr;
 }
示例#2
0
 public LanguageMgr(ICodeMasterMgr codeMasterMgr,
                    string languageFileFolder,
                    IEntityPreferenceMgr entityPreferenceMgr,
                    IUserMgr userMgr)
 {
     this.languageFileFolder = languageFileFolder;
     this.codeMasterMgr      = codeMasterMgr;
     this.LoadLanguage();
     this.entityPreferenceMgr = entityPreferenceMgr;
     this.userMgr             = userMgr;
 }
示例#3
0
 public LanguageMgr(ICodeMasterMgr codeMasterMgr,
     string languageFileFolder,
     IEntityPreferenceMgr entityPreferenceMgr,
     IUserMgr userMgr)
 {
     this.languageFileFolder = languageFileFolder;
     this.codeMasterMgr = codeMasterMgr;
     this.LoadLanguage();
     this.entityPreferenceMgr = entityPreferenceMgr;
     this.userMgr = userMgr;
 }
 public LocationTransactionMgr(ILocationTransactionDao entityDao,
     ICriteriaMgr criteriaMgr,
     ICodeMasterMgr codeMasterMgr,
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IItemMgr itemMgr)
     : base(entityDao)
 {
     this.criteriaMgr = criteriaMgr;
     this.codeMasterMgr = codeMasterMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.itemMgr = itemMgr;
 }
 public LocationTransactionMgr(ILocationTransactionDao entityDao,
                               ICriteriaMgr criteriaMgr,
                               ICodeMasterMgr codeMasterMgr,
                               IOrderLocationTransactionMgr orderLocationTransactionMgr,
                               IItemMgr itemMgr)
     : base(entityDao)
 {
     this.criteriaMgr   = criteriaMgr;
     this.codeMasterMgr = codeMasterMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.itemMgr = itemMgr;
 }
        public RepBelowBradeMgr(String reportTemplateFolder, IInspectOrderMgr inspectOrderMgr, ICodeMasterMgr codeMasterMgr)
        {
            this.reportTemplateFolder = reportTemplateFolder;
            this.inspectOrderMgr = inspectOrderMgr;
            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;
        }
示例#8
0
        public RepASNMgr(String reportTemplateFolder, ICodeMasterMgr codeMasterMgr,
            IInProcessLocationMgr inProcessLocationMgr, IItemReferenceMgr itemReferenceMgr, IShipAddressMgr shipAddressMgr)
        {
            this.reportTemplateFolder = reportTemplateFolder;
            this.codeMasterMgr = codeMasterMgr;
            this.inProcessLocationMgr = inProcessLocationMgr;
            this.itemReferenceMgr = itemReferenceMgr;
            this.shipAddressMgr = shipAddressMgr;

            //明细部分的行数
            this.pageDetailRowCount = 12;
            //列数   1起始
            this.columnCount = 17;
            //报表头的行数  1起始
            this.headRowCount = 9;
            //报表尾的行数  1起始
            this.bottomRowCount = 7;
        }
示例#9
0
        public RepASNMgr(String reportTemplateFolder, ICodeMasterMgr codeMasterMgr,
                         IInProcessLocationMgr inProcessLocationMgr, IItemReferenceMgr itemReferenceMgr, IShipAddressMgr shipAddressMgr)
        {
            this.reportTemplateFolder = reportTemplateFolder;
            this.codeMasterMgr        = codeMasterMgr;
            this.inProcessLocationMgr = inProcessLocationMgr;
            this.itemReferenceMgr     = itemReferenceMgr;
            this.shipAddressMgr       = shipAddressMgr;

            //明细部分的行数
            this.pageDetailRowCount = 12;
            //列数   1起始
            this.columnCount = 17;
            //报表头的行数  1起始
            this.headRowCount = 9;
            //报表尾的行数  1起始
            this.bottomRowCount = 7;
        }