public InProcessLocationMgr(IInProcessLocationDao entityDao,
     IInProcessLocationDetailMgr inProcessLocationDetailMgr,
     INumberControlMgr numberControlMgr,
     ILocationMgr locationMgr,
     IHuMgr huMgr, IUserMgr userMgr,
     IInProcessLocationTrackMgr inProcessLocationTrackMgr,
     IShipAddressMgr shipAddressMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IInspectOrderMgr inspectOrderMgr,
     ICriteriaMgr criteriaMgr,
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IOrderDetailMgr orderDetailMgr,
     IFlowMgr flowMgr)
     : base(entityDao)
 {
     this.inProcessLocationDetailMgr = inProcessLocationDetailMgr;
     this.numberControlMgr = numberControlMgr;
     this.locationMgr = locationMgr;
     this.huMgr = huMgr;
     this.userMgr = userMgr;
     this.inProcessLocationTrackMgr = inProcessLocationTrackMgr;
     this.shipAddressMgr = shipAddressMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.inspectOrderMgr = inspectOrderMgr;
     this.criteriaMgr = criteriaMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.orderDetailMgr = orderDetailMgr;
     this.flowMgr = flowMgr;
 }
 public SupplierInboundMgr(ISupplierMgr supplierMgr,
     IUserMgr userMgr,
     IShipAddressMgr shipAddressMgr,
     IBillAddressMgr billAddressMgr,
     IPartyMgr partyMgr,
     IDssImportHistoryMgr dssImportHistoryMgr,
     IGenericMgr genericMgr)
     : base(dssImportHistoryMgr, genericMgr)
 {
     this.supplierMgr = supplierMgr;
     this.userMgr = userMgr;
     this.shipAddressMgr = shipAddressMgr;
     this.billAddressMgr = billAddressMgr;
     this.partyMgr = partyMgr;
 }
 public SupplierInboundMgr(ISupplierMgr supplierMgr,
                           IUserMgr userMgr,
                           IShipAddressMgr shipAddressMgr,
                           IBillAddressMgr billAddressMgr,
                           IPartyMgr partyMgr,
                           IDssImportHistoryMgr dssImportHistoryMgr,
                           IGenericMgr genericMgr)
     : base(dssImportHistoryMgr, genericMgr)
 {
     this.supplierMgr    = supplierMgr;
     this.userMgr        = userMgr;
     this.shipAddressMgr = shipAddressMgr;
     this.billAddressMgr = billAddressMgr;
     this.partyMgr       = partyMgr;
 }
Example #4
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;
        }
Example #5
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;
        }