Skip to content

cuulee/frappevue_adminlte

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FrappeVue AdminLTE

Vue-based AdminLTE dashboard for Frappe and ERPNext

Features

  • AUTHENTICATION: Login is inbuilt by default and can be used as below:
    • this.$frappe.login({usr:'user': pwd:'password'}) //token based authentication is used on successful login.
  • API: Access data using:
    • this.$frappe.get_doc(doctype, docname)
    • this.$frappe.get_list(doctype, filters) // filters is optional
    • this.$frappe.new_doc(doctype, body) //body = {}
    • this.$frappe.update_doc(doctype, docname, body)
    • this.$frappe.delete_doc(doctype, docname)
    • this.$frappe.getPDF(doctype, docname) // OPTIONAL: format, Standard, no_letterhead, letterhead, lang
  • REUSABLE COMPONENTS:
    • DataTable // for generating doctype data list, auto repackage datatable.
  • UTILITIES:
    • formatCurrency(amount, currency)
    • this.popIt.error(title, message) // show error modal
    • this.popIt.success(title, message) // show success modal

NOTE

this keywork can be directly accessed in VUEJS component, this.$frappe can be redefined as let frappe = this.$frappe

PROJECT SETUP

  • INITIAL CONFIGURATION

    • add .appConfig.json to the root folder (same location with package.json)
    • Add configuration in the format { "domain": "https://exampledomain.com", "frappe_custom_app":"frappeauth_app" }
    • frappeauth_app may remain unchanged except you have a custom authentication app.
    • frappeauth_app is REQUIRED to in your frappe/erpnext server, install from https://github.com/mymi14s/frappeauth_app
  • NODE SETUP

npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

Customize configuration

See Configuration Reference.

Screenshot

LOGIN

Login

DASHBOARD

Dashboard

INVOICES

Language changed

INVOICE DETAIL

Language changed

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 93.1%
  • CSS 5.5%
  • Other 1.4%