![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/app/code/Cnc/Sales/Model/ |
<?php /** * Copyright (c) 2020 Kaliop Digital Commerce (https://digitalcommerce.kaliop.com) All Rights Reserved. * https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) * Cnc * Radosław Stępień <[email protected]> <[email protected]> */ namespace Cnc\Sales\Model; class Config { const ORDER_STATUS_COMPLETED_PENDING_PAYMENT_CODE = 'completed_pending_payment'; const ORDER_STATUS_COMPLETED_PENDING_PAYMENT_LABEL = 'Completed - pending payment'; const ORDER_STATUS_PAIEMENT_RECU_CODE = 'paiement_recu'; const ORDER_STATUS_PAIEMENT_RECU_LABEL = 'Paiement recu - En cours de traitement'; const ORDER_STATUS_EXPEDIE_PAYE_CODE = 'expedie_paye'; const ORDER_STATUS_EXPEDIE_PAYE_LABEL = 'Expédié - Payé'; const ORDER_STATUS_EXPEDIE_PAIEMENT_30J_CODE = 'expedie_paiement_30j'; const ORDER_STATUS_EXPEDIE_PAIEMENT_30J_LABEL = 'Expédié - Paiement 30J'; const ORDER_STATUS_EXPEDIE_PAIEMENT_RECEP_FACTURE_CODE = 'expedie_paiement_recep_facture'; const ORDER_STATUS_EXPEDIE_PAIEMENT_RECEP_FACTURE_LABEL = 'Expédié - Paiement Récep.Facture'; const ORDER_STATUS_CANCELED_CODE = 'canceled'; const ORDER_STATUS_COMPLETE_CODE = 'complete'; const ORDER_STATUS_CLOSED_CODE = 'closed'; const ORDER_STATUS_PROCESSING_CODE = 'processing'; const ORDER_STATUS_PENDING_PAYMENT_CODE = 'pending_payment'; }