import type { Order } from '@/types';

export const mockOrders: Order[] = [
  {
    id: 'ord_001',
    storeId: 'store_001',
    number: '#1024',
    customerId: 'cust_001',
    customerName: 'Mariana Alves',
    customerEmail: 'mariana@email.com',
    customerPhone: '(11) 98888-1111',
    items: [
      {
        productId: 'prod_001',
        productName: 'Fone Bluetooth Pulse Pro',
        variationLabel: 'Cor: Preto',
        quantity: 1,
        unitPrice: 329.9,
        total: 329.9,
        imageUrl: 'https://images.unsplash.com/photo-1505740420928-5e560c06d30e?w=200&q=80',
      },
    ],
    subtotal: 329.9,
    discount: 32.99,
    shipping: 25,
    total: 321.91,
    couponCode: 'BEMVINDO10',
    status: 'pago',
    paymentStatus: 'pago',
    paymentMethod: 'pix',
    shippingMethod: 'correios',
    shippingAddress: 'Av. Paulista, 900 - Bela Vista, São Paulo/SP',
    notes: 'Entregar em horário comercial.',
    history: [
      { status: 'novo', date: '2025-01-12T14:00:00.000Z' },
      { status: 'aguardando_pagamento', date: '2025-01-12T14:01:00.000Z' },
      { status: 'pago', date: '2025-01-12T14:05:00.000Z', note: 'Pagamento Pix confirmado.' },
    ],
    createdAt: '2025-01-12T14:00:00.000Z',
  },
  {
    id: 'ord_002',
    storeId: 'store_001',
    number: '#1025',
    customerId: 'cust_002',
    customerName: 'Rafael Souza',
    customerEmail: 'rafael@email.com',
    customerPhone: '(11) 97777-2222',
    items: [
      {
        productId: 'prod_004',
        productName: 'Camiseta Tech Dry',
        variationLabel: 'Tamanho: M, Cor: Verde',
        quantity: 2,
        unitPrice: 89.9,
        total: 179.8,
      },
    ],
    subtotal: 179.8,
    discount: 0,
    shipping: 20,
    total: 199.8,
    status: 'aguardando_pagamento',
    paymentStatus: 'pendente',
    paymentMethod: 'pix',
    shippingMethod: 'correios',
    shippingAddress: 'Rua A, 123 - São Paulo/SP',
    history: [
      { status: 'novo', date: '2025-01-10T09:00:00.000Z' },
      { status: 'aguardando_pagamento', date: '2025-01-10T09:01:00.000Z' },
    ],
    createdAt: '2025-01-10T09:00:00.000Z',
  },
  {
    id: 'ord_003',
    storeId: 'store_001',
    number: '#1026',
    customerId: 'cust_001',
    customerName: 'Mariana Alves',
    customerEmail: 'mariana@email.com',
    customerPhone: '(11) 98888-1111',
    items: [
      {
        productId: 'prod_002',
        productName: 'Caixa de Som Wave Mini',
        quantity: 1,
        unitPrice: 249.9,
        total: 249.9,
      },
    ],
    subtotal: 249.9,
    discount: 0,
    shipping: 0,
    total: 249.9,
    status: 'enviado',
    paymentStatus: 'pago',
    paymentMethod: 'pix',
    shippingMethod: 'retirada',
    shippingAddress: 'Retirada na loja',
    history: [
      { status: 'novo', date: '2025-01-08T11:00:00.000Z' },
      { status: 'pago', date: '2025-01-08T11:10:00.000Z' },
      { status: 'em_separacao', date: '2025-01-08T15:00:00.000Z' },
      { status: 'enviado', date: '2025-01-09T10:00:00.000Z' },
    ],
    createdAt: '2025-01-08T11:00:00.000Z',
  },
  {
    id: 'ord_004',
    storeId: 'store_002',
    number: '#2050',
    customerId: 'cust_003',
    customerName: 'Beatriz Lima',
    customerEmail: 'bia@email.com',
    customerPhone: '(21) 96666-3333',
    items: [
      {
        productId: 'prod_005',
        productName: 'Vela Aromática Lavanda',
        quantity: 2,
        unitPrice: 59.9,
        total: 119.8,
      },
    ],
    subtotal: 119.8,
    discount: 17.97,
    shipping: 15,
    total: 116.83,
    couponCode: 'AROMA15',
    status: 'entregue',
    paymentStatus: 'pago',
    paymentMethod: 'pix',
    shippingMethod: 'correios',
    shippingAddress: 'Rua das Flores, 50 - Rio de Janeiro/RJ',
    history: [
      { status: 'novo', date: '2025-01-05T10:00:00.000Z' },
      { status: 'pago', date: '2025-01-05T10:05:00.000Z' },
      { status: 'enviado', date: '2025-01-06T09:00:00.000Z' },
      { status: 'entregue', date: '2025-01-08T16:00:00.000Z' },
    ],
    createdAt: '2025-01-05T10:00:00.000Z',
  },
];
