On the dashboard section You can see three dropdown box options. In the First dropdown box you have to select in the Property Name. Second option is owner name in the last dropdown option you have to select Property Manager Name. After clicking on the ‘Open Dashboard’ button new url will open and these filters…
Creator Property Management App Process
When any user create request for maintenance then first email is go to the info@resorthosts.com to inform that new request is created by the user. Then admin click on the link and redirect to record details page. Then admin have to assign the vendor for appropriate request. After admin assign the vendor for request. Email Notification…
Push data from Zoho Creator to Zoho CRM
Zoho Creator can push Form data to Zoho CRM. Below steps tell you how to add a CRM lead from Zoho Creator Form. 1- Create a Lead Form in Zoho Creator: Create a Zoho Creator Form with the following fields. 2- Company Name (field type – Single Line) 3- Name (field type – Single Line) 4-…
Create record from creator/CRM to zoho books
Using below script you can create record in zoho books organizationID = “xxxxxx”; itemList = List(); imap = Map(); imap.put(“item_id”,”XXXXXXXX”); imap.put(“quantity”,1); imap.put(“rate”,500); itemList.add(imap); info itemList; params = Map(); params.put(“customer_id”,”XXXXXXXX”); params.put(“line_items”,itemList); res = zoho.books.createRecord(“invoices”, organizationID, params); info res; Here you can see some Example:- for each rev in Inv { pro = Add_Property[ID == rev.Property_Name];…
Install Latest CodeIgniter Using Composer
Step1- Download the composer. You can download composer here- load this Url on your Browser- https://getcomposer.org/download/ Download the setup and follow the installation instructions. Step2- Open the command prompt/terminal and run the following command- E:\xamp\htdocs>compser You will see the following results If you can see the above results, then congratulations,…
Install Latest CodeIgniter Framework
In this Article, we are going to look at how you can install CodeIgniter. You can download the latest version from the CodeIgniter website, or you can use a tool like a composer to automate the installation Step 1) Open the following URL in your browser https://codeigniter.com/ The image below shows the download link to the latest…
Creator Property Management App
Dashboard: Dashboard is created using HTML SNIPPETS script and zoho creator report filters. At the top of the page 3 filters is present which apply to the data Panels showing below of the filter. Filters:- Select Property Select owner Select Property Manager User can select only 1 filter or can select all filters at once….
How to install the laravel first time on local xampp
1. For First install the composer we needs to get it download from here https://getcomposer.org/download/ 2. Once Completed installation of your composer then move step 3. 3. Open Composer in your xamp/htdocs 4. Then aaply this command-C:\xamp\htdocs>composer create-project Laravel/Laravel ProjectName 5. Go to your htdocs and open your “ProjectName” folder , and open cmd in…