|
|
|
@ -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.TaskBCTransferDto> *@
|
|
|
|
|
@{
|
|
|
|
|
var item = Model.Primary;
|
|
|
|
|
}
|
|
|
|
@ -18,42 +18,125 @@
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>
|
|
|
|
|
<table class="out-table" border="0" cellpadding="8" cellspacing="0" width="800" bgcolor="#FFFFFF" align="center" style="font-size: 12px;font-family: Arial;">
|
|
|
|
|
<table class="out-table" border="0" cellpadding="8" cellspacing="0" width="800" bgcolor="#FFFFFF" align="center">
|
|
|
|
|
<tr>
|
|
|
|
|
<td>
|
|
|
|
|
<p>尊敬的客户,</p>
|
|
|
|
|
<p>Dear Customer,</p>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>
|
|
|
|
|
<table class="base-table" border="1" cellpadding="8" cellspacing="0" width="100%" align="center" style="border-collapse: collapse;border-color: #ebeef5;font-size: 12px;font-family: Arial;">
|
|
|
|
|
<table class="base-table" border="1" cellpadding="8" cellspacing="0" width="100%" align="center" style="border-collapse: collapse;border-color: #ebeef5">
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="billno-label" width="120px;">船名/航次:</td>
|
|
|
|
|
<td class="billno-val">@item.Vessel/@item.Voyno</td>
|
|
|
|
|
<td class="billno-label" width="15%">提单号:</td>
|
|
|
|
|
<td class="billno-val" width="160">@item.MBLNo</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="billno-label" width="120px;">定舱号码:</td>
|
|
|
|
|
<td class="billno-val">@item.MBlNo</td>
|
|
|
|
|
<td class="takebillno-label" width="15%">提箱提单号:</td>
|
|
|
|
|
<td class="takebillno-val" width="160">@item.RealMBLNo</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="pol-label" width="15%">POL:</td>
|
|
|
|
|
<td class="pol-val" width="160">@item.OrigPlaceReceipt</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="pod-label" width="15%">POD:</td>
|
|
|
|
|
<td class="pod-val" width="160">@item.OrigPlaceDelivery</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="ctn-label" width="15%">箱型箱量:</td>
|
|
|
|
|
<td class="ctn-val" width="160">@item.CtnStat</td>
|
|
|
|
|
</tr>
|
|
|
|
|
@if (!string.IsNullOrWhiteSpace(@item.Vessel))
|
|
|
|
|
{
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="etd-label" width="15%">船名 变更为:</td>
|
|
|
|
|
<td class="etd-val" width="160">@item.Vessel</td>
|
|
|
|
|
</tr>
|
|
|
|
|
}
|
|
|
|
|
@if (!string.IsNullOrWhiteSpace(@item.VoyNo))
|
|
|
|
|
{
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="etd-label" width="15%">航次号 变更为:</td>
|
|
|
|
|
<td class="etd-val" width="160">@item.Vessel</td>
|
|
|
|
|
</tr>
|
|
|
|
|
}
|
|
|
|
|
@if (!string.IsNullOrWhiteSpace(@item.ETD))
|
|
|
|
|
{
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="etd-label" width="15%">ETD 变更为:</td>
|
|
|
|
|
<td class="etd-val" width="160">@item.ETD</td>
|
|
|
|
|
</tr>
|
|
|
|
|
}
|
|
|
|
|
@if (!string.IsNullOrWhiteSpace(@item.ETA))
|
|
|
|
|
{
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="eta-label" width="15%">ETA 变更为:</td>
|
|
|
|
|
<td class="eta-val" width="160">@item.ETA</td>
|
|
|
|
|
</tr>
|
|
|
|
|
}
|
|
|
|
|
@if (!string.IsNullOrWhiteSpace(@item.CustomSICutDate))
|
|
|
|
|
{
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="eta-label" width="15%">样单截止日期 变更为:</td>
|
|
|
|
|
<td class="eta-val" width="160">@item.CustomSICutDate</td>
|
|
|
|
|
</tr>
|
|
|
|
|
}
|
|
|
|
|
@if (!string.IsNullOrWhiteSpace(@item.CYCutoffTime))
|
|
|
|
|
{
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="eta-label" width="15%">截港时间 变更为:</td>
|
|
|
|
|
<td class="eta-val" width="160">@item.CYCutoffTime</td>
|
|
|
|
|
</tr>
|
|
|
|
|
}
|
|
|
|
|
@if (!string.IsNullOrWhiteSpace(@item.ManifestCutDate))
|
|
|
|
|
{
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="eta-label" width="15%">舱单截止时间 变更为:</td>
|
|
|
|
|
<td class="eta-val" width="160">@item.ManifestCutDate</td>
|
|
|
|
|
</tr>
|
|
|
|
|
}
|
|
|
|
|
@if (!string.IsNullOrWhiteSpace(@item.VGMCutoffTime))
|
|
|
|
|
{
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="eta-label" width="15%">截VGM时间 变更为:</td>
|
|
|
|
|
<td class="eta-val" width="160">@item.VGMCutoffTime</td>
|
|
|
|
|
</tr>
|
|
|
|
|
}
|
|
|
|
|
@if (!string.IsNullOrWhiteSpace(@item.MDGFCutDate))
|
|
|
|
|
{
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="eta-label" width="15%">MDGF提交截止时间 变更为:</td>
|
|
|
|
|
<td class="eta-val" width="160">@item.MDGFCutDate</td>
|
|
|
|
|
</tr>
|
|
|
|
|
}
|
|
|
|
|
@if (!string.IsNullOrWhiteSpace(@item.PlaceReceipt))
|
|
|
|
|
{
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="eta-label" width="15%">收货地 变更为:</td>
|
|
|
|
|
<td class="eta-val" width="160">@item.PlaceReceipt</td>
|
|
|
|
|
</tr>
|
|
|
|
|
}
|
|
|
|
|
@if (!string.IsNullOrWhiteSpace(@item.PlaceDelivery))
|
|
|
|
|
{
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="eta-label" width="15%">交货地 变更为:</td>
|
|
|
|
|
<td class="eta-val" width="160">@item.PlaceDelivery</td>
|
|
|
|
|
</tr>
|
|
|
|
|
}
|
|
|
|
|
</table>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr class="email-noreply">
|
|
|
|
|
<td>
|
|
|
|
|
<p class="dynamic-val"></p>
|
|
|
|
|
<p class="notice1-val">以上是贵司还未提柜记录的定舱,现已接近截箱(关)时间,请参考如下信息操作,否则您的订舱将在CY cut-off deadline取消:</p>
|
|
|
|
|
<p class="notice1-val">A. 推下一航次,请<在CY Closing - 1 天之前>提交更改</p>
|
|
|
|
|
<p class="notice1-val">B. <font style="color: #4051f0; font-weight: 500;">已提柜,且于马士基网站未查询到柜号,<font style="background-color: #f1de2f; font-weight: 500;">请立即联系 @Model.Sender.DisplayName(邮箱 @Model.Sender.MailAddress,电话 @Model.Sender.Phone)</font></font>告知柜号。若网站已有完整柜号且确认正常出运,请自行安排,无需再回复邮件,<font style="color: #f70f0f; font-weight: 500;">目前Maersk不接受未提供明确柜号而保留订舱的要求。</font></p>
|
|
|
|
|
<p class="notice1-val">
|
|
|
|
|
鉴于船舶配载方面的要求,Maersk将在配载前将所有没有提柜记录(以Maersk EDI记录为准)的定舱视为无效定舱,并统一在取消,因此,<font style="background-color: #5bcef1; font-weight: 500;">友情提醒:请尽快提柜并告知柜号,以免产生不必要的工作和费用。</font>
|
|
|
|
|
如果上方的单号需要取消订舱, 或已经提交过取消操作, 无需回复邮件。
|
|
|
|
|
如有任何疑问,欢迎垂询我司操作。
|
|
|
|
|
</p>
|
|
|
|
|
<p class="notice1-val"><font style="color: #f70f0f; font-weight: 500;">请您按照更新的ETD在免箱期内用箱,以免产生超期箱使费,谢谢!</font></p>
|
|
|
|
|
<p class="notice2-val"><font style="color: #4051f0; font-weight: 500;">请不要回复此邮箱(自动发送邮箱无人处理邮件),如有疑问,</font><font style="background-color: #f1de2f; font-weight: 500;">请联系 @Model.Sender.DisplayName(邮箱 @Model.Sender.MailAddress,电话 @Model.Sender.Phone),谢谢!</font></p>
|
|
|
|
|
<p>顺祝</p>
|
|
|
|
|
<p>商祺</p>
|
|
|
|
|
<p class="notice-comp-val">@item.TenantCompanyName</p>
|
|
|
|
|
<p class="notice3-val">货物到港后,贵司保证目的港收货人及时提取货物。因货物提取不及时/弃货产生的滞箱费、堆存费、港口费、货物处理费等概由贵司或者目的港收货人承担。如果我司对外承担了上述费用,则贵司应当无条件支付给我司,如果因此给我司造成了经济损失,则贵司还应当赔偿我司所有经济损失,包括但不限于律师费、诉讼费等等。一旦此票提箱出运就视为同意此条款,谢谢配合!</p>
|
|
|
|
|
<p class="notice-company-val">@item.TenantCompanyName</p>
|
|
|
|
|
@if (!string.IsNullOrWhiteSpace(item.CompareDiffLabels))
|
|
|
|
|
{
|
|
|
|
|
<p class="notice-compare-val">请注意 @item.CompareDiffLabels 变更,请您按相关的更新安排操作,谢谢!</p>
|
|
|
|
|
}
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
@ -64,3 +147,4 @@
|
|
|
|
|
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|