Sfoglia il codice sorgente

Processus de commande

feature/export_comptable
Guillaume 4 anni fa
parent
commit
cd7f03c415
1 ha cambiato i file con 12 aggiunte e 0 eliminazioni
  1. +12
    -0
      ShopBundle/Model/OrderStatus.php

+ 12
- 0
ShopBundle/Model/OrderStatus.php Vedi File

@@ -11,6 +11,18 @@ use Doctrine\Common\Collections\Collection;
*/
abstract class OrderStatus
{
const ALIAS_CART = 'cart' ;
const ALIAS_CART_CANCELED = 'cart-canceled' ;
const ALIAS_WAITING_PAYMENT_ONLINE = 'waiting-payment-online' ;
const ALIAS_WAITING_PAYMENT_CREDIT = 'waiting-payment-credit' ;
const ALIAS_PAID_ONLINE = 'paid-online' ;
const ALIAS_ERROR_PAYMENT_ONLINE = 'error-payment-online' ;
const ALIAS_PAID_BY_CREDIT = 'paid-by-credit' ;
const ALIAS_WAITING_DELIVERY = 'waiting-delivery' ;
const ALIAS_DONE = 'done' ;
const ALIAS_CANCELED = 'canceled' ;
const ALIAS_CANCELED_WAITING_REFUND = 'canceled-waiting-refund' ;
const ALIAS_REFUND = 'refund' ;

/**
* @ORM\Column(type="string", length=255)

Loading…
Annulla
Salva