コード例 #1
0
 public ScanBarcodeMgr(ICriteriaMgr criteriaMgr,
     IStorageBinMgr storageBinMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IHuMgr huMgr,
     IFlowMgr flowMgr,
     IFlowDetailMgr flowDetailMgr,
     IPickListMgr pickListMgr,
     IPickListDetailMgr pickListDetailMgr,
     IPickListResultMgr pickListResultMgr,
     IUserMgr userMgr,
     IInProcessLocationMgr inProcessLocationMgr,
     IReceiptMgr receiptMgr,
     IOrderHeadMgr orderHeadMgr,
     IOrderDetailMgr orderDetailMgr,
     IOrderMgr orderMgr,
     ILocationMgr locationMgr,
     IItemMgr itemMgr,
     IUomMgr uomMgr,
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IEmployeeMgr employeeMgr,
     IEntityPreferenceMgr entityPreferenceMgr,
     IUomConversionMgr uomConversionMgr,
     INumberControlMgr numberControlMgr,
     ILanguageMgr languageMgr,
     IRepackMgr repackMgr,
     IInspectOrderMgr inspectOrderMgr,
     IInspectOrderDetailMgr inspectOrderDetailMgr,
     IProductLineInProcessLocationDetailMgr productLineInProcessLocationDetailMgr)
 {
     this.criteriaMgr = criteriaMgr;
     this.storageBinMgr = storageBinMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.huMgr = huMgr;
     this.flowMgr = flowMgr;
     this.flowDetailMgr = flowDetailMgr;
     this.pickListMgr = pickListMgr;
     this.pickListDetailMgr = pickListDetailMgr;
     this.pickListResultMgr = pickListResultMgr;
     this.userMgr = userMgr;
     this.inProcessLocationMgr = inProcessLocationMgr;
     this.receiptMgr = receiptMgr;
     this.orderHeadMgr = orderHeadMgr;
     this.orderDetailMgr = orderDetailMgr;
     this.orderMgr = orderMgr;
     this.locationMgr = locationMgr;
     this.itemMgr = itemMgr;
     this.uomMgr = uomMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.employeeMgr = employeeMgr;
     this.entityPreferenceMgr = entityPreferenceMgr;
     this.uomConversionMgr = uomConversionMgr;
     this.numberControlMgr = numberControlMgr;
     this.languageMgr = languageMgr;
     this.repackMgr = repackMgr;
     this.inspectOrderMgr = inspectOrderMgr;
     this.inspectOrderDetailMgr = inspectOrderDetailMgr;
     this.productLineInProcessLocationDetailMgr = productLineInProcessLocationDetailMgr;
 }
コード例 #2
0
        public RepReceiptNoteMgr(String reportTemplateFolder, IReceiptMgr receiptMgr)
        {
            this.reportTemplateFolder = reportTemplateFolder;
            this.receiptMgr = receiptMgr;

            //明细部分的行数
            this.pageDetailRowCount = 25;
            //列数   1起始
            this.columnCount = 10;
            //报表头的行数  1起始
            this.headRowCount = 11;
            //报表尾的行数  1起始
            this.bottomRowCount = 1;
        }
コード例 #3
0
        public RepReceiptNoteMgr(String reportTemplateFolder, IReceiptMgr receiptMgr)
        {
            this.reportTemplateFolder = reportTemplateFolder;
            this.receiptMgr           = receiptMgr;

            //明细部分的行数
            this.pageDetailRowCount = 25;
            //列数   1起始
            this.columnCount = 10;
            //报表头的行数  1起始
            this.headRowCount = 11;
            //报表尾的行数  1起始
            this.bottomRowCount = 1;
        }
コード例 #4
0
        public RepBillMarketMgr(String reportTemplateFolder, IBillMgr billMgr, IReceiptMgr receiptMgr, ICriteriaMgr criteriaMgr)
        {
            this.reportTemplateFolder = reportTemplateFolder;
            this.billMgr     = billMgr;
            this.receiptMgr  = receiptMgr;
            this.criteriaMgr = criteriaMgr;

            //明细部分的行数
            this.pageDetailRowCount = 32;
            //列数   1起始
            this.columnCount = 10;
            //报表头的行数  1起始
            this.headRowCount = 5;
            //报表尾的行数  1起始
            this.bottomRowCount = 1;
        }
コード例 #5
0
        public RepBillMarketMgr(String reportTemplateFolder, IBillMgr billMgr, IReceiptMgr receiptMgr,ICriteriaMgr criteriaMgr)
        {
            this.reportTemplateFolder = reportTemplateFolder;
            this.billMgr = billMgr;
            this.receiptMgr = receiptMgr;
            this.criteriaMgr = criteriaMgr;

            //明细部分的行数
            this.pageDetailRowCount = 32;
            //列数   1起始
            this.columnCount = 10;
            //报表头的行数  1起始
            this.headRowCount = 5;
            //报表尾的行数  1起始
            this.bottomRowCount = 1;
        }
コード例 #6
0
ファイル: PrintingMgr.cs プロジェクト: Novthirteen/yfkey-scms
 public PrintingMgr(ICriteriaMgr criteriaMgr,
     IReportMgr reportMgr,
     IPickListMgr pickListMgr,
      IOrderHeadMgr orderHeadMgr,
      IInspectOrderMgr inspectOrderMgr,
     IInProcessLocationMgr inProcessLocationMgr,
    IReceiptMgr receiptMgr,
     IReceiptDetailMgr receiptDetailMgr)
 {
     this.criteriaMgr = criteriaMgr;
     this.reportMgr = reportMgr;
     this.pickListMgr = pickListMgr;
     this.orderHeadMgr = orderHeadMgr;
     this.inspectOrderMgr = inspectOrderMgr;
     this.inProcessLocationMgr = inProcessLocationMgr;
     this.receiptMgr = receiptMgr;
     this.receiptDetailMgr = receiptDetailMgr;
 }
コード例 #7
0
ファイル: PrintingMgr.cs プロジェクト: Novthirteen/yfkey-scms
 public PrintingMgr(ICriteriaMgr criteriaMgr,
                    IReportMgr reportMgr,
                    IPickListMgr pickListMgr,
                    IOrderHeadMgr orderHeadMgr,
                    IInspectOrderMgr inspectOrderMgr,
                    IInProcessLocationMgr inProcessLocationMgr,
                    IReceiptMgr receiptMgr,
                    IReceiptDetailMgr receiptDetailMgr)
 {
     this.criteriaMgr          = criteriaMgr;
     this.reportMgr            = reportMgr;
     this.pickListMgr          = pickListMgr;
     this.orderHeadMgr         = orderHeadMgr;
     this.inspectOrderMgr      = inspectOrderMgr;
     this.inProcessLocationMgr = inProcessLocationMgr;
     this.receiptMgr           = receiptMgr;
     this.receiptDetailMgr     = receiptDetailMgr;
 }
コード例 #8
0
ファイル: ExecuteMgr.cs プロジェクト: Novthirteen/yfkey-scms
 public ExecuteMgr(
     ILanguageMgr languageMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IStorageBinMgr storageBinMgr,
     IInspectOrderDetailMgr inspectOrderDetailMgr,
     IHuMgr huMgr,
     IOrderMgr orderMgr,
     IEntityPreferenceMgr entityPreferenceMgr,
     IItemMgr itemMgr,
     IUomMgr uomMgr,
     ILocationMgr locationMgr,
     IFlowMgr flowMgr,
     IUserMgr userMgr,
     IReceiptMgr receiptMgr,
     IReceiptDetailMgr receiptDetailMgr,
     IReportMgr reportMgr,
     ISetDetailMgr setDetailMgr
     )
 {
     this.languageMgr = languageMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.storageBinMgr = storageBinMgr;
     this.inspectOrderDetailMgr = inspectOrderDetailMgr;
     this.huMgr = huMgr;
     this.orderMgr = orderMgr;
     this.entityPreferenceMgr = entityPreferenceMgr;
     this.itemMgr = itemMgr;
     this.uomMgr = uomMgr;
     this.locationMgr = locationMgr;
     this.flowMgr = flowMgr;
     this.userMgr = userMgr;
     this.receiptMgr = receiptMgr;
     this.receiptDetailMgr = receiptDetailMgr;
     this.reportMgr = reportMgr;
     this.setDetailMgr = setDetailMgr;
 }
コード例 #9
0
 public ExecuteMgr(
     ILanguageMgr languageMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IStorageBinMgr storageBinMgr,
     IInspectOrderDetailMgr inspectOrderDetailMgr,
     IHuMgr huMgr,
     IOrderMgr orderMgr,
     IEntityPreferenceMgr entityPreferenceMgr,
     IItemMgr itemMgr,
     IUomMgr uomMgr,
     ILocationMgr locationMgr,
     IFlowMgr flowMgr,
     IUserMgr userMgr,
     IReceiptMgr receiptMgr,
     IReceiptDetailMgr receiptDetailMgr,
     IReportMgr reportMgr,
     ISetDetailMgr setDetailMgr
     )
 {
     this.languageMgr           = languageMgr;
     this.locationLotDetailMgr  = locationLotDetailMgr;
     this.storageBinMgr         = storageBinMgr;
     this.inspectOrderDetailMgr = inspectOrderDetailMgr;
     this.huMgr               = huMgr;
     this.orderMgr            = orderMgr;
     this.entityPreferenceMgr = entityPreferenceMgr;
     this.itemMgr             = itemMgr;
     this.uomMgr              = uomMgr;
     this.locationMgr         = locationMgr;
     this.flowMgr             = flowMgr;
     this.userMgr             = userMgr;
     this.receiptMgr          = receiptMgr;
     this.receiptDetailMgr    = receiptDetailMgr;
     this.reportMgr           = reportMgr;
     this.setDetailMgr        = setDetailMgr;
 }
コード例 #10
0
ファイル: OrderMgr.cs プロジェクト: Novthirteen/yfkey-scms
 public OrderMgr(IUserMgr userMgr,
     IOrderHeadMgr orderHeadMgr,
     IOrderDetailMgr orderDetailMgr,
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IOrderOperationMgr orderOperationMgr,
     IEntityPreferenceMgr entityPreferenceMgr,
     IFlowMgr flowMgr,
     IFlowDetailMgr flowDetailMgr,
     INumberControlMgr numberControlMgr,
     IInProcessLocationMgr inProcessLocationMgr,
     IInProcessLocationDetailMgr inProcessLocationDetailMgr,
     IAutoOrderTrackMgr autoOrderTrackMgr,
     IReceiptMgr receiptMgr,
     IFlowBindingMgr flowBindingMgr,
     IUomConversionMgr uomConversionMgr,
     IItemKitMgr itemKitMgr,
     IWorkingHoursMgr workingHoursMgr,
     IOrderBindingMgr orderBindingMgr,
     ILocationMgr locationMgr,
     IPickListMgr pickListMgr,
     IPickListResultMgr pickListResultMgr,
     IShiftMgr shiftMgr,
     IOrderPlannedBackflushMgr orderPlannedBackflushMgr,
     IActingBillMgr actingBillMgr,
     IPlannedBillMgr plannedBillMgr,
     ICriteriaMgr criteriaMgr,
     IHuMgr huMgr,
     IPriceListDetailMgr priceListDetailMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IOrderTracerMgr orderTracerMgr,
     ITransportationActBillMgr transportationActBillMgr)
 {
     this.userMgr = userMgr;
     this.orderHeadMgr = orderHeadMgr;
     this.orderDetailMgr = orderDetailMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.orderOperationMgr = orderOperationMgr;
     this.entityPreferenceMgr = entityPreferenceMgr;
     this.flowMgr = flowMgr;
     this.flowDetailMgr = flowDetailMgr;
     this.numberControlMgr = numberControlMgr;
     this.inProcessLocationMgr = inProcessLocationMgr;
     this.inProcessLocationDetailMgr = inProcessLocationDetailMgr;
     this.autoOrderTrackMgr = autoOrderTrackMgr;
     this.receiptMgr = receiptMgr;
     this.flowBindingMgr = flowBindingMgr;
     this.uomConversionMgr = uomConversionMgr;
     this.itemKitMgr = itemKitMgr;
     this.workingHoursMgr = workingHoursMgr;
     this.orderBindingMgr = orderBindingMgr;
     this.locationMgr = locationMgr;
     this.pickListMgr = pickListMgr;
     this.pickListResultMgr = pickListResultMgr;
     this.shiftMgr = shiftMgr;
     this.orderPlannedBackflushMgr = orderPlannedBackflushMgr;
     this.actingBillMgr = actingBillMgr;
     this.plannedBillMgr = plannedBillMgr;
     this.criteriaMgr = criteriaMgr;
     this.huMgr = huMgr;
     this.priceListDetailMgr = priceListDetailMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.orderTracerMgr = orderTracerMgr;
     this.transportationActBillMgr = transportationActBillMgr;
 }