Merge pull request #2444 from ankitjavalkarwork/contactmob

Display mobile no. of contact
This commit is contained in:
Nabin Hait 2014-12-02 10:35:46 +05:30
commit 6871c74ce1
3 changed files with 16 additions and 8 deletions

View File

@ -800,7 +800,8 @@
"fieldtype": "Date", "fieldtype": "Date",
"label": "From Date", "label": "From Date",
"no_copy": 1, "no_copy": 1,
"permlevel": 0 "permlevel": 0,
"print_hide": 1
}, },
{ {
"allow_on_submit": 1, "allow_on_submit": 1,
@ -810,7 +811,8 @@
"fieldtype": "Date", "fieldtype": "Date",
"label": "To Date", "label": "To Date",
"no_copy": 1, "no_copy": 1,
"permlevel": 0 "permlevel": 0,
"print_hide": 1
}, },
{ {
"allow_on_submit": 1, "allow_on_submit": 1,
@ -878,7 +880,7 @@
"icon": "icon-file-text", "icon": "icon-file-text",
"idx": 1, "idx": 1,
"is_submittable": 1, "is_submittable": 1,
"modified": "2014-10-08 14:23:20.234176", "modified": "2014-11-27 17:28:20.133701",
"modified_by": "Administrator", "modified_by": "Administrator",
"module": "Accounts", "module": "Accounts",
"name": "Purchase Invoice", "name": "Purchase Invoice",

View File

@ -685,7 +685,8 @@
"label": "Recurring Type", "label": "Recurring Type",
"no_copy": 1, "no_copy": 1,
"options": "Monthly\nQuarterly\nHalf-yearly\nYearly", "options": "Monthly\nQuarterly\nHalf-yearly\nYearly",
"permlevel": 0 "permlevel": 0,
"print_hide": 1
}, },
{ {
"allow_on_submit": 1, "allow_on_submit": 1,
@ -695,7 +696,8 @@
"fieldtype": "Date", "fieldtype": "Date",
"label": "From Date", "label": "From Date",
"no_copy": 1, "no_copy": 1,
"permlevel": 0 "permlevel": 0,
"print_hide": 1
}, },
{ {
"allow_on_submit": 1, "allow_on_submit": 1,
@ -705,7 +707,8 @@
"fieldtype": "Date", "fieldtype": "Date",
"label": "To Date", "label": "To Date",
"no_copy": 1, "no_copy": 1,
"permlevel": 0 "permlevel": 0,
"print_hide": 1
}, },
{ {
"allow_on_submit": 1, "allow_on_submit": 1,
@ -772,7 +775,7 @@
"icon": "icon-file-text", "icon": "icon-file-text",
"idx": 1, "idx": 1,
"is_submittable": 1, "is_submittable": 1,
"modified": "2014-10-08 14:23:29.718779", "modified": "2014-11-27 17:27:38.839440",
"modified_by": "Administrator", "modified_by": "Administrator",
"module": "Buying", "module": "Buying",
"name": "Purchase Order", "name": "Purchase Order",

View File

@ -14,8 +14,11 @@
{% if(contact_list[i].phone) { %} {% if(contact_list[i].phone) { %}
{%= __("Phone") %}: {%= contact_list[i].phone %}<br> {%= __("Phone") %}: {%= contact_list[i].phone %}<br>
{% } %} {% } %}
{% if(contact_list[i].mobile_no) { %}
{%= __("Mobile No.") %}: {%= contact_list[i].mobile_no %}<br>
{% } %}
{% if(contact_list[i].email_id) { %} {% if(contact_list[i].email_id) { %}
{%= __("Email Id") %}: {%= contact_list[i].email_id %} {%= __("Email ID") %}: {%= contact_list[i].email_id %}
{% } %} {% } %}
</p> </p>
</div> </div>