Questions tagged [frappe]

Frappe is an open source full stack, low-code Python + JS web framework

Frappe is an open source, full stack web framework, low-code web framework, which was originally built for ERPNext, but now powers many business applications.

184 questions
29
votes
4 answers

Building wheel for pandas on Ubuntu 20.04 takes more than 20 minutes, but not on 18.04

I have an installation script for ERPNext that works just fine on Ubuntu 18.04. When I run the same script on 20.04 I am obliged to wait more than 20 minutes for it to complete where it takes around 30 secs on 18.04. My script includes these two…
Martin Bramwell
  • 2,003
  • 2
  • 19
  • 35
15
votes
3 answers

Frappe installation error "AttributeError: module 'pyparsing' has no attribute 'downcaseTokens'"

When I install frappe ( version-13 ) on linux when I run bench init it gives an error ERROR: httplib2 0.20.1 has requirement pyparsing<3,>=2.4.2, but you'll have pyparsing 3.0.0 which is incompatible. though the installation goes through. After…
Hari
  • 163
  • 1
  • 1
  • 5
6
votes
4 answers

How can we add child table dynamically in frappe (ERPNEXT)

I want to add child tables dynamically depending on records in another doctype.
Sajid Ijaz
  • 172
  • 1
  • 1
  • 8
3
votes
1 answer

How to install Docker / ERPNext on Apple M1?

I have been trying to install ERPNext in Docker on my M1 MacBook Pro using this example: https://github.com/frappe/frappe_docker/blob/main/docs/single-server-example.md I struggled when deploying ERPNext getting this error: no matching manifest for…
3
votes
2 answers

How to properly delete a custom doctype in Frappe/ERP Next

What is the correct approach to delete custom doctype in Frappe? How to migrate the same in other servers and also what about database tables? Do we need to manually drop them? Currently for me the deleted doctype’s still persist in the server after…
Roshan888
  • 41
  • 2
3
votes
1 answer

Frappe: What is the difference between short, default and Long queue

Apart from timeout as mentioned in the frappe document, 300s for short and default and 1500s for long queue. Is there any more difference between these 3 types of queues. And, when should one prefer one over other as short and default queue seems to…
Nehal Damania
  • 8,671
  • 9
  • 37
  • 52
3
votes
0 answers

frappe-gantt not working in my angular 10 application

I'm working on a project where the need is to show the tasks in gantt chart, I came across an open source library frappe-gantt and this fits for my use-case. I tried implementing this in my angular application, I have installed this and added the js…
marwari
  • 181
  • 2
  • 13
3
votes
2 answers

How can I clean this code to an associative array?

I have been struggling with the following code to make it useable, but I don't know what type of data it is. This part is extracted from a payload posted by ERPNext to my webhook. I have drilled down to specific part of the data, but it seems mix of…
3
votes
1 answer

Customize Display of Linked doctype in form select

How does one customize the fields being displayed in a form's link field selection.?
N.Balauro
  • 151
  • 1
  • 1
  • 11
2
votes
1 answer

Add multiple images on Frappe DocType field

I want to add multiple images to the Frappe DocType field. I have made a DocType and have a field name image. In this field, I want to add multiple images from users. I don't know how to implement it.
2
votes
0 answers

How to embed calendar view into portal page?

I'm using Frappe Framework to build a website along with an admin portal. Unable to display doctypes to portal users in calendar view. I was able to create Calendar View on desk, but unable to export this to the portal pages.
Vikas
  • 153
  • 2
  • 10
2
votes
1 answer

Frappe: Can we configure different number of workers for different types of Queue

In common_site_config we have background_workers attribute. When we set this attribute to a certain value, that many number of workers are created per queue. In Frappe we have 3 queues, short, long and default. So if we set background_workers:4 we…
Nehal Damania
  • 8,671
  • 9
  • 37
  • 52
2
votes
1 answer

Get documentation from GitHub project as a single pdf

I'm looking for a single pdf of the ErpNext and Frappe user manuals. Documentation seems to be provided in html and the source is in markdown. I did find tools to convert markdown to html/pdf, but no reliable solution to generate a SINGLE pdf file…
2
votes
2 answers

not able to run threads simultaneosly in python

from threading import Thread import time def Function1(): print "11" print "12" time.sleep(5) print "13" print "14" def Function2(): print "21" print "22" time.sleep(10) print "23" print "24" for i in…
1
vote
1 answer

How to allow print only if student paid in the education module in erpnext

what I want to do is disable print from student applicant document if student still has outstanding balance. I tried this script but nothing happens. frappe.ui.form.on("Student Applicant", { onPrintDocument: function(frm, doc, ev) { // Get…
Khallad
  • 123
  • 4
  • 24
1
2 3
12 13