|
| 1 | +<odoo> |
| 2 | + <template id="website_vendor_products_views" name="Product View for Vendor Portal"> |
| 3 | + <t t-set="items_per_page" t-value="15"/> |
| 4 | + <t t-set="page" t-value="int(request.params.get('page', '1'))"/> |
| 5 | + <t t-set="total_products" t-value="int(len(search_result))"/> |
| 6 | + <t t-set="offset" t-value="(page - 1) * items_per_page"/> |
| 7 | + <t t-set="paged_products" t-value="search_result[offset:offset + items_per_page]"/> |
| 8 | + |
| 9 | + <t t-foreach="paged_products" t-as="product"> |
| 10 | + <div class="card shadow-lg border-0 mx-2 my-3 px-3 py-2"> |
| 11 | + <div class="d-flex align-items-center justify-content-between border-bottom pb-3"> |
| 12 | + <div class="d-flex flex-column"> |
| 13 | + <h4 class="card-title text-primary fw-bold m-2"> |
| 14 | + <t t-out="product.name" /> |
| 15 | + </h4> |
| 16 | + |
| 17 | + <p class="text-muted m-2 mb-1"> |
| 18 | + <strong>Min Price:</strong> $ |
| 19 | + <t t-out="product.min_price" /> |
| 20 | + </p> |
| 21 | + |
| 22 | + <p class="text-muted m-2 mb-1"> |
| 23 | + <strong>Max Price:</strong> $ |
| 24 | + <t t-out="product.max_price" /> |
| 25 | + </p> |
| 26 | + </div> |
| 27 | + |
| 28 | + <t t-if="product.image_1920"> |
| 29 | + <img t-att-src="'data:image/png;base64,' + product.image_1920.decode('utf-8')" |
| 30 | + t-att-alt="product.name" |
| 31 | + class="rounded border" |
| 32 | + style="width: 120px; height: 80px; object-fit: cover;" /> |
| 33 | + </t> |
| 34 | + </div> |
| 35 | + |
| 36 | + <t t-if="product.seller_ids"> |
| 37 | + <div class="card-body rounded mt-2 p-2"> |
| 38 | + <p class="text-muted fw-bold mb-2">Sellers and Prices:</p> |
| 39 | + |
| 40 | + <ul class="list-group"> |
| 41 | + <t t-foreach="product.seller_ids" t-as="seller"> |
| 42 | + <li class="list-group-item d-flex justify-content-between align-items-center border rounded px-3 py-2 my-2"> |
| 43 | + <span class="fw-semibold text-success"> |
| 44 | + <t t-out="seller.partner_id.name" /> |
| 45 | + </span> |
| 46 | + |
| 47 | + <span class="badge bg-success text-white px-3 py-2 rounded-pill"> |
| 48 | + $ <t t-out="seller.price" /> |
| 49 | + </span> |
| 50 | + </li> |
| 51 | + </t> |
| 52 | + </ul> |
| 53 | + </div> |
| 54 | + |
| 55 | + <div class="d-flex justify-content-end align-items-center mt-2 p-2 border-top"> |
| 56 | + <button class="btn btn-primary create-po-btn mt-1" |
| 57 | + data-bs-toggle="modal" |
| 58 | + data-bs-target="#purchaseOrderModal" |
| 59 | + t-att-data-product-id="product.id" |
| 60 | + t-att-data-product-name="product.name" |
| 61 | + t-att-data-product-price="product.min_price" |
| 62 | + t-att-data-product-vendors="','.join(['%s:%s' % (seller.partner_id.id, seller.partner_id.name) for seller in product.seller_ids])" |
| 63 | + style="font-weight: 600; font-size: 16px;"> |
| 64 | + <i class="fa fa-shopping-cart"></i> Create Purchase Order |
| 65 | + </button> |
| 66 | + </div> |
| 67 | + </t> |
| 68 | + |
| 69 | + <t t-else="" > |
| 70 | + <p class="text-muted text-center py-3">No sellers for this product.</p> |
| 71 | + </t> |
| 72 | + </div> |
| 73 | + </t> |
| 74 | + |
| 75 | + <t t-if="total_products > items_per_page"> |
| 76 | + <nav> |
| 77 | + <ul class="pagination justify-content-center mt-4"> |
| 78 | + <t t-set="num_pages" t-value="(total_products + items_per_page - 1) // items_per_page"/> |
| 79 | + <t t-foreach="range(1, num_pages + 1)" t-as="page_number"> |
| 80 | + <li t-att-class="'page-item ' + ('active' if page == page_number else '')"> |
| 81 | + <a class="page-link" t-att-href="'?page=' + str(page_number)"> |
| 82 | + <t t-out="page_number" /> |
| 83 | + </a> |
| 84 | + </li> |
| 85 | + </t> |
| 86 | + </ul> |
| 87 | + </nav> |
| 88 | + </t> |
| 89 | + |
| 90 | + </template> |
| 91 | +</odoo> |
0 commit comments