├── LICENSE ├── README.md ├── app ├── code │ └── local │ │ └── Voronoy │ │ └── ExtraFee │ │ ├── Block │ │ └── Sales │ │ │ └── Order │ │ │ └── Totals │ │ │ └── Rule.php │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ ├── Observer.php │ │ ├── Quote │ │ │ └── Address │ │ │ │ └── Total │ │ │ │ └── Fee │ │ │ │ └── Rule.php │ │ ├── Sales │ │ │ └── Order │ │ │ │ └── Invoice │ │ │ │ └── Total │ │ │ │ └── Fee │ │ │ │ └── Rule.php │ │ └── SalesRule │ │ │ ├── Discount │ │ │ └── Validator.php │ │ │ └── Validator.php │ │ ├── etc │ │ ├── adminhtml.xml │ │ ├── config.xml │ │ └── system.xml │ │ └── sql │ │ └── voronoy_extrafee_setup │ │ ├── install-0.1.1.php │ │ ├── upgrade-0.1.1-1.0.1.php │ │ ├── upgrade-1.0.1-1.0.2.php │ │ ├── upgrade-1.0.2-1.0.3.php │ │ ├── upgrade-1.0.3-1.0.4.php │ │ ├── upgrade-1.0.4-1.0.5.php │ │ └── upgrade-1.0.5-1.0.6.php ├── design │ ├── adminhtml │ │ └── default │ │ │ └── default │ │ │ └── layout │ │ │ └── voronoy_extrafee.xml │ └── frontend │ │ └── base │ │ └── default │ │ └── layout │ │ └── voronoy_extrafee.xml └── etc │ └── modules │ └── Voronoy_ExtraFee.xml └── modman /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/README.md -------------------------------------------------------------------------------- /app/code/local/Voronoy/ExtraFee/Block/Sales/Order/Totals/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/code/local/Voronoy/ExtraFee/Block/Sales/Order/Totals/Rule.php -------------------------------------------------------------------------------- /app/code/local/Voronoy/ExtraFee/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/code/local/Voronoy/ExtraFee/Helper/Data.php -------------------------------------------------------------------------------- /app/code/local/Voronoy/ExtraFee/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/code/local/Voronoy/ExtraFee/Model/Observer.php -------------------------------------------------------------------------------- /app/code/local/Voronoy/ExtraFee/Model/Quote/Address/Total/Fee/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/code/local/Voronoy/ExtraFee/Model/Quote/Address/Total/Fee/Rule.php -------------------------------------------------------------------------------- /app/code/local/Voronoy/ExtraFee/Model/Sales/Order/Invoice/Total/Fee/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/code/local/Voronoy/ExtraFee/Model/Sales/Order/Invoice/Total/Fee/Rule.php -------------------------------------------------------------------------------- /app/code/local/Voronoy/ExtraFee/Model/SalesRule/Discount/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/code/local/Voronoy/ExtraFee/Model/SalesRule/Discount/Validator.php -------------------------------------------------------------------------------- /app/code/local/Voronoy/ExtraFee/Model/SalesRule/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/code/local/Voronoy/ExtraFee/Model/SalesRule/Validator.php -------------------------------------------------------------------------------- /app/code/local/Voronoy/ExtraFee/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/code/local/Voronoy/ExtraFee/etc/adminhtml.xml -------------------------------------------------------------------------------- /app/code/local/Voronoy/ExtraFee/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/code/local/Voronoy/ExtraFee/etc/config.xml -------------------------------------------------------------------------------- /app/code/local/Voronoy/ExtraFee/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/code/local/Voronoy/ExtraFee/etc/system.xml -------------------------------------------------------------------------------- /app/code/local/Voronoy/ExtraFee/sql/voronoy_extrafee_setup/install-0.1.1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/code/local/Voronoy/ExtraFee/sql/voronoy_extrafee_setup/install-0.1.1.php -------------------------------------------------------------------------------- /app/code/local/Voronoy/ExtraFee/sql/voronoy_extrafee_setup/upgrade-0.1.1-1.0.1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/code/local/Voronoy/ExtraFee/sql/voronoy_extrafee_setup/upgrade-0.1.1-1.0.1.php -------------------------------------------------------------------------------- /app/code/local/Voronoy/ExtraFee/sql/voronoy_extrafee_setup/upgrade-1.0.1-1.0.2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/code/local/Voronoy/ExtraFee/sql/voronoy_extrafee_setup/upgrade-1.0.1-1.0.2.php -------------------------------------------------------------------------------- /app/code/local/Voronoy/ExtraFee/sql/voronoy_extrafee_setup/upgrade-1.0.2-1.0.3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/code/local/Voronoy/ExtraFee/sql/voronoy_extrafee_setup/upgrade-1.0.2-1.0.3.php -------------------------------------------------------------------------------- /app/code/local/Voronoy/ExtraFee/sql/voronoy_extrafee_setup/upgrade-1.0.3-1.0.4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/code/local/Voronoy/ExtraFee/sql/voronoy_extrafee_setup/upgrade-1.0.3-1.0.4.php -------------------------------------------------------------------------------- /app/code/local/Voronoy/ExtraFee/sql/voronoy_extrafee_setup/upgrade-1.0.4-1.0.5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/code/local/Voronoy/ExtraFee/sql/voronoy_extrafee_setup/upgrade-1.0.4-1.0.5.php -------------------------------------------------------------------------------- /app/code/local/Voronoy/ExtraFee/sql/voronoy_extrafee_setup/upgrade-1.0.5-1.0.6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/code/local/Voronoy/ExtraFee/sql/voronoy_extrafee_setup/upgrade-1.0.5-1.0.6.php -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/layout/voronoy_extrafee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/design/adminhtml/default/default/layout/voronoy_extrafee.xml -------------------------------------------------------------------------------- /app/design/frontend/base/default/layout/voronoy_extrafee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/design/frontend/base/default/layout/voronoy_extrafee.xml -------------------------------------------------------------------------------- /app/etc/modules/Voronoy_ExtraFee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/app/etc/modules/Voronoy_ExtraFee.xml -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yvoronoy/magento-extension-extra-fee/HEAD/modman --------------------------------------------------------------------------------