Questions tagged [erpnext]

ERPNext is a generic ERP software used by manufacturers, distributors and services companies. It includes modules like accounting, CRM, sales, purchasing, website + e-commerce, point of sale, manufacturing, warehouse, project management, inventory, and services. Also, it has domain-specific modules like schools, healthcare, agriculture and non-profit.

Among other things, ERPNext will help you to:

  1. Track all Invoices and Payments.
  2. Know what quantity of which product is available in stock.
  3. Identify open customer queries.
  4. Manage payroll.
  5. Assign tasks and follow up on them.
  6. Maintain a database of all your customers, suppliers and their contacts.
  7. Prepare quotes.
  8. Get reminders on maintenance schedules.
  9. Publish your website.

And a lot lot lot more.

203 questions
1
vote
1 answer

Could not open kernel policy /etc/selinux/targeted/active/policy.kern for reading

by using “Easy Install” to install Frappe ERPNext with this command: sudo python install.py --production --user frappe I am getting this error: TASK [frappe_selinux : Check enabled SELinux modules]…
jstuardo
  • 3,901
  • 14
  • 61
  • 136
1
vote
1 answer

Frappe ERPNext and quickbooks connector

I am a python developer. I need to build a connector that will sync customers between ERPNext and quickbooks(using quickbooks API). How can I achieve that? please refer me socs if available for such erpnext customization.
Nauman Sharif
  • 163
  • 11
1
vote
1 answer

Conflict while Installing MariaDB on Centos6.9 that has Mysql already installed

I have VPS Centos 6.9 server with Cpanel, This server has mysql56 installed. I want to replace mysql with MariaDB in order to install bench erpnext. I followed this tutorial, and also I removed mysql by: yum remove mysql-server yum remove mysql-libs…
Anas Sbeinati
  • 13
  • 1
  • 4
1
vote
0 answers

How to integrate additional website to ERPNext server

The server is running Ubuntu 14.04 and as a VM. I have downloaded the ERPNext VM from the website and it seems to be working fine. Since ERPNext's calendar is not optimised for managing clinic appointments I have decided to integrate it with Easy…
Hesham
  • 21
  • 3
1
vote
1 answer

How to install erpnext using Apache?

I have installed/host erpnext app using Nginx config. With the same config I tried to do it using Apache server but it is not working. Did any one tried this before?
Shivkumar kondi
  • 6,458
  • 9
  • 31
  • 58
1
vote
1 answer

New module created shows error on opening: ERPNext

I have created a new module named PhotoGalleryfrom Module Def List-> New . Then i have created a new doctype named photoAlbum for this module from DoctypeList->new. Then in desktop the new module is shown , i opened the module and got the option…
Viveka
  • 237
  • 2
  • 4
  • 20
1
vote
2 answers

Prestashop: How do I connect to a third party API?

I am using ERPNext which has a JSON API and Prestashop. As an example, I want to save transactions and so forth TO ERPNext FROM Prestashop when a client makes a purchase on Prestashop. In essence, I would like to create a "Logic Hook" that gets…
Jacques
  • 1,649
  • 2
  • 14
  • 23
1
vote
1 answer

OperationalError: (1054, "Unknown column '' in 'where clause'")

I was trying to filter some data's from db using sale.posting_date and payment.mode_of_payment. when I try to filter using payment.mode_of_payment=Cash:I got the following error: "Unknown column 'payment.mode_of_payment' in 'where clause'" from…
LaksHmiSekhar
  • 315
  • 2
  • 7
  • 16
0
votes
0 answers

How do I predefine the contents of a cell inside a table in a dialog box in Frappe?

I'm working with the Frappe Framework, and I've already made a dialogbox insertDialog with a table named questions in it, and the table has a column qno inside it. I want the qno field to be populated with the current index whenever a new row is…
0
votes
0 answers

LDAP Login is converting system user to website user in ERPNext

I have integrated LDAP to enable AD users to login to ERPNext. I have mapped AD user group to ERPNext Roles. Default user type is set to 'System User', but when an user logs into ERPNext with AD credentials, he is converted to website user in…
0
votes
0 answers

How do I fix the Vue error in ERPNEXT during file upload?

I have a problem on erpnext when I tried to upload image in course error appears in console as Vue warn : property or method "__" is not defined on the instance but referenced during render make sure that this property is reactive I tried to…
0
votes
0 answers

ERPNext | RestAPI | Cancel Endpoint

How can I cancel someone's attendance on ERPNext using RestAPI? I checked the documentation on ERPNext but it did not have anything on this. I also tried updating the attendance using the CRUD operations but the response gave status code = 500 I…
MD Rameez
  • 1
  • 2
0
votes
0 answers

Event listener in erpnext v14

I have a customized the function that calculates amount in quotation since I added other fields, but when it comes Sales Taxes and Charges part (tax_amount, total) in quotation it doesn’t seem to override. I have tried some solutions so I want to…
imo
  • 1
  • 4
0
votes
0 answers

This error where add frappe erpnext after bench update

after some changing in ERPNext, update the bench by suing command bench update --reset bench migrate bench clear-cache but face error then try to update config file but error still appear after login to site. how to resolve this issue, please…
G2R
  • 1
  • 1
0
votes
0 answers

ModuleNotFoundError: No module named 'frappe.model'

import frappe from frappe.model.document import Document class ServersideScripting(Document): def validate(self): frappe.throw("hello") when I try to run this script from serverside scripting it throws the following…