{{ searchxianshitit }}
-
diff --git a/anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangtaizhang/cheliangtaizhangInfo.vue b/anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangtaizhang/cheliangtaizhangInfo.vue
index 74403cd547..8c138f4a90 100644
--- a/anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangtaizhang/cheliangtaizhangInfo.vue
+++ b/anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangtaizhang/cheliangtaizhangInfo.vue
@@ -3,188 +3,211 @@
-
+
车辆台账信息
- 车型名称:
-
+ 金额单位:元
+
+
+
+
+ 采购系统:
+ {{ temp.purchaseSystemName }}
+
+
+
+ 车型(配置简述):
{{ temp.modelName }}
- 常用配置:
-
+
+
+
+ 常用配置:
{{ temp.configName }}
- 库存状态:
-
+
- {{ temp.vehicleStateValue }}
+ 车架号:
+ {{ temp.vinNo }}
- 车架号:
- {{ temp.vinNo }}
+ 内部编码:
+ {{ temp.insideCode }}
+
+
+
+
+ 发动机号:
+ {{ temp.engineNo }}
- 内部编码:
-
+
- {{ temp.insideCode }}
+ 采购类型:
+ {{ temp.manPurOrderTypeValue }}
-
-
-
-
-
-
- 厂家订单编码:
-
+
+ 排产订单编号:
{{ temp.orderingNo }}
+
+
+ 是否为问题车辆:
+ {{ temp.isProblemVeh === '1' ? '是' : '否' }}
+
+
- 厂家采购订单类型:
-
+
- {{ temp.manPurOrderTypeValue }}
+ 锁定状态:
+ {{ temp.lockedStateValue }}
- 厂家入库日期:
-
+
+ 库存状态:
+ {{ temp.vehicleStateValue }}
+
+
+
+
+ 厂家入库日期:
{{ temp.priceDate }}
- 发车日期:
-
+
+ 物流发车日期:
{{ temp.departureDate }}
- 到货日期:
-
+
+ 物流到车日期:
{{ temp.arrivalDate }}
-
-
- 销售日期:
-
+
- {{ temp.salesDate }}
+ 退库日期:
+ {{ temp.returnDate }}
- 买断日期:
-
+
+
+
- {{ temp.solidDate }}
+ 存放地点:
+ {{ temp.locationName }}
-
-
- 结算状态:
-
+
- {{ temp.settlementStatus }}
+ 厂家回款通路:
+ {{ temp.manufSaleAccessName }}
- 采购退库日期:
-
+
- {{ temp.returnDate }}
+ 保修卡号:
+ {{ temp.warrantyCardNo }}
- 存放地点:
-
+
- {{ temp.locationName }}
+ 厂家合同价(含运费):
+ {{ temp.contractPrice }}
- 厂家入库价:
-
+
+ 厂家结算价(含运费):
{{ temp.costPrice }}
+
+
+ 运费:
+ {{ temp.freight }}
+
+
- 成交价:
-
+
- {{ temp.salePrice }}
+ 买断状态:
+ {{ temp.settlementStatus }}
- 保修卡号:
-
+
- {{ temp.warrantyCardNo }}
+ 买断备注:
+ {{ temp.rebate1 }}
+
+
+
+
+ 买断日期:
+ {{ temp.solidDate }}
- 锁定状态:
-
+
- {{ temp.lockedStateValue }}
+ 全款/贷款销售指导价:
+ {{ temp.price }}
- 使用组织:
-
+
- {{ temp.useOrgName }}
+ 销售成交价:
+ {{ temp.salePrice }}
-
-
- 创建组织:
-
+
- {{ temp.createOrgName }}
+ 销售日期:
+ {{ temp.salesDate }}
- 特殊说明:
-
+
+
+
- {{ temp.specialInstructions }}
+ 备注:
+ {{ temp.remarks }}
-
-
-
-
-
-
-
-
-
diff --git a/anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangtaizhang/relation/cheliangtaizhangChu.vue b/anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangtaizhang/relation/cheliangtaizhangChu.vue
index 21e636df9b..f29663f397 100644
--- a/anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangtaizhang/relation/cheliangtaizhangChu.vue
+++ b/anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangtaizhang/relation/cheliangtaizhangChu.vue
@@ -229,6 +229,7 @@ export default {
staffSid: '', // 销售专员sid
type: '', // 出库类型
typeKey: '', // 出库类型Key
+ createOrgSid: ''
},
payType_list: [], // 出库类型
org_list: [], // 销售部门
@@ -318,19 +319,27 @@ export default {
this.temp.middleTwoSid = choosetItem[0].middleSid
this.temp.middleCodeTwo = choosetItem[0].middleCode
},
- showChu(multipleSelection) {
+ showChu(multipleSelection, createOrgSid) {
this.temp.vinNo = multipleSelection[0].vinNo
this.temp.vinSid = multipleSelection[0].sid
+ this.temp.createOrgSid = createOrgSid
this.getType()
},
// 保存
handleCreate() {
- vehicleOutLibrary(this.temp).then((response) => {
- if (response.success) {
- this.$message({ showClose: true, type: 'success', message: '保存成功' })
- this.handleReturn('true')
- }
- }).catch(e => {
+ const tip = '请确认是否临时出库?'
+ this.$confirm(tip, '提示', {
+ confirmButtonText: '确定',
+ cancelButtonText: '取消',
+ type: 'warning'
+ }).then(() => {
+ vehicleOutLibrary(this.temp).then((response) => {
+ if (response.success) {
+ this.$message({ showClose: true, type: 'success', message: '保存成功' })
+ this.handleReturn('true')
+ }
+ }).catch(e => {
+ })
})
},
// 返回
diff --git a/anrui-scm/anrui-scm-ui/src/views/cheliang/chexing/relation/chexingguanlianchangyong.vue b/anrui-scm/anrui-scm-ui/src/views/cheliang/chexing/relation/chexingguanlianchangyong.vue
index 3cdcbf7078..128cdc3776 100644
--- a/anrui-scm/anrui-scm-ui/src/views/cheliang/chexing/relation/chexingguanlianchangyong.vue
+++ b/anrui-scm/anrui-scm-ui/src/views/cheliang/chexing/relation/chexingguanlianchangyong.vue
@@ -147,6 +147,11 @@