forked from wp-erp/wp-erp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreadme.txt
More file actions
1456 lines (1249 loc) · 77.2 KB
/
Copy pathreadme.txt
File metadata and controls
1456 lines (1249 loc) · 77.2 KB
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
=== WP ERP - Complete WordPress Business Manager with HR, CRM & Accounting Systems for Small Businesses ===
Contributors: tareq1988, nizamuddinbabu, wedevs
Donate Link: https://tareq.co/donate
Tags: business manager, erp, accounting, crm, hr, project manager, small business, SME, contact, contacts, Customer Relationship Management, employee, leave management, hr, human resource management, job, jobs, job listing, lead management, opportunity, schedule, task, lead, holiday, company
Requires at least: 4.4
Tested up to: 5.7.1
Requires PHP: 5.6
Stable tag: 1.8.4
License: GPLv2
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
An Open Source Human Resource, CRM & Accounting Solution for WordPress
== Description ==
= Ultimate Company/ Business Management Solution for WordPress =
Get a unique interactive experience of managing your business independently with the most reliable information Storage & system of record on WordPress. WP ERP is the first full-fledged ERP (Enterprise Resource Planning) system through which you can simultaneously manage your WordPress site and business from a single platform.
WP ERP's free version has all the important features you need to manage the basics of your business.
WP ERP has 3 core modules: HR, CRM and Accounting, which together make a complete ERP system for any type of business.
The plugin is so beginner-friendly that all you need is a one-click activation to get started!
== Core Modules ==
WP ERP Comes with three powerful pre-built core modules –
* [WordPress HR Management](https://wperp.com/hr/)
* [WordPress CRM System](https://wperp.com/crm/)
* [WordPress Accounting System](https://wperp.com/accounting/)
= Other Modules =
* Project Management via [WP Project Manager](https://wordpress.org/plugins/wedevs-project-manager/)
= ♦️General Free features of WP ERP core:♦️ =
Here are some of the benefits you get for using the pioneer WordPress ERP
* Your own company profile
* Full control over operations
* 44+ Currency Support
* Overview of all modules
* Notification emails with templates & shortcode
* Help from support & documentation
= ♦️Free WordPress HR MANAGEMENT directly from your dashboard♦️ =
Create your very own HR system for your company just the way you like!
Free features of [WPERP HR Manager](https://wperp.com/hr/) module:-
* Manage all company information
* Manage locations
* Add & list departments & designations
* Create employee profiles with editing privilege
* Share announcements
* Manage holidays
* Allow employees to request for leave
* Manage employee leaves & leave policies
* Reports based on employee age & gender, head count, salary, year of service.
= ♦️Free CLIENT MANAGEMENT – KEEP CUSTOMERS ONLINE AT YOUR FINGERTIPS!♦️ =
With WP ERP CRM module, the process of converting leads to customers is much easier, organized, and seamless.
Free features of [WPERP CRM](https://wperp.com/crm/) module:
* Contacts with life stages to prioritize service
* Create contact groups
* Make notes for each customer
* Activity logs show all dealings.
* Schedule meetings & calls directly
* Create company profiles
* Filter contacts using keywords or attributes
* Saved search filters & conditions
* Assign contacts & tasks to the right agents
* CRM activity report including customers & business growth
= ♦️Free ACCOUNTING MODULE MADE FOR NON-ACCOUNTANTS♦️ =
This is the perfect accounting module for anyone who is un-initiated with accounting. The simple intuitive interface makes it easy for anyone to get started.
Free features of [WPERP Accounting](https://wperp.com/accounting/) module:
* Overview & tracking of income, expenses, receivables, payables, balance etc.
* Reports like ledger report, trial balance, income statement, sales tax report, balance sheet etc.
* Set financial year or fiscal year.
* Set opening balance for all accounts.
* Closing balance sheet of a financial year.
* Preloaded ledger accounts for assets, liabilities, expenses, income, etc.
* Add custom ledger accounts or bank accounts according to your needs.
* Manage sales using invoices.
* Create quotations for estimation.
* Receive payments from customers.
* Create bill for any customer, vendor, or employee
* Pay bills against any bill
* Make direct expense or issue a check.
* Purchase products or services
* Make payments to vendors.
* Create products/product categories.
* Create unlimited users like vendors, customers etc.
* Partial payments for any transactions.
* Create unlimited bank accounts, manage, view economics in graph.
* Journal entry for any transaction.
* Create tax rates, tax agencies, tax zones & tax categories for invoices.
* Pay tax to agencies
* Send pdf copy of all transactions via email
* Filter reports by date range
* Print all transactions or reports
Getting Started with WP ERP is only a matter of moments.
Check out the detailed [documentation](https://wperp.com/documentation/) created by us to help you out to run WP ERP in the best way.
== ♦ WP ERP Pro - Premium extensions & features ♦ ==
Automate & Manage your growing business even better using Human Resource, Customer Relations, Accounts Management right inside your WordPress
= Why WP ERP Pro =
Build a modern, convenient and reliable business management system for your company
* Gain access to nine powerful extensions and different features with a single purchase
* Add only those individual extensions which suit your business
* Priority support system
* Save money: User-based Pricing
* Easy & simple to upgrade or downgrade
= What you will get =
Take your business to the next level with 9 accessible premium extensions & different features
* **[Advanced Leave Management](https://wperp.com/downloads/advanced-leave-management/)**: Create and manage multiple types of leave across your organisation.
* **[WP ERP HR Frontend](https://wperp.com/downloads/hr-frontend/)**: Bring the powerful HR Module of WP ERP to your web front using this handy extension. Let staff check-in, check-out, and even take leaves from the web-front.
* **[Awesome Support Sync](https://wperp.com/downloads/awesome-support-sync/)**: Using Awesome Support to provide support to your customers? Easily bring them to your CRM so you get full relationship management features!
* **[Gravity Forms Sync](https://wperp.com/downloads/crm-gravity-forms/)**: Create users in the CRM module automatically with the data you receive on a form created by Gravity Forms.
* **[Help Scout Integration](https://wperp.com/downloads/help-scout-integration/)**: Sync Help Scout contacts with your CRM & view your CRM contact data on Help Scout with this two-way integration!
* **[Mailchimp Contacts Sync](https://wperp.com/downloads/mailchimp-contacts-sync/):** Import and Sync all your MailChimp mailing lists into WP-ERP CRM system and vice versa.
* **[Salesforce Contacts Sync](https://wperp.com/downloads/salesforce-contact-sync/)**: Import and Sync all your SalesForce mailing lists into WP-ERP CRM system and vice versa.
* **[Hubspot Contacts Sync](https://wperp.com/downloads/hubspot-contacts-sync/)**: Import and Sync all your Hubspot contacts into WP-ERP CRM system and vice versa.
* **[Zendesk Integration](https://wperp.com/downloads/zendesk-integration/)**: Increase CRM contacts, lead and customers by integrating Zendesk ticket support system and respond to clients faster.
= Choose other premium extensions that match your business =
* **[Payment Gateway](https://wperp.com/downloads/payment-gateway/)**: This feature extension allows you to take payments from most popular payment gateways- PayPal and Stripe.
* **[Recruitment](https://wperp.com/downloads/recruitment/)**: This is a Job Manager and complete Job Vacancy, Resume and Employment Manager. You can directly create, publish and manage your recruitment from your WordPress powered company website, as well as manage candidates.
* **[Attendance](https://wperp.com/downloads/attendance/)**: Track work hours of your employees and balance them with their leaves with this feature extension.
* **[Training](https://wperp.com/downloads/training/)**: Monitor training programs for different teams & employees.
* **[WoCommerce Integration](https://wperp.com/downloads/woocommerce-crm/)**: Sync your WooCommerce order details and customer data with WP ERP and allow your CRM agent to track your sales.
* **[Custom Field Builder](https://wperp.com/downloads/custom-field-builder/)**: Add more fields to your ERP forms.
* **[Payroll](https://wperp.com/downloads/payroll/)**: Manage your employee salaries more easily and automate the payment system with this amazing extension of WP ERP
* **[Deals](https://wperp.com/downloads/deals/)**: Deals is a great tool to manage and guide your CRM agents on a faster and organized sales process.
* **[Workflow](https://wperp.com/downloads/workflow/)**: Automate actions in your ERP system with this advanced extension. Save time and reduce the margin of error.
* **[Reimbursement](https://wperp.com/downloads/reimbursement/)**: Manage your employee expenses and complete payments in an easy and effective way using ERP Reimbursement.
* **[Document Manager](https://wperp.com/downloads/document-manager/)**: Store and access your company and employee documents on-site.
* **[Inventory](https://wperp.com/downloads/inventory/)**: Stock management for your products within your accounting software.
* **[Asset Manager](https://wperp.com/downloads/asset-manager/)**: Create your company assets virtually, assign them to employees and keep track of all your company assets in one place.
= Some of our resources on WP ERP: =
👉 [WP ERP v1.4 Brings a Critical Revamp to the Entire User Interface](https://wperp.com/22918/wp-erp-1-4-new-user-interface-and-menu/)
👉 [WP ERP Wins Two Prestigious ERP Software Awards From FinancesOnline](https://wperp.com/23904/wp-erp-wins-two-prestigious-erp-software-awards/)
👉 [All-in-One Business Manager for your WordPress Site](https://wperp.com/13778/business-manager-for-wordpress/)
👉 [A Beginner’s Guide to Implement ERP System on WordPress (Free)](https://wperp.com/13483/free-erp-system-wordpress/)
👉 [View More Blogs](https://wperp.com/blog/)
= What others have to say about WP ERP: =
👉 [Top 12 WordPress CRM Plugins to Supercharge Your Business](https://kinsta.com/blog/wordpress-crm/)
👉 [WORDPRESS PLUGINS FOR HR & EMPLOYEE MANAGEMENT](https://wpengine.com/resources/wordpress-employee-management-plugins/)
👉 [7 Best WordPress CRM Plugins to Boost Your Online Business in 2018](https://themegrill.com/blog/wordpress-crm-plugins/)
👉 [Top 100 ERP Blogs and Websites for Enterprise Resource Planning Professionals](https://blog.feedspot.com/erp_blogs/)
= Visit our website to learn more =
➡️ [WPERP, Inc. HR CRM Accounting](https://wperp.com/)⬅️
= Privacy Policy =
WP ERP uses [Appsero](https://appsero.com) SDK to collect some telemetry data upon user's confirmation. This helps us to troubleshoot problems faster & make product improvements.
Appsero SDK **does not gather any data by default.** The SDK only starts gathering basic telemetry data **when a user allows it via the admin notice**. We collect the data to ensure great user experience for all our users.
Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.**
= Contribute =
This may have bugs and lack of many features. If you want to contribute on this project, you are more than welcome. Please fork the repository from [Github](https://github.com/wp-erp/wp-erp).
== Installation ==
###Automatic Install From WordPress Dashboard
1. Login to your the admin panel
2. Navigate to Plugins -> Add New
3. Search **WP ERP**
4. Click install and activate respectively.
###Manual Install From WordPress Dashboard
If your server is not connected to the Internet, then you can use this method-
1. Download the plugin by clicking on the red button above. A ZIP file will be downloaded.
2. Login to your site’s admin panel and navigate to Plugins -> Add New -> Upload.
3. Click choose file, select the plugin file and click install
###Install Using FTP
If you are unable to use any of the methods due to internet connectivity and file permission issues, then you can use this method-
1. Download the plugin by clicking on the red button above.A ZIP file will be downloaded.
2. Unzip the file.
3. Launch your favourite FTP client. Such as FileZilla, FireFTP, CyberDuck etc. If you are a more advanced user, then you can use SSH too.
4. Upload the folder to wp-content/plugins/
5. Log in to your WordPress dashboard.
6. Navigate to Plugins -> Installed
7. Activate the plugin
== Screenshots ==
1. Plugin on-boarding
2. HR Dashboard
3. Employee Listing
4. Creating a new employee
5. Employee details page.
6. Employee profile job tab, keep track of every salary increment, status changes and department/location changes.
7. See the leave history and balances.
8. Analyse employee performance by rating in various metrics
9. Manage permissions and who can do what.
10. Departments management
11. Designation management
12. View detailed reports on your HR
13. Leave policies for your company
14. Manage leave requests from your employees.
15. CRM dashboard
16. Contacts list
17. Contact details page, log calls, meetings, tasks and schedule everything from a single page.
18. Search your contacts with an advanced search area, everything and save those searches.
19. Filter contacts with saved searches.
20. All the activities across your contacts and companies in a single page and filterable.
21. Schedules page, see whom to call, have a meeting and manage them.
22. Manage your company details, add locations if you have multiple branches/locations.
23. We log everything whats happening across the system and log everything for easy audit logging.
24. Accounting Dashboard
25. Sales transactions list
26. Expense transactions list
27. Creating new invoice (sales)
28. Creating a basic journal entry.
29. Bank Accounts
30. Chart of accounts listing
== Frequently Asked Questions ==
= Can I use only one module (like- only HRM or CRM or Accounting)? =
Yes, you definitely can! The whole plugin is divided into three parts- HR, CRM, Accounting based on features and the source code is separated for each module. So you can turn on/off any module you like from- “ERP Settings -> Modules.”
= Can I Translate WP ERP? =
Yes, the plugin is fully translation ready. You can [translate the plugin](https://translate.wordpress.org/projects/wp-plugins/erp) if your language is missing.
= Do you have any video tutorial on WP ERP? =
Yes, we have some helpful videos on our [youtube channel](https://www.youtube.com/channel/UC7PaXj-qWPOM378L11QJyIQ).
= How can I suggest for new features? =
We would love to hear your suggestions! Feel free to [submit them here](https://wperp.com/submit-ideas/).
= Can I bulk import employees, contacts etc? =
Yes, you can import employees, contacts via CSV file by just navigating to-
“ERP Settings -> Tools -> Import”
= Can I use WP ERP from the front end? =
You can use HR module from the frontend by using “HR Frontend” extension. The CRM & Accounting module does not have a frontend right now.
= Is WP ERP capable to handle attendance? =
Yes! We have an extension- Attendance that has the check-in, check-out feature along with attendance report generator and much more.
= Is WP ERP capable to handle a huge amount of data? =
Yes, of course! Many of our clients are using WP ERP to manage their business with 3000+ employees,2000+ customers/contacts without any hassle.
= What are your support timings? =
Our general live support hours are Saturday to Thursday, 07:00 to 15:00 (GMT +6).
= What is the average response time in your support thread? =
We strive to respond all queries within 12 hours. Our response time may be just 1 hour if you reach us in our working hours!
It may take longer to respond to more advanced or technical queries. We promise to serve and support you in the best way possible, which can sometimes take time, but you will be assured the best service.
= Does WP ERP support WordPress multisite installation? =
No, WP ERP and its add-ons do not support multisite WordPress installation.
== Changelog ==
= v1.8.4 -> May 07, 2021 =
--------------------------
- [notice] Limited time promotional offer on account of Eid
- [update] Applied status change action when an employee gets trashed
- [fix] Department listing issue when there is no root parent
= v1.8.3 -> May 05, 2021 =
--------------------------
- [update] Caching process has been applied in the missing area to make performance faster and more smooth
- [update] New create option for Department and Designation on Employee create/update form
- [update] Some predefined department and designation for first time installation
- [update] Detailed result feature in employee education
- [update] A new design on modules and extension page
- [update] Delete option has been disabled for current employee history
- [fix] Employee history was not showing the current value correctly
- [fix] Terminate option was showing for already terminated employees
- [fix] Compensation history from past was updating the current value of employee
- [fix] Caching issues all over the plugin
- [fix] Contact group order by column
- [fix] DB table prefix issue in leave
- [fix] Delete product details was not deleting from detail table
- [fix] Some list parsing, ordering, counting and filtering
- [fix] Leave policy filtering by name was not working
- [fix] Reactivity on updating and deleting holidays
- [fix] Delete, bulk delete was not working properly on contact, company in CRM
= v1.8.2 -> April 15, 2021 =
--------------------------
- [new] Attachments feature for note, email, log activity, schedule, and tasks inside CRM contact/company
- [update] Actions on tax payments have been temporarily disabled
- [update] User limit check has been applied on updating status and restoring trashed employee
- [update] Sanitization on all phone number input has been applied to filter numeric values and an optional '+' at the beginning
- [update] Current user will be auto assigned while creating schedule from my schedule section
- [update] Autocomplete has been disabled for many datepicker and other input fields to make usability better
- [update] All filter menu usability has been updated including reset option and outside click event
- [update] Translation has been applied in all missing translatable string in all over the accounting module
- [fix] Inconsistent schedule data in my schedule section
- [fix] User was not being assigned to while creating backdated schedule
- [fix] Additional fields in employee were not updating
- [fix] Some checkbox, radio, and dropdown input validations were not working properly
- [fix] Issues on loading some components
- [fix] Existing employees were unable to update upon reaching user limit
- [fix] Direct termination was not updating employee history
- [fix] Some minor undefined index notices on various actions
- [fix] Transaction count filter with pagination was not working correctly
- [fix] Datepicker empty selection issue in accounting transactions
- [fix] Date filtering was not working for expense transaction
- [fix] Inconsistent default end date on ledger reports filters
- [fix] Dynamic voucher pages were not loading in accounting transactions
- [fix] Tax rates were unable to update
- [fix] Design of tax rate edit form was broken
= v1.8.1 -> March 17, 2021 =
--------------------------
- [fix] Fixed fatal error while updating data
- [fix] Fixed incompatibility on contact form integration settings
- [fix] Fixed data was not loading in my schedule tab
- [fix] Fixed design conflict of setup wizard
- [update] Updated some designs
= v1.8.0 -> March 15, 2021 =
--------------------------
- [new] Added VAT on purchase feature in accounting
- [new] Added both way payment system for sales and purchases to receive and pay amount for the same invoice/purchase
- [notice] Added limited time promotion for weDevs’ birthday
- [update] Updated menu arrangement to group some menus under their parent menu to make the arrangement more organized
- [update] Updated transaction lists to track debit/credit balance
- [update] Updated pdf invoices for all transactions
- [update] Updated some frontend design of accounting to make the usability smoother
- [update] Updated designs of list tables in CRM and HR
- [update ] Updated settings tabs to organize the settings under their corresponding parent settings
- [update] Updated the design of settings section menu
- [fix] Fixed pdf export issues for some voucher types
- [fix] Fixed wrong percentage issues of all transaction charts
- [fix] Fixed user permission issue on viewing single invoice
- [fix] Fixed google access token storing error response was generating fatal error
- [fix] Fixed deprecation warning on some codebase
- [fix] Fixed setup page design was broken with new WordPress update
= v1.7.5 -> February 12, 2021 =
--------------------------
- [fix] Fixed nonce verification issue while leave year is being saved
- [fix] Issue with importing WP user to CRM contact fixed
- [fix] CRM agent was not able edit their own contact- this has been fixed
- [fix] Fixed extra slash issue if CRM first name last name has apostrophe
- [fix] Fixed the Admin access loosing issue when adding an Employee with the Admin email address
- [fix] Fixed accounting transaction summary piechart was not showing the percentage value
- [fix] Fixed static cache key issue at designation list page
- [update] Updated already existing employee check functionality
= v1.7.4 -> December 31, 2020 =
--------------------------
- [new] Added holiday reminder email
- [new] Added action to synchronize employee status with attendance shifts
- [update] Updated calendar library.
- [update] Updated importing holidays from iCal/CSV to ensure the holidays can be customized before importing
- [fix] Fixed some minor issues
= v1.7.3 -> December 18, 2020 =
--------------------------
- [update] Improved the code quality & fixed a minor issue
- [update] Added holiday gift promotional notice
= v1.7.2 -> December 17, 2020 =
--------------------------
- [fix] Fixed searching employee was not working in other languages except english
- [fix] Fixed type checking issue while accessing contact/company single page
- [fix] Fixed leave creating problem for 31st December
- [fix] Fixed user given website is not saved while creating or updating employee
- [new] Added restriction for trashed contact/company. From now on, trashed contact/company cannot be edited or made WP user.
- [update] Updated audit logger to log all activities for CRM, HRM, and Accounting
- [new] Added email marketing step for weMail setup in installation wizard
= v1.7.1 -> December 09, 2020 =
--------------------------
- [fix] Fixed js compatiblity issue with WordPress version 5.6
= v1.7.0 -> November 30, 2020 =
--------------------------
- [new] Added Accounting vendor import option in the CSV import feature
- [new] Added Accounting vendor export option in the CSV export feature
- [new] Added filter at holiday calender
- [new] Added hr calendar weekend marker
- [new] Added filter at workdays
- [fix] Fixed issue of deleting all leave related references when an employee is permanently deleted
- [fix] Fixed permission issue of contact and company single pages to ensure no unauthorized user can access those pages
- [fix] Fixed CRM contact form integration issue to prevent contact owner from being reset every time a contact form is submitted by an existing contact
- [fix] Fixed issue of contact form settings so that the settings can not be saved without selecting contact owner as a required field
- [fix] Set hr calendar starting day as per settings
- [fix] Fixed announcement employee selection tag
- [fix] Fixed issue of deleting all leave related references when an employee is permanently deleted
- [update] Updated weekend from setting at hr leave calendar
- [update] Updated validation for CSV import to show row-wise detailed error notice when import operation fails
= v1.6.9 -> November 20, 2020 =
--------------------------
- [update] Improved the code quality & fixed some minor issues to make your usages smoother
= v1.6.8 -> November 12, 2020 =
--------------------------
- [new] Added prevention of product duplication when product create and update
- [new] Added transaction charge for purchase payment , expense
- [new] Added filter at WP ERP title & CRM title
- [new] Added reference number for expense, bill, bill payment
- [update] Updated csv export import permission
- [update] Updated employee display name when update employe information
- [update] Updated PDF export system for Expense, bill, bill pay, purchase, purchase pay voucher with reference number, due date and dynamic invoice type
- [update] Updated expense, sales, purchase filtering system with type and people
- [update] Updated reference no in purchase list
- [update] Updated customer transaction ledger
- [fix] Fixed Employee/Contact/Company name and city name validation issue to lessen the restrictions
- [fix] Fixed tax payment for decimal value support
- [fix] Fixed redirect to expense list after saving or update expense
- [fix] Fixed validation issue for name & city
= v1.6.7 -> October 29, 2020 =
--------------------------
- [fix] Fixed phone no validation issue while importing contact or company from CSV
- [fix] Fixed email body style support issue
- [fix] Added asynchronous loading of holiday & leave data at HR calendar
- [new] Added inactive contact/company segmentation for CRM
- [new] Added validation for all fields of employee, contact, and company forms
- [new] Added validation to alert for number of empty required fields on submitting employee, contact, and company forms
- [fix] Fixed employee type update history tracker, previously stated as employee status
- [new] Added history tracker on updating employee status
- [update] Updated edit employee form to remove employee status and type fields
- [update] Updated task/schedule assign user dropdown to include CRM managers and contact owner only
- [fix] Fixed showing status, type, pay type and pay reason with localized values, previously db keys were shown.
- [update] Rearranged employee job histories in descending order, added indicator for all latest histories
- [update] Updated activity assign permission so that crm agents can assign activities to themselves only, involving only the contacts/company they own
- [new] Added WP ERP Pro sub menu
- [fix] Fixed responsive issues on mobile devices
- [fix] removed unnecessary use of wrongly called Google_Auth class reference, this was causing fatal error for some users.
= v1.6.6 -> September 25, 2020 =
--------------------------
- [fix] Fixed category creating issue, set default value as 0 if no parent category assigned
- [fix] Fixed notice display conflict
- [fix] Fixed imported csv count issue
= v1.6.5 -> September 24, 2020 =
--------------------------
- [new] Added csv data validation when importing contact, company & employee
- [new] Added csv data validation when importing holidays
- [update] Updated parseCsv library to support php 7.4
- [update] Updated Trix Editor version
- [fix] Fixed Menus responsive issue with iPad 11 inch view
- [fix] Fixed email heading html tag support issue
- [new] added support for "dd.mm.yyyy" as new ERP "Date Format"
- [new] added new filter hook “erp_pre_contact_form_people_data”
- [new] added new action hook “erp_crm_email_opened”
- [new] added various tooltips for easy access of various features
- [fix] Fixed responsive issue of leave application form
- [fix] Fixed Leave requests table 'Employee Search' filter
- [fix] fixed timezone problem of leave request modal
- [new] added employee type filter on leave policy, now user can create leave policy based on employee types
- [update] added proper redirect based on various actions on hrm leave related sections
- [fix] Fixed issue with Company and contact filtering where data not loading correctly
- [fix] Fixed Problem creating CRM schedule/notes(All text field) from Mobile
- [fix] fixed Import contacts from WP users is broken
- [new] Increased accounting DB fields limit to decimal(20,2)
- [update] add transaction charge for payment
- [update] add new sub head 'bank transaction charge' to ledger
- [update] update opening balance/ acct financial year date picker problem
- [update] update trial balance, Balance Sheet: total Cash At Bank, cash At Bank Breakdowns, total Loan At Bank
= v1.6.4 -> August 25, 2020 =
--------------------------
- [tweak] changed ERP PRO class references
- [new] revoke access of hrm, crm and accounting modules if employee status is not active
- [new] added various erp user count on Status report page
- [fix] Optimized code for better security
= v1.6.3 -> August 13, 2020 =
--------------------------
- [enhancement] Support both old PHPMailer v5 (WordPress <=5.4) and PHPMailer v6 (WordPress >=5.5)
- [new] Added Bank Transaction Charge on Accounting Module
- [fix] Fixed life stage display issue when translating
= v1.6.2 -> July 23, 2020 =
--------------------------
- [new] added bulk action for leave requests
- [fix] Fixed pdf attachment issue at transactional emails
- [enhancement] Added missing string translation for Accounting module
- [new] Added accounting emailer class
- [new] Added tab view at email setting page
- [new] Filter extension email base on criteria
- [new] Registered switch check for email type & configure email for invoice
- [new] Added accounting payment email template
- [new] Added new purchase email template at accounting
- [new] Fixes Cannot find taxes in Chart of Accounts #1066
- [new] Fixed Chart of account ledgers update issue
- [new] Added email template for accounting product estimate
- [new] Configured accounting new purchase order create email template
- [new] Configured pay purchase email template for accounting
- [new] Disallowing expense, bill & pay bill emails
= v1.6.1 -> June 30, 2020 =
--------------------------
- [fix] Fixed auto select issue of state while adding new company
- [fix] Fixed vendor search issue while adding new product
- [new] Added custom date range search for leave report
- [fix] Fixed email Template is adding back slash (\) when using with single and double quote
= v1.6.0 -> June 01, 2020 =
--------------------------
- [enhancement] Rewritten HR leave feature from the ground up for better performance and better management.
- [new] Introduced new tables related to leaves for better management
- [new] Added Year support for leaves under Settings —> HR —> Leave Years
- [new] Moved policy name under Leave Management —> Policies —> View Leave Types for better policy management. Now you can define all leave types eg: Annual Leave, Casual Leave, Sick Leave, etc in one place and reuse them when you create new policies
- [new] Add new policy page moved to a standalone page
- [new] Leave Year and Leave Type fields are mandatory to create new policies now
- [new] Now policies can be customized for each leave year by leaving previous policy settings untouched
- [new] Now policies can be duplicated depending on department, designation, location, gender, marital status filter
- [new] Added copy feature for policies where you can copy an existing policy and reuse it for next year
- [enhancement] Updated Leave Entitlements table for a more compact view.
- [enhancement] Updated Leave Entitlements: Add New page with related policy filters, now to entitle employees to a policy, you’ve to select related filters to get desired leave policy
- [enhancement] Now only full-time employees will be considered for leave entitlements
- [new] Added related filters for leave entitlement list page
- [enhancement] Moved policy and entitlement delete feature to debug mode. If you want to delete leave policies or leave entitlements, enable debug mode from Settings —> General —> Enable Debug Mode
- [new] Added new Year field for New Leave Request form on admin and Take a Leave modal on employee end, if there are multiple leave years defined, users can choose which leave year they are going to apply leave for
- [enhancement] Updated Leave History section under Employee —> Leave tab, so that user can view all request made from their end, view request status, filter through a leave year, approve status and policies, etc
- [new] User can now apply for leaves for multiple leave year
- [new] Added Approve message feature while approving a leave request
- [new] Added new Approved By column on leave request table
- [enhancement] Updated existing leave request table view for better information display, now you can get an overview of leave request on a more compact way
- [tweak] Removed leave request bulk action from Leave Requests table
- [tweak] Updated API related to leave features
- [tweak] Updated some string on various pages
- [enhancement] On CRM Contact Activity Feeds Filter added a new filter to display all activities, thanks to Andrija Naglic
- [fix] updated schedule event hooks to avoid duplicate events
- [fix] updated validation for extra leave requests
= v1.5.16 -> April 17, 2020 =
--------------------------
- [fix] [Accounting] Fixed Trial Balance bank balance-loan calculation
- [fix] [Accounting] Fixed balance of ledger report debit-credit label: Wrong Dr/Cr label is showing at the rightmost balance column in the list row of accounting ledger details report page.
- [fix] [Accounting] moved Chart of Accounts "Sales Returns and Allowance:1403" from Income to Expense section
- [fix] fixed tooltip display issue on WP ERP -> Tools -> Status page
- [fix] fixed a notice on “Latest ERP Blogs” section under WP ERP -> Dashboard page
= v1.5.15 -> March 31, 2020 =
- [fix] Plugin update capability of the user
- [fix] Fixed pay bill duplicate entry issue on the ledger_details
- [fix] Fixed the Check single view- which was not showing properly
- [fix] Fixed dashboard CSS conflict with wpdatatable
- [fix] Fixed accounting load issue with different permalink structure
- [fix] Fixed Contact Group-based permission issue for the CRM agent
- [fix] Contact Owner was not being updated from the CRM contact profile, Which has been fixed
= v1.5.14 -> March 03, 2020 =
- [fix] Show owners equity ledger account balance in chart of accounts
- [fix] Bank balance transfer issue with opening balance cash
- [fix] Subscription widget is not working issue
- [fix] Email attachment is not working
- [fix] Opening balance doesn't support fraction amounts
- [fix] States/provinces are missing for most of the country
- [tweak] Conditionally required vendor field on product creation
- [tweak] Add expiration field at employee education section
= v1.5.13 -> February 11, 2020 =
- [new] Add document attachment field at leave application form
- [new] Add csv import feature for uploading bulk holidays
- [fix] Problem with announcement publication for selected employees & department
- [fix] Default email format or HTML tags are not working with ERP Email notifications
- [fix] Add disabled props in multi-select for people selection
- [fix] Fix tax component validation
- [fix] Fix missing company custom field csv export issue
- [fix] Fix most of the CRM list table translation related issues
- [fix] Fix CRM subscription issue
= v1.5.12 -> January 23, 2020 =
[fix] - Some import related issues for wrong sanitize functions
[fix] - HR: Cannot set AC Manager permission for an employee
[fix] - CR: Email templates could not be enabled
[fix] - CR: View meeting details from widget
[fix] - CR: New contact & assigned task email configuration issue
[fix] - AC: Broken journal link from admin bar menu
[fix] - AC: Prevent creating a tax rate without component values
[fix] - AC: Banks cannot be deleted from opening balance
[tweak] - AC: Update address field formation in transactions
[tweak] - AC: Support for alphanumeric post code in people creation
= v1.5.11 -> January 09, 2020 =
[fix] - Unicode characters saving issue during CSV import
[fix] - CR: Removed extra slash when saving company name
[fix] - CR: Contact owner field value is not saving where contact or company is a wp user
[fix] - AC: Save journal entries "Error: Debit and Credit must be Equal"
[fix] - AC: When viewing an expense transaction the bank and check fields appear although paying with Cash
[tweak] - Optimize code for better security
[tweak] - CR: Make first_name and email as required fields to avoid duplicate entry during CSV import
[tweak] - AC: Display only products of selected vendor in purchase transaction
= v1.5.10 -> December 19, 2019 =
[fix] CR: Fixed file attachment issue.
[tweak] Add privacy policy in readme.txt
= v1.5.9 -> December 11, 2019 =
[fix] Updated: CRM js loading sequence. Which was causing CRM single page view not working properly.
[fix] Fixed: Redirect to CRM overview page after login as CRM Agent
= v1.5.8 -> December 10, 2019 =
[fix] HR: Fixed country, state schema type for customer & vendor.
[fix] CRM: Made the strings translatable that are not translatable.
[tweak] CRM: Moved customer statistics from admin dashboard to crm dashboard.
[fix] AC: Fixed the Customer transactions wrong balance issue.
[fix] AC: Amount was not showing on PDF invoice, which has been fixed.
[fix] AC: Decimals valus were not appearing in the Pay Purchase. It has fixed now.
[fix] AC: Particulars were not showing in journal entries. Fixed now.
[fix] AC: Unit price was showing Zero in purchase single view. It has been fixed.
[fix] AC: Fixed the Void transaction related issues.
[fix] AC: Fixed the wrong balance issue in the People details.
[fix] AC: Show only the products of selected vendor in purchase.
[tweak] AC: Disabled Product type while editing product to preserve reports.
[tweak] AC: Updated modal style.
= v1.5.7 -> November 15, 2019 =
[fix] Fixed the SQL syntax error for DB collate which was causing installation error in some cases.
[fix] AC: Fixed financial year creating an issue.
[fix] AC: Changing currency position was not reflecting Accounting, this has been fixed now.
[fix] AC: Changing currency was not working and it was always fixed for USD, this has been fixed now.
[fix] AC: Added decimal amount support to pay the purchases.
[fix] AC: After the Purchase edit, the trial balance mismatch issue has been fixed.
[tweak] Added form changes saving alert in Settings.
= v1.5.6 -> November 01, 2019 =
[new] HR: Hiring date anniversary reminder and wishing email to employees.
[new] HR: Add dashboard widget for the HR manager (trainee & contractual).
[new] HR: Add inactive status and change status style.
[new] HR: Weekly digest email.
[new] HR: Contract & trainee is about to end can only be seen by HR manager.
[new] CR: Add enable/disable section at CRM settings for sending birthday greeting.
[new] AC: Add photo for customer/vendor.
[fix] HR: Apostrophe is generating an extra backslash on the holiday. Closes #900
[fix] HR: Send SMS if all employees are selected. Closes #906
[fix] AC: Bank transfer is not working after opening balance creation.
[fix] AC: Check single page duplicate entry
[fix] AC: Invoice PDF Export issue. Closes #882
[fix] AC: Transfer decimal contained amount on bank transfer.
[fix] AC: Errors in transaction single page if no particulars available. Closes #894
[fix] AC: Journal reference is not available on the single journal entry view. Closes #893
[fix] AC: Chart of accounts editing error. Closes #887
[fix] AC: Vendor Update details does not show custom field. Closes #885
= v1.5.5 -> October 04, 2019 =
[new] Accounting: Estimate to Invoice create shortcut.
[new] Accounting: Purchase Order to Purchase create shortcut.
[fix] Accounting: Wrong Invoice & Purchase unit price on edit.
[fix] Accounting: Customers & Vendors pagination with search. Closes #858, #876
[fix] Accounting: Create invoice & purchase can not retrieve more than 20 products/services. Closes #859
[fix] Accounting: Dashboard income-expense chart remains at $ currency. Closes #866
[fix] Accounting: Purchase unit price needs to be able to accept decimal values. Closes #868
[fix] General: Auto import option of Customers from CRM. Closes #874
[fix] Accounting: WP ERP accounting mega menu links. Closes #871
[fix] Accounting: Calculation for sales invoice with multi line entries. Closes #875
[fix] Accounting: Tax payment form does not show up. Closes #877
[fix] Accounting: Ledger migration. Closes #878
[tweak] Remove button to send a birthday email to employees from HR dashboard.
[tweak] Update DB collate in class install to proper support for Arabic font.
[tweak] Accounting: Proper formatting of transaction particulars. Closes #854
= v1.5.4 -> September 24, 2019 =
[fix] Accounting: Fix various pdf related issue.
[fix] Accounting: Company is not showing in vendor list.
[fix] Accounting: Transaction particular is not showing in single view and pdf.
[fix] Accounting: Fix permission related issue on product and product category API.
[fix] HRM: Employee designations and departments are not showing properly.
[fix] HRM: API restriction for leave request if applied for extra leave.
= v1.5.3 -> September 17, 2019 =
[fix] CRM: Search segment issue.
[fix] Accounting: Topbar menu permission issue.
[fix] Accounting: Customer & Vendor display issue.
[fix] Accounitng: Menu highlighting issue.
[fix] Accounting: Add option to directly export pdf invoice.
[fix] Accounting: Fix translation issue.
[tweak] Accounting: Void accounting transactions.
= v1.5.2 -> September 12, 2019 =
[fix] Updater file not found issue.
= v1.5.1 -> September 10, 2019 =
[fix] Showing people transaction in single user view.
[fix] Fix various small accounting related issue.
= v1.5.0 -> September 09, 2019 =
[new] Rewrite accounting module from the ground-up.
[new] Add Philippines provinces. Closes #836
[tweak] Add a filter for `custom attr` length. Closes #837
[fix] Fix printing issue in menu. Closes #839
[fix] Company location delete not working. Closes #843
[fix] Fix a broken link under status page. Closes #844
= v1.4.6 -> July 24, 2019 =
[new] Added 'switch to' button at the employee list if 'User Switching' plugin activated.
[tweak] Changed contact & company deleting message when checking if it has a relationship.
[fix] Terminated employees are also shown at leave entitlement list.
[fix] Prevent cron job to duplicate existing job entitlement at the same financial year or policy update.
[fix] Company or contact does not get trashed.
[fix] CRM mail template issues.
= v1.4.5 -> June 12, 2019 =
[tweak] Leave reason field is made required. Closes #824
[fix] Saving Leave entitlement was redirecting to the leave requests rather than the Entitlements. It has been fixed now. Closes #820
[fix] Employee ERP Permission was not saving from the Employee profile, which has been fixed. Closes #827
[fix] CRM email template tag parsing issue. Closes #829
= v1.4.4 -> May 02, 2019 =
[new] Added a new feature to send a notification email when a new contact is assigned to an agent.
[new] Added a new feature to send birthday greetings to contacts with the customizable email template.
[fix] Previously, CRM agents were able to see all the CRM activities including the activity of the contacts that he/she doesn't belong to. This has been limited now and CRM agents can see the activity that he/she own only. Closes #814
[fix] Vendor details were taking to the Accounting overview page instead of taking to the Vendor profile. This has been fixed. Closes #815
= v1.4.3 -> April 04, 2019 =
[fix] CRM Agents should not delete contact groups. Closes #802
[fix] Printing invoice getting the header informations along with the top menus. Closes #792
[fix] Portugal states are missing. Closes #731
[fix] Problem with CRM inbound email. Closes #787
[fix] Modal select box style. Closes #794
[fix] Can't select state on vendor create.
[fix] Missing contact owner when importing contact.
= v1.4.2 -> February 14, 2019 =
[fix] Exclude terminated employees from Who is Out widget. Closes #727
[fix] Fix upload company logo. Closes #732
[fix] States selection changing according to country selection in company edit page. Closes #733
[fix] Profile image can't be deleted once uploaded. Closes #748
[fix] Fix responsive issue with HR overview page and employee's my profile page
[fix] Fix leave request email sending from API
[fix] Fix various reports issue with terminated employees (e.g. salary history, leave reports, gender reports).
[fix] Fix contact list view and edit for crm agent
[fix] Fix ninja contact form integration
[fix] Fix issue with leave entitlement creation
[new] Add employee blood groups in employee creation
[new] Add project manager plugin in setup wizard to improve project management with employees
= v1.4.1 -> November 06, 2018 =
[new] Revoke access to ERP for terminated employees
[fix] Problem with rejecting leave requests #721
[fix] Fixed state not showing while editing contact #722
[fix] Employee create or update not saving employee name
[tweak] Added script versioning to avoid unwanted cache of scripts
= v1.4.0 -> October 30, 2018 =
[new] Add ERP main menu in Dashboard sidebar and Admin bar
[new] HR menu moved under new ERP menu
[new] CRM menu moved under new ERP menu
[new] Accounting menu moved under new ERP menu
[new] Add gmail API for CRM email connectivity
[fix] Transfer amount from main account. Fixed #708
[fix] Sales transaction list issue
[tweak] Replace old urls according to new ERP menu
[tweak] Change links in rest response according to wp style. Closes #715
= v1.3.14 -> September 03, 2018 =
[new] New employee login details api added
[new] Assign pending status to rejected/approved leave request, resolved #696
[fix] Fixed employee report generation issue showing warnings
[fix] Fixed showing invalid end time in calendar if not set, resolved #687
[fix] Fixed CRM contact quick edit not showing unsubscribe message, resolved #674
[fix] Unable to import users to CRM contacts, fixed #695
[fix] CRM email template loading issue fixed
[fix] HRM Headcount report doesn't exclude terminated employees, resolved #655
[tweak] No Information about Settings update is displayed upon saving the settings from "ERP Settings" Menu, resolved #697
= v1.3.13 -> Jul 30, 2018 =
[new] Search functionality for email, tasks, schedules etc in CRM contact. Closes #670
[new] Employee image upload API added.
[new] Add memo for invoice pdf.
[fix] Fix employee import problem.
[fix] Expense chart information update.
[fix] Leave entitlement remove system add.
[fix] Autofill customer address to the invoice billing address.
[fix] Email Template is adding back slash (\) on edit with single and double quote. Closes #672
[fix] Unable to apply for leave longer than 1 day. Closes #668
[fix] Unable to edit an existing employee. Closes #678
[fix] Unable to terminate an employee. Closes #679
[fix] An Employee can send multiple leave requests on the same date. Closes #682
[tweak] Update pot file
= v1.3.12 -> June 21, 2018 =
[fix] Postal Code does not appear on a customer's user details tab. Closes #591
[fix] A Payment voucher's total amount is not formatted as currency. Closes #592
[tweak] A vendor text field on an add customer form is confusing. Closes #593
[fix] Department delete not working. Closes #661
[fix] Not all the employees are receiving announcement. Closes #663
[fix] Can't create leave request with api. Closes #664
[fix] Contact Owner is assigned as "Nobody" for newly imported contacts. Closes #665
[fix] Creating multiple employees with the same email address replace the previous employee and keep the last one. Closes #666
[fix] Invoice total price should not be zero. Closes #667
[fix] Fix state select on click when add new contact.
= v1.3.11 -> May 29, 2018 =
[fix] Employee list conflicts with reporting to. Closes #649
[fix] Unable to void payment entry in sales tab. Closes #658
[fix] Payment amount is more than due. Closes #659
[fix] Unable to import contacts from CSV.
[tweak] NPM packages update.
[tweak] Employee single link update.
= v1.3.10 -> Apr 25, 2018 =
[fix] Fix contact life stage sync.
[fix] User ID is always 0 when check for restricted employee data. Closes #650
[fix] Enable/Disable email notification. Closes #289
[fix] Currency choice in setup wizard does not work. #651
[tweak] Compatibility fix.
= v1.3.9 -> Apr 08 2018 =
[new] Department head review employees. Closes #334
[new] CRM email attachments. Closes #642
[fix] Unable to select state. Closes #643
[fix] Prevent duplicate vendor creation. Closes #644
[fix] Employee profile edit permission. Closes #646
[fix] CRM tag is not saving without clicking on "Add". Closes #647
= v1.3.8 -> Mar 29 2018 =
[new] Filter contact by company added in CRM. Closes #464
[fix] CRM growth report graph not showing properly. Closes #640
= v1.3.7 -> Mar 22 2018 =
[fix] Missing important fields in HRM Closes #639
[fix] Unable to add new contact group in CRM #638
= v1.3.6 -> Mar 20, 2018 =
[fix] Status report guide URL. Closes #630
[fix] CRM activity search is not working properly. Closes #628
[fix] The calendar function on ERP doesn't go back than 1968. Closes #633
[fix] Unable to assign Department lead. Closes #634
[fix] Unable to edit/update designation. Closes #636
[new] CRM reporting. Closes #560
[new] Company wise activity. Closes #626
[new] CRM contact tagging add.
[new] Add CRM tag in save search.
[tweak] PDF separated as extension.
[tweak] Employee modal elements placement change.
[tweak] Modify pop-up modal design.
= v1.3.5 -> Feb 25, 2018 =
[fix] CRM segment is saved with the same name multiple times and there is no way to delete. Closes #318
[fix] When a payment is mailed, it is automatically changed to invoice. Closes #482
[fix] Create New (Customer) on the Add Payment form will remove info from an existing CRM Contact. Closes #554
[fix] Invoice and payment section 'Bill to' name error. Closes #622
[fix] Holidays created without any range are generating wrong end date. Closes #623
[fix] Employee Get Events API not returning leaves. Closes #624
[fix] New employee compensation data missing. Closes #625
[new] Send birthday wish email to the employee. Closes #150
[new] Add invoice filtering based on customer name, status and date. Closes #310
[new] Add search fields on leave entitlements page. Closes #618
[tweak] Fix input field width on employee create form.
= v1.3.4 -> Feb 8, 2018 =
[tweak] Sales and expenses status text change. Closes #401
[tweak] Invoice formatting. Closes #397
[fix] Employee avatar get reset on employee edit when update other information. Closes #610
[fix] Invoice Amount (USD works fine. EURO doesn't work). Closes #512
[fix] Assign to company is searching for contacts instead of companies. Closes #609
[fix] Accounting invoice add payment issue with thousand separator. Closes #615
[fix] WP existing user is not importing as employee. Closes #616
[fix] Update Setup wizard. Closes #611
[fix] Leave entitlements is being created for non active employees. Closes #617
[fix] Accounting Issue with Partial Payment. Closes #578
[fix] Updating employee job history removes employee's meta data. Closes #619
[new] Remove WP user when removing employee. Closes #614
[new] System status report. Closes #250
= v1.3.3 -> Feb 1, 2018 =
[fix] Employee API returns wrong event data. Closes #605
[fix] CRM overview links are not working as expected. Closes #596
[fix] CRM contact owner is not updating. Closes #606
[fix[ CRM filter by Owner is not working. Closes #597
[fix] CRM selected life stage is not assigned while importing. Closes #603
[fix] Showing phone number twice in HRM -> My Profile. Closes #607
[fix] Months are not showing properly in ERP Settings. Closes #608
[fix] Add announcement author name in the API response.
[fix] API date response fix.
= v1.3.2 -> Jan 25, 2018 =
[fix] Leave report filters are not working as expected. Closes #600
[fix] Employee profile fields are not updating when empty. Closes #599
[fix] Employee create leave request permission denied. Closes #598
[fix] Employee is not receiving email notification on leave request rejection. Closes #589
[fix] Employees on Leave on the same date is not showing in 'Who is out' postbox. Closes #587
[fix] 500 Internal Server Error when filtering and searching employees. Closes #586
[fix] Duplicate department title. Closes #584
[fix] Duplicate designation title. Closes #585
[fix] HR overview page is taking long time to load. Closes #583
[fix] Employee custom avatar image not working. Closes #580
[fix] Assigning Leave policy to employee generates fatal error. Closes #577
[fix] Leave entitlements should not be generated for inactive employees. Closes #573
[fix] Fix single employee performance required fields.
[fix] Fix upcoming birthdays for next week.
[fix] Leave report filters add.
[new] Search option in Leave Requests. Closes #574
= v1.3.1 -> Jan 11, 2018 =
[Fix] HRM Overview page blank when CRM module is not active.Closes #575
= v1.3.0 -> Jan 09, 2018 =
[tweak] Improved employee API.
[tweak] Remove unnecessary validation with security improvement.
[tweak] Job information tab improvement.
[tweak] Employee class optimized.
[tweak] Reports API improvement.
[tweak] HRM endpoints optimized.
[tweak] Leave balance view improvement.
[tweak] Updater improved.
[new] Add HRM birthday API support.
[new] Add HRM leave API support.
[new] Add HRM upcoming leave request API support.
[new] Add HRM note API support.
[new] Add HRM job history rest API support.
[new] Add HRM permission/roles rest API support.
[new] Add HRM head counts rest API support.
[new] Add HRM employee termination API.
[fix] Employee and Department API search option. Closes #569.
[fix] Payments are shown on an invoice in the popup. Closes #552.
[fix] HRM gender reporting count error. Closes #565.
[fix] Fix CRM contact inbound mail tracker.
[fix] Employee full name not showing.
[fix] Fix alert on department delete which contains employees.
= v1.2.8 -> Oct 30, 2017 =
[fix] Partially created invoice can't be approved, void or deleted. Closes #522.
[fix] The search function is not working on accounting customers and vendors list page. Closes #540.
[fix] Deactivated Accounting module gives a fatal error. Closes #545.
= v1.2.7 -> Oct 26, 2017 =
[new] Import CRM users into accounting module. Closes #394.
[new] Send emails to different users from different email address. Closes #465.
[new] Add Bulk Action in accounting module. Closes #538.
[new] Database SQL query optimization.
[fix] Help pages link fixed.
[fix] Create employee form data sanitization. Closes #473.
[fix] Exported (pdf) Invoice does not show TAX (%) and TAX amount. Closes #493.
[fix] Contact adding issue from frontend with Ninja Forms. Closes #501.
[fix] CRM contact groups search option. Closes #524.
[fix] Woocommerce order synchronization issue when the discount is more than 100. Closes #526.
[fix] Accounting sales page customer search issue. Closes #527.
[fix] Large description is not aligned in PDF. Closes #528.
[fix] Searching for a non listed employee takes to a different page. Closes #532.
[fix] Load time increases for unnecessary query on the settings page. Closes #533.
= v1.2.6 -> Oct 05, 2017 =
[new] Add help submenu pages under HRM, CRM and Accounting menu.
[new] Add subscription form shortcode placeholder support.
[new] Add get started employee page.
[new] Add customer statics admin widget. Closes #26.
[new] Capability to create a contact group with the result (list of contacts) of a search (filter search). Closes #516.
[new] Add 'By Departments' and 'By Designations' option to create/send an announcement. Closes #519.
[fix] Accounting insert transaction discount issue.
= v1.2.5 -> Sep 14, 2017 =
[new] Redirect users to their role specific pages. Closes #337.
[new] Employees can apply for leave even after remaining days in the policies are 0. Closes #486.
[new] Add .github CONTRIBUTING.md and PULL_REQUEST_TEMPLATE.md files.
[tweak] Add indexing for DB table optimization
[tweak] Deleting and Editing option on single Leave Entitlements. Closes #291.