97 lines
6.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="privacy_policy_page" name="Privacy Policy">
<t t-call="website.layout">
<div id="wrap" class="oe_structure oe_empty">
<section class="s_title py-5 bg-light border-bottom">
<div class="container text-center">
<h1 class="display-5 fw-bold text-dark mb-2">Privacy Policy</h1>
<p class="lead text-muted mb-0">How we protect and handle your personal and delivery information</p>
<small class="text-muted">Last updated: <t t-esc="current_date"/></small>
</div>
</section>
<section class="py-5">
<div class="container" style="max-width: 900px;">
<div class="card border-0 shadow-sm rounded-4 p-4 p-md-5 bg-white">
<div class="mb-4">
<h3 class="h5 fw-bold text-primary mb-3">1. Introduction</h3>
<p class="text-secondary">
Welcome to <strong t-esc="company.name"/>. We are committed to protecting your personal information and your right to privacy. This Privacy Policy outlines how we collect, use, and share your personal data when you use our online ordering platform and delivery services.
</p>
</div>
<div class="mb-4">
<h3 class="h5 fw-bold text-primary mb-3">2. Information We Collect</h3>
<p class="text-secondary">When placing an online food order or requesting delivery, we collect the following necessary information:</p>
<ul class="text-secondary">
<li><strong>Contact Details:</strong> Full name, telephone number, and email address.</li>
<li><strong>Delivery Information:</strong> Physical delivery address (street, city, province/state, postal code) and specific delivery instructions.</li>
<li><strong>Order Details:</strong> Items purchased, quantities, special dietary preferences, and total order amounts.</li>
</ul>
</div>
<div class="mb-4">
<h3 class="h5 fw-bold text-primary mb-3">3. Delivery Fulfillment &amp; Uber Direct Integration</h3>
<p class="text-secondary">
To fulfill and dispatch delivery orders to your address, we partner with <strong>Uber Direct</strong> (a white-label logistics and courier delivery service operated by Uber Technologies, Inc.).
</p>
<p class="text-secondary">
When you select delivery at checkout, the following information is shared securely with Uber Direct via encrypted APIs:
</p>
<ul class="text-secondary">
<li>Your delivery name, contact phone number, and physical dropoff address.</li>
<li>Order manifest items to ensure proper vehicle allocation and delivery handling.</li>
<li>Real-time driver tracking status to provide accurate delivery ETAs and notifications.</li>
</ul>
<p class="text-secondary">
Uber processes this information solely to facilitate driver assignment, routing, pickup from our restaurant, and drop-off at your location.
</p>
</div>
<div class="mb-4">
<h3 class="h5 fw-bold text-primary mb-3">4. Data Security &amp; Retention</h3>
<p class="text-secondary">
We implement standard security measures, including SSL/TLS encryption, to protect your personal information against unauthorized access, loss, or misuse. Information is retained only as long as necessary to complete your order, comply with financial reporting regulations, and resolve any customer service inquiries.
</p>
</div>
<div class="mb-4">
<h3 class="h5 fw-bold text-primary mb-3">5. Your Rights &amp; Contact Us</h3>
<p class="text-secondary">
You have the right to request access to, correction of, or deletion of your personal data held by us. If you have questions about this policy or our data practices, please contact us:
</p>
<div class="p-3 bg-light rounded-3 text-secondary">
<p class="mb-1"><strong t-esc="company.name"/></p>
<p class="mb-1" t-if="company.street"><t t-esc="company.street"/>, <t t-esc="company.city"/>, <t t-esc="company.state_id.code if company.state_id else ''"/> <t t-esc="company.zip or ''"/></p>
<p class="mb-1" t-if="company.phone">Phone: <t t-esc="company.phone"/></p>
<p class="mb-0" t-if="company.email">Email: <t t-esc="company.email"/></p>
</div>
</div>
</div>
</div>
</section>
</div>
</t>
</template>
<template id="uber_oauth_callback_page" name="Uber Connection Callback">
<t t-call="website.layout">
<div id="wrap" class="oe_structure oe_empty d-flex align-items-center justify-content-center py-5" style="min-height: 70vh;">
<div class="container text-center" style="max-width: 600px;">
<div class="card border-0 shadow-lg p-5 rounded-4 bg-white">
<div class="mb-4">
<i class="fa fa-check-circle text-success" style="font-size: 64px;"></i>
</div>
<h2 class="fw-bold mb-2">Uber Direct Connected</h2>
<p class="text-muted mb-4">Your Uber authorization callback was processed successfully. You can return to Odoo and manage your delivery dispatches.</p>
<a href="/web" class="btn btn-dark rounded-pill px-4 py-2">Return to Odoo Dashboard</a>
</div>
</div>
</div>
</t>
</template>
</odoo>