forked from FrontAccountingERP/FA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.txt
10051 lines (8518 loc) · 308 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
2015-05-09 23:07:36 +0200 Joe Hunt
Merge branch 'master' of ssh://git.code.sf.net/p/frontaccounting/git
2015-05-09 23:06:09 +0200 Joe Hunt
New CHANGELOG.txt format.
M CHANGELOG.txt
M doc/CHANGELOG.old.txt
2015-05-06 22:30:47 +0200 Janusz Dobrowolski
Fixed regression in db_pager.
M includes/db_pager.inc
2015-04-13 19:03:26 +0200 Janusz Dobrowolski
Empty password is forbidden when creating new user account.
M admin/users.php
2015-04-12 00:58:31 +0200 Janusz Dobrowolski
HTML cleanup in fiscal years selector helper.
M includes/ui/ui_lists.inc
2015-04-29 16:39:48 +0200 Joe Hunt
Only first item in Supplier Credit Notes had tax added. Fixed.
M purchasing/supplier_credit.php
2015-04-29 14:18:44 +0200 Joe Hunt
Fixed wrong headers in Supplier Credit Note.
M purchasing/includes/ui/invoice_ui.inc
2015-04-28 16:20:06 +0200 Joe Hunt
IE 11 doesn't work with input file type in forms. Fixed.
M includes/page/header.inc
2015-04-11 15:57:19 +0200 Janusz Dobrowolski
Additional syntax cleanup to previous patch.
M includes/db_pager.inc
2015-04-11 10:30:39 +0200 Janusz Dobrowolski
Fixed problem with counting number of rows for some SQL queries displayed in db pager.
M gl/includes/db/gl_db_trans.inc
M includes/db_pager.inc
2015-04-11 09:20:16 +0200 Joe Hunt
Included option for Show Service Items in Inventory Sales Report
M reporting/rep304.php
M reporting/reports_main.php
2015-04-04 10:42:22 +0200 Janusz Dobrowolski
Fixed hidden fields support for ajax driven divs.
M includes/ui/ui_controls.inc
2015-04-03 21:39:59 +0200 Joe Hunt
Release 2.3.24
M version.php
2015-04-03 21:11:19 +0200 ApMuthu
Additional fix for Windows specific issue in access roles editor.
M admin/security_roles.php
2015-04-03 19:25:35 +0200 Joe Hunt
Issuing stocks in advanced manufacturing caused errors reporting negative stock always.
M manufacturing/work_order_issue.php
2015-04-03 19:24:24 +0200 Joe Hunt
Redundant check for negative stock removed.
M reporting/rep409.php
2015-04-02 11:19:55 +0200 Joe Hunt
Updated .gitattributes with export-ignore.
M .gitattributes
M update.html
2015-04-01 17:47:37 +0200 Janusz Dobrowolski
Fixed hidden fields output (backported; fixes problem with security role editiom).
M includes/ui/ui_controls.inc
M includes/ui/ui_input.inc
2015-03-31 13:41:22 +0200 Janusz Dobrowolski
[0002707] Added check for email uniqueness during password reset.
M admin/db/users_db.inc
M includes/current_user.inc
M includes/session.inc
2015-03-27 10:13:37 +0100 Janusz Dobrowolski
Fixed meta files.
A .gitattributes
A .gitignore
D .hgtags
A README.md
2015-03-23 16:29:56 +0100 Joe
New CHANGELOG.txt
M CHANGELOG.txt
2015-03-23 16:27:19 +0100 Joe
Release 2.3.23
M version.php
2015-03-23 14:55:38 +0100 Janusz Dobrowolski
Gettext template update.
M lang/new_language_template/LC_MESSAGES/empty.po
2015-03-14 16:05:36 +0100 Janusz Dobrowolski
Additional cleanups in standard themes.
M themes/aqua/renderer.php
M themes/cool/renderer.php
M themes/default/renderer.php
2015-03-12 13:00:10 +0100 Janusz Dobrowolski
Fixed many issues in output HTML code according to HTML 4.01 Transitional format.
M access/login.php
M access/logout.php
M access/password_reset.php
M admin/create_coy.php
M admin/crm_categories.php
M admin/db/attachments_db.inc
M admin/inst_upgrade.php
M admin/security_roles.php
M gl/gl_bank.php
M gl/gl_journal.php
M gl/includes/ui/gl_bank_ui.inc
M gl/includes/ui/gl_journal_ui.inc
M gl/inquiry/balance_sheet.php
M gl/inquiry/profit_loss.php
M gl/view/bank_transfer_view.php
M gl/view/gl_deposit_view.php
M gl/view/gl_payment_view.php
M gl/view/gl_trans_view.php
M includes/page/footer.inc
M includes/page/header.inc
M includes/system_tests.inc
M includes/ui/allocation_cart.inc
M includes/ui/contacts_view.inc
M includes/ui/db_pager_view.inc
M includes/ui/ui_controls.inc
M includes/ui/ui_input.inc
M includes/ui/ui_lists.inc
M includes/ui/ui_msgs.inc
M includes/ui/ui_view.inc
M includes/ui/view_package.php
M install/index.php
M inventory/adjustments.php
M inventory/includes/item_adjustments_ui.inc
M inventory/includes/stock_transfers_ui.inc
M inventory/manage/item_categories.php
M inventory/manage/item_codes.php
M inventory/manage/item_units.php
M inventory/manage/movement_types.php
M inventory/manage/sales_kits.php
M inventory/prices.php
M inventory/purchasing_data.php
M inventory/reorder_level.php
M inventory/transfers.php
M inventory/view/view_adjustment.php
M inventory/view/view_transfer.php
M manufacturing/includes/manufacturing_ui.inc
M manufacturing/includes/work_order_issue_ui.inc
M manufacturing/manage/bom_edit.php
M manufacturing/manage/work_centres.php
M manufacturing/work_order_issue.php
M purchasing/includes/ui/grn_ui.inc
M purchasing/includes/ui/invoice_ui.inc
M purchasing/includes/ui/po_ui.inc
M purchasing/inquiry/supplier_inquiry.php
M purchasing/po_receive_items.php
M purchasing/supplier_payment.php
M purchasing/view/view_grn.php
M purchasing/view/view_po.php
M purchasing/view/view_supp_credit.php
M purchasing/view/view_supp_invoice.php
M purchasing/view/view_supp_payment.php
M reporting/includes/reports_classes.inc
M sales/create_recurrent_invoices.php
M sales/credit_note_entry.php
M sales/customer_credit_invoice.php
M sales/customer_delivery.php
M sales/customer_invoice.php
M sales/customer_payments.php
M sales/includes/ui/sales_credit_ui.inc
M sales/includes/ui/sales_order_ui.inc
M sales/inquiry/customer_inquiry.php
M sales/manage/sales_areas.php
M sales/manage/sales_groups.php
M sales/manage/sales_people.php
M sales/manage/sales_types.php
M sales/sales_order_entry.php
M sales/view/view_credit.php
M sales/view/view_dispatch.php
M sales/view/view_invoice.php
M sales/view/view_receipt.php
M sales/view/view_sales_order.php
M taxes/item_tax_types.php
M themes/aqua/renderer.php
M themes/cool/renderer.php
M themes/default/renderer.php
2015-02-20 01:44:21 +0100 Joe
Rerun. The aging reports / inquiries had a 1 day error in presentation. Fixed.
M purchasing/includes/db/suppliers_db.inc
M reporting/rep102.php
M reporting/rep202.php
M sales/includes/db/customers_db.inc
M sales/inquiry/customer_inquiry.php
2015-02-19 17:48:05 +0100 Joe
The aging reports / inquiries had a 1 day error in presentation. Fixed.
M purchasing/includes/db/suppliers_db.inc
M reporting/rep102.php
M reporting/rep202.php
M sales/includes/db/customers_db.inc
2015-02-19 10:17:41 +0100 Joe
Allow search by Id in search work orders.
M manufacturing/includes/db/work_orders_db.inc
M manufacturing/search_work_orders.php
2015-02-13 22:46:35 +0100 Joe
Rerun of rep107. Currency filter not working in documents.
M reporting/rep107.php
2015-02-12 21:50:24 +0100 Joe
Currency filter not working in documents.
M reporting/rep107.php
M reporting/rep108.php
M reporting/rep109.php
M reporting/rep111.php
M reporting/rep112.php
M reporting/rep113.php
M reporting/rep209.php
M reporting/rep210.php
2015-02-10 08:33:04 +0100 Joe
Moved page number, when more than 1 page, on documents down 2 lines.
M reporting/includes/header2.inc
2015-01-24 10:25:32 +0100 Joe
Fixed Delivery note bug : Parent constraints not working if sales order line deleted after delivery
M sales/includes/cart_class.inc
2015-01-17 08:50:21 +0100 Joe
Missing update of shipping tax when crediting an invoice.
M sales/customer_credit_invoice.php
2014-12-31 12:55:54 +0100 Janusz Dobrowolski
Fixed error handling (logged in debug instead of production mode).
M includes/errors.inc
2014-12-31 12:55:11 +0100 Janusz Dobrowolski
Purchase order reference was not restored after last PO cancelation.
M purchasing/includes/db/po_db.inc
2014-12-22 19:11:49 +0100 Janusz Dobrowolski
Reverting last last two commits mistakenly pushed to stable branch.
M sql/en_US-demo.sql
M sql/en_US-new.sql
2014-12-21 17:32:41 +0100 Janusz Dobrowolski
Removed redundant index on supp_trans.type.
M sql/en_US-new.sql
2014-12-20 17:16:55 +0100 Janusz Dobrowolski
Removed redundant indexes on cust_branch & supp_trans tables
M sql/en_US-demo.sql
M sql/en_US-new.sql
2014-12-19 00:22:30 +0100 Joe
Extended email entries.
M admin/company_preferences.php
M inventory/manage/locations.php
2014-12-17 15:33:19 +0100 Joe
Fixed Quote Valid Days in System and GL Setup, Setup tab.
M admin/gl_setup.php
M includes/prefs/sysprefs.inc
M sales/includes/ui/sales_order_ui.inc
2014-12-08 20:14:01 +0100 Janusz Dobrowolski
Fixed problems with latin2 encoding due to changes in htmlspecialchars() behaviour in newer php versions.
M includes/db/connect_db.inc
M includes/session.inc
2014-11-22 11:54:52 +0100 Cambell
Further fixes to javascript multiple class handling.
M js/inserts.js
M js/utils.js
2014-11-21 10:18:42 +0100 Janusz Dobrowolski
[0002950] Fixed false quantity on hand errors on sales delivery.
M sales/customer_delivery.php
M sales/includes/cart_class.inc
2014-11-21 10:17:54 +0100 Janusz Dobrowolski
Fixed warning during database restore.
M admin/db/maintenance_db.inc
2014-11-17 10:21:06 +0100 Janusz Dobrowolski
Fixed warning about non-existing HTTP_USER_AGENT session variable on some Plesk configurations.
M includes/session.inc
2014-11-19 00:07:10 +0100 Joe
Fixed better CSS combobox select.
M themes/aqua/default.css
M themes/cool/default.css
M themes/default/default.css
2014-11-17 11:04:14 +0100 Joe
Fixed ECB URLs moved permanently.
M gl/includes/db/gl_db_rates.inc
2014-11-13 21:25:07 +0700 Cambell
Javascript now works with multiple classes on elements.
M js/inserts.js
M js/utils.js
2014-11-07 07:50:05 +0100 Joe
Fixed deprecated preg_replace in php >= 5.3.0 with the /e flag in utf8 reports.
M reporting/includes/html_entity_decode_php4.php
2014-10-27 21:34:36 +0100 Joe
Improved calculation of standard cost in advanced manufacturing even if qoh = 0.
M manufacturing/includes/db/work_orders_db.inc
2014-10-27 18:26:02 +0100 Janusz Dobrowolski
Fixed 'C' english language display on Install/Update Languages page, to allow its selection on first page.
M admin/inst_lang.php
2014-10-15 00:53:25 +0200 Janusz Dobrowolski
Restoring compressed sql files sometimes failed due to nasty bug in php gzfile function.
M admin/db/maintenance_db.inc
2014-10-08 20:50:59 +0200 Janusz Dobrowolski
Fixed contact record creation when new customer is added (reference/name were superseded).
M sales/manage/customers.php
2014-10-01 23:08:26 +0200 Joe
Improved layout Reports Customer / Supplier Balances.
M reporting/rep101.php
M reporting/rep201.php
2014-10-01 13:32:38 +0200 Joe
Wrong domestic open balance in Report Supplier Balance for currency suppliers.
M reporting/rep201.php
2014-09-29 16:32:30 +0200 Joe
Clean up. Standard COAs.
M sql/en_US-demo.sql
M sql/en_US-new.sql
2014-09-29 16:06:38 +0200 Joe
Changelog change
A CHANGELOG.txt
2014-09-29 16:04:06 +0200 Joe
Changelog change
D CHANGELOG.txt
2014-09-29 15:57:38 +0200 Joe
Release 2.3.22
M update.html
M version.php
2014-09-29 15:35:40 +0200 Janusz Dobrowolski
Updated gettext template.
M lang/new_language_template/LC_MESSAGES/empty.po
2014-09-26 15:34:33 +0200 Joe
Updated en_US-demo.sql and en_US-new.sql COAs
M sql/en_US-demo.sql
M sql/en_US-new.sql
2014-09-24 23:42:01 +0200 Joe
Global option for printing item images on sales quotations.
M config.default.php
M reporting/rep111.php
2014-09-24 07:51:57 +0200 Joe
Improved Tax Report. Bank Payments/Deposits show 'order to/name' info in name column.
M reporting/rep709.php
2014-09-22 23:20:05 +0200 Janusz Dobrowolski
Small cleanups.
M inventory/transfers.php
M sales/includes/ui/sales_order_ui.inc
2014-09-21 00:09:59 +0200 Janusz Dobrowolski
Fixed stock quantity checks to block transactions which would result in negative inventory status (if not allowed).
M gl/includes/db/gl_db_bank_trans.inc
M includes/db/inventory_db.inc
M includes/db/manufacturing_db.inc
M includes/db/sql_functions.inc
M includes/ui/items_cart.inc
M inventory/adjustments.php
M inventory/includes/item_adjustments_ui.inc
M inventory/includes/stock_transfers_ui.inc
M inventory/transfers.php
M manufacturing/includes/work_order_issue_ui.inc
M manufacturing/work_order_add_finished.php
M manufacturing/work_order_entry.php
M manufacturing/work_order_issue.php
M purchasing/supplier_credit.php
M sales/customer_delivery.php
M sales/includes/cart_class.inc
M sales/includes/ui/sales_order_ui.inc
M sales/sales_order_entry.php
2014-09-19 09:06:11 +0200 Joe
Set default Show Also Allocated to Yes in aged reports, just like on screen transactions.
M reporting/includes/reports_classes.inc
2014-09-19 02:40:34 +0200 Joe
Rerun. We must also test for availability on document date.
M sales/sales_order_entry.php
2014-09-19 02:04:30 +0200 Joe
We must always test for stock availability by todays date.
M sales/sales_order_entry.php
2014-09-17 11:04:23 +0200 Janusz Dobrowolski
Fixed POST array values paasing on timout screen.
M access/login.php
2014-09-14 00:43:07 +0200 Joe
Added new report, Work Order Listing.
M reporting/includes/reports_classes.inc
A reporting/rep402.php
M reporting/reports_main.php
2014-09-14 00:42:03 +0200 Joe
Added sorting for number and name in work order inquiry.
M manufacturing/search_work_orders.php
2014-09-12 08:19:48 +0200 Joe
Bug fixes and option to print Inventory Valuation Report on Costed Values.
M reporting/rep301.php
M reporting/rep308.php
2014-09-12 08:18:10 +0200 Joe
CItem Cost Update will also regulate the stock moves standard cost to mirror correct GL.
M inventory/includes/db/items_trans_db.inc
2014-09-12 08:16:50 +0200 Joe
New flag $use_costed_values in config.php for Inventory Valuation Report
M config.default.php
2014-09-12 08:15:34 +0200 Joe
Removed redundant mb_flag 'A'.
M includes/db/manufacturing_db.inc
2014-09-01 14:18:04 +0200 Janusz Dobrowolski
PHP 5.4 warning on deprecated mysql api is ignored to avoid folld in errors file. This is safe to use it with 5.4 in FA 2.3 anyway, will be moved to mysqli in 2.4.
M includes/errors.inc
2014-08-22 22:26:32 +0200 Janusz Dobrowolski
Fixed php5.4 specific problem with downloading extensions (by campbell-prince)
M includes/archive.inc
2014-08-15 09:30:11 +0200 Joe
Improved Costed Inventory Movement Report
M reporting/rep308.php
2014-08-13 23:00:42 +0200 Joe
Wrong parameter when saving Item Transfer
M inventory/includes/db/items_transfer_db.inc
2014-08-12 23:46:20 +0200 Joe
Wrong parameter when saving Item Adjustment
M inventory/includes/db/items_adjust_db.inc
2014-07-10 10:43:31 +0200 Joe
Added supplier search in Outstanding Purchase Orders and Purchase Orders Inquiry.
M purchasing/includes/db/po_db.inc
M purchasing/inquiry/po_search.php
M purchasing/inquiry/po_search_completed.php
M sales/includes/db/cust_trans_db.inc
2014-07-09 11:42:38 +0200 Joe
Added customer search in Search not invoiced Deliveries.
M sales/includes/db/cust_trans_db.inc
M sales/inquiry/sales_deliveries_view.php
2014-07-07 10:59:55 +0200 Joe
Improved readability in Graphics engine, x-legends for all languages.
M reporting/includes/class.graphic.inc
2014-07-05 16:17:45 +0200 Joe
New variable in config.default.php , $UTF8_fontfile. Needed due to FreeSans problem with Arabic and Chinese in Graphics Engine.
M config.default.php
2014-07-05 16:15:08 +0200 Joe
Enabled RTL text in Graphics Engine. Due to bug in imagettftext.
M reporting/includes/class.graphic.inc
2014-06-24 09:15:17 +0200 Joe
Fixed line overwrite in documents when using rtl language.
M reporting/includes/header2.inc
2014-06-17 18:51:58 +0200 Joe
User account should not be deleted if there are any entries on his/her name.
M admin/users.php
2014-06-13 20:40:21 +0200 Joe
Added short name, name and tax id as search options in customer and supplier lists
M includes/ui/ui_lists.inc
2014-06-07 23:24:19 +0200 Janusz Dobrowolski
Language template update
M lang/new_language_template/LC_MESSAGES/empty.po
2014-05-27 20:56:31 +0200 Janusz Dobrowolski
Customer Credit Note: fixed payments allocation after crediting sales invoice.
M sales/includes/db/custalloc_db.inc
2014-05-27 18:02:16 +0200 Janusz Dobrowolski
Payment/Deposit: new exchange rate was not used for GL postings, now ex_rate is stored before adding transaction.
M gl/gl_bank.php
2014-05-21 16:00:20 +0200 Joe
Release 2.3.21
M CHANGELOG.txt
M update.html
M version.php
2014-05-21 08:59:54 +0200 Janusz Dobrowolski
Fixed unexpected additional GL postings when tax was used in Supplier Invoice additional GL lines.
M purchasing/includes/supp_trans_class.inc
M purchasing/supplier_credit.php
2014-05-21 08:58:03 +0200 Janusz Dobrowolski
Small code cleanups.
M includes/current_user.inc
M purchasing/supplier_invoice.php
2014-04-26 09:14:55 +0200 Janusz Dobrowolski
Added option to allow password reset (by Mithy).
M access/login.php
A access/password_reset.php
M admin/db/users_db.inc
M config.default.php
M includes/current_user.inc
M includes/session.inc
2014-04-26 00:57:39 +0200 Janusz Dobrowolski
Fixed directory traversal issues.
M admin/inst_module.php
M includes/hooks.inc
2014-04-26 00:12:09 +0200 Janusz Dobrowolski
Redirect all database errors to error log unless $go_debug is switched on.
M includes/errors.inc
2014-04-26 00:01:46 +0200 Janusz Dobrowolski
A couple of security issues fixed.
M access/logout.php
M admin/create_coy.php
M admin/db/users_db.inc
M includes/current_user.inc
M includes/session.inc
M inventory/includes/db/items_db.inc
M taxes/db/tax_types_db.inc
2014-03-23 16:02:59 +0100 Janusz Dobrowolski
Fixed email option labels in Supplier Reports.
M reporting/reports_main.php
2014-05-05 16:19:26 +0200 Joe
Allow changing urrency on customer/supplier as long as no transactions exist.
M purchasing/manage/suppliers.php
M sales/manage/customers.php
2014-05-04 09:46:12 +0200 Joe
Backward compatible empty sql mode for MySql databases greater than release 5.5.
M includes/db/connect_db.inc
2014-04-08 09:20:13 +0200 Joe
Sending location email when below reorder also in Itmes Transfer and Adjustment
M inventory/includes/db/items_adjust_db.inc
M inventory/includes/db/items_transfer_db.inc
M inventory/includes/inventory_db.inc
M sales/includes/db/sales_order_db.inc
2014-04-05 10:15:37 +0200 Joe
Selecting the cancel button in confirming the voiding of document did not work properly. Rerun
M sales/sales_order_entry.php
2014-04-05 10:08:18 +0200 Joe
Selecting the cancel button in confirming the voiding of document did not work properly.
M sales/sales_order_entry.php
2014-04-04 23:51:03 +0200 Joe
When canceling a non finished sales quotation FA should not try to delete record.
M sales/sales_order_entry.php
2014-04-03 16:37:49 +0200 Joe
Bad elsif sentense in items.php (image upload)
M inventory/manage/items.php
2014-03-11 23:57:43 +0100 Joe
Changed decimal places in preferences to be number lists.
M admin/display_prefs.php
2014-03-10 11:06:46 +0100 Joe
Crusial update instructions
M update.html
2014-03-10 11:01:33 +0100 Joe
New CHANGELOG.txt
M CHANGELOG.txt
2014-03-10 10:58:41 +0100 Joe
Release 2.3.20
M version.php
2014-03-10 10:18:32 +0100 Janusz Dobrowolski
Gettext template update.
M lang/new_language_template/LC_MESSAGES/empty.po
2014-03-07 00:57:47 +0100 Janusz Dobrowolski
Fixed security issues in file uploads.
M admin/attachments.php
M admin/company_preferences.php
M admin/inst_lang.php
M includes/main.inc
M inventory/includes/inventory_db.inc
2014-03-10 10:15:41 +0100 Joe
fixed a check that company logo exists when using header3.
M reporting/includes/pdf_report.inc
2014-02-07 09:02:01 +0100 Joe
If no memo on GL line in GL account inquiry, the comments for the voucher is shown on the line.
M gl/inquiry/gl_account_inquiry.php
2014-02-07 01:13:21 +0100 Joe
Supplier info not shown on gl inquiry for bank account.
M purchasing/includes/db/supp_payment_db.inc
2014-02-04 15:35:12 +0100 Joe
Supp credit notes should not be shown in allocable list.
M purchasing/includes/db/suppalloc_db.inc
2014-02-04 12:47:46 +0100 Janusz Dobrowolski
Fixed bug in Supplier Credit Note allocation to Purchase Invoice.
M purchasing/includes/db/invoice_db.inc
2014-01-29 08:49:48 +0100 Joe
Link customer payment entry after saving Invoice (if not cash)
M purchasing/supplier_invoice.php
M sales/customer_invoice.php
M sales/sales_order_entry.php
2014-01-17 13:38:45 +0100 Joe
0002615: Rerun. voiding an allocated currency invoice doesn't clear FX account
M sales/includes/db/custalloc_db.inc
2014-01-16 19:34:20 +0100 Joe
0002615: voiding an allocated currency invoice doesn't clear FX account
M purchasing/includes/db/suppalloc_db.inc
M sales/includes/db/custalloc_db.inc
2013-12-28 21:04:23 +0100 Janusz Dobrowolski
Added debtor_trans key on order_ field.
M sql/en_US-demo.sql
M sql/en_US-new.sql
2013-12-10 08:21:07 +0100 Joe
Avoiding redundant passes in Fiscal Year deletion.
M admin/db/fiscalyears_db.inc
2013-12-05 09:58:28 +0100 Joe
Rerun. Allowing more than one document attachment.
M admin/db/attachments_db.inc
2013-12-05 00:17:05 +0100 Joe
Inventory Items Movements always starts with 0 qty. Fixed.
M inventory/includes/db/movement_types_db.inc
2013-12-04 10:24:31 +0100 Joe
Allowing more than one document attachment.
M admin/db/attachments_db.inc
M includes/ui/ui_controls.inc
2013-11-20 16:09:52 +0100 Janusz Dobrowolski
Supplier Payments: Fixed error during payment allocation in strict MySQL mode.
M includes/ui/allocation_cart.inc
M purchasing/includes/db/suppalloc_db.inc
M purchasing/supplier_payment.php
2013-11-19 17:35:33 +0100 Janusz Dobrowolski
Fixed back link presented when trying to modify fully invoiced Customer Delivery.
M sales/customer_delivery.php
2013-11-19 15:09:02 +0100 Janusz Dobrowolski
Fixed inventory valuation bug after voiding foreign supplier GRN leading to negative inventory.
M includes/db/inventory_db.inc
M purchasing/includes/db/grn_db.inc
2013-11-10 15:11:30 +0100 Janusz Dobrowolski
Journal Inquiry (bank transaction view): fixed database error on bank transaction view triggered on some buggy MySQL versions.
M gl/includes/db/gl_db_bank_trans.inc
2013-11-06 21:13:23 +0100 Janusz Dobrowolski
Payments, Deposits: fixed false error when payment is made in customer/supplier currency.
M gl/gl_bank.php
2013-11-06 08:01:02 +0100 Joe
CHANGELOG
M CHANGELOG.txt
2013-11-06 07:52:15 +0100 Joe
Release 2.3.19
M CHANGELOG.txt
M version.php
2013-11-05 17:55:35 +0100 Janusz Dobrowolski
Gettext template update.
M lang/new_language_template/LC_MESSAGES/empty.po
2013-11-03 14:39:23 +0100 Janusz Dobrowolski
Supplier Invoice: Fixed tax input refresh after change in gl/grn items.
M purchasing/supplier_invoice.php
2013-10-27 00:09:48 +0200 Janusz Dobrowolski
Bank Payment View, Bank Deposit View: fixed 'left to allocate' amount, added value in customer/payment currency.
M gl/includes/db/gl_db_bank_trans.inc
M gl/view/gl_deposit_view.php
M gl/view/gl_payment_view.php
2013-10-27 00:05:04 +0200 Janusz Dobrowolski
Supplier Allocations: Bank Payments transactions were improperly available for supplier payments allocations.
M purchasing/includes/db/suppalloc_db.inc
2013-10-26 19:15:15 +0200 Janusz Dobrowolski
Bank Transfer: roundings for transfers between two currencies are posted to exchange variance account.
M gl/includes/db/gl_db_banking.inc
2013-10-18 11:33:27 +0200 Joe
Supplier transactions now show supplier reference for PO Deliveries.
M purchasing/includes/db/supp_trans_db.inc
2013-10-14 13:53:06 +0200 Janusz Dobrowolski
Fixed person contact deletion.
M includes/db/crm_contacts_db.inc
M includes/ui/contacts_view.inc
2013-10-14 11:15:51 +0200 Joe
When automatic creating a branch the contact is also created on the customer (Rerun).
M sales/manage/customers.php
2013-10-14 00:00:04 +0200 Joe
Ehen automatic creating a branch the contact is also created on the customer.
M sales/manage/customers.php
2013-10-13 21:11:40 +0200 Janusz Dobrowolski
Customer Allocation Inquiry, Supplier Allocation Inquiry: fixed payment forms initialization, different icons for playment and allocation links.
M config.default.php
M includes/types.inc
M purchasing/allocations/supplier_allocation_main.php
M purchasing/inquiry/supplier_allocation_inquiry.php
M purchasing/supplier_payment.php
M sales/allocations/customer_allocation_main.php
M sales/customer_payments.php
M sales/inquiry/customer_allocation_inquiry.php
A themes/aqua/images/alloc.png
A themes/cool/images/alloc.png
A themes/default/images/alloc.png
2013-10-13 19:27:54 +0200 Janusz Dobrowolski
Customer/Supplier Balances Reports: fixed error in recalculation to home currency value.
M reporting/rep101.php
M reporting/rep201.php
2013-09-26 12:57:59 +0200 Joe
Some documents views didn't show new lines in comments. Fixed.
M includes/ui/ui_view.inc
M purchasing/includes/db/po_db.inc
M sales/view/view_sales_order.php
2013-09-24 17:45:01 +0200 Janusz Dobrowolski
Supplier Payment: small fix in fixed ui translation.
M purchasing/supplier_payment.php
2013-09-24 17:43:58 +0200 Janusz Dobrowolski
Added portuguese translation for installer.
M install/isession.inc
A install/lang/pt_PT/LC_MESSAGES/pt_PT.mo
A install/lang/pt_PT/LC_MESSAGES/pt_PT.po
2013-09-24 13:24:58 +0200 Janusz Dobrowolski
Bank Payment/Bank Deposit: removed sparse sign from settled amount input, fixed sign in AR/AP record; Fixed amounts displayed in header for customer/supplier bank payments.
M gl/gl_bank.php
M gl/includes/db/gl_db_banking.inc
M gl/includes/ui/gl_bank_ui.inc
M purchasing/includes/db/supp_trans_db.inc
M sales/includes/db/cust_trans_db.inc
2013-09-21 00:19:28 +0200 Janusz Dobrowolski
Customer Payments, Payments to Supplier: improved readbility and multiply cleanups in payments allocations.
M includes/banking.inc
M includes/ui/allocation_cart.inc
M purchasing/allocations/supplier_allocate.php
M purchasing/includes/db/supp_trans_db.inc
M purchasing/includes/db/suppalloc_db.inc
M purchasing/includes/ui/invoice_ui.inc
M purchasing/inquiry/supplier_allocation_inquiry.php
M purchasing/supplier_payment.php
M purchasing/view/view_supp_payment.php
M sales/allocations/customer_allocate.php
M sales/allocations/customer_allocation_main.php
M sales/customer_payments.php
M sales/includes/db/cust_trans_db.inc
M sales/includes/db/custalloc_db.inc
M sales/inquiry/customer_allocation_inquiry.php
2013-09-20 16:03:52 +0200 Janusz Dobrowolski
Fixed bug in bank history check resulting in false negative balance errors.
M gl/includes/db/gl_db_bank_trans.inc
2013-09-18 15:28:00 +0200 Janusz Dobrowolski
Printer Profiles: fixed sql error on update under some MySQL versions.
M admin/db/printers_db.inc
2013-09-18 15:01:33 +0200 Janusz Dobrowolski
Supplier Payment, Payments, Bank Transfer: fixed account balance limit checks.
M gl/bank_transfer.php
M gl/gl_bank.php
M purchasing/supplier_payment.php
2013-09-17 08:54:51 +0200 Janusz Dobrowolski
Bank Transfer: fixed typo in input description.
M gl/bank_transfer.php
2013-09-17 10:31:17 +0200 Joe
0002443: Receipts and Remittances now show discounts.
M reporting/rep112.php
M reporting/rep210.php
2013-09-16 23:27:52 +0200 Joe
0002177: Currency problem in Item Sales Summary Report
M reporting/rep309.php
2013-09-16 15:35:11 +0200 Janusz Dobrowolski
[0002429] Supplier Invoice: tax was not updated on GRN line addition/removal.
M purchasing/supplier_invoice.php
2013-09-16 12:49:29 +0200 Janusz Dobrowolski
[0002340] Fixed problem with login after intallation, when special chars are used in password.
M install/isession.inc
2013-09-14 18:07:13 +0200 Janusz Dobrowolski
Various small code cleanups.
M gl/bank_transfer.php
M gl/includes/db/gl_db_banking.inc
M purchasing/supplier_payment.php
M sales/customer_payments.php
M sales/inquiry/customer_inquiry.php
2013-09-11 13:19:56 +0200 Janusz Dobrowolski
Units of Measure: fixed edition problems when abbreviation contains special characters.
M inventory/manage/item_units.php
2013-09-06 10:48:24 +0200 Janusz Dobrowolski
Page number is now printed on all documents (starting from second page).
M reporting/includes/header2.inc
2013-09-16 10:55:04 +0200 Joe
0002430: Order Status Listing Report shows invoiced in heading rather than delivered. Fixed.
M reporting/rep105.php
2013-09-05 14:39:03 +0200 Joe
CHANGELOG.txt
M CHANGELOG.txt
2013-09-05 14:36:41 +0200 Joe
Release 2.3.18.
M version.php
2013-09-05 14:17:43 +0200 Janusz Dobrowolski
Updated gettext template.
M lang/new_language_template/LC_MESSAGES/empty.po
2013-09-03 08:51:00 +0200 Janusz Dobrowolski
Customer Payment: fixed missing charge amount during edition, fixed submit button name.
M includes/banking.inc
M sales/customer_payments.php
M sales/includes/db/cust_trans_db.inc
M sales/includes/db/payment_db.inc
M sales/view/view_receipt.php
2013-09-02 13:28:27 +0200 Joe
Bug no 2409 and 2410. Fixed headers and sql error when deleting a category.
M admin/crm_categories.php
2013-08-31 09:32:50 +0200 Janusz Dobrowolski
Customer Payment: fixed bug with exchange rates resulting in invalid postings ts AR and foreign Exchange Gain Accounts.
M sales/includes/db/payment_db.inc
2013-08-29 22:18:42 +0200 Janusz Dobrowolski
Delivery Against Sales Orders: sales orders displayed as overdue after delivery date.
M sales/inquiry/sales_orders_view.php
2013-08-29 21:13:53 +0200 Janusz Dobrowolski
Customer Balances Report, Supplier Balances Report: balances in home currency were calculated using wrong exchange rates.
M reporting/rep101.php
M reporting/rep201.php
2013-08-25 20:39:41 +0200 Janusz Dobrowolski
Fixed problem with customer payment allocations (invalid exrate stored in debtor_trans record).
M sales/includes/db/payment_db.inc
2013-08-17 14:50:38 +0200 Janusz Dobrowolski
Bank Transfer: fixed problem with entering transfer between accounts of the same currency.
M gl/bank_transfer.php
2013-08-14 23:56:39 +0200 Janusz Dobrowolski
Added F4 hotkey for item popup editor in sales documents.
M includes/ui/ui_lists.inc
M sales/includes/ui/sales_order_ui.inc
2013-08-14 09:34:06 +0200 Joe
Customer/Supplier payments with amounts bigger than 1,000 was truncated. Fixed.
M purchasing/supplier_payment.php
M sales/customer_payments.php
2013-08-01 23:50:01 +0200 Joe
New global flags in config.default.php
M update.html
2013-08-01 12:35:53 +0200 Janusz Dobrowolski
Langauage template update.
M lang/new_language_template/LC_MESSAGES/empty.po
2013-08-01 12:25:16 +0200 Joe
CHANGELOG.txt
M CHANGELOG.txt
2013-08-01 12:23:05 +0200 Joe
Release 2.3.17
M version.php
2013-07-30 13:05:24 +0200 Janusz Dobrowolski
Change password: added current password verification.
M admin/change_current_user_password.php
2013-07-30 12:57:02 +0200 Janusz Dobrowolski
Fixed CSRF warning after retrying password change.
M includes/ui/ui_controls.inc
2013-06-23 21:22:22 +0100 Maxime Bourget
Added get_dispatchable_quantity hook.
M includes/hooks.inc
M includes/ui/ui_controls.inc
M sales/customer_delivery.php
2013-06-23 21:14:36 +0100 Maxime Bourget
Updating sales order use UPDATE instead of DELETE/INSERT to preserve extra data added by extensions (if any)
M sales/includes/db/sales_order_db.inc
2013-06-23 21:13:01 +0100 Maxime Bourget
Added missing db_write_hook in update sales order.
M sales/includes/db/sales_order_db.inc
2013-06-23 21:02:39 +0100 Maxime Bourget
Improved db_pager widget sorting (now user column selection order is used).
M includes/db_pager.inc
2013-06-23 20:58:12 +0100 Maxime Bourget
Improved db_pager::set_sql to use array as well as query string.
M includes/db_pager.inc
2013-06-23 20:54:18 +0100 Maxime Bourget
Fixed qoh to return 0 instead of null when moves history is empty.
M includes/db/inventory_db.inc
2013-06-27 23:22:14 +0200 Joe
Touch by mistake
M .htaccess
2013-06-27 22:59:32 +0200 Joe
Fixed nested forms in Items tab.
M inventory/cost_update.php
M inventory/prices.php
M inventory/purchasing_data.php
M inventory/reorder_level.php
2013-06-27 21:06:50 +0200 Janusz Dobrowolski
Fixed bug in get_next_trans_no() resulting in invisibility of new stock movements entered after some transaction is voided (applies to location transfer and inventory adjustment).
M includes/systypes.inc
2013-06-26 22:11:27 +0200 Janusz Dobrowolski
Fixed session handling bug resulting in blank page on some pre-5.2 php versions.
M includes/session.inc
2013-06-26 21:31:54 +0200 Janusz Dobrowolski
Item Categories: categories table is now sorted by category description.
M inventory/includes/db/items_category_db.inc
2013-06-26 21:24:01 +0200 Janusz Dobrowolski
Fixed mysql 5.0 issue in Print Statements report
M reporting/rep108.php
2013-06-10 20:47:09 +0200 Janusz Dobrowolski
Fixed bug in voiding GRN/Purchase resulting in invalid average unit cost.