|
|
@ -35,6 +35,7 @@ namespace BBWY.Client.ViewModels |
|
|
|
private int orderCount; |
|
|
|
private OrderState? orderState; |
|
|
|
private string searchSku; |
|
|
|
private string searchProductId; |
|
|
|
private string searchProductNo; |
|
|
|
private string searchContactName; |
|
|
|
private string searchWaybill; |
|
|
@ -64,6 +65,7 @@ namespace BBWY.Client.ViewModels |
|
|
|
public OrderState? OrderState { get => orderState; private set { Set(ref orderState, value); } } |
|
|
|
|
|
|
|
public string SearchSku { get => searchSku; set { Set(ref searchSku, value); } } |
|
|
|
public string SearchProductId { get => searchProductId; set { Set(ref searchProductId, value); } } |
|
|
|
public string SearchProductNo { get => searchProductNo; set { Set(ref searchProductNo, value); } } |
|
|
|
public string SearchContactName { get => searchContactName; set { Set(ref searchContactName, value); } } |
|
|
|
public string SearchWaybill { get => searchWaybill; set { Set(ref searchWaybill, value); } } |
|
|
@ -169,11 +171,12 @@ namespace BBWY.Client.ViewModels |
|
|
|
private void InitSearchParam() |
|
|
|
{ |
|
|
|
this.OrderState = null; |
|
|
|
SearchOrderId = String.Empty; |
|
|
|
SearchContactName = String.Empty; |
|
|
|
SearchProductNo = String.Empty; |
|
|
|
SearchSku = String.Empty; |
|
|
|
SearchWaybill = String.Empty; |
|
|
|
SearchOrderId = string.Empty; |
|
|
|
SearchContactName = string.Empty; |
|
|
|
SearchProductNo = string.Empty; |
|
|
|
SearchSku = string.Empty; |
|
|
|
SearchProductId = string.Empty; |
|
|
|
SearchWaybill = string.Empty; |
|
|
|
EndDate = DateTime.Now; |
|
|
|
StartDate = DateTime.Now.Date.AddDays(-6); |
|
|
|
PageIndex = 1; |
|
|
@ -252,6 +255,7 @@ namespace BBWY.Client.ViewModels |
|
|
|
EndDate, |
|
|
|
OrderState, |
|
|
|
SearchSku, |
|
|
|
SearchProductId, |
|
|
|
SearchProductNo, |
|
|
|
SearchWaybill, |
|
|
|
SearchContactName, |
|
|
|