This is a private module and is not currently aimed at public consumption.
This is a simple module to expose a mass action to the admin sales order grid. It allows sales orders to forcibly be set to a "Complete" status. This is generally important when a one-way integration is in place where order updates are not directly communicated back to Magento.
Install the extension using Composer using our development package repository:
composer config repositories.augustash composer https://augustash.repo.repman.io
composer require augustash/module-force-complete:~2.0.0
bin/magento module:enable --clear-static-content Augustash_ForceComplete
bin/magento setup:upgrade
bin/magento cache:flushAfter all dependent modules have also been disabled or uninstalled, you can finally remove this module:
bin/magento module:disable --clear-static-content Augustash_ForceComplete
rm -rf app/code/Augustash/ForceComplete/
composer remove augustash/module-force-complete
bin/magento setup:upgrade
bin/magento cache:flush