@using BookingJieFeng.Models @model OrderEditViewModel @{ /**/ var seleteItemsCARGO = new List(); seleteItemsCARGO.Add(new SelectListItem() { Value = "S", Text = "S普通货" }); seleteItemsCARGO.Add(new SelectListItem() { Value = "R", Text = "R冻柜" }); seleteItemsCARGO.Add(new SelectListItem() { Value = "D", Text = "D危险品" }); var seleteItemsHYWRW = new List(); seleteItemsHYWRW.Add(new SelectListItem() { Value = "1", Text = "是" }); seleteItemsHYWRW.Add(new SelectListItem() { Value = "0", Text = "否" }); var logList = ViewBag.LogList as List; }
1
@ViewBag.StaOrderSaveTime
2
@ViewBag.StaOrderSubmitTime
3
@ViewBag.StaOrderConfirmTime
4
@ViewBag.StaConfirmSaveTime
5
@ViewBag.StaConfirmSubmitTime
6
@ViewBag.StaConfirmConfirmTime
@Html.HiddenFor(m => m.ORDNO) @Html.HiddenFor(m => m.BSSTATUS) @Html.HiddenFor(m => m.MODIFYTIME)
@Html.DropDownListFor(m => m.CARGOID, seleteItemsCARGO, new { @class = "select form-control" })
@Html.TextBoxFor(m => m.SALECODE, new { @class = "form-control", autocomplete = "off" })
@if (ViewBag.RemainTimeClosing != null) {
@ViewBag.RemainTimeClosing
}
30 40 50
@Html.TextAreaFor(m => m.SHIPPER, new { @class = "form-control text-area-show-number", rows = "5", wrap = "off" })
    30 40 50
    @Html.TextAreaFor(m => m.CONSIGNEE, new { @class = "form-control text-area-show-number", rows = "5", wrap = "off" })
      30 40 50
      @Html.TextAreaFor(m => m.NOTIFYPARTY, new { @class = "form-control text-area-show-number", rows = "5", wrap = "off" })
        @Html.TextAreaFor(m => m.NOTIFYPARTY2, new { @class = "form-control text-area-show-number", rows = "5", wrap = "off" })
          @Html.TextBoxFor(m => m.PONO, new { @class = "form-control" })
          @Html.TextBoxFor(m => m.CONTRACTNO, new { @class = "form-control" })
          @Html.TextBoxFor(m => m.MBLNO, new { @class = "form-control" })
          @Html.TextBoxFor(m => m.CARRIER, new { @class = "form-control", autocomplete = "off" })
          @Html.TextBoxFor(m => m.ETD, new { @class = "form-control", autocomplete = "off" })
          @Html.TextBoxFor(m => m.VESSEL, new { @class = "form-control", autocomplete = "off" })
          @Html.TextBoxFor(m => m.VOYNO, new { @class = "form-control" })
          @Html.TextBoxFor(m => m.PORTLOADID, new { @class = "form-control", autocomplete = "off" })
          @Html.TextBoxFor(m => m.PORTLOAD, new { @class = "form-control" })
          @Html.TextBoxFor(m => m.PORTDISCHARGEID, new { @class = "form-control", autocomplete = "off" })
          @Html.TextBoxFor(m => m.PORTDISCHARGE, new { @class = "form-control" })
          @Html.TextBoxFor(m => m.DESTINATIONID, new { @class = "form-control", autocomplete = "off" })
          @Html.TextBoxFor(m => m.DESTINATION, new { @class = "form-control" })
          @Html.TextBoxFor(m => m.BLFRT, new { @class = "form-control", autocomplete = "off" })
          @Html.TextBoxFor(m => m.PREPARDAT, new { @class = "form-control", autocomplete = "off" })
          @Html.TextBoxFor(m => m.ISSUETYPE, new { @class = "form-control", autocomplete = "off" })
          @Html.TextBoxFor(m => m.SERVICE, new { @class = "form-control", autocomplete = "off" })
          @Html.TextBoxFor(m => m.CNTRTOTAL, new { @class = "form-control disable", @readonly = "readonly" })
          @Html.CheckBoxFor(m => m.ISCONTAINERSOC) SOC箱
          @Html.TextBoxFor(m => m.OVERFLOWDESCRIP, new { @class = "form-control", placeholder = "超限尺寸" })
          箱型 箱量
          @Html.TextAreaFor(m => m.MARKS, new { @class = "form-control height-sm", rows = "5" })
          @Html.TextBoxFor(m => m.HSCODE, new { @class = "form-control" })
          此处HS CODE不显示提单,如需显示请添加货描处
          @Html.TextAreaFor(m => m.DESCRIPTION, new { @class = "form-control height-lg", rows = "5" })
          @Html.TextBoxFor(m => m.PKGS, new { @class = "form-control" })
          @Html.TextBoxFor(m => m.KINDPKGS, new { @class = "form-control", autocomplete = "off" })
          @Html.TextBoxFor(m => m.KGS, new { @class = "form-control" })
          @Html.TextBoxFor(m => m.CBM, new { @class = "form-control" })
          @Html.TextBoxFor(m => m.TEMPSET, new { @class = "form-control" })
          @Html.TextBoxFor(m => m.REEFERF, new { @class = "form-control" })
          @Html.TextBoxFor(m => m.HUMIDITY, new { @class = "form-control" })
          @Html.TextBoxFor(m => m.DCLASS, new { @class = "form-control" })
          @Html.TextBoxFor(m => m.DUNNO, new { @class = "form-control" })
          @Html.TextBoxFor(m => m.FUWEI, new { @class = "form-control" })
          @Html.TextBoxFor(m => m.SHANDIAN, new { @class = "form-control" })
          @Html.DropDownListFor(m => m.HAIYANGWURANWU, seleteItemsHYWRW, new { @class = "select form-control" })
          @Html.TextAreaFor(m => m.EDIREMARK, new { @class = "form-control", rows = "5" })
          修改汇总
            @if (logList != null) { foreach (var item in logList) {
          • 修改人:@item.OpUserName 修改时间:@item.OpTime 展开 / 折叠内容 @if (item.ChangeList.Count == 0) { (未做任何修改) }
          • @if (item.ChangeList.Count > 0) { foreach (var chg in item.ChangeList) { } } else { }
            @chg.Title:@chg.SrcValue 改为   @chg.Title:@chg.DestValue
            未作任何更改
            } }
          @section styles { } @section scripts{ @if (Model.BSSTATUS != OrderStatus.Create.ToString()) { } }