-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.txt
29183 lines (25064 loc) · 888 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
2019-06-23 22:49:00 +0200 Janusz Dobrowolski
Fixed inventory cost calculation for fiscal year deletion.
M admin/db/fiscalyears_db.inc
2019-06-23 12:23:53 +0200 Janusz Dobrowolski
Reverted latest changes in inventory adjustment to ensure database consistency.
M inventory/includes/db/items_adjust_db.inc
M reporting/rep301.php
M reporting/rep308.php
2019-06-20 09:17:13 +0200 Joe Hunt
Rerun rep306. Fixed dupplicated rows.
M reporting/rep306.php
2019-06-20 09:11:13 +0200 Joe Hunt
Fixed Inventory Purchasing Report with physical rate from line.
M reporting/rep306.php
2019-06-17 09:54:59 +0200 Joe Hunt
Rerun of items_adjust_db.inc. @itronics.
M inventory/includes/db/items_adjust_db.inc
2019-06-17 08:25:43 +0200 Joe Hunt
Anomaly created by Cost Update in Inventory Sales Report (rep304). Updated bugfix. @boxygen.
M inventory/includes/db/items_adjust_db.inc
M reporting/rep301.php
M reporting/rep308.php
2019-06-16 09:44:09 +0200 Joe Hunt
General Leger - List of journal entries - change in memo fields. @Braath Waate.
M reporting/rep702.php
2019-06-16 08:55:00 +0200 Joe Hunt
Fixing Get_domestic_price in rep301 and rep308. @boxygen.
M reporting/rep301.php
M reporting/rep308.php
2019-06-15 11:02:24 +0200 Janusz Dobrowolski
Rolled back invalid update of stock_move costs on cost update.
M inventory/includes/db/items_trans_db.inc
2019-06-04 08:11:17 +0200 Joe Hunt
Bug 4896: Standard Cost is not Updated in debtor_trans_detail table if Customer Credit Note is processed. @boxygen.
M sales/includes/db/sales_credit_db.inc
2019-06-04 07:58:40 +0200 Joe Hunt
Fixed Supplier Allocation Inquiry - Due Date. @poncho1234.
M purchasing/inquiry/supplier_allocation_inquiry.php
2019-06-02 18:29:32 +0200 Joe Hunt
Wrong Presentation of supp balance in forms. @JimmyC
M purchasing/includes/db/invoice_db.inc
M purchasing/includes/db/po_db.inc
2019-05-18 15:45:11 +0200 Joe Hunt
Rerun fix Supplier Trial Balance.
M reporting/rep206.php
2019-05-18 15:35:34 +0200 Joe Hunt
Buxfix in Customer and Supplier Trial Balance Report and margin fixes. @boxygen.
M reporting/rep115.php
M reporting/rep206.php
2019-05-01 10:00:31 +0200 Joe Hunt
Fixed Email Receipt to customer.
M reporting/includes/reporting.inc
M reporting/rep112.php
M reporting/reports_main.php
M sales/customer_payments.php
2019-04-22 10:07:25 +0200 Joe Hunt
New Soluton to sales_order_ui.inc has a bug. @kvvaradha.
M sales/includes/ui/sales_order_ui.inc
2019-04-19 16:40:04 +0200 Joe Hunt
Rerun: user_list_cells Real name sometimes shows empty. @apmuthu
M includes/ui/ui_lists.inc
2019-04-14 23:30:50 +0200 Joe Hunt
user_list_cells Real name shows empty when not entered in user table. @kvvaradha.
M includes/ui/ui_lists.inc
2019-04-13 09:52:25 +0200 Joe Hunt
rerun of sales_order_ui.inc has a bug. @Braath Waate and @kvvaradha.
M sales/includes/ui/sales_order_ui.inc
2019-04-07 08:48:16 +0200 Joe Hunt
Recurrent Invoices in 2.4 is not sending. Fixed by @Braath Waate.
M sales/create_recurrent_invoices.php
2019-03-26 16:57:32 +0100 Joe Hunt
4863: Dimension not defaulted on po entry, po modify. @Braath Waate and @joe fixed
M purchasing/includes/db/grn_db.inc
M purchasing/includes/db/invoice_db.inc
M purchasing/includes/db/po_db.inc
2019-03-26 11:17:08 +0100 Joe Hunt
4867: supplier quick entry g/l account list should show the bank accounts in the line.
M purchasing/includes/ui/invoice_ui.inc
2019-03-26 10:51:56 +0100 Joe Hunt
Rerun /reporting/includes/report_classes.inc
M reporting/includes/reports_classes.inc
2019-03-26 10:42:35 +0100 Joe Hunt
4869: Work order listing and print work orders reports should omit voided orders. @Braath Waate fixed.
M manufacturing/includes/db/work_orders_db.inc
M reporting/includes/reports_classes.inc
M reporting/rep402.php
2019-03-26 01:42:25 +0100 Joe Hunt
Sometimes when amount tax details was zero and net amount was set an empty gl transaction was made. @JimmyC and @joe fixed it.
M sales/includes/db/sales_invoice_db.inc
2019-03-24 18:07:25 +0100 Joe Hunt
Rerun of sales_order_entry.php.
M sales/sales_order_entry.php
2019-03-24 18:02:00 +0100 Joe Hunt
Fixing bug in Sales Invoice and Sales Delivery when Cash Sales and document date is earlier then todays date. Due date should be the same.
M sales/sales_order_entry.php
2019-03-23 10:50:42 +0100 Joe Hunt
Presentation bug in Sales Order View when reference is 'auto'.
M sales/view/view_sales_order.php
2019-03-21 22:28:35 +0100 Joe Hunt
Removed CCA, (currencyconverterapi.com) is no longer working. Updated url from google api. @notrinos.
M config.default.php
M gl/includes/db/gl_db_rates.inc
2019-03-19 21:40:45 +0100 Joe Hunt
No edit in supplier invoice quick entry fixed. @Braath Waate.
M purchasing/includes/ui/invoice_ui.inc
M purchasing/supplier_invoice.php
2019-03-06 22:55:17 +0100 Joe Hunt
PHP 7.X produces A non-numeric value encountered in \includes\date_functions.inc when using date format 5 (YYYY/MM/D.
M includes/date_functions.inc
2019-03-04 08:42:29 +0100 Joe Hunt
Clean up in en_US-demo.sql and en_US-new.sql. @apmuthu.
M sql/en_US-demo.sql
M sql/en_US-new.sql
2019-02-22 23:30:45 +0100 Joe Hunt
4859: The Outstanding in Customer Balance is Not Ok with Journal Entry. Fixed by @boxygen.
M reporting/rep101.php
2019-02-22 10:01:34 +0100 Joe Hunt
0004847: FA allows reconciliation of closed transactions. Fixed by @Braath Waathe.
M gl/bank_account_reconcile.php
2019-02-22 09:49:28 +0100 Joe Hunt
Display of newlines in memo show as html during purchase order modify. Fixed by @Braath Waathe-
M purchasing/includes/db/po_db.inc
2019-02-19 08:28:59 +0100 Joe Hunt
Fixed users Last Visit Date with Time. @kvvaradha and @apmuthu.
M admin/users.php
2019-02-13 16:05:42 +0100 Janusz Dobrowolski
Process Depreciation: hardcoded fiscal years constraint removed.
M includes/data_checks.inc
M includes/ui/ui_lists.inc
2019-02-13 15:48:50 +0100 Joe Hunt
Customer balance Report rep101.php has one extra parameter. Fixed @kvvaradha.
M reporting/rep101.php
2019-01-29 15:10:00 +0100 Joe Hunt
Bad english language in db error msg.
M inventory/includes/db/items_units_db.inc
2019-01-27 15:57:06 +0100 Joe Hunt
Fixed small bug item units db by @anoopmb.
M inventory/includes/db/items_units_db.inc
2019-01-25 21:27:35 +0100 Janusz Dobrowolski
Additional sql strict mode related fix in add_trans_tax_details().
M gl/includes/db/gl_db_trans.inc
2019-01-25 10:20:55 +0100 Joe Hunt
Rerun of sales_order_ui.inc has a bug.
M sales/includes/ui/sales_order_ui.inc
2019-01-24 23:28:25 +0100 Joe Hunt
Bugs in sales_db.inc and sales_order_ui.inc fixed by @kvvaradha.
M sales/includes/sales_db.inc
M sales/includes/ui/sales_order_ui.inc
2019-01-23 11:26:41 +0100 Joe Hunt
items_cart class has a logical bug, fixed by @kvvaradha.
M includes/ui/items_cart.inc
2019-01-22 12:29:08 +0100 Joe Hunt
Redesign of the 2 core COAs. They are similar now except the demo data in the demo variant.
M sql/en_US-demo.sql
M sql/en_US-new.sql
2019-01-21 23:09:30 +0100 Joe Hunt
Rerun2 of updated en_US-demo.sql.
M sql/en_US-demo.sql
2019-01-21 13:41:03 +0100 Joe Hunt
Rerun of en_US-demo COA. Cleaning.
M sql/en_US-demo.sql
2019-01-21 11:45:47 +0100 Joe Hunt
Updated en_US-demo to contain 2018 and a couple of transes in 2019.
M sql/en_US-demo.sql
2019-01-20 20:20:31 +0100 Janusz Dobrowolski
Relaxed sql_mode set on database initialization to provide backward compatibility during backup restartion.
M admin/db/maintenance_db.inc
2019-01-17 08:25:14 +0100 Joe Hunt
Double semicolon line endings fixed by @apmuthu.
M admin/attachments.php
M fixed_assets/includes/fa_classes_db.inc
M inventory/view/view_transfer.php
M js/behaviour.js
M manufacturing/view/wo_issue_view.php
M purchasing/view/view_po.php
M reporting/rep451.php
M sales/customer_credit_invoice.php
M sales/includes/db/customers_db.inc
M taxes/tax_groups.php
2019-01-16 22:37:09 +0100 Joe Hunt
Double Semi Colon in this line. Please remove one by £boxygen
M gl/includes/db/gl_db_trans.inc
2019-01-16 22:24:19 +0100 Joe Hunt
Placeholders Not Allowed for Dimensions. Fixed by @boxygen
M includes/references.inc
2019-01-14 17:29:25 +0100 Joe Hunt
wrong command symbol in ui_list.inc by @notrinos.
M includes/ui/ui_lists.inc
2019-01-11 08:29:58 +0100 Joe Hunt
Rerun of Update Material Cost Function. $notrinos.
M manufacturing/includes/db/work_order_costing_db.inc
2019-01-10 20:04:20 +0100 Janusz Dobrowolski
Fixed get_post() support for numeric fields.
M admin/display_prefs.php
M includes/ui/ui_controls.inc
2019-01-10 18:00:25 +0100 Janusz Dobrowolski
Quick Entries: fixed false warning.
M gl/manage/gl_quick_entries.php
2019-01-10 16:29:01 +0100 Janusz Dobrowolski
Fixed allocation date for customer payments entry, additional fixes for strict sql mode.
M includes/db/audit_trail_db.inc
M sales/customer_payments.php
2019-01-10 10:17:14 +0100 Janusz Dobrowolski
Activated strict SQL mode, minor SQL injection fix, fixed _vl() debug helper.
M admin/display_prefs.php
M includes/date_functions.inc
M includes/db/class.reflines_db.inc
M includes/db/connect_db_mysql.inc
M includes/db/connect_db_mysqli.inc
M includes/ui/class.crud_view.inc
M includes/ui/class.reflines_crud.inc
M includes/ui/ui_input.inc
M includes/ui/ui_view.inc
M inventory/includes/db/items_db.inc
M inventory/manage/items.php
M inventory/manage/locations.php
M purchasing/manage/suppliers.php
M sales/includes/cart_class.inc
2019-01-09 23:15:27 +0100 Joe Hunt
Rollback. Update material cost when quantity on hand is zero. @notrinos.
M manufacturing/includes/db/work_order_costing_db.inc
2019-01-08 23:42:04 +0100 Joe Hunt
Merge branch 'master' of https://git.code.sf.net/p/frontaccounting/git
2019-01-08 23:41:40 +0100 Joe Hunt
Password reset mail could take several hours. After fix only a couple of seconds. Using From: email in header.
M includes/current_user.inc
2019-01-08 23:40:09 +0100 Joe Hunt
Bug 4817: g/l account inquiry can timeout due to slow sql. @Braath Waate.
M gl/includes/db/gl_db_trans.inc
M gl/inquiry/gl_account_inquiry.php
2019-01-08 20:44:35 +0100 Janusz Dobrowolski
New transaction reference formats {FF}/{FFFF} for fiscal years starting on other day than January 1st.
M includes/references.inc
2019-01-07 17:31:09 +0100 Joe Hunt
Optimized function get_trans_tax_details() by @apmuthu.
M gl/includes/db/gl_db_trans.inc
2019-01-05 10:42:24 +0100 Joe Hunt
Date Picker close when clicked outside of the datepicker. @kvvaradha and @apmuthu.
M includes/ui/ui_view.inc
2019-01-02 09:12:17 +0100 Joe Hunt
Supplier Transaction Inquiry for GRN did not filter on date. Fixed by @notrinos.
M purchasing/includes/db/supp_trans_db.inc
2018-12-24 00:41:51 +0100 Joe Hunt
Merge branch 'master' of https://git.code.sf.net/p/frontaccounting/git
2018-12-24 00:41:14 +0100 Joe Hunt
New CHANGELOG.txt file.
M CHANGELOG.txt
2018-12-24 00:38:18 +0100 Joe Hunt
Release 2.4.6
M version.php
2018-12-24 00:32:42 +0100 Joe Hunt
Report Stock Check Sheet is now testing for valid barcodes of EAN, EAN-8, EAN-13, GTIN-8, GTIN-12, GTIN-14, UPC, UPC-12 coupon code, JAN if 'Using Barcodes' is enabled.
M reporting/rep303.php
2018-12-23 15:39:52 +0100 Janusz Dobrowolski
Update README.md, removed obsolete install/update info, added list of contributors.
M README.md
M doc/license.txt
D install.html
D update.html
2018-12-23 10:57:11 +0100 Janusz Dobrowolski
Gettext template update.
M lang/new_language_template/LC_MESSAGES/empty.po
2018-12-20 21:09:08 +0100 Janusz Dobrowolski
Attach Documents: fixed SQL injection vulnerability.
M admin/db/transactions_db.inc
M includes/references.inc
2018-12-22 11:54:46 +0100 Joe Hunt
Barcodes in report Stock Check Sheets should only print numeric stock id's.
M reporting/rep303.php
2018-12-22 10:00:00 +0100 Joe Hunt
Rerun of rep115.php and rep206. Wrong $no_zeroes check and missing parameters in rep115.php.
M reporting/rep115.php
M reporting/rep206.php
2018-12-21 17:34:10 +0100 Joe Hunt
Rerun of rep115.php, Customer Trial Balance.
M reporting/rep115.php
2018-12-21 17:01:03 +0100 Joe Hunt
Added 2 new reports, Customer Trial Balance and Supplier Trial Balance. @boxygen.
A reporting/rep115.php
M reporting/rep201.php
A reporting/rep206.php
M reporting/reports_main.php
2018-12-20 13:01:02 +0100 Joe Hunt
No exchange rate working in FA now. Fixed ECB, CCA and EXCHANGE-RATES.ORG. @notrinos.
M config.default.php
M gl/includes/db/gl_db_rates.inc
2018-12-19 13:22:55 +0100 Joe Hunt
4821: banking overdraft message has php errors. Fixed. @Braathwaathe
M gl/gl_bank.php
M gl/includes/db/gl_db_bank_trans.inc
2018-12-19 11:56:34 +0100 Joe Hunt
4811: magnifying glass select on deposits/payments erroneously shows bank account gl accounts. Fixed, @Braathwaathe.
M gl/includes/db/gl_db_accounts.inc
M gl/inquiry/accounts_list.php
M includes/ui/ui_lists.inc
2018-12-19 11:52:47 +0100 Joe Hunt
4796: Entering customer payment with a bank charge equal to the total amount results in database error. Fixed. @Braathwaate.
M sales/customer_payments.php
2018-12-18 12:53:37 +0100 Joe Hunt
Changed Journal # to GL # in GL Trans View.
M gl/inquiry/journal_inquiry.php
M gl/view/gl_trans_view.php
M includes/ui/ui_view.inc
2018-12-17 23:14:19 +0100 Joe Hunt
New reliable currency rate provider, EXCHANGE-RATES.ORG added as default. @notrinos.
M config.default.php
M gl/includes/db/gl_db_rates.inc
2018-12-17 15:56:32 +0100 Joe Hunt
Credit Notes were never seen in View Sales Order. Fixed.
M sales/view/view_sales_order.php
2018-12-17 09:41:08 +0100 Joe Hunt
Foxed a non well formed numeric value encountered rep202.php. @apmuthu.
M reporting/rep202.php
2018-12-16 23:25:40 +0100 Joe Hunt
Pressing the Batch button in Invoice against Deliveries got a missing indes. Fixed. @notrinos.
M sales/inquiry/sales_deliveries_view.php
2018-12-16 23:23:26 +0100 Joe Hunt
Fixed a non well formed numeric value encountered rep102.php
M reporting/rep102.php
2018-12-16 16:12:38 +0100 Joe Hunt
Rerun of last php 7.2 count() buf.
M includes/ui/ui_globals.inc
2018-12-16 08:32:32 +0100 Joe Hunt
Fixed Bug in count_array(), /includes/ui/ui_globals.inc.
M includes/ui/ui_globals.inc
2018-12-06 21:19:01 +0100 Joe Hunt
New CHANGELOG.txt file.
M CHANGELOG.txt
2018-12-06 21:16:27 +0100 Joe Hunt
Release 2.4.5
M version.php
2018-12-05 20:12:06 +0100 Janusz Dobrowolski
Updated gettext template.
M lang/new_language_template/LC_MESSAGES/empty.po
2018-11-29 14:15:12 +0100 Joe Hunt
Fixed php 7.2 count() compatibility continued.
M includes/ui/contacts_view.inc
M includes/ui/items_cart.inc
2018-11-29 09:13:49 +0100 Joe Hunt
Fixed php 7.2 count() compatibility and intval cast in number_format2 parameter 2.
M admin/db/maintenance_db.inc
M includes/current_user.inc
M includes/ui/ui_globals.inc
M reporting/includes/fpdi/fpdi.php
M reporting/includes/reports_classes.inc
M sales/includes/sales_db.inc
2018-11-28 09:30:25 +0100 Joe Hunt
0004760: Rerun - new last_sales_order_detail function sql very slow. Optimized by @Braathwaate.
M sales/includes/db/sales_order_db.inc
2018-11-24 23:21:40 +0100 Joe Hunt
Purchase Order Delivery does not show the Supplier name in GL transactions report. @kvvaradha.
M gl/includes/db/gl_db_trans.inc
M reporting/rep704.php
2018-11-22 10:28:06 +0100 Joe Hunt
Fixed Customer Balance Showing wrong Outstanding balance (Journal Entry allocation), @kvvaradha.
M reporting/rep101.php
2018-11-22 09:58:50 +0100 Joe Hunt
Fixed Revaluation amount is getting posted wrongly. @mugao-em and @andijani.
M gl/includes/db/gl_db_banking.inc
2018-11-20 11:32:37 +0100 Joe Hunt
Added Comany Setup Option. 'Open Print Dialog Direct on Reports'. @notrinos.
M admin/company_preferences.php
M reporting/includes/pdf_report.inc
M sql/alter2.4.php
M sql/en_US-demo.sql
M sql/en_US-new.sql
2018-11-19 15:27:06 +0100 Joe Hunt
0004760: new last_sales_order_detail function sql very slow. Optimized by @Braathwaate.
M sales/includes/db/sales_order_db.inc
2018-11-18 22:53:51 +0100 Joe Hunt
Added missing input data check for Gl Setup. @notrinos.
M admin/gl_setup.php
2018-11-13 23:35:19 +0100 Joe Hunt
Merge branch 'master' of https://git.code.sf.net/p/frontaccounting/git
2018-11-13 23:34:52 +0100 Joe Hunt
Added input data check for company preferences. @notrinos.
M admin/company_preferences.php
2018-11-05 12:02:11 +0100 Janusz Dobrowolski
Cleanups (fixed obscure numeric references to some sql helpers results).
M dimensions/dimension_entry.php
M dimensions/view/view_dimension.php
M manufacturing/includes/db/work_orders_db.inc
M manufacturing/includes/manufacturing_ui.inc
M manufacturing/work_order_add_finished.php
M manufacturing/work_order_costs.php
M manufacturing/work_order_entry.php
M purchasing/includes/db/invoice_db.inc
2018-11-05 11:11:14 +0100 Janusz Dobrowolski
[0004736] Addtitional fix in get_item helper.
M inventory/includes/db/items_db.inc
2018-10-29 23:31:41 +0100 Joe Hunt
bug fixed in reports_classes.inc:37: count(). @cleal.
M reporting/includes/reports_classes.inc
2018-10-26 09:14:24 +0200 Joe Hunt
Fixed deprecated each() function in PHP 7.2 (fpdi.php). @apmuthu.
M reporting/includes/fpdi/fpdi.php
2018-10-25 20:08:57 +0200 Joe Hunt
Merge branch 'master' of https://git.code.sf.net/p/frontaccounting/git
2018-10-25 20:08:35 +0200 Joe Hunt
Fixed deprecated each() function in PHP 7.2 (tcpdf.php). @notrinos.
M reporting/includes/tcpdf.php
2018-10-24 10:26:37 +0200 Janusz Dobrowolski
[0004594] Suppliers: inactive tax groups should not appear in tax group selector for new supplier.
M includes/ui/ui_lists.inc
2018-10-12 12:10:54 +0200 Janusz Dobrowolski
[0004475] Modifying Journal Transaction: fixed form layout for gl edition containing subaccount.
M includes/ui/items_cart.inc
2018-10-12 11:33:25 +0200 Janusz Dobrowolski
[0004736] Items: item cloning did not preserved value for non-editable fields.
M inventory/manage/items.php
2018-10-11 11:25:44 +0200 Janusz Dobrowolski
[0004734] Fixed bug in costing procedure for produced items.
M manufacturing/includes/db/work_order_costing_db.inc
2018-10-11 11:15:10 +0200 Janusz Dobrowolski
[0004735] Search Outstanding Work Orders: voided work orders excluded.
M manufacturing/includes/db/work_orders_db.inc
2018-10-10 16:03:24 +0200 Janusz Dobrowolski
[0004216] Print Work Orders: database error fixed when voided WO is in selected range.
M reporting/includes/reports_classes.inc
M reporting/rep409.php
2018-10-10 15:47:28 +0200 Janusz Dobrowolski
[0004212] Work Order Entry: fixed error when voided WO refence is reused.
M manufacturing/includes/db/work_orders_db.inc
2018-10-06 12:51:22 +0200 Joe Hunt
Fixed Customer statement reflecting wrong balance. @Braath Waate.
M reporting/rep108.php
2018-10-02 10:04:57 +0200 Joe Hunt
Merge branch 'master' of https://git.code.sf.net/p/frontaccounting/git
2018-10-02 10:04:32 +0200 Joe Hunt
0004641: items->transactions should not show QOH for service items. @Braathwaate. Fixed by disabling transactions when non inventory item.
M inventory/manage/items.php
2018-09-17 08:32:24 +0200 Janusz Dobrowolski
Fixed comment for crm_contacts table in init sql files.
M sql/en_US-demo.sql
M sql/en_US-new.sql
2018-09-15 10:19:13 +0200 Joe Hunt
Error line break on supplier_list_cells when label is set to null. Fixed by @notrinos/kvvaradha.
M includes/ui/ui_lists.inc
2018-09-13 09:05:56 +0200 Joe Hunt
Left to allocate is showing wrong. Fixed by a rerun by @notrinos.
M includes/ui/ui_view.inc
2018-09-12 22:27:40 +0200 Joe Hunt
Left to allocate is showing wrong. Fixed by @notrinos.
M includes/ui/ui_view.inc
2018-09-11 22:43:52 +0200 Joe Hunt
Fixed error creating customer credit note: Undefined index: sales_gl_code. @notrinos.
M taxes/tax_calc.inc
2018-08-31 15:27:27 +0200 Joe Hunt
Rerun bug 4601: memo line not cleared after enter new payment item. @Braath Waate.
M gl/includes/ui/gl_journal_ui.inc
M gl/inquiry/bank_inquiry.php
M includes/dashboard.inc
M includes/ui/ui_input.inc
2018-08-30 23:12:52 +0200 Joe Hunt
Rerun. Update material cost when quantity on hand is zero. @notrinos.
M manufacturing/includes/db/work_order_costing_db.inc
2018-08-30 09:03:06 +0200 Joe Hunt
2.4.4 no Longer Displays 0.00 Sales Invoices in customer_inquiry.php. Fixed. $Braath Waate.
M sales/includes/db/cust_trans_db.inc
M sales/inquiry/customer_inquiry.php
2018-08-30 08:04:27 +0200 Joe Hunt
Update material cost when quantity on hand is zero. @notrinos.
M manufacturing/includes/db/work_order_costing_db.inc
2018-08-26 19:07:18 +0200 Joe Hunt
Merge branch 'master' of https://git.code.sf.net/p/frontaccounting/git
2018-08-26 18:57:14 +0200 Joe Hunt
Bug 4601: memo line not cleared after enter new payment item Inbox. @Braathwaate.
M gl/gl_bank.php
M gl/includes/ui/gl_bank_ui.inc
M gl/inquiry/bank_inquiry.php
M includes/dashboard.inc
M includes/ui/ui_input.inc
2018-08-26 18:54:20 +0200 Joe Hunt
Bug 4504. utf-8 decoding not working for some special characters on pdf reports. @Braathwaate.
M reporting/includes/tcpdf.php
2018-08-26 14:57:02 +0200 Janusz Dobrowolski
[0004577] Ajax confirmation dialog ignored user answer in Sales Order cancelation.
M js/inserts.js
2018-08-26 09:17:54 +0200 Joe Hunt
Bug 4617: memo undefined at line 206 core/manufacturing/includes/db/work_order_costing_db.inc. @Braathwaate.
M manufacturing/includes/db/work_order_costing_db.inc
2018-08-26 09:00:18 +0200 Joe Hunt
Bug 4563: rep308 costed inventory movements do not reconcile. @Braatwaate.
M reporting/rep308.php
2018-08-23 10:05:22 +0200 Joe Hunt
Rolled back of A function line misplaced in sales_order_ui.
M sales/includes/ui/sales_order_ui.inc
2018-08-18 08:55:32 +0200 Joe Hunt
Function line misplaced.
M sales/includes/ui/sales_order_ui.inc
2018-08-18 08:39:57 +0200 Joe Hunt
Fixed bug in Report Supplier Balances.
M reporting/rep201.php
2018-08-18 08:28:38 +0200 Joe Hunt
Redundant sql sentences in Report Filters.
M reporting/includes/reports_classes.inc
2018-08-12 14:46:48 +0200 Joe Hunt
Avoid running same query multiple times. Rep307.php. Fixed
M reporting/rep307.php
2018-08-12 14:40:46 +0200 Joe Hunt
Solution for item editable description
M includes/ui/ui_view.inc
2018-08-10 22:07:11 +0200 Joe Hunt
Topic: Marker in Void Transactions fixed.
M admin/void_transaction.php
2018-07-11 23:36:16 +0200 Joe Hunt
Stock goes negative even, the negative inventory is turned off. Fix by kvvaradha.
M admin/void_transaction.php
2018-07-11 21:06:43 +0200 Joe Hunt
Fiscal year delete leads to undefined variable $total. Fixed.
M admin/db/fiscalyears_db.inc
2018-06-18 11:39:24 +0200 Joe Hunt
Wrong unit cost for AP Surf Set in demo data. Fixed and Rerun.
M sql/en_US-demo.sql
2018-06-16 07:47:23 +0200 Joe Hunt
Report Aged Supplier Analysis, Show Also Allocated = No. SQL Problem fixed.
M purchasing/includes/db/suppliers_db.inc
2018-06-12 23:17:29 +0200 Joe Hunt
Wrong type for AP Surf Set in demo data.
M sql/en_US-demo.sql
2018-06-12 07:59:48 +0200 Joe Hunt
Wrong standard cost for AP Surf Set in demo data (en_US-demo.sql). Fixed.
M sql/en_US-demo.sql
2018-06-04 16:42:19 +0200 Joe Hunt
Rerun Report Work Order Listing. More space in subtitles.
M reporting/rep402.php
2018-06-04 10:32:53 +0200 Joe Hunt
Changed Report Workorder Listing to include an option for listing GL rows.
M reporting/rep402.php
M reporting/reports_main.php
2018-05-31 23:26:11 +0200 Janusz Dobrowolski
[0004461] Installer: added info about needed user database permissions.
M install/index.php
M install/lang/ar_EG/LC_MESSAGES/ar_EG.po
M install/lang/da_DK/LC_MESSAGES/da_DK.po
M install/lang/de_DE/LC_MESSAGES/de_DE.po
M install/lang/el_GR/LC_MESSAGES/el_GR.po
M install/lang/es_MX/LC_MESSAGES/es_MX.po
M install/lang/fr_FR/LC_MESSAGES/fr_FR.po
M install/lang/hi_IN/LC_MESSAGES/hi_IN.po
M install/lang/id_ID/LC_MESSAGES/id_ID.po
M install/lang/it_IT/LC_MESSAGES/it_IT.po
M install/lang/ka_GE/LC_MESSAGES/ka_GE.po
M install/lang/new_language_template/LC_MESSAGES/empty.po
M install/lang/nl_BE/LC_MESSAGES/nl_BE.po
M install/lang/pl_PL/LC_MESSAGES/pl_PL.mo
M install/lang/pl_PL/LC_MESSAGES/pl_PL.po
M install/lang/pt_BR/LC_MESSAGES/pt_BR.po
M install/lang/pt_PT/LC_MESSAGES/pt_PT.po
M install/lang/sv_SE/LC_MESSAGES/sv_SE.po
M install/lang/ta_IN/LC_MESSAGES/ta_IN.po
M install/lang/vi_VN/LC_MESSAGES/vi_VN.po
M install/lang/zh_CN/LC_MESSAGES/zh_CN.po
2018-05-31 08:57:58 +0200 Joe Hunt
0004468: Cannot modify a funds transfer twice. Fixed by Braathwaate.
M gl/includes/db/gl_db_banking.inc
2018-05-31 08:47:54 +0200 Joe Hunt
0004476: Our Order No is always 0 on customer payment receipt. Fixed by empty column.
M reporting/includes/doctext.inc
2018-05-31 07:50:28 +0200 Joe Hunt
0003317: "Forty" is misspelled on remittances, receipts. Fixed.
M includes/ui/ui_view.inc
2018-05-24 22:19:59 +0200 Joe Hunt
Rerun Updated google url for currency converter.
M gl/includes/db/gl_db_rates.inc
2018-05-24 15:17:12 +0200 Joe Hunt
Updated google url for currency converter.
M gl/includes/db/gl_db_rates.inc
2018-05-09 15:38:01 +0200 Joe Hunt
Adding Attachments to Dimension
M dimensions/dimension_entry.php
2018-05-07 08:59:22 +0200 Joe Hunt
The function get_customer_trans_details now includes itemPrice ex tax in SQL.
M sales/includes/db/cust_trans_details_db.inc
2018-04-27 15:41:23 +0200 Joe Hunt
0004161: g/l inquiry person/item displays number instead of person. Fixed. Rerun.
M gl/includes/db/gl_db_trans.inc
2018-04-27 15:34:18 +0200 Joe Hunt
0004161: g/l inquiry person/item displays number instead of person, Fixed.
M gl/includes/db/gl_db_trans.inc
2018-04-18 11:23:41 +0200 Joe Hunt
Fixed a php 7.2 bug in db_pager.inc.
M includes/db_pager.inc
2018-04-17 22:29:11 +0200 Joe Hunt
Typo in report Customer Detail Listing
M reporting/rep103.php
2018-04-17 09:41:47 +0200 Janusz Dobrowolski
Removed obsolete column 'Received' from direct purchase document entry forms.
M purchasing/includes/ui/po_ui.inc
2018-04-16 15:32:38 +0200 Joe Hunt
Updated alter2.4.php for 'Auto Increase of Document References'.
M sql/alter2.4.php
2018-04-16 11:01:39 +0200 Joe Hunt
Updating COAs after 'Auto Increase of Document References'.
M sql/en_US-demo.sql
M sql/en_US-new.sql
2018-04-16 08:25:44 +0200 Joe Hunt
Auto Increase of Document References (company setup)
M admin/company_preferences.php
M sales/includes/cart_class.inc
2018-04-09 09:52:03 +0200 Joe Hunt
Fixed Session error in PHP 7.2.
M includes/session.inc
2018-04-09 09:39:12 +0200 Joe Hunt
report_classes.inc - Parameter must be an array fixed.
M reporting/includes/reports_classes.inc
2018-04-02 07:45:23 +0200 Joe Hunt
Fixed the summation of the outstanding open balance in Customer Balance Report.
M reporting/rep101.php
2018-03-27 17:22:05 +0200 Joe Hunt
Update Journal Entry SQL query fixed. Strange that it passed the MySql server!
M gl/includes/db/gl_journal.inc
2018-03-17 15:25:44 +0100 Joe Hunt
New Release 2.4.4.
M CHANGELOG.txt
M version.php
2018-03-16 22:23:47 +0100 Janusz Dobrowolski
Fixed languages set in isession file.
M install/isession.inc
2018-03-16 17:36:28 +0100 Janusz Dobrowolski
New installer translations, updated gettext template.
M install/lang/ar_EG/LC_MESSAGES/ar_EG.mo
M install/lang/ar_EG/LC_MESSAGES/ar_EG.po
M install/lang/de_DE/LC_MESSAGES/de_DE.mo
M install/lang/de_DE/LC_MESSAGES/de_DE.po
A install/lang/hi_IN/LC_MESSAGES/hi_IN.mo
A install/lang/hi_IN/LC_MESSAGES/hi_IN.po
M install/lang/id_ID/LC_MESSAGES/id_ID.mo
M install/lang/id_ID/LC_MESSAGES/id_ID.po
A install/lang/ta_IN/LC_MESSAGES/ta_IN.mo
A install/lang/ta_IN/LC_MESSAGES/ta_IN.po
A install/lang/vi_VN/LC_MESSAGES/vi_VN.mo
A install/lang/vi_VN/LC_MESSAGES/vi_VN.po
M lang/new_language_template/LC_MESSAGES/empty.po
2018-03-16 08:10:31 +0100 Joe Hunt
Ref. edit boxes has been extended to show 16 instead of 10 chars.
M includes/ui/ui_input.inc
2018-03-14 14:37:33 +0100 Joe Hunt
Wrong error message in Save Items.
M inventory/includes/db/items_db.inc
2018-03-11 23:18:55 +0100 Joe Hunt
Rollback of last Ajax Inquiry Fixes.
M includes/ui/ui_view.inc
M js/inserts.js
2018-03-08 15:24:10 +0100 Joe Hunt
Ajax Inquiry Fixes (Braatwaate).
M includes/ui/ui_view.inc
M js/inserts.js
2018-03-08 15:08:07 +0100 Joe Hunt
Changed GL Inquiry to also include the Reference Number.
M gl/inquiry/gl_account_inquiry.php
2018-03-04 14:27:29 +0100 Joe Hunt
Open Balance bug in rep101.php (Customers Balance)
M reporting/rep101.php
2018-02-05 23:34:23 +0100 Joe Hunt
Fixed a minor weird bug in QOH in inventory Planning Report
M reporting/rep302.php
2018-02-03 22:43:55 +0100 Joe Hunt
Better check for fixed assets.
M fixed_assets/process_depreciation.php
2018-02-03 12:11:08 +0100 Janusz Dobrowolski
Fixed fallback mode entry on non-js browsers.
M access/login.php
2018-02-03 12:09:56 +0100 Janusz Dobrowolski
Added POS name in cash payment memo.
M sales/includes/db/sales_invoice_db.inc
2018-02-03 11:56:45 +0100 Janusz Dobrowolski
Reconcile Bank Account: added memo display, added Reconcile All button.
M gl/bank_account_reconcile.php
M gl/includes/db/gl_db_bank_accounts.inc
2018-02-03 11:26:30 +0100 Janusz Dobrowolski
Bank Payment: for selected supplier payment set supplier account dimensions.
M gl/includes/ui/gl_bank_ui.inc
M purchasing/includes/db/suppliers_db.inc
2018-02-03 10:48:30 +0100 Janusz Dobrowolski
GL Inquiry: search by memo, added journal edition link.
M gl/includes/db/gl_db_trans.inc
M gl/inquiry/gl_account_inquiry.php
2018-02-03 10:14:39 +0100 Janusz Dobrowolski
Journal Edition: allow edit reconciliation status for bank related journals.
M gl/gl_journal.php
M gl/includes/db/gl_db_bank_trans.inc
M gl/includes/ui/gl_journal_ui.inc
2018-02-03 09:37:51 +0100 Janusz Dobrowolski
Sales Order Entry: initial item selector position points to last ordered item (seems to be more useful than always selecting first item in selector).
M sales/includes/db/sales_order_db.inc
M sales/includes/ui/sales_order_ui.inc
2018-01-27 16:18:17 +0100 Janusz Dobrowolski
Void a Transaction: keeping date unchanged after transaction voiding to allow continuation on date.
M admin/void_transaction.php
2018-01-29 20:55:33 +0100 Joe Hunt
Rerun of Sales Orders Status with zero decimals in amounts.
M reporting/rep105.php
2018-01-29 13:42:21 +0100 Joe Hunt
Added a Total Amount for Sales Orders Report and a Grand Total.
M reporting/rep105.php
2018-01-20 12:23:46 +0100 Joe Hunt
Fixed redundant $sign in reports Sales Order, Sales Quotation and Purchase Order
M reporting/rep109.php
M reporting/rep111.php
M reporting/rep209.php
2018-01-20 01:53:22 +0100 Joe Hunt
Fixed a Shipping bug in Sales Order Report
M reporting/rep110.php
2018-01-16 09:09:20 +0100 Janusz Dobrowolski
Added deferred income account and prepayment terms in init sql files.
M sql/en_US-demo.sql
M sql/en_US-new.sql
2018-01-15 12:36:26 +0100 Janusz Dobrowolski
Refreshed sql init files. Happy New Year!
M sql/en_US-demo.sql
M sql/en_US-new.sql
2018-01-13 18:47:24 +0100 Janusz Dobrowolski
Fixed bank account auto-selection in Customer Payments (continued).
M sales/customer_payments.php
2018-01-13 14:14:42 +0100 Joe Hunt
Merge branch 'master' of https://git.code.sf.net/p/frontaccounting/git
2018-01-13 14:14:24 +0100 Joe Hunt
Fixed printing sequences of Sales Invoices.
M reporting/rep107.php
2018-01-13 12:41:28 +0100 Janusz Dobrowolski
Fixed account auto-selection on Customer Payments page.
M sales/customer_payments.php
2018-01-04 23:45:57 +0100 Joe Hunt
Fixed a multipart form in backups.
M admin/backups.php
2017-12-24 08:12:09 +0100 Joe Hunt
Extra default parameter added to meta_forward function.
M includes/ui/ui_controls.inc
2017-12-23 23:51:24 +0100 Joe Hunt
tax group can be null as argument
M taxes/db/tax_groups_db.inc
2017-12-23 15:45:53 +0100 Joe Hunt
Sales Area list, added 'No Area Filter'.
M includes/ui/ui_lists.inc
M reporting/includes/reports_classes.inc
2017-12-23 09:50:11 +0100 Joe Hunt
Card Session Error and Fix.
M sales/includes/sales_ui.inc
2017-12-22 09:33:22 +0100 Joe Hunt
Rerun of Company Logo On Reports. Better Logo align.
M reporting/includes/pdf_report.inc
2017-12-21 08:13:56 +0100 Joe Hunt
subledger_list shows inactive records in Journal Entry. Fixed.
M includes/ui/ui_lists.inc
2017-12-19 13:10:01 +0100 Janusz Dobrowolski
Password field in installer changed to hide text.
M install/index.php
2017-12-19 13:01:44 +0100 Janusz Dobrowolski
Added VARLIB_PATH and VARLOG_PATH defines to simplify packaging.
M admin/includes/fa_patch.class.inc
M admin/inst_upgrade.php
M admin/view/view_upgrade_log.php
M config.default.php
M gl/includes/db/gl_db_rates.inc
M includes/packages.inc
M includes/session.inc
M includes/system_tests.inc
M install/isession.inc
2017-12-16 14:40:37 +0100 Janusz Dobrowolski
Produce Finished Items: fixed broken document reference (changed input order).
M manufacturing/work_order_add_finished.php
2017-12-15 19:14:49 +0100 Janusz Dobrowolski
Work Order Entry, Work Order Additional Costs: fixed input data checks.
M manufacturing/work_order_costs.php
M manufacturing/work_order_entry.php
2017-12-15 18:44:52 +0100 Janusz Dobrowolski
Stock Status display, Manufacturing Reports: fixed products on WO count.
M includes/db/manufacturing_db.inc
M reporting/rep303.php
2017-12-19 09:35:41 +0100 Joe Hunt
Installed Third Party extension version display
M admin/inst_module.php
2017-12-18 07:55:01 +0100 Joe Hunt
Rerun, Inventory purchasing transaction based report.
M reporting/rep310.php
2017-12-15 08:58:00 +0100 Joe Hunt
New Report: Inventory purchasing transaction based report
A reporting/rep310.php
M reporting/reports_main.php
2017-12-15 08:00:00 +0100 Joe Hunt
Installing third party extensions broken and FIX
M includes/packages.inc
2017-12-13 23:32:31 +0100 Janusz Dobrowolski
System Diagnostics: fixed set of tested themes directories.
M includes/system_tests.inc
2017-12-12 22:45:03 +0100 Joe Hunt
Google and Bloomberg Exchange Rate fix. Addendum.
M gl/includes/db/gl_db_rates.inc
2017-12-12 08:26:44 +0100 Joe Hunt
Bloomberg Exchange Rate fix