|
@@ -25,7 +25,7 @@
|
|
<a-descriptions size="small" :column="3" v-if="detailData">
|
|
<a-descriptions size="small" :column="3" v-if="detailData">
|
|
<a-descriptions-item label="客户名称">{{ detailData.buyerName || '--' }}</a-descriptions-item>
|
|
<a-descriptions-item label="客户名称">{{ detailData.buyerName || '--' }}</a-descriptions-item>
|
|
<a-descriptions-item label="收货地址">{{ detailData.shippingAddressProvinceName || '--' }}{{ detailData.shippingAddressCityName || '--' }}{{ detailData.shippingAddressCountyName || '--' }}{{ detailData.shippingAddress || '--' }}</a-descriptions-item>
|
|
<a-descriptions-item label="收货地址">{{ detailData.shippingAddressProvinceName || '--' }}{{ detailData.shippingAddressCityName || '--' }}{{ detailData.shippingAddressCountyName || '--' }}{{ detailData.shippingAddress || '--' }}</a-descriptions-item>
|
|
- <a-descriptions-item label="收款方式">{{ detailData.settleStyleEntity.name || '--' }}</a-descriptions-item>
|
|
|
|
|
|
+ <a-descriptions-item label="收款方式">{{ detailData.settleStyleSn || '--' }}</a-descriptions-item>
|
|
<a-descriptions-item label="收货人">{{ detailData.operatorName || '--' }}</a-descriptions-item>
|
|
<a-descriptions-item label="收货人">{{ detailData.operatorName || '--' }}</a-descriptions-item>
|
|
<a-descriptions-item label="收货电话">{{ detailData.consigneeTel || '--' }}</a-descriptions-item>
|
|
<a-descriptions-item label="收货电话">{{ detailData.consigneeTel || '--' }}</a-descriptions-item>
|
|
<a-descriptions-item label="备注">{{ detailData.remarks || '--' }}</a-descriptions-item>
|
|
<a-descriptions-item label="备注">{{ detailData.remarks || '--' }}</a-descriptions-item>
|
|
@@ -70,7 +70,6 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
-import { getOperationalPrecision } from '@/libs/tools.js'
|
|
|
|
import { STable, VSelect } from '@/components'
|
|
import { STable, VSelect } from '@/components'
|
|
import { salesDetailBySn } from '@/api/sales'
|
|
import { salesDetailBySn } from '@/api/sales'
|
|
import { salesDetailList } from '@/api/salesDetail'
|
|
import { salesDetailList } from '@/api/salesDetail'
|
|
@@ -99,7 +98,7 @@ export default {
|
|
{ title: '成本价', dataIndex: 'realCost', width: 100, align: 'center', customRender: function (text) { return '¥' + (text || 0) } },
|
|
{ title: '成本价', dataIndex: 'realCost', width: 100, align: 'center', customRender: function (text) { return '¥' + (text || 0) } },
|
|
{ title: '销售价', dataIndex: 'price', width: 100, align: 'center', customRender: function (text) { return '¥' + (text || 0) } },
|
|
{ title: '销售价', dataIndex: 'price', width: 100, align: 'center', customRender: function (text) { return '¥' + (text || 0) } },
|
|
{ title: '单位', dataIndex: 'productOrigUnit', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '单位', dataIndex: 'productOrigUnit', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
|
|
- { title: '可用库存数量', dataIndex: 'totalAmount', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
|
|
+ { title: '可用库存数量', dataIndex: 'refundableQty', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '销售数量', dataIndex: 'qty', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '销售数量', dataIndex: 'qty', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '已取消数', dataIndex: 'cancelQty', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '已取消数', dataIndex: 'cancelQty', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '已下推数', dataIndex: 'pushedQty', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '已下推数', dataIndex: 'pushedQty', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
|