Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
李洋
/
消息系统
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
294256d2
authored
Dec 11, 2017
by
李洋
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
添加事务 保证 数据库多条修改时 原子操作
parent
ff1bf2cd
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
5 deletions
app/Http/Controllers/MessageApiController.php
app/Http/Controllers/MessageApiController.php
View file @
294256d2
...
...
@@ -39,27 +39,30 @@ class MessageApiController extends Controller
$this
->
Export
(
11002
,
'请输入模板描述'
);
}
//添加事务 保证 数据库多条修改时 原子操作
DB
::
beginTransaction
();
try
{
//消息模板模型
$db
=
DB
::
connection
(
'message'
)
->
table
(
'lie_msg_tpl'
);
$tpl_model
=
[];
$tpl_model
[
'tpl_id'
]
=
$data
[
'tpl_id'
];
$tpl_model
[
'channels'
]
=
$data
[
'channels'
];
$tpl_model
[
'description'
]
=
$data
[
'description'
];
$tpl_model
[
'source_type'
]
=
$data
[
'source_type'
];
$tpl_model
[
'creater'
]
=
$data
[
'creater'
];
// $tpl_model['obj_user'] = $data['obj_user'];
// $tpl_model['obj_user'] = $data['obj_user'];
$tpl_model
[
'msg_type'
]
=
$data
[
'msg_type'
];
//添加事务
if
(
empty
(
$tpl_model
[
'tpl_id'
]))
{
$tpl_model
[
'create_time'
]
=
time
();
$tpl_model
[
'update_time'
]
=
time
();
$insert_tpl_id
=
$db
->
insertGetId
(
$tpl_model
);
$insert_tpl_id
=
DB
::
connection
(
'message'
)
->
table
(
'lie_msg_tpl'
)
->
insertGetId
(
$tpl_model
);
if
(
!
$insert_tpl_id
)
{
$this
->
Export
(
11020
,
'新增消息模板失败'
);
}
}
else
{
$tpl_model
[
'update_time'
]
=
time
();
$result
=
$db
->
where
(
'tpl_id'
,
$tpl_model
[
'tpl_id'
])
->
update
(
$tpl_model
);
$result
=
DB
::
connection
(
'message'
)
->
table
(
'lie_msg_tpl'
)
->
where
(
'tpl_id'
,
$tpl_model
[
'tpl_id'
])
->
update
(
$tpl_model
);
$insert_tpl_id
=
$tpl_model
[
'tpl_id'
];
if
(
!
$result
)
{
$this
->
Export
(
11021
,
'编辑消息模板失败'
);
...
...
@@ -157,7 +160,7 @@ class MessageApiController extends Controller
$chn_tpl_model_email
[
'update_time'
]
=
time
();
$result
=
DB
::
connection
(
'message'
)
->
table
(
'lie_msg_channel_tpl'
)
->
where
(
'channel_tpl_id'
,
$chn_tpl_model_email
[
'channel_tpl_id'
])
->
update
(
$chn_tpl_model_email
);
if
(
!
$result
)
{
$this
->
Export
(
11016
,
'编辑消息模板失败'
,
$result
);
$this
->
Export
(
11016
,
'编辑消息模板失败'
,
$result
);
}
}
}
...
...
@@ -185,6 +188,10 @@ class MessageApiController extends Controller
}
}
}
DB
::
commit
();
}
catch
(
\Exception
$e
){
DB
::
rollBack
();
}
$this
->
Export
(
0
,
empty
(
$tpl_model
[
'tpl_id'
])
?
'新增成功'
:
'修改成功'
);
}
//编辑手动消息
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment