|
@@ -33,7 +33,8 @@ class InquiryHandle extends AbstractTool
|
|
|
// return '您确定要发送新的提醒消息吗?';
|
|
|
|
|
|
// 显示标题和内容
|
|
|
- return ['Are you sure you want to process these orders?', ''];
|
|
|
+ $msg = admin_trans_label('confirm_process_inquiry');
|
|
|
+ return [$msg, ''];
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -50,7 +51,7 @@ class InquiryHandle extends AbstractTool
|
|
|
if ($result === false) {
|
|
|
return $this->response()->error('Failed to process!')->refresh();
|
|
|
}
|
|
|
- return $this->response()->success('Success')->refresh();
|
|
|
+ return $this->response()->success(admin_trans_label('update_success'))->refresh();
|
|
|
} else {
|
|
|
return $this->response()->error('No data selected!')->refresh();
|
|
|
}
|
|
@@ -61,19 +62,22 @@ class InquiryHandle extends AbstractTool
|
|
|
|
|
|
|
|
|
public function actionScript(){
|
|
|
- $warning = __('No data selected!');
|
|
|
+ $warning = admin_trans_label('no_selected_data');
|
|
|
|
|
|
return <<<JS
|
|
|
function (data, target, action) {
|
|
|
- var key = {$this->getSelectedKeysScript()}
|
|
|
-
|
|
|
- if (key.length === 0) {
|
|
|
+ try {
|
|
|
+ var key = {$this->getSelectedKeysScript()}
|
|
|
+ if (key.length === 0) {
|
|
|
+ Dcat.warning('{$warning}');
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ // 设置主键为复选框选中的行ID数组
|
|
|
+ action.options.key = key;
|
|
|
+ } catch (e) {
|
|
|
Dcat.warning('{$warning}');
|
|
|
return false;
|
|
|
}
|
|
|
-
|
|
|
- // 设置主键为复选框选中的行ID数组
|
|
|
- action.options.key = key;
|
|
|
}
|
|
|
JS;
|
|
|
}
|