forked from FrontAccountingERP/FA
-
Notifications
You must be signed in to change notification settings - Fork 2
/
CHANGELOG.txt
28092 lines (24201 loc) · 852 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
2017-11-06 12:21:25 +0100 Janusz Dobrowolski
Workaround for segfaults in some buggy php encoding library versions.
M includes/db/connect_db_mysqli.inc
M includes/page/header.inc
M includes/ui/ui_input.inc
M inventory/manage/item_units.php
2017-11-02 00:46:09 +0100 Janusz Dobrowolski
Fixed memory limit during database export.
M admin/db/maintenance_db.inc
2017-10-13 21:18:19 +0200 Janusz Dobrowolski
PHP7 compatibility fixes.
M admin/includes/fa_patch.class.inc
M applications/application.php
M applications/customers.php
M applications/dimensions.php
M applications/fixed_assets.php
M applications/generalledger.php
M applications/inventory.php
M applications/manufacturing.php
M applications/setup.php
M applications/suppliers.php
M frontaccounting.php
M includes/JsHttpRequest.php
M includes/ajax.inc
M includes/archive.inc
M includes/current_user.inc
M includes/db/class.data_set.inc
M includes/db/class.reflines_db.inc
M includes/db_pager.inc
M includes/errors.inc
M includes/lang/language.inc
M includes/packages.inc
M includes/prefs/sysprefs.inc
M includes/prefs/userprefs.inc
M includes/references.inc
M includes/session.inc
M includes/ui/allocation_cart.inc
M includes/ui/class.crud_view.inc
M includes/ui/class.reflines_crud.inc
M includes/ui/contacts_view.inc
M includes/ui/items_cart.inc
M includes/ui/simple_crud_class.inc
M purchasing/includes/po_class.inc
M purchasing/includes/supp_trans_class.inc
M reporting/includes/Workbook.php
M reporting/includes/barcodes.php
M reporting/includes/class.graphic.inc
M reporting/includes/class.mail.inc
M reporting/includes/class.pdf.inc
M reporting/includes/excel_report.inc
M reporting/includes/fpdi/decoders/ASCII85Decode.php
M reporting/includes/fpdi/decoders/LZWDecode.php
M reporting/includes/fpdi/fpdi_pdf_parser.php
M reporting/includes/fpdi/pdf_context.php
M reporting/includes/fpdi/pdf_parser.php
M reporting/includes/pdf_report.inc
M reporting/includes/printer_class.inc
M reporting/includes/reports_classes.inc
M reporting/includes/tcpdf.php
M sales/includes/cart_class.inc
M sql/alter2.1.php
M sql/alter2.2.php
M sql/alter2.3.php
M sql/alter2.4.php
M sql/alter2.4rc1.php
2017-11-07 15:27:29 +0100 Joe Hunt
Rerun of Manufactored Items, Dashboard. Produced Items.
M includes/dashboard.inc
2017-11-07 14:26:49 +0100 Joe Hunt
Top manufactored dashboard shows wrong statistics. Fixed
M includes/dashboard.inc
2017-11-07 08:21:07 +0100 Joe Hunt
Default Credit Limit should be changed to price format.
M admin/gl_setup.php
2017-11-01 13:07:21 +0100 Joe Hunt
Wrong colspan in supplier credit note. Fixed.
M purchasing/includes/ui/invoice_ui.inc
2017-11-01 11:46:11 +0100 Joe Hunt
Fixing bug in Customer Inquiry and Supplier Inquiry
M purchasing/inquiry/supplier_inquiry.php
M sales/inquiry/customer_inquiry.php
2017-10-31 09:58:09 +0100 Joe Hunt
Merge branch 'master' of https://git.code.sf.net/p/frontaccounting/git
2017-10-31 09:57:56 +0100 Joe Hunt
Fixed Tax Report on Screen.
M gl/includes/db/gl_db_trans.inc
M gl/inquiry/tax_inquiry.php
2017-10-31 09:11:36 +0100 Janusz Dobrowolski
Change on debtor_trans/supp_trans keys added in 2.4/2.4rc upgrade scripts
M sql/alter2.4.sql
M sql/alter2.4rc1.sql
2017-10-30 22:19:52 +0100 Janusz Dobrowolski
Set NOT NULL on debtor_trans/supp_trans primary key fields.
M sql/en_US-demo.sql
M sql/en_US-new.sql
2017-10-30 21:36:46 +0100 Joe Hunt
Voiding cleanup.
M admin/void_transaction.php
2017-10-29 12:01:31 +0100 Janusz Dobrowolski
Items: fixed item tax type selector to exclude inactive item tax types.
M includes/ui/ui_lists.inc
M inventory/manage/items.php
M taxes/db/item_tax_types_db.inc
2017-10-29 10:51:03 +0100 Joe Hunt
On the fly editing (F2, F3 and F4) fix.
M purchasing/manage/suppliers.php
M sales/manage/customers.php
2017-10-28 10:27:23 +0200 Janusz Dobrowolski
Fixed supp_trans primary keys, rerun.
M sql/en_US-demo.sql
M sql/en_US-new.sql
2017-10-27 12:30:06 +0200 Janusz Dobrowolski
Fixed supp_trans primary key.
M sql/en_US-demo.sql
2017-10-27 09:06:42 +0200 Janusz Dobrowolski
Fixed debtor_trans primary key to allow multiply AR accounts in journal transactions.
M sql/en_US-demo.sql
M sql/en_US-new.sql
2017-10-27 08:59:58 +0200 Janusz Dobrowolski
Removed sparse code line in hooks.inc
M includes/hooks.inc
2017-10-27 01:03:42 +0200 Joe Hunt
Add Items on the Fly. Behavior Changed in FA24. Fixed.
M inventory/manage/items.php
2017-10-26 05:36:59 +0200 Joe Hunt
Merge branch 'master' of https://git.code.sf.net/p/frontaccounting/git
2017-10-26 05:36:30 +0200 Joe Hunt
Fixed FA2.4.2 error getting exchange rate from Google
M gl/includes/db/gl_db_rates.inc
2017-10-13 10:31:04 +0200 Janusz Dobrowolski
Supplier Inquiry/Customer Inquiry: removed inconsistency in unsettled/overdue transactions.
M includes/ui/ui_lists.inc
M lang/new_language_template/LC_MESSAGES/empty.po
M purchasing/includes/db/supp_trans_db.inc
M purchasing/includes/db/suppliers_db.inc
M purchasing/inquiry/supplier_inquiry.php
M sales/includes/db/cust_trans_db.inc
M sales/includes/db/customers_db.inc
M sales/inquiry/customer_inquiry.php
2017-10-13 11:04:22 +0200 Janusz Dobrowolski
Added prepayment amount invoiced in Prepayment Invoice view.
M sales/view/view_invoice.php
2017-10-13 16:10:17 +0200 Joe Hunt
A bug in Customer Allocations fixed.
M sales/allocations/customer_allocate.php
M sales/allocations/customer_allocation_main.php
M sales/includes/db/custalloc_db.inc
M sales/inquiry/customer_allocation_inquiry.php
M sales/inquiry/customer_inquiry.php
2017-10-12 17:05:21 +0200 Joe Hunt
Fixed Bug in includes\ui\ui_input.inc
M includes/ui/ui_input.inc
2017-10-10 10:04:33 +0200 Janusz Dobrowolski
Fixed reference number referesh on conflict during concurrent sales documents entry.
M sales/sales_order_entry.php
2017-10-09 15:20:35 +0200 Joe Hunt
Fixed Undefined variable: site_ip in file.
M gl/includes/db/gl_db_rates.inc
2017-10-09 10:21:21 +0200 Janusz Dobrowolski
Fixed bug in exchange rate display helper.
M includes/ui/ui_view.inc
2017-10-04 22:07:19 +0200 Joe Hunt
Searching Journal Inquiry by user not working? FA 2.4.2.
M gl/inquiry/journal_inquiry.php
2017-10-03 00:11:33 +0200 Joe Hunt
Fixed After successful Backup, loader.gif still present
M admin/backups.php
2017-10-02 14:37:18 +0200 Joe Hunt
Fixed Bug in includes\ui\ui_controls.inc
M includes/ui/ui_controls.inc
2017-10-02 07:57:45 +0200 Joe Hunt
Optimised get_company_pref()
M admin/db/company_db.inc
2017-10-01 23:03:41 +0200 Joe Hunt
Fixed user config values unavailable error generated before user login
M includes/current_user.inc
2017-09-29 13:29:49 +0200 Joe Hunt
Test for open_ssl in extensions.
M includes/packages.inc
2017-09-28 18:06:56 +0200 Joe Hunt
Cleanup in gl_db_trans.inc
M gl/includes/db/gl_db_trans.inc
2017-09-28 00:40:59 +0200 Joe Hunt
The variable $show_voided_gl_trans has been removed. Not used in 2.4.
M config.default.php
2017-09-27 23:53:16 +0200 Joe Hunt
Better wrapping on comments in documents.
M reporting/rep107.php
M reporting/rep109.php
M reporting/rep110.php
M reporting/rep111.php
M reporting/rep113.php
M reporting/rep209.php
M sales/includes/sales_ui.inc
2017-09-22 23:36:38 +0200 Joe Hunt
Bug in presenting ST_JOURNAL in AR/AP Reports.
M reporting/rep108.php
M sales/includes/db/customers_db.inc
2017-09-21 00:38:26 +0200 Joe Hunt
Right align numbers in inquiries and lists.
M includes/ui/allocation_cart.inc
M inventory/inquiry/stock_movements.php
M purchasing/allocations/supplier_allocation_main.php
M purchasing/includes/ui/invoice_ui.inc
M purchasing/inquiry/po_search_completed.php
M purchasing/inquiry/supplier_allocation_inquiry.php
M purchasing/inquiry/supplier_inquiry.php
M sales/allocations/customer_allocation_main.php
M sales/create_recurrent_invoices.php
M sales/inquiry/customer_allocation_inquiry.php
M sales/inquiry/sales_deliveries_view.php
M sales/inquiry/sales_orders_view.php
M sales/manage/recurrent_invoices.php
M sales/manage/sales_groups.php
2017-09-20 20:23:38 +0200 Janusz Dobrowolski
Fixed bug in reallocation payments during purchase invoice edition.
M purchasing/includes/db/invoice_db.inc
2017-09-20 16:16:14 +0200 Joe Hunt
Right align numbers in customer inquiry.
M sales/inquiry/customer_inquiry.php
2017-09-19 08:18:16 +0200 Joe Hunt
Bug in rep108 (and 101) when using Journal Entry for making entries in AR account.
M includes/ui/items_cart.inc
2017-09-17 11:52:23 +0200 Joe Hunt
New Company Option for showing both Short Names and Names in Customer/Supplier lists.
M admin/company_preferences.php
M includes/ui/ui_lists.inc
M sql/alter2.4.php
M sql/en_US-demo.sql
M sql/en_US-new.sql
2017-09-09 13:58:40 +0200 Joe Hunt
Profit and Loss Statement. Compensate for to-date = leap-year in period compare.
M reporting/rep707.php
2017-09-08 09:52:57 +0200 Joe Hunt
Added the new Company Logo on Reports in default files.
M sql/alter2.4.php
M sql/en_US-demo.sql
M sql/en_US-new.sql
2017-09-07 14:30:30 +0200 Janusz Dobrowolski
Sales Invoice: fixed tax included amount position.
M reporting/rep107.php
2017-09-05 11:30:54 +0200 Joe Hunt
Rerun company_preferences.php. Company Logo on Reports.
M admin/company_preferences.php
2017-09-05 08:58:11 +0200 Joe Hunt
Option for showing company logo on reports. On company base.
M admin/company_preferences.php
M config.default.php
M reporting/includes/pdf_report.inc
2017-09-04 23:16:49 +0200 Joe Hunt
Option for Logo on Reports.
M config.default.php
M reporting/includes/pdf_report.inc
2017-09-02 23:15:40 +0200 Janusz Dobrowolski
Fixed bug in product average cost calculations.
M manufacturing/includes/db/work_order_produce_items_db.inc
2017-08-31 21:37:57 +0200 Joe Hunt
Group Total in Trial Balance on Screen.
M gl/inquiry/gl_trial_balance.php
2017-08-30 08:26:50 +0200 Joe Hunt
Old Sales Quote Reference Fix
M sales/includes/cart_class.inc
M sales/view/view_sales_order.php
2017-08-29 17:01:23 +0200 Joe Hunt
Fixed Logical Bug in Customer Balances Report.
M reporting/rep101.php
2017-08-28 21:16:12 +0200 Joe Hunt
Fix for too many parameters in submit_return.
M inventory/manage/items.php
2017-08-28 21:15:36 +0200 Joe Hunt
Fix in Popup Customer Window. Extended width to 700.
M includes/ui/ui_controls.inc
2017-08-28 21:13:47 +0200 Joe Hunt
Fix in date2sql function.
M includes/date_functions.inc
2017-08-28 13:23:22 +0200 Janusz Dobrowolski
Fixed invalid reference number update in document edition.
M includes/ui/ui_input.inc
2017-08-04 18:30:32 +0200 Janusz Dobrowolski
[0003964] Fixed bug in voiding GRN.
M admin/void_transaction.php
2017-07-31 10:35:03 +0200 Joe Hunt
db_version was changed by mistake. Should remain at 2.4.1.
M version.php
2017-07-30 15:47:59 +0200 Joe Hunt
Release 2.4.2
M CHANGELOG.txt
M version.php
2017-07-30 13:15:04 +0200 Joe Hunt
0003954: RB not correct in Customer Transactions Inquiry. Removed RB from customer transactions.
M sales/includes/db/cust_trans_db.inc
M sales/inquiry/customer_inquiry.php
2017-07-30 12:57:08 +0200 Joe Hunt
0003961: Undefined variables used during journal modify (tax included)
M gl/gl_journal.php
M purchasing/includes/db/grn_db.inc
2017-07-30 12:12:52 +0200 Joe Hunt
0003962: in Inventory Purchasing Report the result is wrongly showing.
M purchasing/includes/db/grn_db.inc
2017-07-27 20:25:47 +0200 Janusz Dobrowolski
Updated language templates.
M install/lang/new_language_template/LC_MESSAGES/empty.po
M install/lang/pl_PL/LC_MESSAGES/pl_PL.mo
M install/lang/pl_PL/LC_MESSAGES/pl_PL.po
M lang/new_language_template/LC_MESSAGES/empty.po
2017-07-27 08:30:59 +0200 Joe Hunt
Database connection issue with non standard port.
M admin/create_coy.php
M admin/db/maintenance_db.inc
M includes/db/connect_db_mysql.inc
M includes/db/connect_db_mysqli.inc
M install/index.php
M install/lang/new_language_template/LC_MESSAGES/empty.po
M lang/new_language_template/LC_MESSAGES/empty.po
2017-07-26 08:07:30 +0200 Joe Hunt
undefined myrow ['trans_type'] when updating sales order
M sales/includes/db/sales_order_db.inc
2017-07-20 22:01:17 +0200 Joe Hunt
Changing $use_costed_value to 1 instead of 0. Used in Inventory Valuation report.
M config.default.php
2017-06-30 00:55:14 +0200 Joe Hunt
0003921: Bug in Tax Groups fixed.
M taxes/tax_groups.php
2017-06-28 02:34:10 +0200 Joe Hunt
Quick Entries. Wrong number of QE rows in presentation. Fixed.
M gl/manage/gl_quick_entries.php
2017-06-26 23:48:14 +0200 Joe Hunt
Double escape of slash in translatable js strings. Fixed.
M lang/new_language_template/LC_MESSAGES/empty.po
2017-06-19 16:26:56 +0200 Janusz Dobrowolski
Additional fix to last commit.
M purchasing/inquiry/supplier_inquiry.php
2017-06-18 19:45:33 +0200 Janusz Dobrowolski
Fixed document total presentation in customer/supplier transaction inquiries.
M purchasing/inquiry/supplier_inquiry.php
M sales/includes/db/cust_trans_db.inc
M sales/inquiry/customer_inquiry.php
2017-06-18 07:48:35 +0200 erling
0003896: Fixed Assets valuation report, location parameter not working
M reporting/rep451.php
2017-06-14 23:33:29 +0200 Janusz Dobrowolski
Fixed payments reallocation for prepayment orders; blocked edition for open prepayment orders.
M includes/db/allocations_db.inc
M lang/new_language_template/LC_MESSAGES/empty.po
M purchasing/includes/db/invoice_db.inc
M purchasing/includes/db/po_db.inc
M sales/customer_invoice.php
M sales/includes/cart_class.inc
M sales/includes/db/sales_invoice_db.inc
M sales/includes/db/sales_order_db.inc
M sales/includes/sales_db.inc
M sales/inquiry/sales_orders_view.php
M sales/sales_order_entry.php
2017-06-08 11:31:28 +0200 Joe Hunt
0003876: Notice: Trying to get property of non-object in C:\Apache24\htdocs\frontaccounting\includes\errors.inc on line 74
M includes/errors.inc
2017-06-08 08:34:47 +0200 Joe Hunt
Fixed dashboard page in Setup tab. Mixing customers in the Supplier diagram.
M includes/dashboard.inc
2017-06-08 08:32:44 +0200 Joe Hunt
Fixed more rows when reporting to Excel Reports. Greater then 65535 rows.
M reporting/includes/Workbook.php
M reporting/includes/excel_report.inc
2017-06-02 12:15:41 +0200 Janusz Dobrowolski
Now stable version is 2.4
2017-05-22 15:38:16 +0200 Joe Hunt
Changed update.html file.
M update.html
2017-05-22 15:23:07 +0200 Joe Hunt
Rerun en_US-demo.sql.
M sql/en_US-demo.sql
2017-05-22 15:21:30 +0200 Joe Hunt
Rerun en_US-demo.sql.
M sql/en_US-demo.sql
2017-05-22 14:47:32 +0200 Joe Hunt
Merge branch 'unstable' of ssh://git.code.sf.net/p/frontaccounting/git into unstable
2017-05-22 14:46:45 +0200 Joe Hunt
Release 2.4.1
M CHANGELOG.txt
M sql/en_US-demo.sql
M sql/en_US-new.sql
M version.php
2017-05-22 14:45:02 +0200 Joe Hunt
Release 2.3.26 (Final)
M CHANGELOG.txt
M sql/en_US-demo.sql
M sql/en_US-new.sql
M version.php
2017-05-22 10:55:30 +0200 Janusz Dobrowolski
Fixed time zone setting in default config file.
M config.default.php
2017-05-21 18:19:30 +0200 Joe Hunt
Built-in Dashboard doesn't work after $hide_inaccessible_menu_items in config.php is set 1 (and there are disabled apps).
M includes/dashboard.inc
2017-05-19 21:55:10 +0200 Joe Hunt
Sales type bug in tax_included (persistent on)
M sales/manage/sales_types.php
2017-05-19 21:53:28 +0200 Joe Hunt
Sales type potential bug in tax_included (persistent on)
M sales/manage/sales_types.php
2017-05-19 14:04:16 +0200 Joe Hunt
Dedeted doc/CHANGELOG.old.txt. Not neede any more.
D doc/CHANGELOG.old.txt
2017-05-19 14:02:50 +0200 Joe Hunt
Deleted doc/CHANGELOG.old.txt. Not needed any more.
D doc/CHANGELOG.old.txt
2017-05-19 12:28:20 +0200 Joe Hunt
Merge branch 'unstable' of ssh://git.code.sf.net/p/frontaccounting/git into unstable
2017-05-19 12:27:41 +0200 Joe Hunt
0003761: Reorder email is not sent for items used work order. Fixed.
M manufacturing/includes/db/work_order_costing_db.inc
2017-05-19 12:25:49 +0200 Joe Hunt
0003761: Reorder email is not sent for items used work order. Fixed
M manufacturing/includes/db/work_orders_quick_db.inc
2017-05-18 22:02:12 +0200 Janusz Dobrowolski
[0003780] Sales Invoice to partial delivery was improperly issued as final prepayment invoice.
M sales/customer_invoice.php
M sales/includes/cart_class.inc
M sales/includes/db/sales_invoice_db.inc
M sales/includes/ui/sales_order_ui.inc
M sales/sales_order_entry.php
2017-05-17 23:47:26 +0200 Joe Hunt
0003871: [Fixed Assets] new patch fix for: 0003866, 0003869
M fixed_assets/includes/fixed_assets_db.inc
M fixed_assets/inquiry/stock_inquiry.php
M includes/db_pager.inc
M includes/ui/db_pager_view.inc
M reporting/rep451.php
2017-05-15 16:22:21 +0200 Joe Hunt
0003789: Comments is cut off when actual invoice is printed. Maximized to 130 characters.
M reporting/includes/reports_classes.inc
2017-05-15 15:08:39 +0200 Joe Hunt
Rerun. 0003864: [Fixed Assets] GL Transactions for Fixed Asset Sales are wrong (patch provided)
M sales/includes/db/sales_delivery_db.inc
2017-05-15 08:48:53 +0200 Joe Hunt
Improvements to dashboard.
M includes/dashboard.inc
2017-05-15 08:25:39 +0200 Joe Hunt
0003862: Straight Line Depreciation value calculation is wrong 0003863: Fixed Assets Valuation Report Includes inactive Items with Valuation 0003864: [Fixed Assets] GL Transactions for Fixed Asset Sales are wrong (patch provided)
M fixed_assets/includes/depreciation.inc
M includes/db/inventory_db.inc
M sales/includes/db/sales_delivery_db.inc
2017-05-14 21:21:33 +0200 Joe Hunt
Optimized Inventory Valuation Reports, 301 and 308.
M reporting/rep301.php
M reporting/rep308.php
2017-05-14 21:18:19 +0200 Joe Hunt
Optimized Inventory Valuation Reports, 301 and 308.
M reporting/rep301.php
M reporting/rep308.php
2017-05-12 18:02:36 +0200 Joe Hunt
Added a small Arabic font file and improved the builtin DashBoard.
M config.default.php
M includes/dashboard.inc
A reporting/fonts/zarnormal.ttf
M reporting/includes/class.graphic.inc
2017-05-11 13:40:13 +0200 Joe Hunt
Merge branch 'unstable' of ssh://git.code.sf.net/p/frontaccounting/git into unstable
2017-05-11 13:39:42 +0200 Joe Hunt
Customer/Supplier Balances Report | Allocated column not showing correctly. Fixed.
M reporting/rep101.php
M reporting/rep201.php
2017-05-11 13:35:19 +0200 Joe Hunt
Customer/Supplier Balances Report | Allocated column not showing correctly. Fixed.
M reporting/rep101.php
M reporting/rep201.php
2017-05-02 21:59:12 +0200 Janusz Dobrowolski
[0003795] Fixed incorrect GL postings for cash purchase invoices.
M purchasing/includes/db/supp_payment_db.inc
2017-05-02 08:38:21 +0200 Joe Hunt
0003816: Customer Credit Note (stand alone) does not restore inventory
M sales/includes/db/sales_credit_db.inc
2017-03-19 15:26:09 +0100 Janusz Dobrowolski
Additional fix to previous commit.
M reporting/prn_redirect.php
2017-03-19 15:25:15 +0100 Janusz Dobrowolski
Additional fix to previous commit.
M reporting/prn_redirect.php
2017-03-19 14:41:39 +0100 ApMuthu
Fixed problems with excel report generation.
M includes/main.inc
M reporting/prn_redirect.php
2017-03-19 14:39:50 +0100 Janusz Dobrowolski
Additional fix to unique filenames.
M includes/dashboard.inc
2017-03-19 14:32:53 +0100 ApMuthu
Fixed problems with excel report generation.
M includes/main.inc
M reporting/prn_redirect.php
2017-03-18 15:52:46 +0100 Janusz Dobrowolski
Improved entropy for report file urls.
M admin/attachments.php
M includes/main.inc
M includes/ui/ui_controls.inc
M reporting/includes/excel_report.inc
M reporting/includes/pdf_report.inc
M reporting/rep102.php
M reporting/rep202.php
M reporting/rep706.php
M reporting/rep707.php
2017-03-18 15:56:19 +0100 Janusz Dobrowolski
Improved entropy for report file urls.
M admin/attachments.php
M includes/main.inc
M includes/ui/ui_controls.inc
M reporting/includes/excel_report.inc
M reporting/includes/pdf_report.inc
M reporting/rep102.php
M reporting/rep202.php
M reporting/rep706.php
M reporting/rep707.php
2017-01-17 11:47:56 +0100 Janusz Dobrowolski
Fixed buggy prefix in sql query in 2.1 upgrade class.
M sql/alter2.1.php
2017-01-18 15:59:57 +0100 Joe Hunt
Fixed an array_combine object issue.
M includes/main.inc
M includes/ui/ui_lists.inc
2017-01-18 15:52:40 +0100 Joe Hunt
Missing Changelog
A CHANGELOG.txt
2017-01-18 15:45:47 +0100 Joe Hunt
Missing changelog.
D CHANGELOG.txt
2017-01-18 15:32:57 +0100 Joe Hunt
Fixed an array_combine object issue.
M includes/ui/ui_lists.inc
2017-01-15 19:22:16 +0100 Janusz Dobrowolski
[0003733] Fixed php7 compatibility issue.
M frontaccounting.php
2017-01-15 18:28:20 +0100 Janusz Dobrowolski
[0003658] Errors during reference line edition when no table prefix is used.
M includes/db/class.reflines_db.inc
2016-12-23 08:57:23 +0100 Joe Hunt
Bug submitting forms in FA 2.4.x when checkbox field not changed. Fixed
M includes/ui/ui_input.inc
2016-12-23 08:56:18 +0100 Joe Hunt
Bug submitting forms in FA 2.3.x when checkbox field not changed. Fixed
M includes/ui/ui_input.inc
2016-12-03 23:15:02 +0100 Joe Hunt
Rerun Items Summary Report
M reporting/rep309.php
2016-12-03 23:14:30 +0100 Joe Hunt
Rerun Items Summary Report fix
M reporting/rep309.php
2016-11-29 16:20:32 +0100 Joe Hunt
Fixed A Bug in Item Sales Summary Report
M reporting/rep309.php
2016-11-29 16:19:27 +0100 Joe Hunt
Fixed A Bug in Item Sales Summary Report
M reporting/rep309.php
2016-11-28 23:14:44 +0100 Joe Hunt
0003667: supplier payment link after entering supplier invoice result. Fixed.
M purchasing/supplier_invoice.php
2016-11-18 14:30:47 +0100 Joe Hunt
Merge branch 'unstable' of ssh://git.code.sf.net/p/frontaccounting/git into unstable
2016-11-18 14:30:11 +0100 Joe Hunt
0003667: supplier payment link after entering supplier invoice resultes in erro. Fixed.
M purchasing/supplier_invoice.php
2016-11-14 12:15:42 +0100 Janusz Dobrowolski
Cleanup in sales_invoice_db.inc (obsolete parameteres in update_debtor_trans_allocation calls)
M sales/includes/db/sales_invoice_db.inc
2016-09-06 12:34:03 +0200 Janusz Dobrowolski
Fixed problem with installing third party extension packages.
M includes/packages.inc
2016-09-06 08:55:51 +0200 Joe Hunt
Increased space for built in number columns etc. in reports.
M reporting/rep101.php
M reporting/rep201.php
M reporting/rep203.php
M reporting/rep601.php
M reporting/rep602.php
M reporting/rep701.php
M reporting/rep706.php
M reporting/rep707.php
2016-01-30 21:50:20 +0700 Cambell
Added functions for custom css files registered by modules
M includes/main.inc
M includes/page/header.inc
2016-02-06 11:32:32 +0700 Cambell
Supplier Payment: by default bank account is selected to be the same as that used on the last payment for the supplier (if any, or default currency account otherwise).
M purchasing/includes/db/supp_trans_db.inc
M purchasing/supplier_payment.php
2016-08-05 15:55:19 +0700 Cambell
Ajax calls: set the checkbox value = 0 for an unset checkbox rather than skipping the element.
M js/utils.js
2016-08-06 10:43:40 +0200 Janusz Dobrowolski
Fixed broken html enities handling in longer TextWrap fields in reports.
M reporting/includes/class.pdf.inc
2016-08-06 10:36:43 +0200 Joe Hunt
One comma too much in line 312 /purchasing/manage/suppliers.php. Fixed.
M purchasing/manage/suppliers.php
2016-07-31 23:47:24 +0200 Joe Hunt
Removed redundant line in reporting/includes/header2.inc.
M reporting/includes/header2.inc
2016-07-26 09:13:39 +0200 Joe Hunt
Rerun. Dimension is missing in Supplier Invoice View. GL Rows. Apmuthu.
M purchasing/includes/db/invoice_db.inc
2016-07-26 08:11:54 +0200 Joe Hunt
Dimension is missing in Supplier Invoice View GL Rows. Fixed a parameter bug in add_supp_invoice_gl_item.
M purchasing/includes/db/invoice_db.inc
M purchasing/includes/db/invoice_items_db.inc
2016-07-26 07:39:50 +0200 Joe Hunt
Dimension is missing in Supplier Invoice View, GL Rows.
M purchasing/includes/db/invoice_db.inc
2016-07-24 14:54:28 +0200 Joe Hunt
Minor bug in deleting fiscal years. Apmuthu.
M admin/db/fiscalyears_db.inc
2016-07-24 14:52:49 +0200 Joe Hunt
Minor bugs in deleting fiscal years. Apmuthu.
M admin/db/fiscalyears_db.inc
2016-07-15 10:55:11 +0200 Joe Hunt
Bug 3585. 'Exclude from purchase' function not working in PO.
M purchasing/includes/ui/po_ui.inc
2016-07-08 08:49:19 +0200 Joe Hunt
Bug. is_date_closed() should be performed before is_date_in_fiscalyears().
M admin/void_transaction.php
M includes/date_functions.inc
2016-05-27 12:10:57 +0200 Joe Hunt
Rerun. Tabbed dialogs allowed non access pages.
M purchasing/manage/suppliers.php
M sales/manage/customers.php
2016-05-27 12:09:47 +0200 Joe Hunt
Rerun. Tabbed dialogs allowed non access pages.
M inventory/manage/items.php
M js/inserts.js
M purchasing/manage/suppliers.php
M sales/manage/customers.php
2016-05-27 11:19:00 +0200 Janusz Dobrowolski
Fixed security check for last tab in tabbed_content.
M inventory/manage/items.php
M js/inserts.js
2016-05-27 09:11:57 +0200 Joe Hunt
Tabbed dialogs allowed non access pages.
M inventory/manage/items.php
M purchasing/manage/suppliers.php
M sales/manage/customers.php
2016-05-27 09:09:22 +0200 Joe Hunt
Tabbed dialogs allowed non access pages.
M inventory/manage/items.php
M purchasing/manage/suppliers.php
M sales/manage/customers.php
2016-05-22 22:29:20 +0200 Joe Hunt
Bloomberg Rate has changed their wrapper from span to div.
M gl/includes/db/gl_db_rates.inc
2016-05-22 22:28:03 +0200 Joe Hunt
Bloomberg Rate has changed their wrapper from span to div.
M gl/includes/db/gl_db_rates.inc
2016-05-19 22:48:45 +0200 Janusz Dobrowolski
Fixed typo in last commit.
M gl/manage/bank_accounts.php
2016-05-19 22:48:04 +0200 Janusz Dobrowolski
Fixed typo in last commit.
M gl/manage/bank_accounts.php
2016-05-19 22:37:03 +0200 Janusz Dobrowolski
Fixed bug in bank account edition.
M gl/manage/bank_accounts.php
2016-05-19 22:35:19 +0200 Janusz Dobrowolski
Fixed bug in Bank Accounts edition.
M gl/manage/bank_accounts.php
2016-05-17 19:05:28 +0200 Janusz Dobrowolski
Fixed typos in installer translation files, fixed translations in dashboard procedures.
M includes/dashboard.inc
M install/lang/de_DE/LC_MESSAGES/de_DE.mo
M install/lang/de_DE/LC_MESSAGES/de_DE.po
M install/lang/pt_PT/LC_MESSAGES/pt_PT.mo
M install/lang/pt_PT/LC_MESSAGES/pt_PT.po
M lang/new_language_template/LC_MESSAGES/empty.po
2016-02-25 13:25:42 +0100 Janusz Dobrowolski
Constant string after last placeholder in reference line definition was ignored.
M includes/references.inc
2016-05-17 18:57:23 +0200 Janusz Dobrowolski
Fixed typos in some installer translation files.
M install/lang/de_DE/LC_MESSAGES/de_DE.mo
M install/lang/de_DE/LC_MESSAGES/de_DE.po
M install/lang/pt_PT/LC_MESSAGES/pt_PT.mo
M install/lang/pt_PT/LC_MESSAGES/pt_PT.po
2016-02-23 20:08:46 +0100 Joe Hunt
New CHANGELOG.txt file
M CHANGELOG.txt
2016-02-22 15:33:49 +0100 Janusz Dobrowolski
Fixed missing changes in upgrade sql files.
M sql/alter2.4.sql
M sql/alter2.4rc1.sql
2016-02-21 16:44:45 +0100 Joe Hunt
New CHANGELOG.txt
M CHANGELOG.txt
2016-02-21 16:43:01 +0100 Joe Hunt
Release 2.4.RC1
M update.html
M version.php
2016-02-21 15:37:42 +0100 Joe Hunt
New CHANGELOG.txt
M CHANGELOG.txt
2016-02-21 15:34:07 +0100 Joe Hunt
Release 2.3.25.
M version.php
2016-02-21 12:51:03 +0100 Janusz Dobrowolski
Upgrade procedures max execution time for this version rised to 900s due to WAMP performance problems.
M sql/alter2.4.php
M sql/alter2.4rc1.php
2016-02-16 11:34:44 +0100 Joe Hunt
Error in two comment lines in demo and new sql file. phpMyAdmin bailed out.
M sql/en_US-demo.sql
M sql/en_US-new.sql
2016-02-15 12:20:39 +0100 Joe Hunt
More missing semicolons.
M sql/alter2.4.sql
M sql/alter2.4rc1.sql
2016-02-15 12:14:18 +0100 Joe Hunt
Missing semicolon. Forgot the other file.
M sql/alter2.4.sql
2016-02-15 11:47:39 +0100 Joe Hunt
Missing semicolon in UPDATE instruction.
M sql/alter2.4rc1.sql
2016-02-14 22:06:29 +0100 Janusz Dobrowolski
Fixed upgrade procedures for manufacturing transactions, additional checks for voiding.
M admin/db/voiding_db.inc
M gl/view/gl_trans_view.php
M manufacturing/includes/db/work_order_costing_db.inc
M manufacturing/includes/db/work_order_issues_db.inc
M manufacturing/includes/db/work_orders_db.inc
M sql/alter2.4.sql
M sql/alter2.4rc1.sql
2016-02-13 12:16:06 +0100 Janusz Dobrowolski
Fixed manufacturing module voiding procedures.
M admin/db/voiding_db.inc
M manufacturing/includes/db/work_order_costing_db.inc
M manufacturing/includes/db/work_order_issues_db.inc
M manufacturing/includes/db/work_order_produce_items_db.inc
M manufacturing/includes/db/work_orders_db.inc
M manufacturing/work_order_costs.php
2016-01-23 12:24:28 +0100 Janusz Dobrowolski
Fixed fixed assets stright line depreciation.
M fixed_assets/includes/depreciation.inc
2016-01-21 10:53:33 +0100 Janusz Dobrowolski
Fixed bug in work order view.
M includes/types.inc
2016-01-10 10:45:45 +0100 Janusz Dobrowolski
Manufacturing: assembly account renamed to WIP account.
M admin/gl_setup.php
M gl/includes/db/gl_db_accounts.inc
M includes/db/inventory_db.inc
M inventory/includes/db/items_category_db.inc
M inventory/includes/db/items_db.inc
M inventory/manage/item_categories.php
M inventory/manage/items.php
M manufacturing/includes/db/work_order_costing_db.inc
M manufacturing/includes/db/work_order_issues_db.inc
M manufacturing/includes/db/work_order_produce_items_db.inc
M manufacturing/includes/db/work_orders_db.inc
M sql/alter2.4.sql
M sql/alter2.4rc1.sql
M sql/en_US-demo.sql
M sql/en_US-new.sql
2016-01-09 22:03:10 +0100 Janusz Dobrowolski
Removed sparse debit account selector from Work Order Additional Costs.
M manufacturing/includes/db/work_order_costing_db.inc
M manufacturing/includes/db/work_order_requirements_db.inc
M manufacturing/includes/db/work_orders_db.inc
M manufacturing/includes/manufacturing_ui.inc
M manufacturing/work_order_costs.php
2016-01-09 21:19:59 +0100 Janusz Dobrowolski
Removed redundant global wip_act preference, fixed invalid account used for service BOM items.
M admin/gl_setup.php
M includes/data_checks.inc
M manufacturing/includes/db/work_order_costing_db.inc
M manufacturing/includes/db/work_order_issues_db.inc
M manufacturing/includes/db/work_order_produce_items_db.inc
M manufacturing/work_order_add_finished.php
M manufacturing/work_order_issue.php
M sql/alter2.4rc1.php
M sql/alter2.4rc1.sql
M sql/en_US-demo.sql
M sql/en_US-new.sql
2016-01-21 13:34:10 +0100 Cambell Prince
Fixed bank account balance checking procedure.
M gl/includes/db/gl_db_bank_trans.inc
M gl/includes/db/gl_db_banking.inc
2016-01-21 11:29:20 +0100 Cambell Prince
Reconcile Bank Account shouldn't show void transactions.
M gl/includes/db/gl_db_bank_accounts.inc
2016-01-09 12:44:36 +0100 Janusz Dobrowolski
Fixed costs display in work order view.
M manufacturing/includes/db/work_order_costing_db.inc
M manufacturing/includes/db/work_order_issues_db.inc
M manufacturing/includes/manufacturing_ui.inc
2016-01-14 08:02:59 +0100 Joe Hunt
Added column Currency in Bank Accounts. Changed to all years in fixed assets.
M includes/dashboard.inc
2016-01-13 08:23:04 +0100 Joe Hunt
Created new fiscal year, 2016-01-01 to 2016-12-31.
M sql/en_US-demo.sql
2016-01-13 08:21:19 +0100 Joe Hunt
Created new fiscal years in en_US-demo.sql
M sql/en_US-demo.sql
2016-01-10 09:50:38 +0100 Janusz Dobrowolski
Reverted invalid changes in manufacturing accounts back to cogs_account for BOM service items.
M manufacturing/includes/db/work_order_issues_db.inc
M manufacturing/includes/db/work_order_produce_items_db.inc
M manufacturing/includes/db/work_orders_db.inc
M manufacturing/includes/db/work_orders_quick_db.inc
2016-01-02 11:08:32 +0100 Janusz Dobrowolski
Overhead and labour cost changed to define standard costs.
M gl/includes/db/gl_db_trans.inc
M includes/db/inventory_db.inc
M includes/db/manufacturing_db.inc
M includes/ui/ui_view.inc
M inventory/cost_update.php
M inventory/includes/db/items_trans_db.inc
M inventory/includes/item_adjustments_ui.inc
M manufacturing/includes/db/work_order_costing_db.inc
M manufacturing/includes/db/work_order_issues_db.inc
M manufacturing/includes/db/work_order_produce_items_db.inc
M manufacturing/includes/db/work_order_requirements_db.inc
M manufacturing/includes/db/work_orders_db.inc
D manufacturing/includes/db/work_orders_quick_db.inc
M manufacturing/includes/manufacturing_db.inc
M manufacturing/includes/manufacturing_ui.inc
M manufacturing/includes/work_order_issue_ui.inc
M manufacturing/view/wo_costs_view.php