Commit c6dd57e3 by 朱继来

添加合同备注

parent 7f04de96
...@@ -416,7 +416,7 @@ ...@@ -416,7 +416,7 @@
$('.edit-item').click(function() { $('.edit-item').click(function() {
layer.open({ layer.open({
type: 1, type: 1,
area: ['1000px', '500px'], area: ['1200px', '500px'],
title:'编辑明细', title:'编辑明细',
content: $('#edit-items'), content: $('#edit-items'),
btn:['确认', '取消'], btn:['确认', '取消'],
......
...@@ -62,7 +62,8 @@ ...@@ -62,7 +62,8 @@
<th>生产跟踪</th> <th>生产跟踪</th>
<?php } ?> <?php } ?>
<th>备注</th> <th>商品备注</th>
<th>合同备注</th>
<th>状态</th> <th>状态</th>
</tr> </tr>
</thead> </thead>
...@@ -139,6 +140,7 @@ ...@@ -139,6 +140,7 @@
<?php } ?> <?php } ?>
<td><?= !empty($v['remarks']) ? $v['remarks'] : '' ?></td> <td><?= !empty($v['remarks']) ? $v['remarks'] : '' ?></td>
<td><?= !empty($v['contract_remark']) ? $v['contract_remark'] : '' ?></td>
<td><?= $v['status'] == 1 ? '正常' : '<i class="error">已关闭</i>' ?></td> <td><?= $v['status'] == 1 ? '正常' : '<i class="error">已关闭</i>' ?></td>
</tr> </tr>
......
...@@ -18,7 +18,8 @@ ...@@ -18,7 +18,8 @@
<th>采购员</th> <th>采购员</th>
@endif @endif
<th>批次</th> <th>批次</th>
<th>备注</th> <th>商品备注</th>
<th>合同备注</th>
</tr> </tr>
</thead> </thead>
...@@ -44,7 +45,10 @@ ...@@ -44,7 +45,10 @@
<input type="text" class="form-control edit_batch" name="change_item[{{ $item['rec_id'] }}][batch]" value="{{ $item['batch'] }}" placeholder="请填写批次" > <input type="text" class="form-control edit_batch" name="change_item[{{ $item['rec_id'] }}][batch]" value="{{ $item['batch'] }}" placeholder="请填写批次" >
</td> </td>
<td> <td>
<input type="text" class="form-control edit_remarks" name="change_item[{{ $item['rec_id'] }}][remarks]" value="{{ $item['remarks'] }}" placeholder="请填写备注" style="width:200px;"> <input type="text" class="form-control edit_remarks" name="change_item[{{ $item['rec_id'] }}][remarks]" value="{{ $item['remarks'] }}" placeholder="请填写商品备注" style="width:200px;">
</td>
<td>
<input type="text" class="form-control edit_contract_remark" name="change_item[{{ $item['rec_id'] }}][contract_remark]" value="{{ $item['contract_remark'] }}" placeholder="请填写合同备注" style="width:200px;">
</td> </td>
</tr> </tr>
......
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