|
|
@ -1,4 +1,4 @@
|
|
|
|
@* @model DS.WMS.Core.Op.Entity.MailTemplateModel<DS.WMS.Core.TaskPlat.Dtos.TaskPOLContainerNotPickUpShowDto> *@
|
|
|
|
@model DS.WMS.Core.Op.Entity.MailTemplateModel<DS.WMS.Core.TaskPlat.Dtos.TaskCutDateChangeShowDto>
|
|
|
|
@{
|
|
|
|
@{
|
|
|
|
var item = Model.Primary;
|
|
|
|
var item = Model.Primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -25,9 +25,11 @@
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<p>Please kindly note SI/Voucher/CY cut-off change of ALS @item.Vessel/@item.Voyno, bookings were arranged below:</p>
|
|
|
|
<p>Please kindly note SI/Voucher/CY cut-off change of @item.Vessel/@item.Voyno, bookings were arranged below:</p>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
@if (Model.Primary.PortloadArea == "SOUTH_PORT")
|
|
|
|
|
|
|
|
{
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<table id="show-table" border="1" cellpadding="8" cellspacing="0" width="100%" align="left" style="border-collapse: collapse;border-color: #ebeef5;font-size: 12px;font-family: Arial;">
|
|
|
|
<table id="show-table" border="1" cellpadding="8" cellspacing="0" width="100%" align="left" style="border-collapse: collapse;border-color: #ebeef5;font-size: 12px;font-family: Arial;">
|
|
|
@ -38,20 +40,60 @@
|
|
|
|
<th style="text-align: left;">ETB</th>
|
|
|
|
<th style="text-align: left;">ETB</th>
|
|
|
|
<th style="text-align: left;">ETD</th>
|
|
|
|
<th style="text-align: left;">ETD</th>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
|
|
<td>@item.MBLNo</td>
|
|
|
|
|
|
|
|
<td>@item.ContaNo</td>
|
|
|
|
|
|
|
|
<td>@item.LoadPort</td>
|
|
|
|
|
|
|
|
<td>@(item.ETB.HasValue ? item.ETB.Value.ToString("yyyy-MM-dd HH:mm") : "")</td>
|
|
|
|
|
|
|
|
<td>@(item.ETD.HasValue ? item.ETD.Value.ToString("yyyy-MM-dd HH:mm") : "")</td>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<p class="south_port">Reason: #Reason#</p>
|
|
|
|
<p class="south_port">Reason: @item.Reason</p>
|
|
|
|
<p class="south_port">New SI cut-off: #SICutDate#</p>
|
|
|
|
<p class="south_port">New SI cut-off: @(item.SICutDate.HasValue ? item.SICutDate.Value.ToString("yyyy-MM-dd HH:mm") : "")</p>
|
|
|
|
<p class="south_port">New VGM Submission Deadline: #VGMCutDate#</p>
|
|
|
|
<p class="south_port">New VGM Submission Deadline: @(item.VGMCutoffTime.HasValue ? item.VGMCutoffTime.Value.ToString("yyyy-MM-dd HH:mm") : "")</p>
|
|
|
|
<p class="south_port">New Closing Time of CY cut-off: #CYCutDate#</p>
|
|
|
|
<p class="south_port">New Closing Time of CY cut-off: @(item.CYCutoffTime.HasValue ? item.CYCutoffTime.Value.ToString("yyyy-MM-dd HH:mm") : "")</p>
|
|
|
|
<p class="south_port">New Closing Time of Voucher cut: #VoucherCutDate#</p>
|
|
|
|
<p class="south_port">New Closing Time of Voucher cut: @(item.VoucherCutoffTime.HasValue ? item.VoucherCutoffTime.Value.ToString("yyyy-MM-dd HH:mm") : "")</p>
|
|
|
|
<p class="south_port">New CY Open Date: #CYOpenDate#</p>
|
|
|
|
<p class="south_port">New CY Open Date: @(item.CYOpenDate.HasValue ? item.CYOpenDate.Value.ToString("yyyy-MM-dd HH:mm") : "")</p>
|
|
|
|
<p><font style="color: #f70f0f; font-weight: 500;">请注意,以上开仓日期仅供参考,为避免产生额外费用,请参考码头网站信息、约定免费时间或其他标准协议时间,并按相应时间提箱、还柜.</font></p>
|
|
|
|
<p><font style="color: #f70f0f; font-weight: 500;">请注意,以上开仓日期仅供参考,为避免产生额外费用,请参考码头网站信息、约定免费时间或其他标准协议时间,并按相应时间提箱、还柜.</font></p>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
|
|
<td>
|
|
|
|
|
|
|
|
<table id="show-table" border="1" cellpadding="8" cellspacing="0" width="100%" align="left" style="border-collapse: collapse;border-color: #ebeef5;font-size: 12px;font-family: Arial;">
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
|
|
<th style="text-align: left;">Shipment Number</th>
|
|
|
|
|
|
|
|
<th style="text-align: left;">Vessel - voyage</th>
|
|
|
|
|
|
|
|
<th style="text-align: left;">样单截止时间 SI Cut Off</th>
|
|
|
|
|
|
|
|
<th style="text-align: left;">开港时间 CY Open</th>
|
|
|
|
|
|
|
|
<th style="text-align: left;">截港时间 CY cut off</th>
|
|
|
|
|
|
|
|
<th style="text-align: left;">舱单-入港清单截止时间</th>
|
|
|
|
|
|
|
|
<th style="text-align: left;">MDGF提交截止时间 - 危险品货物</th>
|
|
|
|
|
|
|
|
<th style="text-align: left;">船代VGM截止时间</th>
|
|
|
|
|
|
|
|
<th style="text-align: left;">海关放行截止时间(Customs Clearance Deadline)</th>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
|
|
<td>@item.MBLNo</td>
|
|
|
|
|
|
|
|
<td>@item.Vessel/@item.VoyNo</td>
|
|
|
|
|
|
|
|
<td>@(item.SICutDate.HasValue ? item.SICutDate.Value.ToString("yyyy-MM-dd HH:mm") : item.SICutDateTxt)</td>
|
|
|
|
|
|
|
|
<td>@(item.CYOpenDate.HasValue ? item.CYOpenDate.Value.ToString("yyyy-MM-dd HH:mm") : item.CYOpenDateTxt)</td>
|
|
|
|
|
|
|
|
<td>@(item.CYCutoffTime.HasValue ? item.CYCutoffTime.Value.ToString("yyyy-MM-dd HH:mm") : item.CYCutoffTimeTxt)</td>
|
|
|
|
|
|
|
|
<td>@(item.ManifestCutDate.HasValue ? item.ManifestCutDate.Value.ToString("yyyy-MM-dd HH:mm") : item.ManifestCutDateTxt)</td>
|
|
|
|
|
|
|
|
<td>@(item.MDGFCutDate.HasValue ? item.MDGFCutDate.Value.ToString("yyyy-MM-dd HH:mm") : item.MDGFCutDateTxt)</td>
|
|
|
|
|
|
|
|
<td>@(item.VGMCutoffTime.HasValue ? item.VGMCutoffTime.Value.ToString("yyyy-MM-dd HH:mm") : item.VGMCutoffTimeTxt)</td>
|
|
|
|
|
|
|
|
<td>@(item.ClosingDate.HasValue ? item.ClosingDate.Value.ToString("yyyy-MM-dd HH:mm") : item.ClosingDateTxt)</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
}
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<p>对于出口至埃及或加蓬但由非MSK船舶承运:</p>
|
|
|
|
<p>对于出口至埃及或加蓬但由非MSK船舶承运:</p>
|
|
|
|