mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-25 16:04:46 +00:00
fix: update_child_qty_rate() missing argument (#20838)
This commit is contained in:
@@ -439,12 +439,13 @@ erpnext.utils.update_child_items = function(opts) {
|
|||||||
const dialog = new frappe.ui.Dialog({
|
const dialog = new frappe.ui.Dialog({
|
||||||
title: __("Update Items"),
|
title: __("Update Items"),
|
||||||
fields: [
|
fields: [
|
||||||
{fieldtype:'Section Break', label: __('Items')},
|
|
||||||
{
|
{
|
||||||
fieldname: "trans_items",
|
fieldname: "trans_items",
|
||||||
fieldtype: "Table",
|
fieldtype: "Table",
|
||||||
|
label: "Items",
|
||||||
cannot_add_rows: cannot_add_row,
|
cannot_add_rows: cannot_add_row,
|
||||||
in_place_edit: true,
|
in_place_edit: true,
|
||||||
|
reqd: 1,
|
||||||
data: this.data,
|
data: this.data,
|
||||||
get_data: () => {
|
get_data: () => {
|
||||||
return this.data;
|
return this.data;
|
||||||
|
|||||||
Reference in New Issue
Block a user