rohitwaghchaure
232dfad13a
fix: conflicts
2023-07-02 10:45:12 +05:30
Rohit Waghchaure
b77a808921
fix: reposting has not changed valuation rate
...
(cherry picked from commit c0c693d8b0faf42089314cf43f4fc117f45de4b4)
# Conflicts:
# erpnext/stock/doctype/purchase_receipt/test_purchase_receipt.py
2023-07-02 05:13:29 +00:00
s-aga-r
90a77030a7
fix: add filter for disabled batch
2023-06-30 12:34:39 +05:30
Gursheen Kaur Anand
b9e9204e52
fix: create multiple variants button count and status ( #35915 )
...
fix: change class for fetching columns in multiple variants
2023-06-28 15:39:00 +05:30
HLD
af418d2342
fix: filter parent warehouses not showing ( #35897 )
2023-06-27 13:17:52 +05:30
David Arnold
742df8a25e
fix: delivery trip driver is only required on submit ( #35876 )
...
This allows drafting trips and stops without yet deciding on the
assignable driver which, in real life, may well be decided on after
preparing and planning the trip.
2023-06-27 11:36:44 +05:30
rohitwaghchaure
0e14ea4e32
Merge pull request #35881 from rohitwaghchaure/fixed-serial-batch-bundle-print
...
fix: serial and batch bundle values in the standard print format
2023-06-26 16:21:34 +05:30
Rohit Waghchaure
9cf645e07f
fix: serial and batch bundle values in the standard print format
2023-06-26 16:00:53 +05:30
Devin Slauenwhite
f9ed8c10ab
fix: make reorder_level not required ( #35831 )
...
* fix: make reorder_level not required
* fix: allow material request to be made if projected_qty <= reorder_level
2023-06-24 16:03:15 +05:30
Marica
2868baebab
fix: Payment Term must be mandatory if Allocate Payment based on ..
is checked ( #35798 )
...
- Front and Back end validation of condition
- Fix test to accomodate fix
2023-06-23 16:00:20 +05:30
Deepesh Garg
b523c779f5
Merge branch 'develop' of https://github.com/frappe/erpnext into ledger_preview
2023-06-22 15:43:43 +05:30
Deepesh Garg
0e68da5a2a
feat: Show stock ledger preview
2023-06-22 15:43:32 +05:30
rohitwaghchaure
d1bccc8c65
Merge pull request #35829 from rohitwaghchaure/refactor-returned-from-rejected-warehouse
...
fix: return against rejected warehouse (UX Issue)
2023-06-22 12:03:38 +05:30
Rohit Waghchaure
756dbe7ce8
refactor: return against rejected warehouse
2023-06-21 17:40:48 +05:30
rohitwaghchaure
edc38edabf
Merge pull request #35611 from rohitwaghchaure/fix-dont-allow-to-create-reposting-entry-for-closing-stock-balance
...
fix: don't allow to make reposting entry for closing stock balance period
2023-06-21 14:15:40 +05:30
Rohit Waghchaure
96c5c7b1df
fix: don't allow to make reposting entry for closing stock balance period
2023-06-21 11:55:51 +05:30
Deepesh Garg
ddbd7d8bbc
Merge pull request #35591 from resilient-tech/remove-whitelisting
...
chore: remove whitelisting for methods not accessed from UI
2023-06-20 20:29:49 +05:30
rohitwaghchaure
79e41e329e
Merge pull request #35809 from rohitwaghchaure/fixed-key-error-in-stock-balance-report
...
fix: key error while checking the stock balance report
2023-06-20 17:00:44 +05:30
Rohit Waghchaure
a627d2a38c
fix: keyerror while checking the stock balance report
2023-06-20 15:55:18 +05:30
s-aga-r
4f941ac5c0
perf: index purpose
in Stock Entry
2023-06-19 18:42:25 +05:30
Türker Tunalı
507c966aa7
chore: Make material request title translatable ( #35764 )
...
chore: Make material request title translatable
2023-06-18 22:29:42 +05:30
Sagar Sharma
b5c1c725be
Merge pull request #35739 from s-aga-r/FIX-35493
...
fix(ux): set route options for new `SBB`
2023-06-18 15:13:15 +05:30
rohitwaghchaure
c51e6dba8d
Merge pull request #35756 from rohitwaghchaure/fixed-stock-entry-not-able-to-save
...
fix: validation of job card in stock entry
2023-06-17 13:32:20 +05:30
Rohit Waghchaure
df8c3f0888
fix: validation of job card in stock entry
2023-06-17 12:45:55 +05:30
Sagar Sharma
9fb6fc5b9a
Merge pull request #35677 from s-aga-r/FIX-ISS-23-24-01397
...
fix: add validation for QI in PR
2023-06-17 12:19:07 +05:30
rohitwaghchaure
86612b6c05
Merge pull request #35747 from rohitwaghchaure/fixed-incorrect-stock-value-for-pr-return
...
fix: incorrect stock value for purchase returned with rejected qty
2023-06-16 23:08:17 +05:30
Rohit Waghchaure
28dd758aa3
fix: incorrect stock value for purchase returned with rejected qty
2023-06-16 16:44:56 +05:30
Ankush Menat
29da1db516
perf: Duplicate queries for UOM ( #35744 )
...
This query repeats for every item, UOMs rarely if ever change
2023-06-16 16:38:30 +05:30
Ankush Menat
433489a9e6
perf: Index pick list field in stock entry and DN ( #35738 )
...
We check if pick list is created against them but there's no index so we
end up reading entire table.
```
+------+-------------+------------------+-------+---------------+----------+---------+------+--------+-----------+----------+------------+-------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | r_rows | filtered | r_filtered | Extra |
+------+-------------+------------------+-------+---------------+----------+---------+------+--------+-----------+----------+------------+-------------+
| 1 | SIMPLE | tabDelivery Note | index | NULL | modified | 9 | NULL | 207015 | 348940.00 | 100.00 | 0.00 | Using where |
+------+-------------+------------------+-------+---------------+----------+---------+------+--------+-----------+----------+------------+-------------+
```
After
```
+------+-------------+------------------+------+-----------------+-----------------+---------+-------+------+--------+----------+------------+------------------------------->
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | r_rows | filtered | r_filtered | Extra >
+------+-------------+------------------+------+-----------------+-----------------+---------+-------+------+--------+----------+------------+------------------------------->
| 1 | SIMPLE | tabDelivery Note | ref | pick_list_index | pick_list_index | 563 | const | 1 | 0.00 | 100.00 | 100.00 | Using index condition; Using w>
+------+-------------+------------------+------+-----------------+-----------------+---------+-------+------+--------+----------+------------+------------------------------->
```
2023-06-16 15:26:40 +05:30
Ankush Menat
81f916b7d3
perf: Ignore cancelled pick lists while fetching picked items ( #35737 )
2023-06-16 15:26:01 +05:30
s-aga-r
4b5454c752
fix(ux): set route options for new SBB
2023-06-16 15:04:37 +05:30
Ankush Menat
07d748c290
perf: Index sales_order_item in Pick list item ( #35735 )
...
- `get_picked_items_qty` does full table scan
- because it also locks, it does full table lock.
2023-06-16 14:06:24 +05:30
rohitwaghchaure
24d1bf275a
Merge pull request #35699 from rohitwaghchaure/fixed-added-validation-for-incorrect-type
...
fix: added validation for incorrect type
2023-06-15 14:17:04 +05:30
Rohit Waghchaure
1c2fe085b5
fix: test case and removed outward field
2023-06-15 12:56:41 +05:30
Sagar Sharma
ccdf2e6340
Merge pull request #35700 from s-aga-r/FIX-SR-DIFF-QTY
...
fix: update `Stock Reconciliation` diff qty while reposting
2023-06-15 11:42:24 +05:30
s-aga-r
6a1b0a2fab
fix: update Stock Reconciliation
diff qty while reposting
2023-06-15 11:39:22 +05:30
Rohit Waghchaure
f968f0f257
fix: added validation for incorrect type
2023-06-14 23:26:35 +05:30
rohitwaghchaure
4820221a41
Merge pull request #35636 from s-aga-r/FIX-SBB-AttributeError
...
fix: miscellaneous
2023-06-14 16:02:04 +05:30
s-aga-r
2c1ab569a7
fix: add validation for QI in PR
2023-06-14 15:37:28 +05:30
s-aga-r
7549a5c371
fix(ux): add filters for SBB
2023-06-14 15:04:51 +05:30
s-aga-r
fe054508f1
fix: 'NoneType' object has no attribute 'precision' for Job Card
2023-06-14 15:04:36 +05:30
Hossein Yousefian
9f669d4c2f
Stock aging report fix when called in dashboard chart ( #35671 )
...
fix: get_range_age conditions fixed
see https://github.com/frappe/erpnext/issues/35669
2023-06-13 19:20:07 +05:30
Ankush Menat
a3ea985348
refactor: Use db.set_single_value
( #35668 )
...
I just applied semgrep autofix. Untested completed, review before merging.
```yaml
- id: frappe-set-value-semantics
patterns:
- pattern-either:
- pattern: frappe.db.set_value($DOCTYPE, None, $...AFTER)
- pattern: frappe.db.set_value($DOCTYPE, $DOCTYPE, $...AFTER)
fix: frappe.db.set_single_value($DOCTYPE, $...AFTER)
message: |
If $DOCTYPE is a single doctype then using `frappe.db.set_value` is discouraged for setting values in DB. Use db.set_single_value for single doctype instead.
languages: [python]
severity: ERROR
```
2023-06-13 17:30:38 +05:30
rohitwaghchaure
93fe923e2a
Merge branch 'develop' into fixed-process-loss-in-job-card
2023-06-12 19:04:19 +05:30
s-aga-r
db159dd11f
fix: Stock Reconciliation document update while reposting
2023-06-12 18:28:16 +05:30
Rohit Waghchaure
0382eecff4
fix: test case
2023-06-12 18:20:38 +05:30
s-aga-r
c9923e4996
fix: 'NoneType' object has no attribute 'precision'
2023-06-12 12:33:13 +05:30
s-aga-r
c6acb0d200
fix: DocType not found
2023-06-12 12:33:13 +05:30
s-aga-r
0b009da122
fix(ux): only list related DocTypes
2023-06-12 12:33:13 +05:30
s-aga-r
9a12545ac3
fix(ux): add filter disabled=0
for batch no
2023-06-12 12:33:07 +05:30
David Arnold
c1b42b858d
fix: set Phone and Email option in doctypes ( #35549 )
2023-06-11 19:34:41 +05:30
Rohit Waghchaure
e9a6191af9
fix: added process loss in job card
2023-06-09 20:33:46 +05:30
Sagar Sharma
e3802d1c3f
Merge pull request #35618 from s-aga-r/FIX-SBB-SERIAL-NO-QTY
...
fix: reset entries qty to `1` for serial item
2023-06-09 13:01:01 +05:30
s-aga-r
b5c5a90f71
fix(ux): set warehouse for new row
2023-06-09 12:22:24 +05:30
s-aga-r
1f28ca717e
fix(ux): set entries qty to 1
before making the field read-only
2023-06-09 12:06:46 +05:30
s-aga-r
1d904c0a86
fix(ux): make qty field read-only for serial item
2023-06-09 12:05:02 +05:30
s-aga-r
93e3fe8445
fix: reset entries qty to 1
for serial item
2023-06-09 11:10:47 +05:30
s-aga-r
446253ff39
fix: TypeError
in Closing Stock Balance
2023-06-09 09:30:24 +05:30
Didiman1998
0c12d4d3c5
fix: remove code that causes upscrolling ( #35140 )
...
Co-authored-by: Dietmar Fischer <fischer@kk-software.de>
2023-06-07 22:35:44 +05:30
rohitwaghchaure
930a107af8
Merge pull request #35567 from s-aga-r/FIX-SBB-STATUS
...
fix(ux): serial and batch bundle status
2023-06-07 14:49:43 +05:30
DaizyModi
5155d5bfb2
chore: remove whitelisting for methods not accessed from UI
2023-06-07 12:05:17 +05:30
Ankush Menat
4507cb3cd7
fix: enqueue_after_commit
wherever it makes sense ( #35588 )
2023-06-07 11:58:36 +05:30
s-aga-r
d6208d2e45
fix(ux): serial and batch bundle status
2023-06-06 12:07:46 +05:30
Rohit Waghchaure
dcb0462d51
fix: added validation for insufficient stock during stock transfer
2023-06-05 16:58:54 +05:30
rohitwaghchaure
64f767b95d
Merge pull request #35552 from rohitwaghchaure/fixed-serial-batch-get-query
...
fix: get_query for batch number and incorrect batch qty
2023-06-04 16:56:46 +05:30
Rohit Waghchaure
acd12c5830
fix: get_query for batch number and incorrect batch qty
2023-06-04 16:09:01 +05:30
Sagar Sharma
5ebf46a1b5
Merge pull request #35510 from s-aga-r/FIX-ISS-23-24-01141
...
fix: ignore `Non-Stock Item` while calculating `% Picked` in Sales Order
2023-06-03 11:18:05 +05:30
Rohit Waghchaure
bb95451db6
feat: added jinja method get_serial_or_batch_nos for print format and new print format 'Purchase Receipt Serial and Batch Bundle Print for reference
2023-06-02 17:14:18 +05:30
Rohit Waghchaure
40ab3bdd35
test: test cases for serial and batch bundle
2023-06-02 17:14:18 +05:30
Rohit Waghchaure
42b229435c
fix: stock reco test case for serial and batch bundle
2023-06-02 17:14:18 +05:30
Rohit Waghchaure
f4cfc589c6
fix: serial and batch selector
2023-06-02 17:14:18 +05:30
Rohit Waghchaure
26b39ac7f4
fix: travis for asset capitalization and asset repair
2023-06-02 17:14:18 +05:30
Rohit Waghchaure
e88c5d6d90
fix: travis for subcontracting module
2023-06-02 17:14:18 +05:30
Rohit Waghchaure
f79f2a3bab
fix: dialog issue
2023-06-02 17:14:18 +05:30
Rohit Waghchaure
74ab20f97a
fix: travis for POS merge invoice and putaway rule
2023-06-02 17:14:18 +05:30
Rohit Waghchaure
f8bf4aa7c8
fix: travis for work order, pos invoice and landed cost voucher
2023-06-02 17:14:17 +05:30
Rohit Waghchaure
48fbf99e6d
fix: travis for sales and purchase invoice
2023-06-02 17:14:17 +05:30
Rohit Waghchaure
d3ceb07936
fix: travis
2023-06-02 17:14:17 +05:30
Rohit Waghchaure
f704eb7581
fix: average batch wise valuation
2023-06-02 17:14:17 +05:30
Rohit Waghchaure
854b89f252
fix: batch valuation for old entries
2023-06-02 17:14:17 +05:30
Rohit Waghchaure
c2d7461d3c
fix: travis issue
2023-06-02 17:14:17 +05:30
Rohit Waghchaure
7290dd87be
fix: linters and travis
2023-06-02 17:14:16 +05:30
Rohit Waghchaure
9b72845f0f
feat: serial and batch bundle for pick list
2023-06-02 17:14:16 +05:30
Rohit Waghchaure
648efca940
feat: auto create serial and batch bundle
2023-06-02 17:14:16 +05:30
Rohit Waghchaure
c1132d1e6d
fix: serial and batch selector and added deprecated decorator
2023-06-02 17:14:16 +05:30
Rohit Waghchaure
440510337c
fix: travis
2023-06-02 17:14:16 +05:30
Rohit Waghchaure
0eaf6de5de
feat: serial and batch bundle for POS
2023-06-02 17:14:16 +05:30
Rohit Waghchaure
467046436b
refactor: serial no ledger and batchwise balance history report
2023-06-02 17:14:16 +05:30
Rohit Waghchaure
ba6e1447ef
refactor: serial and batch bundle for Maintenance Schedule
2023-06-02 17:14:16 +05:30
Rohit Waghchaure
e50e5cc7b1
feat: serial and batch bundle for GIT stock entry
2023-06-02 17:14:15 +05:30
Rohit Waghchaure
5bb3173676
refactor: rename doctype serial and batch ledger to serial and batch entry
2023-06-02 17:14:15 +05:30
Rohit Waghchaure
16f26fb3d8
refactor: serial and batch package creation for finished item and cleanup code
2023-06-02 17:14:15 +05:30
Rohit Waghchaure
86da306cca
feat: added negative inventory validation and restrict to make backdated entry for serial nos
2023-06-02 17:14:15 +05:30
Rohit Waghchaure
674bd3e2e5
feat: serial and batch bundle for Packing Items
2023-06-02 17:14:15 +05:30
Rohit Waghchaure
9c097e85f8
feat: serial and batch bundle for Stock Reconciliation
2023-06-02 17:14:14 +05:30
Rohit Waghchaure
5ddd55a8ae
feat: serial and batch bundle for Subcontracting
2023-06-02 17:14:14 +05:30
Rohit Waghchaure
e6143abb8a
refactor: added new file serial batch bundle
2023-06-02 17:14:14 +05:30
Rohit Waghchaure
f1b5966680
refactor: serial and batch reposting
2023-06-02 17:14:14 +05:30
Rohit Waghchaure
6c9b212dd1
fix: removed sales and purchase fields from serial nos
2023-06-02 17:14:14 +05:30
Rohit Waghchaure
ba1aac1613
chore: used frappe.db.bulk_insert to create serial nos and serial bunndle
2023-06-02 17:14:14 +05:30
Rohit Waghchaure
bc75a7ef44
refactor: serial no normalization
2023-06-02 17:14:14 +05:30
s-aga-r
0fa56bcdce
test: add test case for update stock reconciliation doc
...
(cherry picked from commit 5c9506c8ca26899536be823755f1bbb747716e01)
2023-06-01 15:55:28 +00:00
s-aga-r
88a3f65d3d
fix: update Stock Reconciliation
document while reposting
...
(cherry picked from commit cc95cedfee3c09037a97574ca1a04b2d98c72965)
2023-06-01 15:55:28 +00:00
Sagar Sharma
ebf03a51f3
Merge pull request #35525 from s-aga-r/FIX-STOCK-RESERVATION-TEST-CASE
...
fix(test): `test_stock_reservation_against_sales_order`
2023-06-01 19:41:12 +05:30
rohitwaghchaure
fe6a0a6c30
Merge pull request #35498 from rohitwaghchaure/fixed-db-binlogs-getting-full
...
fix: old data reposting causing low server disk space
2023-06-01 19:28:03 +05:30
s-aga-r
4044c2ed40
fix(test): test_stock_reservation_against_sales_order
2023-06-01 17:00:57 +05:30
s-aga-r
03d7742737
fix: ignore Non-Stock Item
mapping in Pick List
2023-06-01 14:18:39 +05:30
Rohit Waghchaure
fb1a40cada
fix: old data reposting causing low server disk space
2023-05-31 18:20:56 +05:30
rohitwaghchaure
cb19ebcd85
Merge pull request #35482 from rohitwaghchaure/fixed-stock-entry-missing-bom-details
...
fix: missing bom details in the stock entry
2023-05-31 17:29:19 +05:30
Ankush Menat
4bdd276f74
Merge pull request #35409 from nabinhait/workspace-cleanup
...
refactor: Workspace cleanup
2023-05-31 16:40:26 +05:30
s-aga-r
1905239ec2
fix(ux): throw if no row selected to create repost entries
2023-05-31 15:30:45 +05:30
Rohit Waghchaure
2fc7d82324
fix: missing bom details in the stock entry
2023-05-30 18:22:48 +05:30
Nabin Hait
243c49c550
refactor: Workspace cleanup
2023-05-30 13:17:59 +05:30
Marc de Lima Lucio
6954f538c9
fix: retention stock entry: grab conversion factor from source
2023-05-29 17:41:14 +02:00
Ankush Menat
964bb1d948
chore: docs for stock settings
...
[skip ci]
2023-05-29 15:11:28 +05:30
Ankush Menat
8fe8f80033
fix: replace stock projected with ledger
...
Ledger is much more widely used report, better to show that first?
2023-05-29 14:44:54 +05:30
Ankush Menat
dd245ccc7f
fix: reorder stock reco tour
2023-05-29 14:44:54 +05:30
Ankush Menat
3341cd6b80
fix: filter parent warehouses by company
2023-05-29 14:44:54 +05:30
Ankush Menat
aa9f926298
fix: warehouse tour
...
- remove warehouse type, it doesn't do what it says. Misleading.
2023-05-29 14:44:54 +05:30
Ankush Menat
81e901ba62
fix: disable/enable with button
2023-05-29 14:44:54 +05:30
Ankush Menat
40ce33dff1
fix: warehouse form cleanup
...
- organize fields
- group transit fields and move them lower
- enable/disable should be button
- hide pointless fields from listview
2023-05-29 14:44:54 +05:30
Ankush Menat
7a18db561f
fix: hide ledger button on new warehouse
2023-05-29 14:44:54 +05:30
Ankush Menat
2e13fbab5e
fix: stock settings tour
...
- remove dead fields
- Keep only essential fields in tour
2023-05-29 14:44:50 +05:30
rohitwaghchaure
4099330bf4
Merge pull request #35426 from rohitwaghchaure/fixed-incorrect-actual-qty-bin
...
fix: incorrect available quantity in BIN
2023-05-26 22:47:42 +05:30
Sagar Sharma
8cc8af8204
Merge branch 'develop' into stock-reservation
2023-05-26 15:28:54 +05:30
Rohit Waghchaure
718ad3f240
fix: travis
2023-05-26 11:29:22 +05:30
Sagar Sharma
761f8a9f05
fix: use float_precision
while checking for negative stock in BIN
2023-05-26 04:23:36 +05:30
Rohit Waghchaure
9e5e2de5d5
fix: incorrect available quantity in BIN
2023-05-25 23:56:23 +05:30
Sagar Sharma
6f0867b006
Merge branch 'develop' into PACKING-SLIP-FOR-DN-PACKED-ITEMS
2023-05-25 18:04:06 +05:30
Sagar Sharma
c4e1f927ee
chore: typo in stock balance
2023-05-25 16:03:15 +05:30
Sagar Sharma
82f0bd9ee9
feat: add Reserved Stock
column in Stock Balance
Report
2023-05-25 15:57:06 +05:30
Sagar Sharma
ccb2dc4df5
Merge branch 'develop' into stock-reservation
2023-05-25 14:35:59 +05:30
Sagar Sharma
2813042936
Merge branch 'develop' into PACKING-SLIP-FOR-DN-PACKED-ITEMS
2023-05-24 14:35:51 +05:30
rohitwaghchaure
565322daba
Merge branch 'develop' into stock-reservation
2023-05-24 14:32:04 +05:30
Rohit Waghchaure
3f548ac910
fix: Stock Analytics and Warehouse wise Item Balance Age and Value issue
2023-05-23 17:06:11 +05:30
Rohit Waghchaure
545b2d32cd
fix: balance quantity
2023-05-23 17:06:11 +05:30
Rohit Waghchaure
d9979b2ffb
refactor: stock balance report
2023-05-23 17:06:11 +05:30
Sagar Sharma
a111917114
fix: Pick List TypeError
2023-05-23 12:57:48 +05:30
Sagar Sharma
7e4dc11c4c
Merge branch 'develop' into PACKING-SLIP-FOR-DN-PACKED-ITEMS
2023-05-21 08:34:41 +05:30
rohitwaghchaure
44cd76bb48
Merge pull request #35365 from rohitwaghchaure/create-reposting-entries-from-report
...
feat: provision to make reposting entries from Stock and Account Value Comparison Report
2023-05-20 17:06:13 +05:30
Rohit Waghchaure
7b818e9d34
feat: provision to make reposting entries from Stock and Account Value Comparison Report
2023-05-19 18:53:40 +05:30
Sagar Sharma
44b0bc2d76
Merge branch 'develop' into PACKING-SLIP-FOR-DN-PACKED-ITEMS
2023-05-19 09:20:21 +05:30
rohitwaghchaure
ffb353032d
Merge branch 'develop' into get_incoming_rate_v14_fix
2023-05-18 06:13:52 +05:30
Sagar Sharma
fcea907cf9
Merge branch 'develop' into FIX-35014
2023-05-17 16:09:21 +05:30
Sagar Sharma
9fb8b1827d
fix: Pick List Status
2023-05-17 16:07:58 +05:30
Sagar Sharma
42804306fd
Merge branch 'develop' into PACKING-SLIP-FOR-DN-PACKED-ITEMS
2023-05-17 13:17:59 +05:30
Rohit Waghchaure
6e661e7c0e
fix: force to do reposting for cancelled document
2023-05-16 16:23:52 +05:30
rohitwaghchaure
5c2d7701ea
Merge pull request #35312 from rohitwaghchaure/fixed-item-list-view-not-working
...
fix: item list view not working
2023-05-16 01:09:44 +05:30
Rohit Waghchaure
0489e30244
fix: item list view not working
2023-05-16 00:48:52 +05:30
rohitwaghchaure
8afbb06a33
Merge branch 'develop' into FIX-ISS-23-24-00368
2023-05-15 13:42:20 +05:30