Projects | Adlis ERP-CRM Dev. https://help.perfexcrm.com Help Center Mon, 31 Aug 2020 11:51:17 +0000 en-US hourly 1 https://help.adlis-weiyin.com/wp-content/uploads/2017/02/cropped-favicon-32x32.jpg Projects | Adlis ERP-CRM Dev. https://help.perfexcrm.com 32 32 Add New Project Status https://help.adlis-weiyin.com/add-new-project-status/ Mon, 17 Apr 2017 06:49:05 +0000 https://help.adlis-weiyin.com/?p=1046 NOTE: This feature is available starting from version 1.6.2 By default Adlis ERP-CRM Dev. ships with 5 predefined statuses, Not Started, In Progress, On Hold, Cancelled, Finished but you can inject new statuses with simple action hook to fit for your needs. We assume that you have some basic knowledge of reading php code for this article […]

The post Add New Project Status first appeared on Adlis ERP-CRM Dev..]]>
NOTE: This feature is available starting from version 1.6.2

By default Adlis ERP-CRM Dev. ships with 5 predefined statuses, Not Started, In Progress, On Hold, Cancelled, Finished but you can inject new statuses with simple action hook to fit for your needs.

The statuses Not Started and Finished are core statuses and should remain untouched in order everything to works well.

We assume that you have some basic knowledge of reading php code for this article but wont be that hard if you don’t have. You can just copy and paste the code and adjust the keys for your needs (see below keys explanation).

In this example you will add 1 new project status with name Planning

In application/helpers create file my_functions_helper.php and add the following code:

<?php

hooks()->add_filter('before_get_project_statuses','my_add_custom_project_status');

function my_add_custom_project_status($current_statuses){
    // Push new status to the current statuses
    $current_statuses[] = array(
           'id'=>50, // new status with id 50
           'color'=>'#989898',
           'name'=>'Planning',
           'order'=>10,
           'filter_default'=>true, // true or false
        );
    // Return the statuses
    return $current_statuses;
}
The ID for each status must to be unique.
  • id – The id of the project status, its recommended to add higher id number to prevent overlapping the default system id’s for the project statuses. Eq now currently there is projects statuses with id 1, 2, 3, 4 and 5 and in a future if new default project statuses is added with an id 6 and you already have injected your own status with id 6 can cause issues. Its not recommended to change the ID after there is project that are using the status id.
  • color – Color for this status in hex format.
  • name – The name of the status that will be displayed to users.
  • order – The order of the status.
  • filter_default – This option is used if you want to exclude the projects that are using this status by default to be included in the lists tables. Eq if this option is false when you access the projects lists area by default the projects that are using to this status wont be shown and you will neeed manually to use the filters to include in the table.

After you adjust the code to fit for your needs save the file my_functions_helper.php and you will be able to see your new project status.

Project Status Planning
The post Add New Project Status first appeared on Adlis ERP-CRM Dev..]]>
Pin Projects https://help.adlis-weiyin.com/pin-projects/ Wed, 22 Mar 2017 12:35:18 +0000 https://help.adlis-weiyin.com/?p=935 If you are working on specific projects everyday and you need to access them everyday there is an option to pin the project. The pinned projects will be shown on the bottom left side from the admin main menu. To pin a project from the main menu navigate to Project and open the project you […]

The post Pin Projects first appeared on Adlis ERP-CRM Dev..]]>
If you are working on specific projects everyday and you need to access them everyday there is an option to pin the project. The pinned projects will be shown on the bottom left side from the admin main menu.

Pinned Project

To pin a project from the main menu navigate to Project and open the project you want to open. On the top right side there is an Action button, click it and then click on Pin Project dropdown link.

Pin Project

After pinning the project you will be able to see it and access directly on the left side of the admin menu.

Keep in mind that you will want to unpin this project after is marked as finished.

The post Pin Projects first appeared on Adlis ERP-CRM Dev..]]>
Project Discussions https://help.adlis-weiyin.com/project-discussions/ Sun, 19 Mar 2017 09:48:34 +0000 https://help.adlis-weiyin.com/?p=877 Projects discussion is a feature in Adlis ERP-CRM Dev. which will give you ability to start various discussions with your customer or project member for a specific project. To create new project discussion open the desired project and click on the discussions tab then click on the create discussion button. Discussion Subject Discussion Description Visible to […]

The post Project Discussions first appeared on Adlis ERP-CRM Dev..]]>
Projects discussion is a feature in Adlis ERP-CRM Dev. which will give you ability to start various discussions with your customer or project member for a specific project.

To create new project discussion open the desired project and click on the discussions tab then click on the create discussion button.

project discussions

  • Discussion Subject
  • Discussion Description
  • Visible to customer – If this field is checked the customer will be able to see this disucussion in the customers area also will receive new email that new project discussion is created. All customer contacts that have permission for projects will be receive this email.
The post Project Discussions first appeared on Adlis ERP-CRM Dev..]]>
Disallow project members to see all project tasks https://help.adlis-weiyin.com/disallow-project-members-to-see-all-project-tasks/ Thu, 16 Mar 2017 10:37:28 +0000 https://help.adlis-weiyin.com/?p=873 By the default all project related tasks are visible to all project members. If you want only to show the tasks where the staff member is assigned/added as follower you need to turn Co. Allow all staff to see all tasks related to projects To achieve this go to Setup->Settings->Tasks and set Allow all staff […]

The post Disallow project members to see all project tasks first appeared on Adlis ERP-CRM Dev..]]>
By the default all project related tasks are visible to all project members.
If you want only to show the tasks where the staff member is assigned/added as follower you need to turn Co. Allow all staff to see all tasks related to projects

To achieve this go to Setup->Settings->Tasks and set Allow all staff to see all tasks related to projects to NO

If the staff member have permission for tasks VIEW or is admin then this member will be still able to see all tasks.

The post Disallow project members to see all project tasks first appeared on Adlis ERP-CRM Dev..]]>
Project Activity https://help.adlis-weiyin.com/project-activity/ Wed, 15 Mar 2017 20:01:26 +0000 https://help.adlis-weiyin.com/?p=829 Project activity is feature where can be track the activity of the project. There is a way to turn Co. project activity from being visible to customer. You can just toggle the Co. button on the right side of the activity. Project actvitity works smart and auto turn the on/Co. visible to customer. How this […]

The post Project Activity first appeared on Adlis ERP-CRM Dev..]]>
Project activity is feature where can be track the activity of the project.

There is a way to turn Co. project activity from being visible to customer. You can just toggle the Co. button on the right side of the activity.

Project actvitity works smart and auto turn the on/Co. visible to customer.
How this work?

Example: Not visible to customer discussion is created. After that all project activity logged by this discussion will be marked as not visible to customer. This logic is applied also on tasks,files and timesheets.

The post Project Activity first appeared on Adlis ERP-CRM Dev..]]>
Invoicing Project https://help.adlis-weiyin.com/invoicing-project/ Wed, 15 Mar 2017 19:59:59 +0000 https://help.adlis-weiyin.com/?p=827 Invoicing project is recomended to do only from the project area via the Invoice Project button on the top right side to keep track of all invoices created for the project. Project Invoice Info There is 3 types of how the invoice items will be structure when invoicing the project. Single Line – Not applied if […]

The post Invoicing Project first appeared on Adlis ERP-CRM Dev..]]>
Invoicing project is recomended to do only from the project area via the Invoice Project button on the top right side to keep track of all invoices created for the project.

There is 3 types of how the invoice items will be structure when invoicing the project.

  1. Single Line – Not applied if project Billing Type is Task Hours
    1. Item name: Project name
    2. Description: All tasks + total logged time per task
  2. Task Per Item – All billable tasks per item – (Not applied if Billing type is Fixed Cost)
    1. Item name: Project name + Task name
    2. Description: Total logged time
  3. All timesheets individualy – Applied all billable timesheets from tasks – (Not applied if Billing type is Fixed Cost)
    1. Item name: Project name + Task name
    2. Description: Timesheet start time + end time + total logged time

Tasks that will be billed

With Adlis ERP-CRM Dev. you have the ability to chose what tasks to bill when invoicing project.

To see the tasks that will be billed click on See tasks that will be billed on this invoice, you can adjust per your requirements.

If task is note complete when you click See tasks that will be on this invoice on the right side you can see a message Not Complete. Another message is auto added there with red if the task dont have any timers but you want to bill the task. Check the image below.

invoicing project

Tasks with future start date cannot be billed.

Actually they can if you check them. By default the tasks with future start date wont be checked which is logical.

Notes

  • All billed tasks will be marked as finished (If any tasks found not finished) – No notification sent to assigned staff members.
  • After the task is billed you cannot start timers or bill the task again. If is required to bill again you need to re-create the task.
  • If customer have different currency set then default currency the project currency will be the currency of the customer.
The post Invoicing Project first appeared on Adlis ERP-CRM Dev..]]>
Finance Overview https://help.adlis-weiyin.com/finance-overview/ Wed, 15 Mar 2017 19:54:09 +0000 https://help.adlis-weiyin.com/?p=824 Finance Overview is showcase of all logged project timesheets together including project expenses. Logged Hours – Shows total logged project hours Billable and Not Billable Billable Hours – Shows total billable hours – All time Billed Hours – Shows total invoiced hours. Unbillable Hours – Shows total unbilled hours. Ex. Means that the project have 3 […]

The post Finance Overview first appeared on Adlis ERP-CRM Dev..]]>
finance overview tasks

Finance Overview is showcase of all logged project timesheets together including project expenses.

  • Logged Hours – Shows total logged project hours Billable and Not Billable
  • Billable Hours – Shows total billable hours – All time
  • Billed Hours – Shows total invoiced hours.
  • Unbillable Hours – Shows total unbilled hours. Ex. Means that the project have 3 unbilled hours from the last project invoice (If any).

The total values are calculated based on the Billing Type

Example billing type Project Hours

finance overview billing hours

Project have logged total 3 hours and Rate per hours in project settings is set 40$ the calculation will go like this:

40$ x 3 = Total 120$

Example billing type Task Hours

The total per hour in this case is taken from the task Total Per Hour

Example:

Fix firefox bug – Total per hour is 25$

Create new table in database – Total Per hour is 40$

Task 1 (Fix firefox bug) have logged 1 hour and Task 2 (Create new table in database) have logged 2 hours.

The calculation goes like this:

25$ x 1 hours (Task 1 – Fix firefox bug)

40$ x 2 hours (Task 2 – Create new table in database)

Equal to 105$

The post Finance Overview first appeared on Adlis ERP-CRM Dev..]]>
New Project https://help.adlis-weiyin.com/new-project/ Wed, 15 Mar 2017 19:49:59 +0000 https://help.adlis-weiyin.com/?p=821 To create new project go to Projects from the aside menu and click New Project on the top left button. Project Name – The name of the project – Visible to customer Select customer Billing Type – there are 3 billing types for the projects. (auto-selected from the most used billing type) Fixed Cost Project […]

The post New Project first appeared on Adlis ERP-CRM Dev..]]>
To create new project go to Projects from the aside menu and click New Project on the top left button.

  • Project Name – The name of the project – Visible to customer
  • Select customer
  • Billing Type – there are 3 billing types for the projects. (auto-selected from the most used billing type)
 Billing type cant be changed if any billed tasks found for the project.
  • Fixed Cost
  • Project Hours – Based on project total billable hours
  • Tasks Hours – Based on tasks total billable hours – Total is calculated per task Hourly Rate (When creating task you need to set hourly rate for these tasks if billable.
  • Select project members – Only project members and staff who has permission Manage Projects will be able to access the project.
  • Start Date
  • End Date
  • Project Description

Project Settings

Each project can have own settings based on the customer.

  • Allow customer to view tasks
  • Allow customer to comment on project tasks – Not applied if Allow customer to view tasks is unchecked.
  • Allow customer to view task comments- Not applied if Allow customer to view tasks is unchecked.
  • Allow customer to view task attachments- Not applied if Allow customer to view tasks is unchecked.
  • Allow customer to view task checklist items- Not applied if Allow customer to view tasks is unchecked.
  • Allow customer to upload attachments on tasks- Not applied if Allow customer to view tasks is unchecked.
  • Allow customer to view task total logged time
  • Allow customer to view finance overview –  (Finance overview for tasks is not shown if project Billing Type is Fixed Cost)Creating new project
  • Allow customer to upload files
  • Allow customer to open discussions
  • Allow customer to view milestones
  • Allow customer to view Gantt
  • Allow customer to view timesheets
  • Allow customer to view activity log
  • Allow customer to view team members

Notes:

  • When creating new project initialy the default project settings will be taken from the last project. You can adjust if any changes are required.
  • Project currency will be your base currency or the customer currency. If the customer have setup currency different then the base currency the currency will be used from the customer profile.
  • If your staff members are able to see all projects make sure that the member dont have permissions for projects VIEW. VIEW allows staff member to see ALL projects. If you only want them to see projects they are assigned (added as members), do not give VIEW permissions.
The post New Project first appeared on Adlis ERP-CRM Dev..]]>
Timesheets https://help.adlis-weiyin.com/timesheets/ Wed, 15 Mar 2017 19:45:34 +0000 https://help.adlis-weiyin.com/?p=817 Project timesheets are all started timers for tasks related to specific project. To view all project timesheets while viewing the project click on the timesheets tab. You can view and sort all timers that are in progress or stopped, all timesheets are linked to staff member and task. Add new timesheet manually While you are in […]

The post Timesheets first appeared on Adlis ERP-CRM Dev..]]>
Project timesheets are all started timers for tasks related to specific project.

To view all project timesheets while viewing the project click on the timesheets tab.

project timesheets

You can view and sort all timers that are in progress or stopped, all timesheets are linked to staff member and task.

Add new timesheet manually

While you are in the timesheets follow the steps:

  • Click on the button Timesheet
    project timesheets
  • Select start time and end time from the calendar.
  • Select task where this timesheet will be linked.
  • Select staff member
    • By default the logged in user will be auto selected
    • If the user dont have permission for projects EDIT or CREATE only logged in user will be available to select as timesheet staff in the dropdown
      project timesheets

 

The post Timesheets first appeared on Adlis ERP-CRM Dev..]]>
Manually linking invoice to project https://help.adlis-weiyin.com/manually-linking-invoice-to-project/ Wed, 15 Mar 2017 19:40:34 +0000 https://help.adlis-weiyin.com/?p=815 Go to Menu -> Sales -> Invoices and click Create New Invoice Select customer. A dropdown with projects will be shown below the customers select field (if no projects associated with the selected customer the dropdown with projects wont be shown) Select the project Configure the invoice for your needs Save the invoice Navigate to the […]

The post Manually linking invoice to project first appeared on Adlis ERP-CRM Dev..]]>
  • Go to Menu -> Sales -> Invoices and click Create New Invoice
  • Select customer.
  • A dropdown with projects will be shown below the customers select field (if no projects associated with the selected customer the dropdown with projects wont be shown)
  • Select the project
  • Configure the invoice for your needs
  • Save the invoice
  • Navigate to the project area and click on the tab Sales->Invoices you will be able to see the newly created invoice associated with your selected project.
  • link invoice to project

    The post Manually linking invoice to project first appeared on Adlis ERP-CRM Dev..]]>