@using System.Text @using ShwasherSys.Authorization.Permissions @using ShwasherSys.BasicInfo @using ShwasherSys.Models.Layout @{ /**/ ViewBag.ActiveMenu = PermissionNames.PagesSendGoodsOrderSendBillCreate; //The menu item will be active for this page. ViewBag.Title = "发货单创建"; List customerItems = ViewBag.CustomerList; List expressList = ViewBag.ExpressList; StringBuilder strOptionCustomer = new StringBuilder(); StringBuilder strOptionExpress= new StringBuilder(); strOptionCustomer.Append(""); strOptionExpress.Append(""); foreach (var c in customerItems) { strOptionCustomer.Append(string.Format("",c.Value,c.Value)); } foreach (var c in expressList) { strOptionExpress.Append(string.Format("",c.Id,c.ExpressName)); } } @section css{ }
@*@Html.Action("ToolMenu", "Layout", new { pageName = ViewBag.ActiveMenu })*@
查看选中明细
@**@
流水号 客户订单号 客户编号 产品编号 产品描述 零件号 产品名称 规格 表色 硬度 数量 单位 订单日期 送货日期 联系人
@section scripts { }