Commit 5dca49fd by Trần Văn Minh

cập nhật thông tin bài hát

parent 57bd233d
......@@ -89,15 +89,15 @@ class CmsTrack extends CI_Controller
$title = $this->input->post('title');
$update_singer = $this->input->post('update_singer');
$singer = $contest[0]['id_singer'];
$artist = $contest[0]['id_artist'];
$singer = $track_user[0]['user_id'];
$artist = $track_artists[0]['user_id'];
$update_artist = $this->input->post('update_artist');
$id_singer = ($update_singer > 0) ? $update_singer: $singer;
$id_artist = ($update_artist > 0) ? $update_artist: $artist;
$id_artists = ($update_artist > 0) ? $update_artist: $artist;
($singer || $id_user) ? $active_singer = 'update': $active_singer = 'insert';
($artist || $id_artist) ? $active_artist = 'update': $active_artist = 'insert';
// die($active_artist.$active_singer);
$this->track_model->update_track_artists($contest_id, $id_artist, $id_artist, $active_artist);
// die($id_singer.$id_artists);
$this->track_model->update_track_artists($contest_id, $id_artists, $id_artist, $active_artist);
$this->track_model->update_track_user($contest_id, $id_singer, $id_user, $active_singer);
$this->track_model->update($contest_id, $title);
// Ghi log
......
......@@ -61,7 +61,7 @@ $input_artist = array(
</div>
</div>
<div class="form-group">
<label class="col-lg-3">Tên ca sĩ hiện tại (*)<?php echo $track_user[0]['id']; ?></label>
<label class="col-lg-3">Tên ca sĩ hiện tại (*)</label>
<div class="col-lg-3">
<?php
echo form_input($input_singer);
......@@ -69,7 +69,7 @@ $input_artist = array(
</div>
</div>
<div class="form-group">
<label class="col-lg-3">Tên nhạc sĩ hiện tại(*)<?php echo $track_artists[0]['id']; ?></label>
<label class="col-lg-3">Tên nhạc sĩ hiện tại(*)</label>
<div class="col-lg-3">
<?php
echo form_input($input_artist);
......@@ -77,7 +77,7 @@ $input_artist = array(
</div>
</div>
<div class="form-group">
<label class="col-lg-3">Cập nhật Tên Ca sĩ (*)</label>
<label class="col-lg-3">Cập nhật Tên Ca sĩ</label>
<div class="col-lg-3">
<select id='form-field-select-3' name="update_singer" style='width: 200px;' class="chosen-select form-control"
data-placeholder="Choose a State...">
......@@ -91,7 +91,7 @@ $input_artist = array(
</div>
</div>
<div class="form-group">
<label class="col-lg-3">Cập nhập Tên nhạc sĩ (*)</label>
<label class="col-lg-3">Cập nhập Tên nhạc sĩ</label>
<div class="col-lg-3">
<select id='form-field-select-3' name="update_artist" style='width: 200px;' class="chosen-select form-control"
data-placeholder="Choose a State...">
......@@ -124,7 +124,9 @@ $input_artist = array(
</div>
</div>
<?php echo form_close(); ?>
<p class="text-danger">Chú ý: Có thể cập nhật lại ca sĩ hoặc nhạc sĩ.</p>
</div>
</div>
</div>
</div><!-- /.row -->
......
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 to comment