|
|
@@ -99,6 +99,14 @@ namespace Dongke.IBOSS.PRD.Client.PCModule
|
|
|
set { _userCode = value; }
|
|
|
}
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// 编辑时账务日期
|
|
|
+ /// </summary>
|
|
|
+ public DateTime? AccountDate
|
|
|
+ {
|
|
|
+ get;
|
|
|
+ set;
|
|
|
+ }
|
|
|
#endregion
|
|
|
|
|
|
#region 构造函数
|
|
|
@@ -150,6 +158,10 @@ namespace Dongke.IBOSS.PRD.Client.PCModule
|
|
|
this.dkUserInfo.UserName = this._userName;
|
|
|
this.dkUserInfo.UserCode = this._userCode;
|
|
|
BindUserJobs();
|
|
|
+ if (this.AccountDate.HasValue)
|
|
|
+ {
|
|
|
+ this.dtpAccountDate.Value = this.AccountDate.Value;
|
|
|
+ }
|
|
|
DataSet result = (DataSet)DoAsync(() =>
|
|
|
{
|
|
|
return PCModuleProxy.Service.SearchClassesDetail(this._classesSettingID);
|