| | |
| | | { |
| | | //如果是批量打印 |
| | | string orderIdStr = Request["orderId"]; |
| | | this.hideOrderId.Value = orderIdStr; |
| | | |
| | | |
| | | //如果是只打印一张 |
| | | string PlanOrderidStr = Request["PlanOrderid"]; |
| | |
| | | var coreCmsPlanOrders = new List<CoreCmsPlanOrder>(); |
| | | if (!string.IsNullOrEmpty(orderIdStr)) |
| | | { |
| | | var ssss = bll_CoreCmsPlanOrderBLL.GetModelByorderid(orderIdStr.ToInt32().Value); |
| | | orderIdStr = orderIdStr.Substring(1); |
| | | this.hideOrderId.Value = orderIdStr; |
| | | var ssss = bll_CoreCmsPlanOrderBLL.GetModelByids(orderIdStr); |
| | | coreCmsPlanOrders = ssss.ToList(); |
| | | orderkeyid = orderIdStr.ToInt32().Value; |
| | | orderkeyid = coreCmsPlanOrders[0].orderkeyid.Value; |
| | | } |
| | | else if (!string.IsNullOrEmpty(PlanOrderidStr)) |
| | | { |