修正流程引擎多人执行模式bug
This commit is contained in:
@@ -44,10 +44,10 @@ class AllocationHook
|
||||
->get(['stock_allocation_data.*', 'product.code as product_code']);
|
||||
// 同步数据到外部接口
|
||||
$ret = plugin_sync_api('postTransVouch', ['master' => $master, 'rows' => $rows]);
|
||||
if ($ret['success'] == true) {
|
||||
return $params;
|
||||
}
|
||||
abort_error($ret['msg']);
|
||||
if ($ret['error_code'] > 0) {
|
||||
abort_error($ret['msg']);
|
||||
}
|
||||
return $params;
|
||||
}
|
||||
|
||||
public function onBeforeAbort($params) {
|
||||
@@ -56,7 +56,7 @@ class AllocationHook
|
||||
// 检查外部接口单据是否存在
|
||||
$ret = plugin_sync_api('getVouchExist', ['table' => 'TransVouch', 'field' => 'cTVCode', 'value' => $master['sn']]);
|
||||
if ($ret['msg'] > 0) {
|
||||
abort_error('用友存在其他入库单['.$master['sn'].']无法弃审。');
|
||||
abort_error('存在其他入库单['.$master['sn'].']无法弃审。');
|
||||
}
|
||||
return $params;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user