Commit 821b0357 by 杨树贤

修复关闭问题

parent 78ed6dfa
...@@ -219,7 +219,7 @@ class SupplierContactApiController extends Controller ...@@ -219,7 +219,7 @@ class SupplierContactApiController extends Controller
$originName = (new AdminUserService())->getAdminUserNameByCodeId($originCanCheckUids); $originName = (new AdminUserService())->getAdminUserNameByCodeId($originCanCheckUids);
$newName = (new AdminUserService())->getAdminUserNameByCodeId($newCanCheckUids); $newName = (new AdminUserService())->getAdminUserNameByCodeId($newCanCheckUids);
foreach ($contactList as $contact) { foreach ($contactList as $contact) {
(new LogService())->AddLog($supplierId, LogModel::UPDATE_OPERATE, '转移供应商联系人', "供应商联系人 {$contact['supplier_consignee']}{$originName} 转移到 {$newName} "); (new LogService())->AddLog($supplierId, LogModel::UPDATE_OPERATE, '转移供应商联系人', "供应商联系人 {$contact['supplier_consignee']}{$originName} 交接给 {$newName} ");
} }
//最后直接去批量修改即可 //最后直接去批量修改即可
......
...@@ -5,6 +5,9 @@ ...@@ -5,6 +5,9 @@
let table = layui.table let table = layui.table
let element = layui.element; let element = layui.element;
form.on('submit(cancel)', function (data) {
admin.closeThisDialog();
});
form.on('submit(transferSupplier)', function (data) { form.on('submit(transferSupplier)', function (data) {
admin.showLoading({ admin.showLoading({
type: 3, type: 3,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment