mirror of https://github.com/itflow-org/itflow
Updated the Readme
This commit is contained in:
parent
5fe485a28c
commit
71decb9332
12
README.md
12
README.md
|
|
@ -1,5 +1,4 @@
|
|||
## CRM
|
||||
CRM, Accounting and Invoicing System for small managed IT companies
|
||||
## IT Documentation Accounting and Invoicing System for Small Managed IT Companies
|
||||
|
||||
### Features
|
||||
* Manage Clients
|
||||
|
|
@ -35,7 +34,6 @@ CRM, Accounting and Invoicing System for small managed IT companies
|
|||
* Password reset reminder for customers
|
||||
* Past Due Invoices
|
||||
* Software License Expiring
|
||||
* Many more...
|
||||
* Calendar Integration
|
||||
* Schedule Jobs
|
||||
* Overview of Invoices Domains
|
||||
|
|
@ -43,6 +41,12 @@ CRM, Accounting and Invoicing System for small managed IT companies
|
|||
* Dashboard
|
||||
* Gives a clear overview of your business
|
||||
|
||||
* API
|
||||
* XML Phonebook download for VOIP Phones
|
||||
* FreePBX Integrated called ID (When call comes in it queries the Database and displays the company name on your caller ID)
|
||||
* Pull Email Lists
|
||||
* Check account Balances using FreePBX IVR
|
||||
|
||||
### Installation Instructions
|
||||
|
||||
* Clone this repo
|
||||
|
|
@ -74,9 +78,9 @@ CRM, Accounting and Invoicing System for small managed IT companies
|
|||
* parsedown
|
||||
|
||||
### Future Todo
|
||||
* FreePBX "Asterisk" Integration (For CallerID and to track client calls within the app)
|
||||
* MeshCentral Integation to assign devices and easily access remote desktop within the app
|
||||
* HestiaCP Integration for intergrating domains and webclients
|
||||
* CalDAV to integrate with 3rd party calendars
|
||||
* CardDAV to integrate with 3rd party Address books
|
||||
* Unifi and UNMS integration
|
||||
* Stripe Integration for online payments
|
||||
|
|
@ -93,7 +93,7 @@ if(isset($_GET['client_id'])){
|
|||
<div class="card-body">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<h4 class="text-secondary">Address</h4>
|
||||
<h4 class="text-secondary"><strong><?php echo $client_name; ?></strong></h4>
|
||||
<a href="//maps.<?php echo $session_map_source; ?>.com/?q=<?php echo "$client_address $client_zip"; ?>" target="_blank">
|
||||
<div class="ml-1"><?php echo $client_address; ?></div>
|
||||
<div class="ml-1"><?php echo "$client_city $client_state $client_zip"; ?></div>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,6 @@
|
|||
<!-- Client Sidebar -->
|
||||
|
||||
<ul class="sidebar navbar-nav d-print-none">
|
||||
|
||||
<li class="nav-item my-3">
|
||||
<h2 class="text-white text-center"><?php echo $client_name; ?></h2>
|
||||
<h6 class="text-secondary text-center"><?php echo $client_type; ?></h6>
|
||||
</li>
|
||||
<ul class="sidebar navbar-nav d-print-none bg-primary">
|
||||
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="clients.php">
|
||||
|
|
|
|||
Loading…
Reference in New Issue