* [bug54212,done,0.2h] The value of the branch control should be obtained.

This commit is contained in:
hufangzhou
2024-09-09 14:03:04 +08:00
committed by 王于听
parent 6d7cadd917
commit 4fc43280f9
+1 -1
View File
@@ -160,7 +160,7 @@ window.removeLine = function(e)
window.loadPlans = function(product, branch)
{
const $productPicker = $(product).zui('picker').$;
const $branchPicker = $(product).zui('picker').$;
const $branchPicker = $(branch).zui('picker').$;
let productID = $productPicker.value;
let branchID = $branchPicker.value == null || ($branchPicker.value.length == 1 && $branchPicker.value[0] == '') ? 0 : '0,' + $branchPicker.value;