mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-04 22:18:27 +00:00
moved directory structure
This commit is contained in:
1
support/page/__init__.py
Normal file
1
support/page/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from __future__ import unicode_literals
|
||||
1
support/page/support_home/__init__.py
Normal file
1
support/page/support_home/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from __future__ import unicode_literals
|
||||
48
support/page/support_home/support_home.html
Normal file
48
support/page/support_home/support_home.html
Normal file
@@ -0,0 +1,48 @@
|
||||
<div class="layout-wrapper layout-wrapper-background">
|
||||
<div class="appframe-area"></div>
|
||||
<div class="layout-main-section">
|
||||
<div style="width: 48%; float: left;">
|
||||
<h4><a href="#!List/Support Ticket">Support Ticket</a></h4>
|
||||
<p class="help">Support queries from customers via email or website</p>
|
||||
<br>
|
||||
<h4><a href="#!List/Customer Issue">Customer Issue</a></h4>
|
||||
<p class="help">Customer Issue against a Serial No (warranty)</p>
|
||||
<br>
|
||||
<h4><a href="#!List/Maintenance Schedule">Maintenance Schedule</a></h4>
|
||||
<p class="help">Plan for scheduled maintenance contracts</p>
|
||||
<br>
|
||||
<h4><a href="#!List/Maintenance Visit">Maintenance Visit</a></h4>
|
||||
<p class="help">Visit report for maintenance visit</p>
|
||||
<br>
|
||||
<h4><a href="#!List/Newsletter">Newsletter</a></h4>
|
||||
<p class="help">Send Newsletters to your contacts</p>
|
||||
<br>
|
||||
<h4><a href="#!List/Communication">Communication</a></h4>
|
||||
<p class="help">Communication Log</p>
|
||||
</div>
|
||||
<div style="width: 48%; float: right;">
|
||||
<h4><a href="#!List/Serial No">Serial No</a></h4>
|
||||
<p class="help">Single unit of an Item</p>
|
||||
</div>
|
||||
<div style="clear: both"></div>
|
||||
<hr>
|
||||
<h3>Reports</h3>
|
||||
<div class="reports-list"></div>
|
||||
</div>
|
||||
<div class="layout-side-section">
|
||||
<div class="psidebar">
|
||||
<div class="section">
|
||||
<div class="section-head">Tools</div>
|
||||
<div class="section-body">
|
||||
<div class="section-item">
|
||||
<a class="section-link"
|
||||
title = "Pull support issue from support email account"
|
||||
href="#!Form/Email Settings/Email Settings">Email Settings</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
</div>
|
||||
20
support/page/support_home/support_home.js
Normal file
20
support/page/support_home/support_home.js
Normal file
@@ -0,0 +1,20 @@
|
||||
// ERPNext - web based ERP (http://erpnext.com)
|
||||
// Copyright (C) 2012 Web Notes Technologies Pvt Ltd
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
pscript['onload_support-home'] = function(wrapper) {
|
||||
wrapper.appframe = new wn.ui.AppFrame($(wrapper).find('.appframe-area'), 'Support');
|
||||
erpnext.module_page.setup_page('Support', wrapper);
|
||||
}
|
||||
28
support/page/support_home/support_home.txt
Normal file
28
support/page/support_home/support_home.txt
Normal file
@@ -0,0 +1,28 @@
|
||||
# Page, support-home
|
||||
[
|
||||
|
||||
# These values are common in all dictionaries
|
||||
{
|
||||
'creation': '2012-02-21 13:23:35',
|
||||
'docstatus': 0,
|
||||
'modified': '2012-02-21 13:23:35',
|
||||
'modified_by': u'Administrator',
|
||||
'owner': u'Administrator'
|
||||
},
|
||||
|
||||
# These values are common for all Page
|
||||
{
|
||||
'doctype': 'Page',
|
||||
'module': u'Support',
|
||||
'name': '__common__',
|
||||
'page_name': u'support-home',
|
||||
'standard': u'Yes',
|
||||
'title': u'Support Home'
|
||||
},
|
||||
|
||||
# Page, support-home
|
||||
{
|
||||
'doctype': 'Page',
|
||||
'name': u'support-home'
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user