-
Notifications
You must be signed in to change notification settings - Fork 6
/
CHANGELOG.txt
3764 lines (2805 loc) · 108 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 8577c2cb87c9833eed57d96ed90b3c08683f12bb
Author: notrinos <[email protected]>
Date: Mon Mar 7 14:55:27 2022 +0700
added secure flag on session cookie
M includes/session.inc
commit 1b6b64c4d37a4201be5fb81f661afa28f06229c3
Author: notrinos <[email protected]>
Date: Sat Feb 19 16:14:42 2022 +0700
Removed search item list option in company setup. Rerun.
M inventory/inquiry/stock_list.php
commit 5ed44f177aa9a34803a2f8269c1b581b1490fbe9
Author: notrinos <[email protected]>
Date: Sat Feb 19 16:11:57 2022 +0700
Removed search item list option in company setup.
M includes/ui/ui_lists.inc
M inventory/inquiry/stock_list.php
M sql/vi_VN-tt132-demo.sql
M sql/vi_VN-tt132-new.sql
M sql/vi_VN-tt133-demo.sql
M sql/vi_VN-tt133-new.sql
M sql/vi_VN-tt200-demo.sql
M sql/vi_VN-tt200-new.sql
commit 81224a0ace2de0f4c9f482a0e4ea82e73007c9b4
Author: notrinos <[email protected]>
Date: Sat Feb 19 16:08:51 2022 +0700
Updated support php version, protect pem file from direct access.
M .htaccess
M README.md
commit 00822b8e1e9ca6f36c895d4631e644abe49087f7
Author: notrinos <[email protected]>
Date: Sun Feb 6 19:50:58 2022 +0700
pgp8.1.1 error file_exists(): Passing null to parameter of type string is deprecated. Fixed.
M dashboard/includes/dashboard_classes.inc
commit 9be1c7e4bf66371727a8efcfdbbf341c51fb8268
Author: notrinos <[email protected]>
Date: Sun Feb 6 19:39:23 2022 +0700
php8.1.1 error Implicit conversion from float to int loses precision. Fixed.
M reporting/includes/class.graphic.inc
commit 0a5790e6d559d4a7cc5552a7863a0a6800e21880
Author: notrinos <[email protected]>
Date: Sun Feb 6 15:53:01 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 3713387dd28c66555ea0627421b7b2d4da036db0
Author: notrinos <[email protected]>
Date: Sun Feb 6 01:13:27 2022 +0700
php8.1.1 error Implicit conversion from float-string to int loses precision. Fixed.
M reporting/includes/class.graphic.inc
commit d16c085b548319ae54e18ee19df08bbcc2e2e7b4
Author: notrinos <[email protected]>
Date: Sat Feb 5 23:54:50 2022 +0700
php8.1.1 error continue and code cleanup.
M reporting/includes/class.graphic.inc
commit 706588da6eab2de274740b0f956d5dbac200a77f
Author: notrinos <[email protected]>
Date: Sat Feb 5 22:55:47 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 e910ea0fd4d7a0ddff7dc88dcca57f118e79aab4
Author: notrinos <[email protected]>
Date: Fri Feb 4 16:16:47 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 a5736b964eee0ce644c60803b159677e118bb1c9
Author: notrinos <[email protected]>
Date: Tue Jan 25 22:07:24 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 3fffdcd61c874756059786ef9dbebb176de1913d
Author: notrinos <[email protected]>
Date: Tue Jan 18 20:28:36 2022 +0700
error: Trying to access array offset on value of type bool. Fixed.
M inventory/includes/stock_transfers_ui.inc
commit 8ac8b4e2ba42525959388df244db264599bb9085
Author: notrinos <[email protected]>
Date: Tue Jan 18 11:52:12 2022 +0700
php 8.1.1 error continue and code cleanup in bank_account_reconcile.php
M gl/bank_account_reconcile.php
commit b6efc0d12982496f64ef1ef75623436c5922754d
Author: notrinos <[email protected]>
Date: Mon Jan 17 20:02:21 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 d107ae2c97d922b04bd8d38b8c166458111f84c4
Author: notrinos <[email protected]>
Date: Mon Jan 17 13:47:22 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 f8921dcddc1c1a36b49670bd89773e4c4089f742
Author: notrinos <[email protected]>
Date: Mon Jan 17 07:38:35 2022 +0700
updated exchange rates provider.
M config.default.php
M gl/includes/db/gl_db_rates.inc
commit 9877b3c2da2c157604f023d77c8a026d999c127e
Author: notrinos <[email protected]>
Date: Sun Jan 16 13:15:41 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 ed603159b8f43d153e1f9a4fdaf27d4aae7b58bb
Author: notrinos <[email protected]>
Date: Sun Jan 16 00:16:15 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 c52b06971bd6acf6b1c16ca9465b0c937f0b6b10
Author: notrinos <[email protected]>
Date: Wed Jan 12 21:22:37 2022 +0700
rep309.php, rep310.php code cleanup and rearrange columns width.
M reporting/rep309.php
M reporting/rep310.php
commit 664773087a9952eabef1a333cb10072f5c5a30c9
Author: notrinos <[email protected]>
Date: Tue Jan 11 18:43:30 2022 +0700
Search Item List option is deprecated, continue.
M includes/ui/ui_lists.inc
commit 40535103ca853962d5ff1d715ed41c0a4c91c715
Author: notrinos <[email protected]>
Date: Tue Jan 11 07:23:46 2022 +0700
rep203.php, rep204.php code cleanup and redesigned.
M reporting/rep203.php
M reporting/rep204.php
commit 92cffbed00c40661e5a3865adab5774863fd7d44
Author: notrinos <[email protected]>
Date: Tue Jan 11 05:32:24 2022 +0700
rep202.php code cleanup and redesigned.
M reporting/rep202.php
commit 8d2186b8902c300dd71cc0e47a2449a839da1554
Author: notrinos <[email protected]>
Date: Mon Jan 10 21:46:59 2022 +0700
rep201.php code cleanup and redesigned.
M reporting/rep201.php
commit 472d944eaf7928dd920f0787a23689de34f91f09
Author: notrinos <[email protected]>
Date: Mon Jan 10 13:51:10 2022 +0700
stock list missing items after select an ediable description item. Fixed.
M includes/ui/ui_lists.inc
commit e400a294b5dd978489f52bf94bc4818d5e91fef7
Author: notrinos <[email protected]>
Date: Sun Jan 9 20:52:17 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 45c4ba997de62437611f44124de5eeca4e779bd2
Author: notrinos <[email protected]>
Date: Sun Jan 9 07:53:13 2022 +0700
error item list not selected in item movements and item status pages. Fixed.
M libraries/inserts.js
commit 10db6c5daa7add4994dfaa7f09f9b08d3efdb863
Author: notrinos <[email protected]>
Date: Sat Jan 8 20:49:11 2022 +0700
rep103.php, rep115.php code cleanup and redesigned
M reporting/rep103.php
M reporting/rep115.php
commit e646361251ae6c30bd07aca6158b11e3b67decaf
Author: notrinos <[email protected]>
Date: Sat Jan 8 10:13:04 2022 +0700
rep102.php code cleanup and redesigned.
M reporting/rep102.php
commit 0fc87518935796d97cbb8e65a202af2492620188
Author: notrinos <[email protected]>
Date: Fri Jan 7 20:40:49 2022 +0700
Update gettext template, continue.
M lang/vi_VN/LC_MESSAGES/vi_VN.mo
M lang/vi_VN/LC_MESSAGES/vi_VN.po
commit 67b5725e5d10622048330c057163b4b6217a8d65
Author: notrinos <[email protected]>
Date: Fri Jan 7 19:58:44 2022 +0700
Update gettext template
M lang/vi_VN/LC_MESSAGES/vi_VN.mo
M lang/vi_VN/LC_MESSAGES/vi_VN.po
commit bea1037f0e0808d706d06f5c824021f84f26a51c
Author: notrinos <[email protected]>
Date: Fri Jan 7 14:45:14 2022 +0700
rep101.php redesigned.
M reporting/rep101.php
commit cb8ee3947ee379da7e90a519efc4f8aaa7a672e0
Author: notrinos <[email protected]>
Date: Thu Jan 6 21:54:30 2022 +0700
Update gettext template
M lang/vi_VN/LC_MESSAGES/vi_VN.mo
M lang/vi_VN/LC_MESSAGES/vi_VN.po
commit e9122cd64e2db1b3b6f62c11eea92b3271822b78
Author: notrinos <[email protected]>
Date: Thu Jan 6 21:17:04 2022 +0700
gettext error: Non-ASCII string. Fixed.
M includes/ui/ui_lists.inc
commit 5c6347bd55e0ac0af2f2251124178b795617fbad
Author: notrinos <[email protected]>
Date: Thu Jan 6 19:43:49 2022 +0700
gettext alias missed in locations.php
M inventory/manage/locations.php
commit 74e5fc3c8a6ab6ebde563fcf055742071ee2dac0
Author: notrinos <[email protected]>
Date: Wed Jan 5 07:33:38 2022 +0700
update gettext template.
M lang/vi_VN/LC_MESSAGES/vi_VN.mo
M lang/vi_VN/LC_MESSAGES/vi_VN.po
commit 30418c9e1ffe36f9fda112a8303c2abf6b3fefc6
Author: notrinos <[email protected]>
Date: Sat Jan 1 15:46:12 2022 +0700
Release 0.6
M CHANGELOG.txt
D docs/index.php
D docs/license.txt
M lang/vi_VN/LC_MESSAGES/vi_VN.mo
M lang/vi_VN/LC_MESSAGES/vi_VN.po
M sql/vi_VN-tt132-demo.sql
M sql/vi_VN-tt132-new.sql
M sql/vi_VN-tt133-demo.sql
M sql/vi_VN-tt133-new.sql
M sql/vi_VN-tt200-demo.sql
M sql/vi_VN-tt200-new.sql
M version.php
commit 96e3a56246512a6af57f14e7d2b9a70bb7bf4ec0
Author: notrinos <[email protected]>
Date: Fri Dec 31 08:37:23 2021 +0700
Update gettext template
M lang/vi_VN/LC_MESSAGES/vi_VN.mo
M lang/vi_VN/LC_MESSAGES/vi_VN.po
commit 19a36df26a045f1206776c0083f1016ae5c7001a
Author: notrinos <[email protected]>
Date: Tue Dec 28 16:18:11 2021 +0700
added button colors in backup page
M themes/default/local_style/backups.css
commit 2dacead8c308017da36a3c329593f30edbd977ea
Author: notrinos <[email protected]>
Date: Tue Dec 28 10:06:30 2021 +0700
Update gettext template
M lang/vi_VN/LC_MESSAGES/vi_VN.mo
M lang/vi_VN/LC_MESSAGES/vi_VN.po
commit d9edaaedf9fdfe0f8217fdf6b649a313d5701a4e
Author: notrinos <[email protected]>
Date: Mon Dec 27 01:05:44 2021 +0700
rep114 rearange column width.
M reporting/rep114.php
commit 736de9d8c5a4b0140986eede9cd2709c33cb2ff4
Author: notrinos <[email protected]>
Date: Thu Dec 23 10:50:57 2021 +0700
javascript error: Cannot read properties of null. Fixed.
M libraries/behaviour.js
commit eb043ddc5c7297cfe625e8468b8029e8a0f0eb21
Author: notrinos <[email protected]>
Date: Thu Dec 23 02:24:00 2021 +0700
update getext template
M lang/vi_VN/LC_MESSAGES/vi_VN.mo
M lang/vi_VN/LC_MESSAGES/vi_VN.po
commit c97b184bb312bc502fc9b3a98f39bf22d5c118b4
Author: notrinos <[email protected]>
Date: Thu Dec 23 01:59:55 2021 +0700
Wrong bank account dummy data. Fixed
M sql/vi_VN-tt133-new.sql
commit 5a5aec3958678c131735d54d24868f635524388b
Author: notrinos <[email protected]>
Date: Wed Dec 22 11:08:12 2021 +0700
Remove unused parameters in function subledger_list_cells and code cleanup.
M gl/includes/ui/gl_journal_ui.inc
M includes/ui/ui_lists.inc
commit c6561ec204212741a31f8171563f58f2808009f4
Author: notrinos <[email protected]>
Date: Wed Dec 22 07:53:53 2021 +0700
wrong bank account names in demo data, fixed.
M sql/vi_VN-tt133-demo.sql
commit 6efb8fa57ce2bd62ee0fa79f1a8b1106723df596
Author: notrinos <[email protected]>
Date: Tue Dec 21 05:52:31 2021 +0700
login page pops up on every clicks. Fixed.
M includes/session.inc
commit 089774c3ed219208ecc5dab74112738172c50d0f
Author: notrinos <[email protected]>
Date: Sat Dec 18 23:37:25 2021 +0700
Notes from template are not used in recurring invoices. Fixed.
M sales/create_recurrent_invoices.php
commit d340d69affc001725b608dab0ec49d65724f9744
Author: notrinos <[email protected]>
Date: Fri Dec 10 13:01:59 2021 +0700
syntax error in print statements report. Fixed.
M reporting/rep108.php
commit d809b7d0015ce3ed3a01d2bd08e954fc8e39d455
Author: notrinos <[email protected]>
Date: Tue Dec 7 22:42:17 2021 +0700
error undefined function delete_image(). Fixed.
M inventory/manage/items.php
commit 73dfc2244fad89946b14030dc68945b2a499c850
Author: notrinos <[email protected]>
Date: Tue Dec 7 10:05:38 2021 +0700
php8 error fix.
M includes/ui/simple_crud_class.inc
commit 3b6ae68269024ff1125d2e2efe4bd7126ffcafec
Author: notrinos <[email protected]>
Date: Mon Dec 6 13:22:57 2021 +0700
Updtae gettext template
M lang/new_language_template/LC_MESSAGES/empty.po
commit 3be7d21aa32ef80cf045f2af40ac8ce76e5d68c5
Author: notrinos <[email protected]>
Date: Mon Dec 6 12:58:08 2021 +0700
php8 fixes, continue.
M includes/ui/simple_crud_class.inc
commit a02e26df5ae49f0b9d2084c28b28a08db0b8419a
Author: notrinos <[email protected]>
Date: Sat Dec 4 08:18:22 2021 +0700
The secure flag was not set on session cookie. Fixed.
M includes/session.inc
commit 0b1011a01fd28898379b21df87aad964d7d36e65
Author: notrinos <[email protected]>
Date: Wed Dec 1 16:59:58 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 6e4b98d2abd4dcb835f60fe0780d7a819e781f03
Author: notrinos <[email protected]>
Date: Tue Nov 30 06:45:32 2021 +0700
Sales invoice process issue. Fixed
M sales/includes/db/cust_trans_db.inc
commit 58642f9490524bf3c0262903556cab6d124d77b5
Author: notrinos <[email protected]>
Date: Mon Nov 29 22:38:34 2021 +0700
cleaned unused code
M manufacturing/includes/db/work_order_costing_db.inc
commit be8dfeaf38adf91e9263c84548a1e303e31e200a
Author: notrinos <[email protected]>
Date: Sun Nov 28 17:55:42 2021 +0700
code cleanup
M manufacturing/includes/db/work_order_costing_db.inc
commit d2bb3c105a021cbc72323eaaf17754a530972f9a
Author: notrinos <[email protected]>
Date: Tue Nov 23 06:48:26 2021 +0700
php8 fix, blank page on po_receive_items.php
M purchasing/po_receive_items.php
commit 0b934d91a58c1d0849ac2ce83d7d34f8096a98a4
Author: notrinos <[email protected]>
Date: Mon Nov 22 12:17:35 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 3025f78d1c15acb304f302f6bf6ac0aee81116d0
Author: notrinos <[email protected]>
Date: Sun Nov 21 23:03:07 2021 +0700
error restoring data and messed utf8 characters. Fixed
M admin/db/maintenance_db.inc
M includes/db/connect_db_mysqli.inc
M sql/vi_VN-tt132-demo.sql
M sql/vi_VN-tt132-new.sql
M sql/vi_VN-tt133-demo.sql
M sql/vi_VN-tt133-new.sql
M sql/vi_VN-tt200-demo.sql
M sql/vi_VN-tt200-new.sql
commit 7769c1d0a80b7c8b817bb0141de90a93da9a4d55
Author: notrinos <[email protected]>
Date: Thu Nov 18 09:33:23 2021 +0700
config.default.inc error on startup, fixed.
M config.default.php
commit 005e3fbdfa2f2408c2e7653b9bca0f44cb1e6b29
Author: notrinos <[email protected]>
Date: Wed Nov 17 23:58:35 2021 +0700
Journal entry impacts and tax in gl row supplier invoice. Fixed.
M gl/includes/db/gl_db_trans.inc
M includes/ui/items_cart.inc
M reporting/rep709.php
commit 6aa478a85147f4c8b77c5f0a29c0c146ab20239f
Author: notrinos <[email protected]>
Date: Tue Nov 16 06:52:47 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 79ffba2447454c74947742fcaa38e08100be97f9
Author: notrinos <[email protected]>
Date: Sat Nov 13 00:12:24 2021 +0700
Fix db_pager protect count($this->extra_where)
M includes/db_pager.inc
commit 647e9c7554790fbe163a9e65f1f184795389639c
Author: notrinos <[email protected]>
Date: Thu Nov 11 13:24:25 2021 +0700
focus issue on inventory adjusment entry. Fixed.
M inventory/includes/item_adjustments_ui.inc
commit 5ebc917942f39c318d3563cd39d0b73dc8c9ed54
Author: notrinos <[email protected]>
Date: Wed Nov 10 10:44:58 2021 +0700
Syntax error in customer inquiry. Fixed.
M sales/inquiry/customer_inquiry.php
commit 10bbbf93e885d4be6547a104947ab71355826e7c
Author: notrinos <[email protected]>
Date: Wed Nov 10 09:18:39 2021 +0700
Wrong journal entries amount fix and code cleanup
M gl/includes/db/gl_db_trans.inc
commit e61c028de2ccca70ece33b877904b75a3b97925e
Author: notrinos <[email protected]>
Date: Tue Nov 9 23:42:04 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 3ef400cb355394836a5f72c9032114ddbbf9bb02
Author: notrinos <[email protected]>
Date: Tue Nov 9 19:44:52 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 09c25f024a3ada8d777e49b498342f45b1847837
Author: notrinos <[email protected]>
Date: Tue Nov 9 06:01:18 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 71124495055c5120c1b55cd0eed66ec2215b4578
Author: notrinos <[email protected]>
Date: Mon Nov 8 22:44:40 2021 +0700
Error calculating customer aging regarding journal entries. Fixed.
M sales/includes/db/customers_db.inc
commit c3b6bebacc79af477c4ea69d63fa927f85ed6a99
Author: notrinos <[email protected]>
Date: Mon Nov 8 14:31:24 2021 +0700
Customer Statements show wrong balances for Journal Entries. Fixed.
M reporting/rep108.php
commit 6796c7380bd2a52bed46bc69d7eb02f990e0ed8d
Author: notrinos <[email protected]>
Date: Mon Nov 8 10:59:15 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 dc08a73f8fab73d4fdcf564548cc4176793952e9
Author: notrinos <[email protected]>
Date: Mon Nov 8 05:55:15 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 841952d98a82a501a9cb0093b663d11785ee63ce
Author: notrinos <[email protected]>
Date: Thu Nov 4 09:02:38 2021 +0700
Argument cannot be passed by reference in rep301. Fixed.
M reporting/rep301.php
commit 874cb7a577b1140fa9bd40eca213d5e5d983be5d
Author: notrinos <[email protected]>
Date: Wed Nov 3 08:44:09 2021 +0700
Items/Fixed Assets: Fixed item image adding/update.
M inventory/manage/items.php
commit d5952cdb3832479cdf8f845acd3a13eb50126dd2
Author: notrinos <[email protected]>
Date: Tue Nov 2 23:10:48 2021 +0700
code cleanup after last commit.
M install/index.php
commit 18420984e19790773d311035fa41d18f02f2ebd7
Author: notrinos <[email protected]>
Date: Tue Nov 2 23:07:35 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 dfe997f0f5de6eb43a556b38f673d81fa5079a55
Author: notrinos <[email protected]>
Date: Mon Nov 1 19:48:51 2021 +0700
no rep109 title found in print profile. Fixed.
M reporting/rep109.php
commit 9b156038e0033fc587c1842df3b72e84bb8c5cb6
Author: notrinos <[email protected]>
Date: Mon Nov 1 07:03:47 2021 +0700
Curly braces {} in arrays replaced
M reporting/includes/Workbook.php
commit 02f6b978f6ea8120ba5007f5dbcf594ab5db8dd9
Author: notrinos <[email protected]>
Date: Sat Oct 30 20:21:23 2021 +0700
Added item description for item search box suggestions
M includes/ui/ui_lists.inc
commit 74ed048586d0a3ed98ac385884767b9e5845d929
Author: notrinos <[email protected]>
Date: Sun Oct 17 00:23:29 2021 +0700
Bill of Materials entry is not responding. Fixed.
M manufacturing/manage/bom_edit.php
commit 19d19c74256d57faf78828cee02f02895eb799c2
Author: notrinos <[email protected]>
Date: Fri Oct 15 20:49:29 2021 +0700
A non well formed numeric value encountered in sales_credit_ui.inc. Fixed
M sales/includes/ui/sales_credit_ui.inc
commit b7f74fc65a0f141b0320b44a4df558e4f680dc68
Author: notrinos <[email protected]>
Date: Tue Oct 12 14:13:38 2021 +0700
hook_db_prewrite is not used inside journal entry. Added.
M gl/includes/db/gl_journal.inc
commit f3a116d82cb750238001e50eebf07144264b1750
Author: notrinos <[email protected]>
Date: Sat Oct 9 08:31:21 2021 +0700
Add unique key for table comments
M sql/vi_VN-tt132-demo.sql
M sql/vi_VN-tt132-new.sql
M sql/vi_VN-tt133-demo.sql
M sql/vi_VN-tt133-new.sql
M sql/vi_VN-tt200-demo.sql
M sql/vi_VN-tt200-new.sql
commit 9770c4cc6e8b69b716d0331e90b478321a43285e
Author: notrinos <[email protected]>
Date: Sat Sep 25 20:49:19 2021 +0700
qty_done is not updated correctly when partial invoice is voided. Fixed
M sales/includes/db/sales_invoice_db.inc
commit d207e7c02639cf3dbcd8ff8b3e1d404466ac1bc2
Author: notrinos <[email protected]>
Date: Mon Sep 13 07:53:16 2021 +0700
Code cleanup
M sales/customer_payments.php
commit 58f5d0a6ffe6596e3b27fba0b63ead1412e36627
Author: notrinos <[email protected]>
Date: Thu Sep 9 00:28:21 2021 +0700
Changed default utf8 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 3346d2d87b4783862ec97c469bab8628ef2b6d2e
Author: notrinos <[email protected]>
Date: Tue Sep 7 23:22:17 2021 +0700
Adapting with new layout of exchange rate option 2
M gl/includes/db/gl_db_rates.inc
commit 9bb46e6848c3ddc12c1c71763a99467d41295a8f
Author: notrinos <[email protected]>
Date: Mon Aug 30 23:33:41 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 58bd5fbffef237677509cdbb9bf352f9d6f6a715
Author: notrinos <[email protected]>
Date: Sat Aug 28 22:11:51 2021 +0700
Moved purchasing item control row to the top
M purchasing/includes/ui/po_ui.inc
commit de8c53ef8a58f8fc84b0944e0c85dc37b6345ffd
Author: notrinos <[email protected]>
Date: Sun Aug 22 17:51:37 2021 +0700
missed text align for right to left languages, added.
M themes/default/default.css
commit 5162779a8d1ce4affc6991860d31cb81da52cfab
Author: notrinos <[email protected]>
Date: Fri Aug 20 23:25:19 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 0916ed1d05e1f3975ecc7d726a5d137e92f6106f
Author: notrinos <[email protected]>
Date: Fri Aug 20 23:07:52 2021 +0700
Unable to void Work Order. Fixed.
M manufacturing/includes/db/work_order_produce_items_db.inc
commit 17b53ee8284e3ff8a424895b4e6a686ff5af32f8
Author: notrinos <[email protected]>
Date: Wed Aug 11 17:53:14 2021 +0700
New line bug in inventory location transfer. Fixed.
M inventory/transfers.php
commit 9cadb6794a3646351e11516f64c759d5c21d51dc
Author: notrinos <[email protected]>
Date: Tue Aug 10 22:30:05 2021 +0700
Credit This Option for Supplier Invoice Doesn't Show Quantity Invoiced
M purchasing/includes/db/invoice_db.inc
commit ddda177dcdb5ca7f0da410999f6d7022a318df20
Author: notrinos <[email protected]>
Date: Mon Aug 9 20:55:30 2021 +0700
Customer Credit Invoice: fixed invalid processing of invoice payments (triggering blank page on php8 too)
M reporting/includes/pdf_report.inc
M sales/includes/sales_db.inc
commit 383a14ce231fc8f3797dce9aa45b32b7cbe2110c
Author: notrinos <[email protected]>
Date: Sun Aug 8 09:44:18 2021 +0700
function money_format is deprecated in above PHP 7.4. Replaced with price_format.
M includes/current_user.inc
M reporting/includes/pdf_report.inc
commit def47394aee8113aa105220e8a88a93cba206d07
Author: notrinos <[email protected]>
Date: Sat Aug 7 21:00:19 2021 +0700
Direct supplier payment bug introduced by Dimension wise balance sheet items - AR/AP implemented
M purchasing/includes/purchasing_db.inc
commit fc809cf53f64a03cb77ef1317bd16c0aa5d4d561
Author: notrinos <[email protected]>
Date: Thu Jul 15 07:40:26 2021 +0700
Default theme improvement in fixed asset entry
M themes/default/local_style/items.css
commit 85859f9dc55f6e6f52f6b348f3e2766ed518bb2f
Author: notrinos <[email protected]>
Date: Thu Jul 15 07:22:28 2021 +0700
Duplicate Class ID found when updating fixed asset class. Fixed.
M fixed_assets/fixed_asset_classes.php
commit 9206753c9f93827113991c380957024db88a1d0c
Author: notrinos <[email protected]>
Date: Tue Jul 13 23:20:17 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 10020f721d8c9b40141d59cc061f2c340d2ac0cf
Author: notrinos <[email protected]>
Date: Tue Jul 13 09:17:17 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 94d8574c373d8dfb0324f8cdfff8684edca1eb20
Author: notrinos <[email protected]>
Date: Mon Jul 12 21:57:15 2021 +0700
php7.4 error trying to access array offset on value of type bool. Continue
M includes/db/inventory_db.inc
commit 761ffb11d6b781e0a6e62b06bb174b57a3464e91
Author: notrinos <[email protected]>
Date: Mon Jul 12 18:30:54 2021 +0700
php7.4 error trying to access array offset on value of type bool. Fixed.
M reporting/rep451.php
commit 9c977d82f05e649eb6c29c2060114434bc5d58fc
Author: notrinos <[email protected]>
Date: Mon Jul 12 08:05:53 2021 +0700
php 7.4 error Trying to access array offset on value of type bool. Fixed.
M admin/db/tags_db.inc
commit d830d949ee1e2640e6ec77ad4d902f6678e30f61
Author: notrinos <[email protected]>
Date: Sat Jul 10 22:00:32 2021 +0700
code cleanup
M sales/includes/db/payment_db.inc
commit 1608009affea840485afd57f71dd333dab55dbbd
Author: notrinos <[email protected]>
Date: Fri Jul 9 08:46:32 2021 +0700
php8 error Deprecated: Required parameter follows optional parameter. Fixed
M gl/inquiry/profit_loss.php
commit be1dde5d462995a19f19fdd9c76585fe55686183
Author: notrinos <[email protected]>
Date: Thu Jul 8 22:50:49 2021 +0700
error undefined constant 'CL_NONE', fixed.
M includes/types.inc
commit b0aaaccc811a3b1d773572c5b6f6f342e93fa720
Author: notrinos <[email protected]>
Date: Wed Jul 7 22:11:34 2021 +0700
error: Trying to access array offset on value of type bool. Fixed
M gl/bank_account_reconcile.php
commit bf16ac096be671db254b7e908f618c5d1138c192
Author: notrinos <[email protected]>
Date: Tue Jul 6 21:01:07 2021 +0700
php8 fixes. Deprecated: Required parameter follows optional parameter
M reporting/rep307.php
M reporting/rep308.php
commit ba0c0f3fd84ec8de2e8c3f165684404400b12b0e
Author: notrinos <[email protected]>
Date: Mon Jul 5 14:31:42 2021 +0700
Wrong parameter passed to qty_cell. Fixed
M inventory/manage/sales_kits.php
commit e850b33f73b4df60aebbd687bf09bf39e4b99943
Author: notrinos <[email protected]>