noalyss-commit
[Top][All Lists]
Advanced

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

[Noalyss-commit] [noalyss] branch unstable updated (a21554139 -> 34489f6


From: dwm
Subject: [Noalyss-commit] [noalyss] branch unstable updated (a21554139 -> 34489f687)
Date: Tue, 27 May 2025 09:26:01 -0400 (EDT)

sparkyx pushed a change to branch unstable
in repository noalyss.

    from a21554139 typo
     new 69acd7f67 Code Improve : Data_SQL
     new f3b6e90fa FONT MONSERRAT ROBOTO Title and menu
     new 3da8aa2a7 Cosmetic width menu
     new 8ab18c682 FIX bug due changes Data_SQL
     new 8befe0453 FREC : checkbox, checked by range, hidden elements must not 
be checked
     new 70bae8b1b FIX bug due changes Data_SQL
     new da1a6dbc3 Detail Operation for small screen
     new 001677eb7 Improve Code:  Database  : add __toString
     new d9b1e4b2d Code Improve : Single_Record
     new bfdae33f1 Data_SQL and Table_Data_SQL add virtual column, to allow  
transformation of columns in SQL, faster than transforming in PHP afterward
     new b7b014ccc CSS : cosmetic : font in a variable + outline input text in 
orange
     new f93c2cbee Data_SQL if we use $this->sql , then must be set SQL
     new 4112b1a14 Data_SQL if column doesn't exist
     new 4d29bb45f Add column timestamp for table TOOL_UOS
     new cde20e383 Fix bug : wrong function name
     new 34489f687 PHP8.3 comptability, dynamic members

The 16 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/css/font/Montserrat-Regular.ttf               | Bin 0 -> 330948 bytes
 html/css/font/Montserrat-Regular.woff              | Bin 0 -> 111676 bytes
 html/css/font/Roboto-Light.ttf                     | Bin 0 -> 146056 bytes
 html/css/font/Roboto-Regular.ttf                   | Bin 0 -> 146004 bytes
 html/css/font/Roboto-Regular.woff2                 | Bin 0 -> 66820 bytes
 html/css/style-classic7.css                        |  95 ++++++----
 include/balance.inc.php                            |   2 +-
 include/class/acc_account_ledger.class.php         |  81 ++++----
 include/class/acc_ledger.class.php                 |  45 +++--
 include/class/acc_ledger_fin.class.php             |   4 +-
 include/class/acc_ledger_purchase.class.php        |  14 +-
 include/class/acc_ledger_sale.class.php            |   8 +-
 include/class/anc_group.class.php                  |   9 +-
 include/class/anc_group_operation.class.php        |   2 +-
 include/class/anc_key.class.php                    |   3 +
 include/class/anc_print.class.php                  |   2 +-
 include/class/database.class.php                   |  13 +-
 include/class/fiche.class.php                      |  69 +++----
 include/class/pdfbalance_simple.class.php          |   5 +
 include/class/print_ledger_detail_item.class.php   |   1 +
 include/class/print_ledger_fin.class.php           |   1 +
 include/class/print_ledger_simple.class.php        |  23 +++
 include/compta_fin_rec.inc.php                     |   6 +-
 include/constant.php                               |   1 +
 include/database/acc_plan_sql.class.php            |   1 +
 include/database/tva_rate_sql.class.php            |   2 +-
 include/lib/ac_common.php                          |   2 +-
 include/lib/data_sql.class.php                     | 162 ++++++++++++----
 include/lib/database_core.class.php                |  33 +++-
 include/lib/single_record.class.php                |  39 ++--
 include/lib/table_data_sql.class.php               |  55 ++++--
 .../export-export_histo_csv.php-1730456264.php     |   2 +-
 scenario/LIB/table_data_sql.php                    | 153 ++++++++++++++++
 sql/upgrade.sql                                    |   4 +-
 unit-test/include/class/acc_account_ledgerTest.php |  58 ++++++
 .../{acc_compute.Test.php => acc_computeTest.php}  |   0
 unit-test/include/class/acc_ledgerTest.php         |   2 +-
 ..._ledger_fin.Test.php => acc_ledger_finTest.php} |   0
 ...st.php => acc_ledger_history_financialTest.php} |   0
 .../{databaseTest.class.php => databaseTest.php}   |   0
 unit-test/include/class/upgrade176.sql             |   0
 unit-test/include/lib/Single_RecordTest.php        | 118 ++++++++++++
 unit-test/include/lib/Table_Data_SQLTest.php       | 204 +++++++++++++++++++++
 unit-test/include/lib/data_newsqlTest.php          | 189 +++++++++++++++++++
 unit-test/include/lib/data_sqlTest.php             | 193 +++++++++++++++++++
 unit-test/include/lib/databaseCoreTest.php         |   1 -
 unit-test/include/lib/noalyss_sqlTest.php          |   2 +-
 47 files changed, 1387 insertions(+), 217 deletions(-)
 create mode 100644 html/css/font/Montserrat-Regular.ttf
 create mode 100644 html/css/font/Montserrat-Regular.woff
 create mode 100644 html/css/font/Roboto-Light.ttf
 create mode 100644 html/css/font/Roboto-Regular.ttf
 create mode 100644 html/css/font/Roboto-Regular.woff2
 create mode 100644 scenario/LIB/table_data_sql.php
 rename unit-test/include/class/{acc_compute.Test.php => acc_computeTest.php} 
(100%)
 rename unit-test/include/class/{acc_ledger_fin.Test.php => 
acc_ledger_finTest.php} (100%)
 rename unit-test/include/class/{acc_ledger_history_financial.Test.php => 
acc_ledger_history_financialTest.php} (100%)
 rename unit-test/include/class/{databaseTest.class.php => databaseTest.php} 
(100%)
 delete mode 100644 unit-test/include/class/upgrade176.sql
 create mode 100644 unit-test/include/lib/Single_RecordTest.php
 create mode 100644 unit-test/include/lib/Table_Data_SQLTest.php
 create mode 100644 unit-test/include/lib/data_newsqlTest.php
 create mode 100644 unit-test/include/lib/data_sqlTest.php



reply via email to

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