├── README.md ├── app ├── code │ └── community │ │ └── Phoenix │ │ └── CashOnDelivery │ │ ├── Block │ │ ├── Adminhtml │ │ │ └── Sales │ │ │ │ ├── Creditmemo │ │ │ │ └── Create │ │ │ │ │ └── Totals.php │ │ │ │ └── Order │ │ │ │ └── Create │ │ │ │ └── Totals │ │ │ │ └── Cod.php │ │ ├── Checkout │ │ │ └── Cod.php │ │ ├── Form.php │ │ ├── Info.php │ │ └── Totals │ │ │ ├── Abstract.php │ │ │ ├── Creditmemo.php │ │ │ ├── Invoice.php │ │ │ └── Order.php │ │ ├── Helper │ │ ├── Data.php │ │ └── Tax.php │ │ ├── Model │ │ ├── CashOnDelivery.php │ │ ├── Observer.php │ │ ├── Sales │ │ │ ├── Creditmemo │ │ │ │ ├── Tax.php │ │ │ │ └── Total.php │ │ │ ├── Invoice │ │ │ │ ├── Subtotal.php │ │ │ │ ├── Tax.php │ │ │ │ └── Total.php │ │ │ ├── Pdf │ │ │ │ └── Cod.php │ │ │ └── Quote │ │ │ │ ├── TaxTotal.php │ │ │ │ └── Total.php │ │ └── Source │ │ │ ├── AvailableShipmentMethods.php │ │ │ └── CostType.php │ │ ├── etc │ │ ├── config.xml │ │ ├── system.xml │ │ ├── wsdl.xml │ │ └── wsi.xml │ │ └── sql │ │ └── cashondelivery_setup │ │ ├── mysql4-install-0.2.0.php │ │ ├── mysql4-upgrade-0.2.0-0.2.1.php │ │ ├── mysql4-upgrade-0.3.2-0.3.3.php │ │ ├── mysql4-upgrade-0.4.6-0.4.7.php │ │ └── mysql4-upgrade-1.0.7-1.0.8.php ├── design │ ├── adminhtml │ │ └── default │ │ │ └── default │ │ │ ├── layout │ │ │ └── phoenix │ │ │ │ └── cashondelivery.xml │ │ │ └── template │ │ │ └── phoenix │ │ │ └── cashondelivery │ │ │ ├── form.phtml │ │ │ ├── info.phtml │ │ │ ├── pdf │ │ │ └── info.phtml │ │ │ └── sales │ │ │ ├── creditmemo │ │ │ └── create │ │ │ │ └── totals.phtml │ │ │ └── order │ │ │ └── create │ │ │ └── totals │ │ │ └── cod.phtml │ └── frontend │ │ └── base │ │ └── default │ │ ├── layout │ │ └── phoenix │ │ │ └── cashondelivery.xml │ │ └── template │ │ └── phoenix │ │ └── cashondelivery │ │ ├── checkout │ │ └── cod.phtml │ │ ├── form.phtml │ │ └── info.phtml ├── etc │ └── modules │ │ └── Phoenix_CashOnDelivery.xml └── locale │ ├── de_DE │ └── Phoenix_CashOnDelivery.csv │ ├── el_GR │ └── Phoenix_CashOnDelivery.csv │ ├── en_US │ └── Phoenix_CashOnDelivery.csv │ ├── es_ES │ └── Phoenix_CashOnDelivery.csv │ ├── it_IT │ └── Phoenix_CashOnDelivery.csv │ ├── nb_NO │ └── Phoenix_CashOnDelivery.csv │ └── pl_PL │ └── Phoenix_CashOnDelivery.csv ├── composer.json ├── js └── phoenix │ └── cashondelivery │ └── sales.js └── modman /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/README.md -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Block/Adminhtml/Sales/Creditmemo/Create/Totals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Block/Adminhtml/Sales/Creditmemo/Create/Totals.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Block/Adminhtml/Sales/Order/Create/Totals/Cod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Block/Adminhtml/Sales/Order/Create/Totals/Cod.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Block/Checkout/Cod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Block/Checkout/Cod.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Block/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Block/Form.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Block/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Block/Info.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Block/Totals/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Block/Totals/Abstract.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Block/Totals/Creditmemo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Block/Totals/Creditmemo.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Block/Totals/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Block/Totals/Invoice.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Block/Totals/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Block/Totals/Order.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Helper/Data.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Helper/Tax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Helper/Tax.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Model/CashOnDelivery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Model/CashOnDelivery.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Model/Observer.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Model/Sales/Creditmemo/Tax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Model/Sales/Creditmemo/Tax.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Model/Sales/Creditmemo/Total.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Model/Sales/Creditmemo/Total.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Model/Sales/Invoice/Subtotal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Model/Sales/Invoice/Subtotal.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Model/Sales/Invoice/Tax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Model/Sales/Invoice/Tax.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Model/Sales/Invoice/Total.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Model/Sales/Invoice/Total.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Model/Sales/Pdf/Cod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Model/Sales/Pdf/Cod.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Model/Sales/Quote/TaxTotal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Model/Sales/Quote/TaxTotal.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Model/Sales/Quote/Total.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Model/Sales/Quote/Total.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Model/Source/AvailableShipmentMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Model/Source/AvailableShipmentMethods.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/Model/Source/CostType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/Model/Source/CostType.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/etc/config.xml -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/etc/system.xml -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/etc/wsdl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/etc/wsdl.xml -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/etc/wsi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/etc/wsi.xml -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/sql/cashondelivery_setup/mysql4-install-0.2.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/sql/cashondelivery_setup/mysql4-install-0.2.0.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/sql/cashondelivery_setup/mysql4-upgrade-0.2.0-0.2.1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/sql/cashondelivery_setup/mysql4-upgrade-0.2.0-0.2.1.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/sql/cashondelivery_setup/mysql4-upgrade-0.3.2-0.3.3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/sql/cashondelivery_setup/mysql4-upgrade-0.3.2-0.3.3.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/sql/cashondelivery_setup/mysql4-upgrade-0.4.6-0.4.7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/sql/cashondelivery_setup/mysql4-upgrade-0.4.6-0.4.7.php -------------------------------------------------------------------------------- /app/code/community/Phoenix/CashOnDelivery/sql/cashondelivery_setup/mysql4-upgrade-1.0.7-1.0.8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/code/community/Phoenix/CashOnDelivery/sql/cashondelivery_setup/mysql4-upgrade-1.0.7-1.0.8.php -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/layout/phoenix/cashondelivery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/design/adminhtml/default/default/layout/phoenix/cashondelivery.xml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/template/phoenix/cashondelivery/form.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/design/adminhtml/default/default/template/phoenix/cashondelivery/form.phtml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/template/phoenix/cashondelivery/info.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/design/adminhtml/default/default/template/phoenix/cashondelivery/info.phtml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/template/phoenix/cashondelivery/pdf/info.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/design/adminhtml/default/default/template/phoenix/cashondelivery/pdf/info.phtml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/template/phoenix/cashondelivery/sales/creditmemo/create/totals.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/design/adminhtml/default/default/template/phoenix/cashondelivery/sales/creditmemo/create/totals.phtml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/template/phoenix/cashondelivery/sales/order/create/totals/cod.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/design/adminhtml/default/default/template/phoenix/cashondelivery/sales/order/create/totals/cod.phtml -------------------------------------------------------------------------------- /app/design/frontend/base/default/layout/phoenix/cashondelivery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/design/frontend/base/default/layout/phoenix/cashondelivery.xml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/phoenix/cashondelivery/checkout/cod.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/design/frontend/base/default/template/phoenix/cashondelivery/checkout/cod.phtml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/phoenix/cashondelivery/form.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/design/frontend/base/default/template/phoenix/cashondelivery/form.phtml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/phoenix/cashondelivery/info.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/design/frontend/base/default/template/phoenix/cashondelivery/info.phtml -------------------------------------------------------------------------------- /app/etc/modules/Phoenix_CashOnDelivery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/etc/modules/Phoenix_CashOnDelivery.xml -------------------------------------------------------------------------------- /app/locale/de_DE/Phoenix_CashOnDelivery.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/locale/de_DE/Phoenix_CashOnDelivery.csv -------------------------------------------------------------------------------- /app/locale/el_GR/Phoenix_CashOnDelivery.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/locale/el_GR/Phoenix_CashOnDelivery.csv -------------------------------------------------------------------------------- /app/locale/en_US/Phoenix_CashOnDelivery.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/locale/en_US/Phoenix_CashOnDelivery.csv -------------------------------------------------------------------------------- /app/locale/es_ES/Phoenix_CashOnDelivery.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/locale/es_ES/Phoenix_CashOnDelivery.csv -------------------------------------------------------------------------------- /app/locale/it_IT/Phoenix_CashOnDelivery.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/locale/it_IT/Phoenix_CashOnDelivery.csv -------------------------------------------------------------------------------- /app/locale/nb_NO/Phoenix_CashOnDelivery.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/locale/nb_NO/Phoenix_CashOnDelivery.csv -------------------------------------------------------------------------------- /app/locale/pl_PL/Phoenix_CashOnDelivery.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/app/locale/pl_PL/Phoenix_CashOnDelivery.csv -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/composer.json -------------------------------------------------------------------------------- /js/phoenix/cashondelivery/sales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/js/phoenix/cashondelivery/sales.js -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/Magento-CashOnDelivery/HEAD/modman --------------------------------------------------------------------------------