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
0
votes
1 answer

How to create composite index on multiple columns in Frappe/Erpnext

How do we create composite index on multiple columns in Frappe/Erpnext. For individual fields in the Doctype, we can create the index. However, if we want to create a composite index based on more than one field, how do we create the same?
Nehal Damania
  • 8,671
  • 9
  • 37
  • 52
0
votes
0 answers

How do I create Sales Order on ERPNext using the frappe python client?

I’m using frappe python client to create Sales Order but for some reason its not getting created. I’m using all mandatory fields for Sales Order (and Sales Order Item). Its not giving any error but its not even getting created. I am able to create…
Amresh Giri
  • 139
  • 1
  • 14
0
votes
0 answers

How to make locally pushed array global javascript

I have array initially declared in global scope as an empty array then inside a function callback. I have to push response message elements to this array. But I need to get this update array outside callback of function var array = [] …
0
votes
1 answer

How to fix error reset link formatting when reset password erpnext?

Hello… I have error reset link when reset password for user like this: http://xxxxx.xxxxxx.com,xxxxx.xxxxxx.com:8000/update-password?key=MpqDCOxDO7vEZUCHi5F8rfSHeIgzBLyo The link is duplicated, contains comma and port number ! It should like…
Abdullah Md
  • 151
  • 15
0
votes
1 answer

How to return line of latest field in text file with Python?

I'm writing a Python script. I need to return lines that contain latest 'timestamp': field from a text file. For example, in the below text file example: {'uid': 3167, 'user_id': '6', 'timestamp': datetime.datetime(2021, 3, 10, 18, 7, 13), 'status':…
Abdullah Md
  • 151
  • 15
0
votes
1 answer

How to post request python method from react native?

I have a python method called def login_device(data): I tried to post request using fetch api with react native but i always get an error status of 500 and an error message of login_device() missing 1 required positional argument: 'data' here is my…
Corioste
  • 65
  • 8
0
votes
1 answer

How to specify filter for child items in list view?

I want to open Sales Order list and specify filter via frappe.set_route('List', 'Sales Order', 'List', {'items': {'item_code':my_specific_item_code}}) But it does not work this way - no filters applied to list. How could I specify a filter for child…
fyric
  • 21
  • 5
0
votes
1 answer

Is there any way to version control ERPNext customizations?

We have a laravel application that we integrated ERPNext to via API calls. We added some customizations to our ERPNext production environment to go with the changes we made to our laravel application. Thing is, we have version control for our…
Gabriel
  • 115
  • 8
0
votes
0 answers

Fastest way to import large data to ERPNext

Hello Beautiful People, We have planned to migrate our existing system to ERPNext. But we've noticed that importing large amount of data takes a long time, importing and submitting 80,000 Delivery notes took 3 days (Linked with Sales Order and Sales…
0
votes
1 answer

Frappe (ERP Next): How can we store null in a Currency Field of a DocType?

We require null to be stored in a Currency Field of a DocType. Right now even though the field is not mandatory, by default 0 (zero) is stored in the database, whenever a row is inserted. Is it possible to store null (no value) for the Currency…
Nehal Damania
  • 8,671
  • 9
  • 37
  • 52
0
votes
1 answer

Frappe not updating database

please i am new to programming. i am working on a project on frappe. my database dont update. please can someone help me out DETAILS OF THE PROBLEM i made a button on a doctype inventory_reconcilation the code is as…
0
votes
0 answers

Customise frappe query report

I've been trying to make a query_report on frappe. but it doesn't return the data on the browser. the console says 'Unable to handle success response' console.trace() Each data element must implement a unique 'id' property this is my sql…
0
votes
2 answers

How to frappe.get_all() with child table fields?

I have a "Parcel" Doctype Which have a “Parcel Content” Doctype as a child table. If i do: frappe.get_doc('Parcel', 'NAME') I get the object with the child table in it, it works for a single object. But i need to get multiple objects with his child…
Jeans K. Real
  • 180
  • 4
  • 13
0
votes
1 answer

Can't able to create sales invoice in ERP Next with REST

I want to create invoice through REST. I sent all the required parameters but it's showing me "The resource you are looking for is not available". The endpoint I have used "http://mydomain.amazonaws.com/api/resource/Sales Invoice". Kindly help me.…
0
votes
1 answer

How to show up html svg tag while printing in print preview

I have an SVG tag in my HTML which prints barcode on the screen and works, but when I try to print that document it does not appear in the print preview. Everything else except the barcode gets displayed. I'm guessing that the document isn't…
user10058776
  • 183
  • 1
  • 3
  • 17