From 0f2eaa2cf3d0a394d99788b13bc0b32b5b9dd02a Mon Sep 17 00:00:00 2001
From: Ankush Menat
Date: Mon, 4 Apr 2022 16:24:09 +0530
Subject: [PATCH 1/3] chore: add ui test badge
---
README.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/README.md b/README.md
index 96093531d3..c26660c5a2 100644
--- a/README.md
+++ b/README.md
@@ -6,6 +6,7 @@
[](https://github.com/frappe/erpnext/actions/workflows/server-tests.yml)
+[](https://github.com/erpnext/erpnext_ui_tests/actions/workflows/ui-tests.yml)
[](https://www.codetriage.com/frappe/erpnext)
[](https://codecov.io/gh/frappe/erpnext)
[](https://hub.docker.com/r/frappe/erpnext-worker)
From 74e9bc6d651a737f0d3d9acacb66b7dbd61a35fa Mon Sep 17 00:00:00 2001
From: Ankush Menat
Date: Mon, 4 Apr 2022 16:58:25 +0530
Subject: [PATCH 2/3] chore: loosen pandas dependency and bump redisearch
(#30249)
---
requirements.txt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/requirements.txt b/requirements.txt
index 39591caf92..657054fb24 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,7 +1,7 @@
# frappe # https://github.com/frappe/frappe is installed during bench-init
gocardless-pro~=1.22.0
googlemaps
-pandas~=1.1.5
+pandas>=1.1.5,<2.0.0
plaid-python~=7.2.1
pycountry~=20.7.3
PyGithub~=1.55
@@ -10,4 +10,4 @@ python-youtube~=0.8.0
taxjar~=1.9.2
tweepy~=3.10.0
Unidecode~=1.2.0
-redisearch==2.0.0
\ No newline at end of file
+redisearch~=2.1.0
From de83511091189194d70b77411298fd809060063d Mon Sep 17 00:00:00 2001
From: Ankush Menat
Date: Mon, 4 Apr 2022 17:29:51 +0530
Subject: [PATCH 3/3] fix(ux): refresh update to zero val checkbox (#30567)
---
erpnext/stock/doctype/stock_entry/stock_entry.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.js b/erpnext/stock/doctype/stock_entry/stock_entry.js
index 17774a67be..1df56ef7b4 100644
--- a/erpnext/stock/doctype/stock_entry/stock_entry.js
+++ b/erpnext/stock/doctype/stock_entry/stock_entry.js
@@ -633,7 +633,7 @@ frappe.ui.form.on('Stock Entry Detail', {
// set allow_zero_valuation_rate to 0 if s_warehouse is selected.
let item = frappe.get_doc(cdt, cdn);
if (item.s_warehouse) {
- item.allow_zero_valuation_rate = 0;
+ frappe.model.set_value(cdt, cdn, "allow_zero_valuation_rate", 0);
}
},