├── .bowerrc ├── .gitignore ├── LICENSE ├── README.md ├── assets └── AppAsset.php ├── codeception.yml ├── commands └── HelloController.php ├── components └── General.php ├── composer.json ├── composer.lock ├── config ├── console.php ├── db.php ├── params.php ├── test.php ├── test_db.php └── web.php ├── controllers ├── CustomersController.php ├── InvoiceOrderController.php ├── ProductsController.php ├── SettingsController.php ├── SiteController.php └── TaxSettingsController.php ├── mail └── layouts │ └── html.php ├── models ├── ContactForm.php ├── Customers.php ├── CustomersQuery.php ├── CustomersSearch.php ├── InvoiceOrder.php ├── InvoiceOrderItem.php ├── InvoiceOrderItemQuery.php ├── InvoiceOrderQuery.php ├── InvoiceOrderSearch.php ├── LoginForm.php ├── Products.php ├── ProductsQuery.php ├── ProductsSearch.php ├── Settings.php ├── SettingsQuery.php ├── SettingsSearch.php ├── State.php ├── StateQuery.php ├── TaxSettings.php ├── TaxSettingsQuery.php ├── TaxSettingsSearch.php ├── User.php └── base │ ├── Customers.php │ ├── InvoiceOrder.php │ ├── InvoiceOrderItem.php │ ├── Products.php │ ├── Settings.php │ ├── State.php │ └── TaxSettings.php ├── requirements.php ├── runtime └── .gitignore ├── sqlfile └── yii2_indiana.sql ├── tests ├── _bootstrap.php ├── _data │ └── .gitkeep ├── _output │ └── .gitignore ├── _support │ ├── AcceptanceTester.php │ ├── FunctionalTester.php │ └── UnitTester.php ├── acceptance.suite.yml.example ├── acceptance │ ├── AboutCest.php │ ├── ContactCest.php │ ├── HomeCest.php │ ├── LoginCest.php │ └── _bootstrap.php ├── bin │ ├── yii │ └── yii.bat ├── functional.suite.yml ├── functional │ ├── ContactFormCest.php │ ├── LoginFormCest.php │ └── _bootstrap.php ├── unit.suite.yml └── unit │ ├── _bootstrap.php │ └── models │ ├── ContactFormTest.php │ ├── LoginFormTest.php │ └── UserTest.php ├── views ├── customers │ ├── _dataInvoiceOrder.php │ ├── _detail.php │ ├── _expand.php │ ├── _form.php │ ├── _formInvoiceOrder.php │ ├── _pdf.php │ ├── _script.php │ ├── _search.php │ ├── create.php │ ├── index.php │ ├── saveAsNew.php │ ├── update.php │ └── view.php ├── invoice-order │ ├── _dataInvoiceOrderItem.php │ ├── _detail.php │ ├── _expand.php │ ├── _form.php │ ├── _formInvoiceOrderItem.php │ ├── _pdf.php │ ├── _script.php │ ├── _search.php │ ├── create.php │ ├── index.php │ ├── print.php │ ├── saveAsNew.php │ ├── update.php │ └── view.php ├── layouts │ └── main.php ├── products │ ├── _form.php │ ├── _formInvoiceOrderItem.php │ ├── _pdf.php │ ├── _script.php │ ├── _search.php │ ├── create.php │ ├── index.php │ ├── saveAsNew.php │ ├── update.php │ └── view.php ├── settings │ ├── _form.php │ ├── _pdf.php │ ├── _script.php │ ├── _search.php │ ├── create.php │ ├── index.php │ ├── saveAsNew.php │ ├── update.php │ └── view.php ├── site │ ├── about.php │ ├── contact.php │ ├── error.php │ ├── index.php │ └── login.php └── tax-settings │ ├── _expand.php │ ├── _form.php │ ├── _pdf.php │ ├── _script.php │ ├── _search.php │ ├── create.php │ ├── index.php │ ├── saveAsNew.php │ ├── update.php │ └── view.php ├── web ├── assets │ └── .gitignore ├── css │ └── site.css ├── favicon.ico ├── index-test.php ├── index.php ├── js │ └── site.js └── robots.txt ├── yii └── yii.bat /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "vendor/bower" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/README.md -------------------------------------------------------------------------------- /assets/AppAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/assets/AppAsset.php -------------------------------------------------------------------------------- /codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/codeception.yml -------------------------------------------------------------------------------- /commands/HelloController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/commands/HelloController.php -------------------------------------------------------------------------------- /components/General.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/components/General.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/composer.lock -------------------------------------------------------------------------------- /config/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/config/console.php -------------------------------------------------------------------------------- /config/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/config/db.php -------------------------------------------------------------------------------- /config/params.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/config/params.php -------------------------------------------------------------------------------- /config/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/config/test.php -------------------------------------------------------------------------------- /config/test_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/config/test_db.php -------------------------------------------------------------------------------- /config/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/config/web.php -------------------------------------------------------------------------------- /controllers/CustomersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/controllers/CustomersController.php -------------------------------------------------------------------------------- /controllers/InvoiceOrderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/controllers/InvoiceOrderController.php -------------------------------------------------------------------------------- /controllers/ProductsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/controllers/ProductsController.php -------------------------------------------------------------------------------- /controllers/SettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/controllers/SettingsController.php -------------------------------------------------------------------------------- /controllers/SiteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/controllers/SiteController.php -------------------------------------------------------------------------------- /controllers/TaxSettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/controllers/TaxSettingsController.php -------------------------------------------------------------------------------- /mail/layouts/html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/mail/layouts/html.php -------------------------------------------------------------------------------- /models/ContactForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/ContactForm.php -------------------------------------------------------------------------------- /models/Customers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/Customers.php -------------------------------------------------------------------------------- /models/CustomersQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/CustomersQuery.php -------------------------------------------------------------------------------- /models/CustomersSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/CustomersSearch.php -------------------------------------------------------------------------------- /models/InvoiceOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/InvoiceOrder.php -------------------------------------------------------------------------------- /models/InvoiceOrderItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/InvoiceOrderItem.php -------------------------------------------------------------------------------- /models/InvoiceOrderItemQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/InvoiceOrderItemQuery.php -------------------------------------------------------------------------------- /models/InvoiceOrderQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/InvoiceOrderQuery.php -------------------------------------------------------------------------------- /models/InvoiceOrderSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/InvoiceOrderSearch.php -------------------------------------------------------------------------------- /models/LoginForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/LoginForm.php -------------------------------------------------------------------------------- /models/Products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/Products.php -------------------------------------------------------------------------------- /models/ProductsQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/ProductsQuery.php -------------------------------------------------------------------------------- /models/ProductsSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/ProductsSearch.php -------------------------------------------------------------------------------- /models/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/Settings.php -------------------------------------------------------------------------------- /models/SettingsQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/SettingsQuery.php -------------------------------------------------------------------------------- /models/SettingsSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/SettingsSearch.php -------------------------------------------------------------------------------- /models/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/State.php -------------------------------------------------------------------------------- /models/StateQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/StateQuery.php -------------------------------------------------------------------------------- /models/TaxSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/TaxSettings.php -------------------------------------------------------------------------------- /models/TaxSettingsQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/TaxSettingsQuery.php -------------------------------------------------------------------------------- /models/TaxSettingsSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/TaxSettingsSearch.php -------------------------------------------------------------------------------- /models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/User.php -------------------------------------------------------------------------------- /models/base/Customers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/base/Customers.php -------------------------------------------------------------------------------- /models/base/InvoiceOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/base/InvoiceOrder.php -------------------------------------------------------------------------------- /models/base/InvoiceOrderItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/base/InvoiceOrderItem.php -------------------------------------------------------------------------------- /models/base/Products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/base/Products.php -------------------------------------------------------------------------------- /models/base/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/base/Settings.php -------------------------------------------------------------------------------- /models/base/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/base/State.php -------------------------------------------------------------------------------- /models/base/TaxSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/models/base/TaxSettings.php -------------------------------------------------------------------------------- /requirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/requirements.php -------------------------------------------------------------------------------- /runtime/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /sqlfile/yii2_indiana.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/sqlfile/yii2_indiana.sql -------------------------------------------------------------------------------- /tests/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/tests/_bootstrap.php -------------------------------------------------------------------------------- /tests/_data/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/_output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/_support/AcceptanceTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/tests/_support/AcceptanceTester.php -------------------------------------------------------------------------------- /tests/_support/FunctionalTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/tests/_support/FunctionalTester.php -------------------------------------------------------------------------------- /tests/_support/UnitTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/tests/_support/UnitTester.php -------------------------------------------------------------------------------- /tests/acceptance.suite.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/tests/acceptance.suite.yml.example -------------------------------------------------------------------------------- /tests/acceptance/AboutCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/tests/acceptance/AboutCest.php -------------------------------------------------------------------------------- /tests/acceptance/ContactCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/tests/acceptance/ContactCest.php -------------------------------------------------------------------------------- /tests/acceptance/HomeCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/tests/acceptance/HomeCest.php -------------------------------------------------------------------------------- /tests/acceptance/LoginCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodweep/gst-invoice/HEAD/tests/acceptance/LoginCest.php -------------------------------------------------------------------------------- /tests/acceptance/_bootstrap.php: -------------------------------------------------------------------------------- 1 |