From 2e65816c7d160b22e4a2fad09f245ae08036a85a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Chac=C3=B3n?= Date: Fri, 14 Dec 2018 12:53:24 -0600 Subject: [PATCH 1/2] Order by bankaccountname In DailyBankTransactions.php, in input form, sorts bank accounts by name in bank account selection. --- DailyBankTransactions.php | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/DailyBankTransactions.php b/DailyBankTransactions.php index a6d67471c..1214faad7 100644 --- a/DailyBankTransactions.php +++ b/DailyBankTransactions.php @@ -1,10 +1,12 @@ ', $MyRow['bankaccountname'], ' - ', $MyRow['currcode'], ''; - } else { - echo ''; - } + echo '', $MyRow['bankaccountname'], ' - ', $MyRow['currcode'], ''; } echo ' @@ -245,5 +246,4 @@ echo ''; } include ('includes/footer.php'); - ?> \ No newline at end of file From ad28d254a3d6bd34a68eafe951114d2dcf0b45d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Chac=C3=B3n?= Date: Fri, 14 Dec 2018 13:07:21 -0600 Subject: [PATCH 2/2] Update CHANGELOG.md --- doc/CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index 7d5743edb..a5ef7588e 100644 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -15,6 +15,9 @@ For changelogs earlier than v4.14.1, please refer to [CHANGELOG_ARCHIVE.md]. | Description | Type | Author | Date | Details | Ref | |:-----------:|:----:|:------:|:----:|:-------:|:---:| +| Order by bankaccountname | Changed | Rafael Chacón | 2018-12-14 | In DailyBankTransactions.php, in input form, sorts bank accounts by name in bank account selection. | | +| Add option to print the BOM from the entry screen | Changed | Tim Schofield | 2018-12-08 | [View](https://github.com/webERP-team/webERP/commit/cb5754b1228b93a3ae34d993b2f9e3d484aeaf0f) | | +| Add option to import po items | Changed | express achiever | 2018-12-06 | [View](https://github.com/webERP-team/webERP/commit/c24c5217369d9c2299b16c680d06d9bed0354a3d) | | | Change field_help_text code (part 1) | Changed | Rafael Chacón | 2018-12-06 | [View](https://github.com/webERP-team/webERP/commit/5b660abb2f2360cfea500ea9cbb5dcfdd4e217be) | | | Add page_info_text class | Added | Rafael Chacón | 2018-12-05 | [View](https://github.com/webERP-team/webERP/commit/06151046399d29d04e37f37c88aa63cc7b235d3f) | | | Delete unneeded images | Removed | Rafael Chacón | 2018-12-05 | [View](https://github.com/webERP-team/webERP/commit/f40435a7891c72e46b77af6fa2b5441a29ce16a3) | |