Exemple #1
0
 /// <summary>
 /// 单据打印构造函数
 /// </summary>
 /// <param name="docTypeID">文档类型ID</param>
 /// <param name="depotID">仓库ID</param>
 /// <param name="docState">文档状态</param>
 /// <param name="docMaker">文档开出人</param>
 /// <param name="docMakeTimeSelected">是否选择文档开出时间搜索条件</param>
 /// <param name="docMakeTimeValue">开出时间值</param>
 /// <param name="docAuditer">文档审核人</param>
 /// <param name="docAuditTimeValue">审核时间值</param>
 /// <param name="docAuditTimeSelected">是否选择文档审核时间搜索条件</param>
 /// <param name="docPrintType">文档打印类型</param>
 public DocPrint(int docTypeID, int depotID, string docState, string docMaker, string docMakeTimeSelected, string docMakeTimeValue, string docAuditer, string docAuditTimeValue, string docAuditTimeSelected, DocPrintTypeList docPrintType)
 {
     this._docTypeID            = docTypeID;
     this._depotID              = depotID;
     this._docState             = docState;
     this._docMaker             = docMaker;
     this._docMakeTimeSelected  = docMakeTimeSelected;
     this._docMakeTimeValue     = docMakeTimeValue;
     this._docAuditer           = docAuditer;
     this._docAuditTimeSelected = docAuditTimeSelected;
     this._docAuditTimeValue    = docAuditTimeValue;
     this._docPrintType         = docPrintType;
 }
Exemple #2
0
        private string _docAuditTimeValue;      //审核时间值


        #region DocPrint构造函数
        /// <summary>
        /// 单据打印构造函数
        /// </summary>
        public DocPrint()
        {
            this._docTypeID            = -1;
            this._depotID              = -1;
            this._docState             = "";
            this._docMaker             = "";
            this._docMakeTimeSelected  = "-1";
            this._docMakeTimeValue     = "";
            this._docAuditer           = "";
            this._docAuditTimeSelected = "-1";
            this._docAuditTimeValue    = "";
            this._docPrintType         = DocPrintTypeList.None;
        }