Commit c6dd57e3 by 朱继来

添加合同备注

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