-
Notifications
You must be signed in to change notification settings - Fork 55
/
CHANGELOG.txt
4496 lines (3453 loc) · 129 KB
/
CHANGELOG.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
commit a6196b0c157f0ef3f9d75e3ef811ba5d3741d58e
Author: notrinos <[email protected]>
Date: Mon Mar 7 14:53:08 2022 +0700
added secure flag on session cookie
M includes/session.inc
commit 9373fc5c4230fc4847787599547a73ae0f532405
Author: notrinos <[email protected]>
Date: Sat Feb 19 20:41:40 2022 +0700
Removed search item list option in company setup. Continue.
M includes/ui/ui_lists.inc
M inventory/inquiry/stock_list.php
M sql/en_US-demo.sql
M sql/en_US-new.sql
commit c27334f8300c5b7ffdb5139676836ca5dfe99349
Author: notrinos <[email protected]>
Date: Sat Feb 19 14:24:57 2022 +0700
Removed search item list option in company setup
M admin/company_preferences.php
commit 49347724ebfec242ad6f6337d11c34bc33eace45
Author: notrinos <[email protected]>
Date: Thu Feb 10 15:03:01 2022 +0700
Updated support php version, protect pem file from direct access.
M .htaccess
M README.md
commit 12abe055eebb437313412191bfea2f6a9ffa8c58
Author: notrinos <[email protected]>
Date: Sun Feb 6 22:01:07 2022 +0700
php8.1.1 error file_exists(): Passing null to parameter of type string is deprecated. Fixed.
M dashboard/includes/dashboard_classes.inc
commit 8f3d263650b2869f51a9913c5d86589df0692c32
Author: notrinos <[email protected]>
Date: Sun Feb 6 19:40:56 2022 +0700
php8.1.1 error Implicit conversion from float to int loses precision. Fixed.
M reporting/includes/class.graphic.inc
commit 96fb0a2c8104fce815e46bc39dc70fba71fd0437
Author: notrinos <[email protected]>
Date: Sun Feb 6 13:44:08 2022 +0700
php8.1.1 error Passing null to parameter of type string|int|float is deprecated. Fixed.
M reporting/includes/class.graphic.inc
commit 577626210584e1ff92db5f1e0e231f5e990ca8a1
Author: notrinos <[email protected]>
Date: Sun Feb 6 01:17:55 2022 +0700
php8.1.1 error Implicit conversion from float-string to int loses precision. Fixed.
M reporting/includes/class.graphic.inc
commit ddcba2fd1653bc142ccd0a8c47384b98d848bd5f
Author: notrinos <[email protected]>
Date: Sat Feb 5 23:56:00 2022 +0700
php8.1.1 error continue and code cleanup
M reporting/includes/class.graphic.inc
commit c1e37e1453b5407ef4598ad808fa7a68a228e0da
Author: notrinos <[email protected]>
Date: Sat Feb 5 20:38:44 2022 +0700
php8.1.1 error strlen(): Passing null to parameter #1 ($string) of type string is deprecated. Fixed.
M reporting/includes/class.graphic.inc
commit 38d4633521eaba1b231748bf27bc669e41cc0bd1
Author: notrinos <[email protected]>
Date: Fri Feb 4 16:17:33 2022 +0700
php8.1.1 error strlen(): Passing null to parameter #1 ($string) of type string is deprecated. Fixed.
M dashboard/includes/dashboard_classes.inc
commit 1479c60483cec1f65892318af892988f5c264254
Author: notrinos <[email protected]>
Date: Tue Jan 25 22:03:43 2022 +0700
Add and Manage Customers, Suppliers: contact persons where not removed when deleting customer/supplier. Fixed.
M includes/db/crm_contacts_db.inc
M purchasing/includes/db/suppliers_db.inc
commit 5893053ef391404fc392161fa4f18c62135c9ea4
Author: notrinos <[email protected]>
Date: Tue Jan 18 20:25:45 2022 +0700
error: Trying to access array offset on value of type bool. Fixed.
M inventory/includes/stock_transfers_ui.inc
commit df0b5a294ec1ff79307ab0dabd60140daa7d0c8c
Author: notrinos <[email protected]>
Date: Tue Jan 18 11:49:22 2022 +0700
php 8.1.1 error continue and code cleanup in bank_account_reconcile.php
M gl/bank_account_reconcile.php
commit 2394f68dc1072c323920cd11a924900bbad58be3
Author: notrinos <[email protected]>
Date: Tue Jan 18 04:56:01 2022 +0700
php 8.1.1 error preg_match_all(): Passing null to parameter #2 ($subject) of type string is deprecated. Fixed.
M admin/inst_chart.php
commit 024e204fb34ae3a3fa35c2f637ca881b13ee3d22
Author: notrinos <[email protected]>
Date: Mon Jan 17 19:59:13 2022 +0700
php 8.1.1 error preg_match_all(): Passing null to parameter #2 ($subject) of type string is deprecated. Fixed.
M admin/inst_theme.php
commit 20690f55cacbf316ff8219899e6137ead410ea40
Author: notrinos <[email protected]>
Date: Mon Jan 17 13:34:51 2022 +0700
php 8.1.1 error preg_match_all(): Passing null to parameter #2 ($subject) of type string is deprecated. Fixed.
M admin/inst_lang.php
M includes/packages.inc
commit a09090b2b02ac5a02d8861708f1fbb952791daa1
Author: notrinos <[email protected]>
Date: Mon Jan 17 07:34:15 2022 +0700
updated exchange rates provider
M config.default.php
M gl/includes/db/gl_db_rates.inc
commit e212c0fdc4bc2482fe95e6c271413f8a48f8d236
Author: notrinos <[email protected]>
Date: Sun Jan 16 20:58:53 2022 +0700
php8 error: Invalid character set was provided. Fixed.
M admin/db/maintenance_db.inc
M admin/inst_module.php
commit ccad454c5ca1b4eb7000ca9b7559abfca9fc53c5
Author: notrinos <[email protected]>
Date: Sun Jan 16 13:10:46 2022 +0700
php8.1 error preg_match_all(): Passing null to parameter #2 ($subject) of type string is deprecated. Fixed.
M admin/inst_module.php
commit 1c08d981ab43b6bc59ca8629820821b62264adbe
Author: notrinos <[email protected]>
Date: Sun Jan 16 00:04:57 2022 +0700
php8.1 error str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated. Fixed.
M includes/db/connect_db_mysqli.inc
commit 639ca043e9c95b7494b550fc46a92660e2d1adfc
Author: notrinos <[email protected]>
Date: Wed Jan 12 21:15:10 2022 +0700
rep309.php, rep310.php code cleanup and rearrange columns width.
M reporting/rep309.php
M reporting/rep310.php
commit 5cbc45583923c308f3de84f01f9a2e2fa8464f1f
Author: notrinos <[email protected]>
Date: Tue Jan 11 18:42:21 2022 +0700
Search Item List option is deprecated, continue.
M includes/ui/ui_lists.inc
commit 1617f1e780416dee3650dfef0e6e705618e076b0
Author: notrinos <[email protected]>
Date: Tue Jan 11 07:22:45 2022 +0700
rep203.php, rep204.php code cleanup and redesigned.
M reporting/rep203.php
M reporting/rep204.php
commit 7daadd695480248e20ff89f05ff4b7f796665f9c
Author: notrinos <[email protected]>
Date: Tue Jan 11 05:30:50 2022 +0700
rep202.php code cleanup and redesigned
M reporting/rep202.php
commit d689b48b215afe0d82358ceb5ed75657d7485333
Author: notrinos <[email protected]>
Date: Mon Jan 10 21:48:05 2022 +0700
rep201.php code cleanup and redesigned.
M reporting/rep201.php
commit af4d5512f9175bdb2796d230cb44657a4a089761
Author: notrinos <[email protected]>
Date: Mon Jan 10 13:50:16 2022 +0700
stock list missing items after select an ediable description item. Fixed.
M includes/ui/ui_lists.inc
commit 46719c9b75afa2c2da609d404903094a4e5f7e73
Author: notrinos <[email protected]>
Date: Sun Jan 9 20:41:21 2022 +0700
Search Item List option will be deprecated from 0.7
M admin/company_preferences.php
M includes/ui/ui_lists.inc
M inventory/manage/items.php
commit f2268d871ddb4c794406593414d6454d728f46e4
Author: notrinos <[email protected]>
Date: Sun Jan 9 07:53:53 2022 +0700
error item list not selected in item movements and item status pages. Fixed.
M libraries/inserts.js
commit 53b3255a7ec44ef9b5071298ad15a3ee2078fa9a
Author: notrinos <[email protected]>
Date: Sat Jan 8 20:50:13 2022 +0700
rep103.php, rep115.php code cleanup and redesigned.
M reporting/rep103.php
M reporting/rep115.php
commit 204ab775105e401380dd59dc7dd219e8d94dfc1c
Author: notrinos <[email protected]>
Date: Sat Jan 8 10:10:47 2022 +0700
rep102.php code cleanup and redesigned.
M reporting/rep102.php
commit 6a9ed62a3bdc6286acc7f99a9a7659c5d63650fe
Author: notrinos <[email protected]>
Date: Fri Jan 7 14:46:08 2022 +0700
rep101.php redesigned.
M reporting/rep101.php
commit 195a363909e877a777c3916e38e31ad3cc79abe0
Author: notrinos <[email protected]>
Date: Thu Jan 6 19:42:52 2022 +0700
gettext alias missed in locations.php
M inventory/manage/locations.php
commit 0c64872467377dc100fd2b26aac0ebfc8b40dde4
Author: notrinos <[email protected]>
Date: Sat Jan 1 15:21:26 2022 +0700
Release 0.6
M CHANGELOG.txt
D docs/2.1_Beta.txt
D docs/2.2_Beta.txt
D docs/CHANGELOG-OLD.txt
D docs/access_levels.txt
D docs/api_changes.txt
D docs/attachments.txt
D docs/bank_reconciliation.txt
D docs/calculate_price.txt
D docs/dim_on_invoice.txt
D docs/extensions.txt
D docs/index.php
D docs/license.txt
D docs/quick_entries.txt
D docs/recurrent_invoice.txt
D docs/sales_quotations.txt
M sql/en_US-demo.sql
M sql/en_US-new.sql
M version.php
commit f1677f6d359cf51b8b7f837ba49d23cf371eee3c
Author: notrinos <[email protected]>
Date: Tue Dec 28 16:17:28 2021 +0700
add button colors in backup page
M themes/default/local_style/backups.css
commit 05cb846e4b7f27b2a4cf867adee51a18a43010f0
Author: notrinos <[email protected]>
Date: Mon Dec 27 01:07:39 2021 +0700
rep114 rearange column width.
M reporting/rep114.php
commit 5f0bf2b04896a2a0ef30c88d8306abba1d540b9d
Author: notrinos <[email protected]>
Date: Thu Dec 23 10:51:54 2021 +0700
Javascript error: Cannot read properties of null. Fixed.
M libraries/behaviour.js
commit 07da96fb94396369b1fa2632fc7630aca2dd9702
Author: notrinos <[email protected]>
Date: Wed Dec 22 11:06:12 2021 +0700
Remove unused parameters in function gl_all_accounts_list_row and code cleanup.
M gl/includes/ui/gl_journal_ui.inc
M includes/ui/ui_lists.inc
commit 2548a50ff91e4850d735f73cc5979f19563bedfb
Author: notrinos <[email protected]>
Date: Tue Dec 21 05:53:39 2021 +0700
Login page pops up on every clicks. Fixed
M includes/session.inc
commit 56570cbea1692886bbbb63680fbf1d965f398701
Author: notrinos <[email protected]>
Date: Sat Dec 18 23:38:07 2021 +0700
Notes from template are not used in recurring invoices. Fixed.
M sales/create_recurrent_invoices.php
commit 7c5102350127d2dd9f62bd04d6984decc5b14820
Author: notrinos <[email protected]>
Date: Fri Dec 10 13:02:46 2021 +0700
syntax error in print statements report. Fixed.
M reporting/rep108.php
commit 02e7ff244b90f08bcc0eb606f8040186433ebf2c
Author: notrinos <[email protected]>
Date: Tue Dec 7 22:43:02 2021 +0700
error undefined function delete_image(). Fixed.
M inventory/manage/items.php
commit 8c67d19ed5fd932a09a77a2e4a21418007a11116
Author: notrinos <[email protected]>
Date: Tue Dec 7 10:06:29 2021 +0700
php8 error fix.
M includes/ui/simple_crud_class.inc
commit 0d464e1ef36e92b68750aa004ee6cf7e705621c1
Author: notrinos <[email protected]>
Date: Mon Dec 6 13:26:07 2021 +0700
Update gettext template.
M lang/new_language_template/LC_MESSAGES/empty.po
commit 735c42ee61623764133ede566978573438b36f28
Author: notrinos <[email protected]>
Date: Mon Dec 6 12:59:28 2021 +0700
php8 fixes, continue.
M includes/ui/simple_crud_class.inc
commit 543b07393ae9accd74fee3fcd91307205cd884e9
Author: notrinos <[email protected]>
Date: Sat Dec 4 08:19:03 2021 +0700
The secure flag was not set on session cookie. Fixed.
M includes/session.inc
commit 086303ea137ef4b3b931ad0a9d5d176847413a2f
Author: notrinos <[email protected]>
Date: Wed Dec 1 16:54:10 2021 +0700
prevent user to edit voided customer credit note.
M sales/credit_note_entry.php
M sales/includes/db/cust_trans_db.inc
M sales/inquiry/customer_inquiry.php
commit 42851db5a38609f19d3275fc76870d1fdca17ffe
Author: notrinos <[email protected]>
Date: Tue Nov 30 06:46:23 2021 +0700
Sales invoice process issue. Fixed.
M sales/includes/db/cust_trans_db.inc
commit 76876e78c33e2cb082c312e2e1597dcfcac885ac
Author: notrinos <[email protected]>
Date: Mon Nov 29 22:37:25 2021 +0700
cleaned unused code
M manufacturing/includes/db/work_order_costing_db.inc
commit f9260008f480c85e66f3b0f2484812a9da5af2f4
Author: notrinos <[email protected]>
Date: Sun Nov 28 17:56:28 2021 +0700
code cleanup
M manufacturing/includes/db/work_order_costing_db.inc
commit a904c7fd5b2a9363f5051eb6216895ddb6365e45
Author: notrinos <[email protected]>
Date: Tue Nov 23 06:49:07 2021 +0700
php8 fix, blank page on po_receive_items.php
M purchasing/po_receive_items.php
commit adb99b6d3b5429d8f0132bb61561ec9bf9fa6699
Author: notrinos <[email protected]>
Date: Mon Nov 22 12:56:57 2021 +0700
Removed function db_fixed()
M admin/db/maintenance_db.inc
M admin/includes/fa_patch.class.inc
M includes/db/connect_db.inc
M includes/db/connect_db_mysql.inc
M includes/db/connect_db_mysqli.inc
M includes/session.inc
commit 3410bcb290d8e25961a3f8ecc0a0bcb477ce4a94
Author: notrinos <[email protected]>
Date: Sun Nov 21 23:28:32 2021 +0700
Error retoring data. Fixed.
M admin/db/maintenance_db.inc
commit 3892fa39c46e1e6a0627583262724bb924dae4e5
Author: notrinos <[email protected]>
Date: Thu Nov 18 09:27:31 2021 +0700
config.default.inc error on startup, fixed.
M config.default.php
commit 64122bb23a2ca3429928ead81b44c685dc935be1
Author: notrinos <[email protected]>
Date: Wed Nov 17 23:56:47 2021 +0700
error unknow function due to last commit. Fixed.
M reporting/rep709.php
commit 04d39cfca936defbb8083696b978812249c84a6d
Author: notrinos <[email protected]>
Date: Wed Nov 17 23:48:53 2021 +0700
Fix TAX in GL rows in supplier invoice.
M gl/includes/db/gl_db_trans.inc
commit e39ae5e53e2b08c61a7a3670889c0578c5c92611
Author: notrinos <[email protected]>
Date: Wed Nov 17 23:43:53 2021 +0700
rerun rep709.php of the last commit
M reporting/rep709.php
commit 1fd797f5ee30dc1d08bf36ae0b578bba90073326
Author: notrinos <[email protected]>
Date: Wed Nov 17 23:39:45 2021 +0700
Journal Entry Affecting in both sales and purchase and more. Fixed
M gl/includes/db/gl_db_trans.inc
M includes/ui/items_cart.inc
M reporting/rep709.php
commit 12630742320714c5a240d771dcc940942bc49e74
Author: notrinos <[email protected]>
Date: Tue Nov 16 06:50:58 2021 +0700
Tax Type not displayed during initial setup if default Sales and/or Purchase Tax account deleted. Fixed
M taxes/db/tax_types_db.inc
commit b9469f9cc5f412ce46fab1b6618159f70cdc8a2d
Author: notrinos <[email protected]>
Date: Sat Nov 13 00:13:12 2021 +0700
Fix db_pager protect count($this->extra_where)
M includes/db_pager.inc
commit b236d8b07d2fc04b0872108f50b48dfa8dc4fc66
Author: notrinos <[email protected]>
Date: Thu Nov 11 13:22:37 2021 +0700
focus issue on inventory adjusment entry. Fixed.
M inventory/includes/item_adjustments_ui.inc
commit a6d1c9f75ede2447308ae162b6c2737bb3ad9931
Author: notrinos <[email protected]>
Date: Wed Nov 10 15:13:50 2021 +0700
Syntax error in customer inquiry. Fixed.
M sales/inquiry/customer_inquiry.php
commit 0738ed90498b4f59367193318efb135daf89ea88
Author: notrinos <[email protected]>
Date: Wed Nov 10 09:19:16 2021 +0700
Wrong journal entries amount fix and code cleanup
M gl/includes/db/gl_db_trans.inc
commit 3f35ca1bf7fe023f579452b29bb9776436698f88
Author: notrinos <[email protected]>
Date: Tue Nov 9 23:42:41 2021 +0700
Allowing multiple jounal entries on one trans_no.
M purchasing/supplier_payment.php
M sales/customer_payments.php
M sales/includes/db/cust_trans_db.inc
commit 0ad4c31a10f7e31a1eef957df54f37a9503b642e
Author: notrinos <[email protected]>
Date: Tue Nov 9 19:55:55 2021 +0700
continue of previous commits b9630b8 and b9dc736, and code cleanup.
M reporting/rep101.php
M reporting/rep108.php
M sales/includes/db/cust_trans_db.inc
M sales/includes/db/custalloc_db.inc
commit b9dc736f16190fd51b43ab9960a1f70249c6a057
Author: notrinos <[email protected]>
Date: Tue Nov 9 13:03:35 2021 +0700
No alloc icon for journal entries in customer allocation inquiry. Fixed.
M sales/customer_payments.php
M sales/includes/db/cust_trans_db.inc
M sales/inquiry/customer_allocation_inquiry.php
M sales/inquiry/customer_inquiry.php
commit b09c1ace6f38ed90c98b79438db97299f95b1ff0
Author: notrinos <[email protected]>
Date: Tue Nov 9 04:46:40 2021 +0700
Error calculating customer aging regarding journal entries. Fixed.
M sales/includes/db/customers_db.inc
commit b0dd4b5dedf8c80e7426292486ce8cd501b308ea
Author: notrinos <[email protected]>
Date: Mon Nov 8 14:31:59 2021 +0700
Customer Statements shows wrong balances for Journal Entries. Fixed.
M reporting/rep108.php
commit b9630b80edb8429188df1df851fd6b38417494d7
Author: notrinos <[email protected]>
Date: Mon Nov 8 11:00:13 2021 +0700
Rerun of last commit.
M sales/includes/db/cust_trans_db.inc
M sales/includes/db/custalloc_db.inc
M sales/inquiry/customer_inquiry.php
commit 286a78c805c05387fd29286f65a99c96cf673398
Author: notrinos <[email protected]>
Date: Mon Nov 8 05:56:01 2021 +0700
Customers with 0 left to allocate shown on Customer Allocations when using Journal Entry for paying. Fixed.
M sales/includes/db/custalloc_db.inc
commit 8f09db71487cd2a6628f481deadf9fb4160c2939
Author: notrinos <[email protected]>
Date: Thu Nov 4 09:00:42 2021 +0700
Argument cannot be passed by reference in rep301. Fixed.
M reporting/rep301.php
commit d959685128e7cb5690f568d9c74269ac9943980f
Author: notrinos <[email protected]>
Date: Wed Nov 3 08:46:10 2021 +0700
Items/Fixed Assets: Fixed item image adding/update.
M inventory/manage/items.php
commit 6bf456288316b65268910a9cbdb02f79372abdb6
Author: notrinos <[email protected]>
Date: Tue Nov 2 23:04:37 2021 +0700
Installer fixes, continue.
M install/index.php
commit 152c64dfcdf53267a00e64f1c62770d411cb38d0
Author: notrinos <[email protected]>
Date: Tue Nov 2 22:58:56 2021 +0700
Installer: Fixed errors handling, fixed errors on db passwords containg special characters or longer than 20 chars. Allowed passwords up to 32 chars long.
M includes/ui/ui_input.inc
M install/index.php
M install/isession.inc
commit 36fd2aae376b7cffdd2fd06ac0870fe64044ddf5
Author: notrinos <[email protected]>
Date: Mon Nov 1 19:47:14 2021 +0700
no rep109 title found in print profile. Fixed.
M reporting/rep109.php
commit 3e542aa42d2b8c562475f614c85e8dd0b0c0ed79
Author: notrinos <[email protected]>
Date: Mon Nov 1 07:04:37 2021 +0700
Curly braces {} in arrays replaced
M reporting/includes/Workbook.php
commit a9eb6b12044a26d0d56086daedfebb25e12d327c
Author: notrinos <[email protected]>
Date: Sat Oct 30 20:19:24 2021 +0700
Added item description for item search box suggestions
Signed-off-by: notrinos <[email protected]>
M includes/ui/ui_lists.inc
commit 37660d80d21a4179b2eed01ef3ba6295f7479384
Author: notrinos <[email protected]>
Date: Sun Oct 17 00:20:38 2021 +0700
Bill of Materials entry is not responding. Fixed.
M manufacturing/manage/bom_edit.php
commit 42a015ff58891e0e79688ae07f9dce72da479c0a
Author: notrinos <[email protected]>
Date: Fri Oct 15 20:03:24 2021 +0700
A non well formed numeric value encountered in sales_credit_ui.inc. Fixed
M sales/includes/ui/sales_credit_ui.inc
commit dda5c4a69674ac674b51848ae6ec68c81284b7e1
Author: notrinos <[email protected]>
Date: Tue Oct 12 14:11:09 2021 +0700
hook_db_prewrite is not used inside journal entry. Added.
M gl/includes/db/gl_journal.inc
commit dbd2b1f1302190348f4b1f00d3260905795bfacd
Author: notrinos <[email protected]>
Date: Sat Oct 9 08:29:04 2021 +0700
Add unique key for table comments
D sql/alter.sql
D sql/alter2.1.php
D sql/alter2.1.sql
D sql/alter2.2.php
D sql/alter2.2.sql
D sql/alter2.2rc.sql
D sql/alter2.3.php
D sql/alter2.3.sql
D sql/alter2.3rc.sql
D sql/alter2.4.php
D sql/alter2.4.sql
D sql/alter2.4rc1.php
D sql/alter2.4rc1.sql
D sql/alter2.sql
M sql/en_US-demo.sql
M sql/en_US-new.sql
commit 21ee959f1fcdf2ae06a067e096541e5ad6d80ae0
Author: notrinos <[email protected]>
Date: Sat Sep 25 20:47:12 2021 +0700
qty_done is not updated correctly when partial invoice is voided. Fixe
M sales/includes/db/sales_invoice_db.inc
commit 5d89aafe3558ae748b41ed180e85fb1f23ea5010
Author: notrinos <[email protected]>
Date: Mon Sep 13 07:50:48 2021 +0700
Code cleanup
M sales/customer_payments.php
commit 7ea072b1565e2cbc3599f785b58fb341b1c98f52
Author: notrinos <[email protected]>
Date: Thu Sep 9 00:23:57 2021 +0700
Change default utf-8 font to dejavusans
A reporting/fonts/ae_tholoth.ctg.z
A reporting/fonts/ae_tholoth.php
A reporting/fonts/ae_tholoth.z
D reporting/fonts/dejavu.ctg.z
D reporting/fonts/dejavu.php
D reporting/fonts/dejavu.z
A reporting/fonts/dejavusans.ctg.z
A reporting/fonts/dejavusans.php
A reporting/fonts/dejavusans.z
A reporting/fonts/dejavusansb.ctg.z
A reporting/fonts/dejavusansb.php
A reporting/fonts/dejavusansb.z
A reporting/fonts/dejavusansbi.ctg.z
A reporting/fonts/dejavusansbi.php
A reporting/fonts/dejavusansbi.z
A reporting/fonts/dejavusansi.ctg.z
A reporting/fonts/dejavusansi.php
A reporting/fonts/dejavusansi.z
M reporting/includes/class.pdf.inc
commit e35fdfc4310bf8fabc35f3e8aea2f6da3921074a
Author: notrinos <[email protected]>
Date: Tue Sep 7 23:25:36 2021 +0700
Exchange rate provider option 1 no longer working. Fixed
M gl/includes/db/gl_db_rates.inc
commit e70f009fa139a84300211eaf6a8f16e07bec3241
Author: notrinos <[email protected]>
Date: Mon Aug 30 23:26:14 2021 +0700
Sales entry redesigned.
M sales/includes/ui/sales_order_ui.inc
M sales/sales_order_entry.php
M themes/default/default.css
commit 559e340d0eb2e9d8291cc1db5def6a54f53607e4
Author: notrinos <[email protected]>
Date: Sat Aug 28 22:09:00 2021 +0700
Moved purchasing item control row to the top
M purchasing/includes/ui/po_ui.inc
commit 0eb916d4202cb84d6bf83e4c919d1a00edad6056
Author: notrinos <[email protected]>
Date: Sun Aug 22 17:49:58 2021 +0700
mising text align for right to left languages, added.
M themes/default/default.css
commit 132e9b3f9f8635466621628cb9d93c9f18e48b46
Author: notrinos <[email protected]>
Date: Sun Aug 22 02:31:22 2021 +0700
add .gitignore
A .gitignore
commit 3323a83ce2ffc0b68c00eb9c2713ce6912dadad8
Author: notrinos <[email protected]>
Date: Sun Aug 22 01:36:24 2021 +0700
Update installation command
M README.md
commit 6aa1bdb029f3410b476ebc2f3fc345273f9a731e
Author: notrinos <[email protected]>
Date: Sun Aug 22 01:22:00 2021 +0700
rerun of minimum stability version
M composer.json
commit 25a987dfe351b10ce294c629525320b4a9d7e00d
Author: notrinos <[email protected]>
Date: Sun Aug 22 01:04:25 2021 +0700
updated minimum stablity version
M composer.json
commit aae89ecdfbf5936c97363434cd3f7d7302814906
Author: notrinos <[email protected]>
Date: Sun Aug 22 00:52:29 2021 +0700
Changed recommend php version
M README.md
M composer.json
commit 67bbf528e22ece3777e169f8a0f7bd7af74be185
Author: notrinos <[email protected]>
Date: Sun Aug 22 00:27:41 2021 +0700
Update license identifier
M README.md
M composer.json
commit 04b963aab5a6711b457d3294f56d585ee37a5f25
Author: notrinos <[email protected]>
Date: Sun Aug 22 00:19:02 2021 +0700
update project name
M composer.json
commit 3091848ce4c5687e234e29b1317339c267054061
Author: notrinos <[email protected]>
Date: Sun Aug 22 00:16:35 2021 +0700
Updated project name
M composer.json
commit 7f44d7485f1c221fcc7865c3056f9c6926b30915
Author: notrinos <[email protected]>
Date: Sun Aug 22 00:13:28 2021 +0700
Add composer
M README.md
A composer.json
commit 4691787a2bb8a7f6c0d08635b6443e8374a304e9
Author: notrinos <[email protected]>
Date: Sat Aug 21 22:17:21 2021 +0700
Rerun of Unable to void a sales invoice
M sales/includes/db/sales_invoice_db.inc
commit 3874c342fc4799cceb37e9b4f4309192f2f49ae6
Author: notrinos <[email protected]>
Date: Fri Aug 20 23:21:52 2021 +0700
Unable to void a sales invoice. Fixed.
M sales/includes/db/sales_invoice_db.inc
M sales/includes/db/sales_order_db.inc
commit c6514c89a3f218c921cc986ae4d6faa63e9907ef
Author: notrinos <[email protected]>
Date: Fri Aug 20 23:07:10 2021 +0700
Unable to void Work Order. Fixed.
M manufacturing/includes/db/work_order_produce_items_db.inc
commit beea9df890a7df61a896aad536503f11464e026a
Author: notrinos <[email protected]>
Date: Wed Aug 11 17:54:46 2021 +0700
New line bug in inventory location transfer. Fixed.
M inventory/transfers.php
commit 2517084b12f23deaf5ed62710205726ea9bab3e2
Author: notrinos <[email protected]>
Date: Tue Aug 10 22:27:55 2021 +0700
Credit This Option for Supplier Invoice Doesn't Show Quantity Invoiced
M purchasing/includes/db/invoice_db.inc
commit 674c51bebc0a95abe0dab7abbb00b266bdf7b0d5
Author: notrinos <[email protected]>
Date: Mon Aug 9 20:57:14 2021 +0700
Customer Credit Invoice: fixed invalid processing of invoice payments(triggering blank page on php8 too)
M sales/includes/sales_db.inc
commit 7730845cfc457267ed15dba34505897893802690
Author: notrinos <[email protected]>
Date: Sun Aug 8 10:15:48 2021 +0700
function money_format is deprecated in above PHP 7.4. Replaced with price_format.
M includes/current_user.inc
M purchasing/includes/purchasing_db.inc
M reporting/includes/pdf_report.inc
commit 5231f0ba5ce3bec57dd592cb3638b7b4ac33ce48
Author: notrinos <[email protected]>
Date: Sat Aug 7 20:58:31 2021 +0700
Direct supplier payment bug introduced by Dimension wise balance sheet items - AR/AP implemented
M purchasing/includes/purchasing_db.inc
commit 1664506cee2ce165c6af79912be3e40b88e85b40
Author: notrinos <[email protected]>
Date: Thu Jul 15 07:39:52 2021 +0700
Default theme improvement in fixed asset entry
M themes/default/local_style/items.css
commit 71b4b94343df4b45cb546c805d9b215c9768fc89
Author: notrinos <[email protected]>
Date: Wed Jul 14 23:43:28 2021 +0700
Duplicate Class ID found when updating fixed asset class. Fixed.
M fixed_assets/fixed_asset_classes.php
commit 3534fa70d442c86ce5d4f1f9c05ad6b7b86e9d95
Author: notrinos <[email protected]>
Date: Tue Jul 13 23:06:04 2021 +0700
php7.4 error trying to access array offset on value of type bool. Continue
M fixed_assets/includes/fixed_assets_db.inc
M reporting/rep451.php
commit 2bb5d56e82e2c5ce5e673610acdccace85f5a730
Author: notrinos <[email protected]>
Date: Tue Jul 13 09:15:30 2021 +0700
Added input validation for fixed asset class entry
M fixed_assets/fixed_asset_classes.php
M fixed_assets/includes/fa_classes_db.inc
commit fa4a10786b499ac9b9f73ee936a57b367815bc4d
Author: notrinos <[email protected]>
Date: Mon Jul 12 21:55:55 2021 +0700
php7.4 error trying to access array offset on value of type bool. Continue
M includes/db/inventory_db.inc
commit d345506dd3e929a5bacb4d44cb9987c382e93d76
Author: notrinos <[email protected]>
Date: Mon Jul 12 18:29:11 2021 +0700
php7.4 error trying to access array offset on value of type bool. Fixed.
M reporting/rep451.php
commit c04f88daa5f75cd65c9c21d7d536ea4bafaddc8d
Author: notrinos <[email protected]>
Date: Mon Jul 12 08:04:34 2021 +0700
php 7.4 error Trying to access array offset on value of type bool. Fixed.
M admin/db/tags_db.inc
commit 3c84d9bd993330e9132dfa39671f9ecfe9817dcd
Author: notrinos <[email protected]>
Date: Sat Jul 10 22:02:04 2021 +0700
code cleanup