booking alert

 avatar
user_0223141589
html
2 years ago
16 kB
3
Indexable
<p style="margin:0px 0 12px 0;box-sizing:border-box;"></p>
<p style="box-sizing: border-box; margin: 0px;">Hello — <t t-out="object.freight_partner_id.display_name"
        data-oe-t-inline="true" contenteditable="false"></t>
</p>
<p style="box-sizing: border-box; margin: 0px;"><br>Please make arrangements to pick up shipment with below details.</p>
<hr style="margin:12px 0 12px 0;border-top-color:rgba(0, 0, 0, 0.1);border-top-style:solid;border-top-width:1px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px;overflow-y:visible;overflow-x:visible;height:0px;box-sizing:content-box;"
    contenteditable="false">
<p style="box-sizing: border-box; margin: 0px;"><br></p>
<h2 style="font-size:19.5px;color:#091124;line-height:1.2;font-weight:500;box-sizing: border-box; margin: 0px;">Shipment
    Details:&nbsp;</h2>
<p style="margin:0px 0 12px 0;box-sizing:border-box;"></p>
<p style="margin:0px 0 12px 0;box-sizing:border-box;">
    <font style="color:#636363;">
        <font style="color:#636363;"><span style=" color: #636363; font-size: 13px">Zipline Shipment ID:&nbsp;<t
                    t-out="object.name" data-oe-t-inline="true" contenteditable="false"></t></span></font>
    </font>
</p>
<p style="box-sizing:border-box;margin-bottom: 0px;"><span style="color: #636363; font-size: 13px">Mode of
        Transport</span>:&nbsp;<t t-out="object.mode_id.name" data-oe-t-inline="true" contenteditable="false"></t>
</p>
<p style="box-sizing:border-box;margin-bottom: 0px;"><br></p>
<p style="box-sizing:border-box;margin-bottom: 0px;"><span style="color: #636363; font-size: 13px"><span
            style="font-weight: bolder;">Cargo Details</span></span><br></p>
<p style="margin:0px 0 12px 0;box-sizing:border-box;">
    <font style="color:#636363;">
        <font style="color:#636363;">
            <font style="color:#636363;">
                <font style="color:#636363;"><span style="color: #636363; font-size: 13px">Description: <t
                            t-out="object.shipment_desc" data-oe-t-inline="true" contenteditable="false"></t></span>
                </font>
            </font>
        </font>
    </font>
</p>
<t t-if="object.has_hazmat" data-oe-t-group-active="true" data-oe-t-group="0">
    <p style="margin:0px 0 12px 0;box-sizing:border-box;">
        <font style="color:#636363;">
            <font style="color:#636363;">
                <font style="color:#636363;">
                    <font style="color:#636363;"><span style=" color: #636363; font-size: 13px">Has Hazmat?:&nbsp;<t
                                t-out="object.has_hazmat" data-oe-t-inline="true" contenteditable="false"></t></span>
                    </font>
                </font>
            </font>
        </font>
    </p>
    <font style="color:#636363;">
        <p style="margin:0px 0 12px 0;box-sizing:border-box;"></p>
    </font>
</t>
<p style="box-sizing:border-box;margin-bottom: 0px;">
    <font style="color:#636363;">

    </font>
</p>
<p style="margin:0px 0 12px 0;box-sizing:border-box;"></p>
<p style="margin:0px 0 12px 0;box-sizing:border-box;"><span style="color: #636363; font-size: 13px">Number of Packages,
        Weight, Dims:</span></p>

        <p>Total Count:
            <t t-set="total_pc_count" t-value="0"/>
            <t t-if="object.shipment_package_ids">
                <t t-foreach="object.shipment_package_ids" t-as="package">
                    <t t-set="total_pc_count" t-value="total_pc_count + package.quantity"/>
                </t>
            </t>
            <t t-else="">
                <t t-set="total_pc_count" t-value="0"/>
                <t t-foreach="object.aggregate_shipment_package_ids" t-as="package">
                    <t t-set="total_pc_count" t-value="total_pc_count + package.quantity"/>
                </t>
            </t>
            <t t-esc="total_pc_count"/>
        </p>

        <p>Total Gross Weight:
            <t t-set="total_gw" t-value="0"/>
            <t t-if="object.shipment_package_ids">
                <t t-foreach="object.shipment_package_ids" t-as="package">
                    <t t-set="total_gw" t-value="total_gw + package.gross_weight"/>                    
                </t>
            </t>
            <t t-else="">
                <t t-set="total_gw" t-value="0"/>
                <t t-foreach="object.aggregate_shipment_package_ids" t-as="package">
                    <t t-set="total_gw" t-value="total_gw + package.gross_weight"/>
                </t>
            </t>
            <t t-esc="total_gw"/>
            <t t-if="package.gross_weight_uom_id"><t t-esc="' ' + package.gross_weight_uom_id.name"/></t>
        </p>


<t t-if="object.aggregate_shipment_package_ids">
    <table>
        <thead>
            <tr>
                <th style="border: 1px solid #ddd; padding: 8px;">Quantity</th>
                <th style="border: 1px solid #ddd; padding: 8px;">G.W</th>
                <th style="border: 1px solid #ddd; padding: 8px;">Length</th>
                <th style="border: 1px solid #ddd; padding: 8px;">Width</th>
                <th style="border: 1px solid #ddd; padding: 8px;">Height</th>                
            </tr>
        </thead>
        <tbody>
            <t t-foreach="object.aggregate_shipment_package_ids" t-as="package">
                <tr>
                    <td style="border: 1px solid #ddd; padding: 8px;"><t t-esc="package.quantity"/></td>
                    <td style="border: 1px solid #ddd; padding: 8px;">
                        <t t-esc="package.gross_weight"/>
                        <t t-if="package.gross_weight_uom_id"><t t-esc="' ' + package.gross_weight_uom_id.name"/></t></td>
                    <td style="border: 1px solid #ddd; padding: 8px;">
                        <t t-esc="package.dim_length"/>
                        <t t-if="package.dim_uom_id"><t t-esc="' ' + package.dim_uom_id.name"/></t></td>
                    <td style="border: 1px solid #ddd; padding: 8px;">
                        <t t-esc="package.dim_width"/>
                        <t t-if="package.dim_uom_id"><t t-esc="' ' + package.dim_uom_id.name"/></t></td>
                    <td style="border: 1px solid #ddd; padding: 8px;">
                        <t t-esc="package.dim_height"/>
                        <t t-if="package.dim_uom_id"><t t-esc="' ' + package.dim_uom_id.name"/></t></td>
                </tr>
            </t>
        </tbody>
    </table>
</t>
<t t-else="">
    <table>
        <thead>
            <tr>
                <th style="border: 1px solid #ddd; padding: 8px;">Quantity</th>
                <th style="border: 1px solid #ddd; padding: 8px;">G.W</th>
                <th style="border: 1px solid #ddd; padding: 8px;">Length</th>
                <th style="border: 1px solid #ddd; padding: 8px;">Width</th>
                <th style="border: 1px solid #ddd; padding: 8px;">Height</th>
            </tr>
        </thead>
        <tbody>
            <t t-foreach="object.shipment_package_ids" t-as="package">
                <tr>
                    <td style="border: 1px solid #ddd; padding: 8px;"><t t-esc="package.quantity"/></td>
                    <td style="border: 1px solid #ddd; padding: 8px;">
                        <t t-esc="package.gross_weight"/>
                        <t t-if="package.gross_weight_uom_id"><t t-esc="' ' + package.gross_weight_uom_id.name"/></t></td>
                    <td style="border: 1px solid #ddd; padding: 8px;">
                        <t t-esc="package.dim_length"/>
                        <t t-if="package.dim_uom_id"><t t-esc="' ' + package.dim_uom_id.name"/></t></td>
                    <td style="border: 1px solid #ddd; padding: 8px;">
                        <t t-esc="package.dim_width"/>
                        <t t-if="package.dim_uom_id"><t t-esc="' ' + package.dim_uom_id.name"/></t></td>
                    <td style="border: 1px solid #ddd; padding: 8px;">
                        <t t-esc="package.dim_height"/>
                        <t t-if="package.dim_uom_id"><t t-esc="' ' + package.dim_uom_id.name"/></t></td>
                </tr>
            </t>
        </tbody>
    </table>
</t>

<br>
<p style="margin:0px 0 12px 0;box-sizing:border-box;">
    <font style="color:#636363;">
        <font style="color:#636363;">
            <font style="color:#636363;"><span style=" color: #636363; font-size: 13px"><span
                        style="font-weight: bolder;">Pickup Date:</span>&nbsp;<t
                        t-out="object.milestone_depatured_estimation_date" data-oe-t-inline="true"
                        contenteditable="false"></t></span></font>
        </font>
    </font>
</p>
<p style="box-sizing:border-box;margin-bottom: 0px;">
    <font style="color:#636363;">
        <font style="color:#636363;">
            <font style="color:#636363;">

            </font>
        </font>
    </font>
</p>
<p style="margin:0px 0 12px 0;box-sizing:border-box;">
    <font style="color:#636363;">
        <font style="color:#636363;">
            <font style="color:#636363;"><span style="color: #636363; font-size: 13px"><span
                        style="font-weight: bolder;">Pickup Location:</span>&nbsp;<br>
                    <t t-if="object.origin_partner_id.name" data-oe-t-group-active="true" data-oe-t-group="1"
                        data-oe-t-inline="true">
                        <t t-out=" object.origin_partner_id.name" data-oe-t-inline="true" contenteditable="false"></t>
                    </t>
                    <br>
                    <t t-if="object.origin_partner_id.street" data-oe-t-group-active="true" data-oe-t-group="2"
                        data-oe-t-inline="true">
                        <t t-out=" object.origin_partner_id.street" data-oe-t-inline="true" contenteditable="false"></t>
                    </t>
                    <t t-if="object.origin_partner_id.street2" data-oe-t-group-active="true" data-oe-t-group="3"
                        data-oe-t-inline="true">
                        <br>
                        <t t-out="object.origin_partner_id.street2" data-oe-t-inline="true" contenteditable="false"></t>
                    </t>
                    <br>
                    <t t-out="object.origin_partner_id.city" data-oe-t-inline="true" contenteditable="false"></t>&nbsp;
                    <t t-if="object.origin_partner_id.state_id" data-oe-t-group-active="true" data-oe-t-group="4"
                        data-oe-t-inline="true">
                        <t t-out=" object.origin_partner_id.state_id.name" data-oe-t-inline="true"
                            contenteditable="false"></t>
                    </t>&nbsp;
                    <t t-out="object.origin_partner_id.zip" data-oe-t-inline="true" contenteditable="false"></t>
                    <t t-if="object.origin_partner_id.email" data-oe-t-group-active="true" data-oe-t-group="5"
                        data-oe-t-inline="true">
                        <br>
                        <t t-out="object.origin_partner_id.phone" data-oe-t-inline="true" contenteditable="false"></t>


                </span></font>
        </font>
    </font>
</p>
<p style="margin:0px 0 12px 0;box-sizing:border-box;">
    <font style="color:#636363;">
        <font style="color:#636363;">
            <font style="color:#636363;"><span style=" color: #636363; font-size: 13px"><span
                        style="font-weight: bolder;">Delivery Location: :&nbsp;</span> <br>
                    <t t-if="object.destination_partner_id.name" data-oe-t-group-active="true" data-oe-t-group="6"
                        data-oe-t-inline="true">
                        <t t-out=" object.destination_partner_id.name" data-oe-t-inline="true" contenteditable="false">
                        </t>
                    </t>
                    <br>
                    <t t-if="object.destination_partner_id.street" data-oe-t-group-active="true" data-oe-t-group="7"
                        data-oe-t-inline="true">
                        <t t-out=" object.destination_partner_id.street" data-oe-t-inline="true"
                            contenteditable="false"></t>
                    </t>
                    <t t-if="object.destination_partner_id.street2" data-oe-t-group-active="true" data-oe-t-group="8"
                        data-oe-t-inline="true">
                        <br>
                        <t t-out="object.destination_partner_id.street2" data-oe-t-inline="true"
                            contenteditable="false"></t>
                    </t>
                    <br>
                    <t t-out="object.destination_partner_id.city" data-oe-t-inline="true" contenteditable="false"></t>
                    &nbsp;
                    <t t-if="object.destination_partner_id.state_id" data-oe-t-group-active="true" data-oe-t-group="9"
                        data-oe-t-inline="true">
                        <t t-out=" object.destination_partner_id.state_id.name" data-oe-t-inline="true"
                            contenteditable="false"></t>
                    </t>&nbsp;
                    <t t-out="object.destination_partner_id.zip" data-oe-t-inline="true" contenteditable="false"></t>

                    <t t-if="object.destination_partner_id.email" data-oe-t-group-active="true" data-oe-t-group="10"
                        data-oe-t-inline="true">
                        <br>
                        <t t-out="object.destination_partner_id.email" data-oe-t-inline="true" contenteditable="false">
                        </t>
                    </t>
                    <t t-if="object.destination_partner_id.email" data-oe-t-group-active="true" data-oe-t-group="11"
                        data-oe-t-inline="true">
                        <br>
                        <t t-out="object.destination_partner_id.phone" data-oe-t-inline="true" contenteditable="false">
                        </t>
                    </t>

                </span></font>
        </font>
    </font>
</p>
<p style="margin:0px 0 12px 0;box-sizing:border-box;">
    <font style="color:#636363;">
        <font style="color:#636363;">
            <font style="color:#636363;">
                <font style="color:#636363;"><span style="color: #636363; font-size: 13px"><span
                            style="font-weight: bolder;">Delivery Date:</span>
                        <t t-out="object.milestone_delivered_estimation_date" data-oe-t-inline="true"
                            contenteditable="false"></t>
                    </span></font>
            </font>
        </font>
    </font>
</p>
<p style="box-sizing:border-box;margin-bottom: 0px;">
    <font style="color:#636363;">
        <font style="color:#636363;">

        </font>
    </font>
</p>
<hr style="margin:12px 0 12px 0;border-top-color:rgba(0, 0, 0, 0.1);border-top-style:solid;border-top-width:1px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px;overflow-y:visible;overflow-x:visible;height:0px;box-sizing:content-box;"
    contenteditable="false">
<h2
    style="font-size:19.5px;color:#091124;line-height:1.2;font-weight:500;caret-color:#37352f;position:relative;margin:0px 0 12px 0;box-sizing:border-box;">
    Remarks</h2>
<p style="margin:0px 0 12px 0;box-sizing:border-box;">
    <font style="color:#636363;">
        <font style="color:#636363;">Please send us a copy of the BOL as soon as possible.<br><br>Your invoice after
            delivery of the shipment must match the rate quote provided, without any deviation and must indicate Zipline
            shipment ID#.<br>You are required to notify us prior to billing of any additional costs besides the ones
            included in the quote. Any unplanned costs engaged on our behalf will require our approval and supporting
            documents before they can be reimbursed.<br><br>We ask that you keep this email chain along with the Zipline
            shipment ID for the execution of this shipment from beginning to end. <br><br>Let us know if you require any
            additional information.<br></font>
    </font>
</p>
<p style="margin:0px 0 12px 0;box-sizing:border-box;">
    <font style="color:#636363;">
        <font style="color:#636363;">Thank you.</font>
    </font>
</p>
<p style="margin:0px 0 12px 0;box-sizing:border-box;"></p>
<p style="margin:0px 0 12px 0;box-sizing:border-box;"></p>
<p style="margin:0px 0 12px 0;box-sizing:border-box;"></p>
<p style="margin:0px 0 12px 0;box-sizing:border-box;"></p>
<p style="margin:0px 0 12px 0;box-sizing:border-box;"></p>
Editor is loading...
Leave a Comment