| | |
| | | |
| | | |
| | | |
| | | |
| | | string orderids = Request["SellerOrderId"] == null ? "" : Request["SellerOrderId"]; |
| | | |
| | | |
| | | |
| | |
| | | SetParamValue(searchParam, 14, ""); |
| | | SetParamValue(searchParam, 15, ""); |
| | | SetParamValue(searchParam, 16, ""); |
| | | SetParamValue(searchParam, 18, (CurrentUser.StaffId > 0 ? 1 : 0)); |
| | | SetParamValue(searchParam, 18, 0); |
| | | SetParamValue(searchParam, 19, CurrentUser.TrueMemberId); |
| | | SetParamValue(searchParam, 20, CurrentUser.StaffId); |
| | | SetParamValue(searchParam, 21, CurrentUser.TrueName); |
| | |
| | | SetParamValue(searchParam, 23, ""); |
| | | SetParamValue(searchParam, 24, ""); |
| | | SetParamValue(searchParam, 25, ""); |
| | | SetParamValue(searchParam, 26, KaipiaoshenqingId.ToGuid2()); |
| | | if (string.IsNullOrEmpty(KaipiaoshenqingId)) |
| | | { |
| | | SetParamValue(searchParam, 26, ""); |
| | | SetParamValue(searchParam, 29, orderids); |
| | | |
| | | } |
| | | else |
| | | { |
| | | SetParamValue(searchParam, 26, KaipiaoshenqingId.ToGuid2()); |
| | | SetParamValue(searchParam, 29, ""); |
| | | } |
| | | |
| | | SearchParam = searchParam; |
| | | |
| | | |
| | |
| | | rptOrder.DataSource = result; |
| | | rptOrder.DataBind(); |
| | | |
| | | |
| | | this.Spanjineheji.InnerText = string.Format("{0:F2}", result.Sum(x => x.SumPrice)); |
| | | this.Spanyishou.InnerText = string.Format("{0:F2}", result.Sum(x => x.TradingSingle.PayedMoney)); |
| | | this.Spanweishou.InnerText = string.Format("{0:F2}", result.Sum(x => x.UnPayedMoney)); |
| | | |
| | | |
| | | |
| | | return true; |
| | | } |
| | | |