|
@@ -47,13 +47,13 @@
|
|
<a-input-number
|
|
<a-input-number
|
|
v-if="record.isEdit"
|
|
v-if="record.isEdit"
|
|
size="small"
|
|
size="small"
|
|
- v-model="record.qty"
|
|
|
|
|
|
+ v-model="record.initialQty"
|
|
:precision="0"
|
|
:precision="0"
|
|
:min="0"
|
|
:min="0"
|
|
placeholder="请输入"
|
|
placeholder="请输入"
|
|
style="width: 100%;" />
|
|
style="width: 100%;" />
|
|
<span v-else>
|
|
<span v-else>
|
|
- {{ record.qty }}
|
|
|
|
|
|
+ {{ record.initialQty }}
|
|
</span>
|
|
</span>
|
|
</template>
|
|
</template>
|
|
<!-- 仓库实收数量 -->
|
|
<!-- 仓库实收数量 -->
|
|
@@ -256,7 +256,7 @@ export default {
|
|
{ title: '产品编码', dataIndex: 'productEntity.code', align: 'center', width: '13%', customRender: function (text) { return text || '--' } },
|
|
{ title: '产品编码', dataIndex: 'productEntity.code', align: 'center', width: '13%', customRender: function (text) { return text || '--' } },
|
|
{ title: '产品名称', dataIndex: 'productEntity.name', width: '25%', align: 'left', customRender: function (text) { return text || '--' } },
|
|
{ title: '产品名称', dataIndex: 'productEntity.name', width: '25%', align: 'left', customRender: function (text) { return text || '--' } },
|
|
{ title: '单位', dataIndex: 'productEntity.unit', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '单位', dataIndex: 'productEntity.unit', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
- { title: '申请退货数量', dataIndex: 'qty', align: 'center', width: '10%', scopedSlots: { customRender: 'qty' } },
|
|
|
|
|
|
+ { title: '申请退货数量', dataIndex: 'initialQty', align: 'center', width: '10%', scopedSlots: { customRender: 'qty' } },
|
|
{ title: '仓库实收数量', dataIndex: 'receiveQty', align: 'center', width: '10%', scopedSlots: { customRender: 'receiveQty' } },
|
|
{ title: '仓库实收数量', dataIndex: 'receiveQty', align: 'center', width: '10%', scopedSlots: { customRender: 'receiveQty' } },
|
|
{ title: '坏件数量', dataIndex: 'badQty', align: 'center', width: '10%', scopedSlots: { customRender: 'badQty' } },
|
|
{ title: '坏件数量', dataIndex: 'badQty', align: 'center', width: '10%', scopedSlots: { customRender: 'badQty' } },
|
|
{ title: '良品数量', dataIndex: 'goodQty', align: 'center', width: '10%', scopedSlots: { customRender: 'goodQty' } },
|
|
{ title: '良品数量', dataIndex: 'goodQty', align: 'center', width: '10%', scopedSlots: { customRender: 'goodQty' } },
|