noalyss-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Noalyss-commit] [noalyss] branch devel updated (ead8d5f23 -> edc0a3f23)


From: dwm
Subject: [Noalyss-commit] [noalyss] branch devel updated (ead8d5f23 -> edc0a3f23)
Date: Wed, 17 Jan 2024 12:53:58 -0500 (EST)

sparkyx pushed a change to branch devel
in repository noalyss.

    from ead8d5f23 Cosmetic Totaux OD
     new fc4ac725d Improve DBG , add stopwatch : timer_start and timer_show
     new faf712430 FIX : when taken from git NOALYSS_VERSION is undefined
     new 26117631c Merge branch 'devel-ods' into devel
     new f0de5689e FIX : when taken from git NOALYSS_VERSION is undefined
     new 06673cfde FIX : default to use https
     new 3c570c042 Improve DBG , add stopwatch : timer_start and timer_show
     new 7eb593b05 Improve DatabaseCore : fetch_all
     new 46a7a72d1 PRINTGL Main Ledger (GL) improve performance and code 
prepare the SQL , better filter for accounting
     new 0db402bd5 Merge branch 'devel-andromeda' into devel
     new 014574b18 Task #0002327: Balance : indiqué si le solde est correct 
débit / crédit
     new a821b670d OPTION_CARD : Correct options for FollowUp
     new 5f389826a Bug Fiche Option
     new 948a509e1 PHP8.1 compatibility
     new e723c5c5b Task 0002128: Clôture comptabilité française
     new 15182958d Task 0002128: Clôture comptabilité française
     new 4c25109f2 Acc OD : cosmetic
     new 23ee014cb Task 0002128: Clôture comptabilité française Réécriture op. 
ouverture et cloture
     new 1eb013a6c Adaptation PHPUNIT
     new a50a3a2f8 Get empty upgrade.sql
     new 1b5b9781c OPTION_CARD : Correct options for FollowUp
     new 67b5ae90d Bug Fiche Option
     new 4db377ebb PHP8.1 compatibility
     new f8bff0171 Task 0002128: Clôture comptabilité française
     new f9ed50067 Task 0002128: Clôture comptabilité française
     new d24a9517f Acc OD : cosmetic
     new 590856dcf Task 0002128: Clôture comptabilité française Réécriture op. 
ouverture et cloture
     new 540157851 Adaptation PHPUNIT
     new 454b526c5 Task 2128 : Ouverture et cloture toujours visible
     new 41bcad57b Get empty upgrade.sql
     new 68a265fb2 Bug #0002322: Impression Suivi
     new 3ef17424f PRINT properly action
     new b698a8a58 DEV - TEST : new file to see local variables
     new 8bc3ce771 Task #2323 : follow-up correct depending action + cosmetic
     new edc0a3f23 Merge

The 34 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 html/ajax_misc.php                                 |   18 +-
 html/css/style-classic7.css                        |   14 +
 html/css/style-print.css                           |   10 +-
 html/js/acc_ledger.js                              | 1811 +++++++++++---------
 include/ajax/ajax_operation_exercice.php           |  247 +++
 include/balance.inc.php                            |   17 +-
 include/category_card.inc.php                      |    2 +-
 include/class/acc_balance.class.php                |    1 +
 include/class/acc_ledger.class.php                 |   28 -
 include/class/acc_ledger_fin.class.php             |    2 +-
 include/class/card_multiple.class.php              |    2 +-
 include/class/follow_up.class.php                  |  159 +-
 include/class/follow_up_other_concerned.class.php  |    3 +-
 include/class/operation_closing.class.php          |  126 ++
 include/class/operation_exercice.class.php         |  311 ++++
 include/class/operation_opening.class.php          |  156 ++
 include/constant.php                               |    3 +-
 ...php => operation_exercice_detail_sql.class.php} |   54 +-
 include/database/operation_exercice_sql.class.php  |   82 +
 include/export/export_balance_pdf.php              |   13 +-
 include/export/export_follow_up_contact_csv.php    |   13 +-
 include/lib/icon_action.class.php                  |   11 +
 include/lib/message_javascript.php                 |    2 +
 include/lib/table_data_sql.class.php               |   15 +
 include/operation_exercice.inc.php                 |   77 +
 include/operation_ods_new.inc.php                  |    2 +-
 include/sql/patch/upgrade190.sql                   |   99 ++
 include/template/dashboard.php                     |    2 +-
 include/template/follow_up-display.php             |   57 +-
 include/template/followup-show-action-add.php      |    8 +-
 include/template/form_ledger_detail.php            |    2 +-
 .../operation_exercice-input_row-error.php}        |   21 +-
 include/template/operation_exercice-input_row.php  |  114 ++
 .../template/operation_exercice-input_source.php   |  125 ++
 .../template/operation_exercice-input_transfer.php |   56 +
 include/template/operation_exercice-list_draft.php |  101 ++
 include/template/show-all-variable.php             |   12 +
 sql/upgrade.sql                                    |   56 +-
 unit-test/include/class/acc_account_ledgerTest.php |  484 ++++++
 unit-test/include/class/acc_ledgerTest.php         |   32 -
 .../include/class/noalyss_parameter_folderTest.php |    1 +
 unit-test/include/class/operation_exerciceTest.php |  209 +++
 .../{tax_summary.Test.php => tax_summaryTest.php}  |   21 +-
 43 files changed, 3544 insertions(+), 1035 deletions(-)
 create mode 100644 include/ajax/ajax_operation_exercice.php
 create mode 100644 include/class/operation_closing.class.php
 create mode 100644 include/class/operation_exercice.class.php
 create mode 100644 include/class/operation_opening.class.php
 copy include/database/{forecast_sql.class.php => 
operation_exercice_detail_sql.class.php} (58%)
 create mode 100644 include/database/operation_exercice_sql.class.php
 create mode 100644 include/operation_exercice.inc.php
 create mode 100644 include/sql/patch/upgrade190.sql
 copy include/{ajax/ajax_search_action.php => 
template/operation_exercice-input_row-error.php} (66%)
 mode change 100755 => 100644
 create mode 100644 include/template/operation_exercice-input_row.php
 create mode 100644 include/template/operation_exercice-input_source.php
 create mode 100644 include/template/operation_exercice-input_transfer.php
 create mode 100644 include/template/operation_exercice-list_draft.php
 create mode 100644 include/template/show-all-variable.php
 create mode 100644 unit-test/include/class/acc_account_ledgerTest.php
 create mode 100644 unit-test/include/class/operation_exerciceTest.php
 rename unit-test/include/class/{tax_summary.Test.php => tax_summaryTest.php} 
(94%)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]