问题标签 [erpnext]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - 在 ERP-Next 安装过程中出现“ ImportError: No module named wnf ”
我正在尝试通过运行“install_erpnext.py”来安装 erpnext,它给出了一条错误消息:
我不知道现在该怎么办。我也尝试复制文件'erpnext/lib/wnf.py'并将其与'install_erpnext.py'一起放入,但它仍然给出了同样的错误。我已经安装了 Python 模块和其他包。提前致谢...
nginx - 使用 erpnext 安装 supervisord
我是centos 命令和脚本的新手。
场景:
我已经安装了 ERPNEXT 并且在服务器上工作正常,但我必须手动完成./lib/wnfy.py --serve
我想做的是使用supervisord自动启动它。我安装了 gunicorn 和 nginx。尝试启动 supervisord 时,出现以下错误:
[root@vps3 etc]# chkconfig supervisord on [root@vps3 etc]# service supervisord start /etc/init.d/supervisord: line 11: ./etc/rc.d/init.d/functionsprog=supervisord: No such文件或目录 开始:守护进程 --pidfile [ -f ]/etc/init.d/supervisord:第 14 行:成功:找不到命令 /etc/init.d/supervisord:第 14 行:失败:找不到命令
我还不熟悉事情的运作方式。请指教。提前致谢。
python - 没有在 ERPNext 中进行安装?
我正在尝试在 Ubuntu 环境中的系统上安装 ERPNext。但是在 python2.7 install_erpnext.py 之后它卡住了。
它说这需要时间,我等了一天但过程卡在同一个位置
请看截图
python - 在 cpanel centos 上安装 erpnext 时出现缺少依赖项错误
我正在尝试安装ERPnext
在我的cpanel
.
但是我Missing Dependency: libmysqlclient_r.so.15()(64bit)
从脚本中收到了这条消息。
我用谷歌搜索了它,但没有找到有用的材料。
据我从研究中知道,我必须mysql-devel
在我的服务器上安装,但是当我尝试安装它时。我收到一条消息,它已安装在服务器上。
知道如何解决它或我应该怎么做
我的终端的图像
git - 为什么 Git 不为初始提交暂存一些“修改过的”文件夹?
我从备份 tarball 中收到了修改后的旧版本ERPNext的代码,我想将此代码添加到我的 Ubuntu 笔记本电脑上的本地 Git 存储库中,这样我就可以跟踪更改,直到我的雇主可以托管远程存储库。假设备份已经在 中提取~/backup/erpnext/
,我正在尝试设置我的 Git 存储库以进行如下初始提交:
我认为,这应该将备份中的所有文件和文件夹添加到~/erpnext
目录中,并将它们全部暂存以进行初始提交。然而,为了确保一切都按预期工作,我在git status
提交之前运行并收到以下输出:
令我惊讶的是,app
and lib
(它们都是文件夹)被标记为已修改内容,并且没有为提交而上演。我尝试git add --force
在*
, app
and上运行lib
,但它似乎并没有改变任何东西。
我不想提交我的代码并将这些文件夹从存储库中排除。我该如何解决?
mariadb - 如何在 Windows 上安装 erpnext
我已经在 Ubuntu 上安装了 ERPNext,现在我有一个特定的要求,我想在 Windows 操作系统上安装它。
我已经下载了以下先决条件。
1.Python 2.7
2.MariaDB
在 Windows 上安装 erpnext 的正确步骤是什么。?
python - Can We use page breaks in for loops?
I wanted to print barcodes using for loop in python. This is my code:
The problem is,I wanted to restrict the number of barcodes printed on one sheet of paper to 24.Is there any way to do that?
python - AttributeError:“模块”对象没有属性“generate_barcode”
我试图在 Python 中从数据库中检索一些数据。我收到了这个错误:回溯:
这是我在做什么:
谁能帮我?
python - 将sql中的日期与自定义日期进行比较
我试图将自定义日期与 sql 中的日期字段进行比较。我完成了以下查询,但它返回了一个错误,这是正确的。我有我的日期值date1
并想将它与sale.posting_date
comapare。我尝试在这里阅读相关帖子,但没有用。有人可以帮我吗?
python - 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'"
Traceback:
Can someone help me?