|
|
|
@ -126,7 +126,7 @@
|
|
|
|
|
element-loading-text="Loading..." |
|
|
|
|
> |
|
|
|
|
<div class="el_div"> |
|
|
|
|
<el-form-item label="客户名称"> |
|
|
|
|
<el-form-item label="客户名称" prop="clientId"> |
|
|
|
|
<el-select |
|
|
|
|
filterable |
|
|
|
|
v-model="form.clientId" |
|
|
|
@ -145,7 +145,7 @@
|
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
</div> |
|
|
|
|
<el-form-item label="租用仓库"> |
|
|
|
|
<el-form-item label="租用仓库" prop="warehouseId"> |
|
|
|
|
<el-select |
|
|
|
|
v-model="form.warehouseId" |
|
|
|
|
placeholder="请选择租用仓库" |
|
|
|
@ -188,17 +188,11 @@
|
|
|
|
|
<el-input v-model="form.leasedArea" :disabled="form.type == 2" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<el-form-item label="月租金(元/月)"> |
|
|
|
|
<el-input-number v-model="form.monthlyRent" :min="0" :controls="false" :precision="2" /> |
|
|
|
|
<el-form-item label="月租金(元/月)" prop="monthlyRent"> |
|
|
|
|
<el-input-number v-model="form.monthlyRent" :min="1" :controls="false" :precision="2" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<el-form-item label="租赁合同时间"> |
|
|
|
|
<!-- <el-date-picker |
|
|
|
|
v-model="form.LeasecontractDate" |
|
|
|
|
type="date" |
|
|
|
|
placeholder="请选择开始时间" |
|
|
|
|
value-format="YYYY-MM-DD HH:mm:ss" |
|
|
|
|
/> --> |
|
|
|
|
<el-form-item label="租赁合同时间" prop="LeasecontractDate"> |
|
|
|
|
<el-date-picker |
|
|
|
|
v-model="form.LeasecontractDate" |
|
|
|
|
type="datetimerange" |
|
|
|
@ -364,10 +358,10 @@ const {
|
|
|
|
|
defaultTime2, |
|
|
|
|
} = toRefs(details); |
|
|
|
|
const rules = reactive({ |
|
|
|
|
name: [ |
|
|
|
|
{ required: true, message: 'Please input Activity name', trigger: 'blur' }, |
|
|
|
|
{ min: 3, max: 5, message: 'Length should be 3 to 5', trigger: 'blur' }, |
|
|
|
|
], |
|
|
|
|
clientId: [{ required: true, message: '请填写客户名称', trigger: 'u' }], |
|
|
|
|
warehouseId: [{ required: true, message: '请选择租用仓库', trigger: 'change' }], |
|
|
|
|
monthlyRent: [{ required: true, message: '请选填写月租金', trigger: 'change' }], |
|
|
|
|
LeasecontractDate: [{ required: true, message: '请选择租赁合同时间', trigger: 'change' }], |
|
|
|
|
}); |
|
|
|
|
/** 展开列表控件 */ |
|
|
|
|
const showdrawer = _flag => { |
|
|
|
@ -522,28 +516,63 @@ const PageOnload = () => {
|
|
|
|
|
PageOnload(); |
|
|
|
|
// 新增 |
|
|
|
|
const AddInfo = () => { |
|
|
|
|
dictList.value = []; |
|
|
|
|
form.value = { |
|
|
|
|
clientId: '', //客户名称ID |
|
|
|
|
warehouseId: '', //租用仓库ID |
|
|
|
|
leaseCommencementDate: '', //租赁合同开始时间 |
|
|
|
|
leaseTerminationDate: '', //租赁合同结束时间 |
|
|
|
|
monthlyRent: '', //月租金 |
|
|
|
|
leasedArea: '', //客户租用面积 |
|
|
|
|
type: 2, //租用类型 |
|
|
|
|
storageLocationCount: '', //客户租用库位数 |
|
|
|
|
residualArea: null, //剩余库位面积 |
|
|
|
|
singleStorageArea: null, //单库位面积 |
|
|
|
|
}; |
|
|
|
|
Customertitle.value = '客户租仓信息新增'; |
|
|
|
|
dialogCustomer.value = true; //开启弹窗 |
|
|
|
|
ruleFormRef.value.resetFields(); |
|
|
|
|
}; |
|
|
|
|
// 客户租用类型计算 |
|
|
|
|
const changetype = () => { |
|
|
|
|
form.value.storageLocationCount = null; //客户租用库位数 |
|
|
|
|
form.value.leasedArea = null; //客户租用库位数 |
|
|
|
|
// form.value.residualArea = null; //剩余库位面积 |
|
|
|
|
// form.value.singleStorageArea = null; //单库位面积 |
|
|
|
|
}; |
|
|
|
|
form.value.residualArea = null; //剩余库位面积 |
|
|
|
|
form.value.singleStorageArea = null; //单库位面积 |
|
|
|
|
const changewarehouse = async () => { |
|
|
|
|
let data = { |
|
|
|
|
warehouseId: form.value.warehouseId, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
formloading.value = true; |
|
|
|
|
await $_residualArea(data) |
|
|
|
|
.then(res => { |
|
|
|
|
console.log(res, '剩余可租用面积'); |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
form.value.residualArea = Number(res.data.data.residualArea); //剩余库位面积 |
|
|
|
|
form.value.singleStorageArea = Number(res.data.data.singleStorageArea); //单库位面积 |
|
|
|
|
if ((Customertitle.value = '客户租仓信息编辑')) { |
|
|
|
|
const sope = res.data.data; |
|
|
|
|
if (sope.residualArea != null) { |
|
|
|
|
form.value.residualArea = Number(sope.residualArea); //剩余库位面积 |
|
|
|
|
} else { |
|
|
|
|
form.value.residualArea = sope.residualArea; |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '请维护仓库基础资料', |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if (sope.singleStorageArea != null) { |
|
|
|
|
form.value.singleStorageArea = Number(sope.singleStorageArea); //单库位面积 |
|
|
|
|
} else { |
|
|
|
|
form.value.singleStorageArea = sope.singleStorageArea; |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '请维护仓库基础资料', |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (Customertitle.value == '客户租仓信息编辑') { |
|
|
|
|
form.value.leasedArea = Number(form.value.leasedArea); |
|
|
|
|
form.value.residualArea = form.value.residualArea + form.value.leasedArea; //剩余库位面积 //租用面积 |
|
|
|
|
} |
|
|
|
@ -559,81 +588,102 @@ const changewarehouse = async () => {
|
|
|
|
|
|
|
|
|
|
// 计算租用数面积 |
|
|
|
|
const changestorageLocationCount = () => { |
|
|
|
|
// 租用库位数 *单库位面积 =客户租用面积 |
|
|
|
|
form.value.leasedArea = form.value.storageLocationCount * form.value.singleStorageArea; |
|
|
|
|
}; |
|
|
|
|
// 最后提交 |
|
|
|
|
const Customeradded = () => { |
|
|
|
|
if (form.value.type == 2 && form.value.leasedArea > form.value.residualArea) { |
|
|
|
|
console.log(form.value.singleStorageArea, 'form.value.singleStorageArea'); |
|
|
|
|
if (form.value.residualArea == null || form.value.singleStorageArea == null) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '客户租用面积不能大于剩余可租用面积,请重新填写客户租用库位数', |
|
|
|
|
message: '请维护仓库基础资料', |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (form.value.type == 1 && form.value.leasedArea > form.value.residualArea) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '客户租用面积不能大于剩余可租用面积', |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
// 租用库位数 *单库位面积 =客户租用面积 |
|
|
|
|
form.value.leasedArea = form.value.storageLocationCount * form.value.singleStorageArea; |
|
|
|
|
}; |
|
|
|
|
// 最后提交 |
|
|
|
|
const Customeradded = () => { |
|
|
|
|
ruleFormRef.value.validate(valid => { |
|
|
|
|
if (valid) { |
|
|
|
|
if (form.value.storageLocationCount == null || form.value.leasedArea == null) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '请维护仓库基础资料', |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// clientId: '', //客户名称ID |
|
|
|
|
// warehouseId: '', //租用仓库ID |
|
|
|
|
// leaseCommencementDate: '', //租赁合同开始时间 |
|
|
|
|
// leaseTerminationDate: '', //租赁合同结束时间 |
|
|
|
|
// monthlyRent: '', //月租金 |
|
|
|
|
// leasedArea: '', //客户租用面积 |
|
|
|
|
// type: '', //租用类型 |
|
|
|
|
// storageLocationCount: '', //客户租用库位数 |
|
|
|
|
let data = { |
|
|
|
|
...form.value, |
|
|
|
|
}; |
|
|
|
|
data.leaseCommencementDate = data.LeasecontractDate[0]; |
|
|
|
|
data.leaseTerminationDate = data.LeasecontractDate[1]; |
|
|
|
|
console.log(data, '准备提交的数据'); |
|
|
|
|
formloading.value = true; |
|
|
|
|
if (Customertitle.value == '客户租仓信息编辑') { |
|
|
|
|
data.id = DataRwo.value.id; |
|
|
|
|
$_Warehouserentalmanagementupdate(data) |
|
|
|
|
.then(res => { |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
if (form.value.type == 2 && form.value.leasedArea > form.value.residualArea) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '客户租用面积不能大于剩余可租用面积,请重新填写客户租用库位数', |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (form.value.type == 1 && form.value.leasedArea > form.value.residualArea) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '客户租用面积不能大于剩余可租用面积', |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// clientId: '', //客户名称ID |
|
|
|
|
// warehouseId: '', //租用仓库ID |
|
|
|
|
// leaseCommencementDate: '', //租赁合同开始时间 |
|
|
|
|
// leaseTerminationDate: '', //租赁合同结束时间 |
|
|
|
|
// monthlyRent: '', //月租金 |
|
|
|
|
// leasedArea: '', //客户租用面积 |
|
|
|
|
// type: '', //租用类型 |
|
|
|
|
// storageLocationCount: '', //客户租用库位数 |
|
|
|
|
let data = { |
|
|
|
|
...form.value, |
|
|
|
|
}; |
|
|
|
|
data.leaseCommencementDate = data.LeasecontractDate[0]; |
|
|
|
|
data.leaseTerminationDate = data.LeasecontractDate[1]; |
|
|
|
|
console.log(data, '准备提交的数据'); |
|
|
|
|
formloading.value = true; |
|
|
|
|
if (Customertitle.value == '客户租仓信息编辑') { |
|
|
|
|
data.id = DataRwo.value.id; |
|
|
|
|
$_Warehouserentalmanagementupdate(data) |
|
|
|
|
.then(res => { |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
dialogCustomer.value = false; |
|
|
|
|
onLoad(); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
.catch(error => { |
|
|
|
|
console.log(error); |
|
|
|
|
}) |
|
|
|
|
.finally(() => { |
|
|
|
|
formloading.value = false; |
|
|
|
|
}); |
|
|
|
|
dialogCustomer.value = false; |
|
|
|
|
onLoad(); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
.catch(error => { |
|
|
|
|
console.log(error); |
|
|
|
|
}) |
|
|
|
|
.finally(() => { |
|
|
|
|
formloading.value = false; |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
$_Warehouserentalmanagementsave(data) |
|
|
|
|
.then(res => { |
|
|
|
|
console.log(res, '新增'); |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
} else { |
|
|
|
|
$_Warehouserentalmanagementsave(data) |
|
|
|
|
.then(res => { |
|
|
|
|
console.log(res, '新增'); |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
dialogCustomer.value = false; |
|
|
|
|
onLoad(); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
.catch(error => { |
|
|
|
|
console.log(error); |
|
|
|
|
}) |
|
|
|
|
.finally(() => { |
|
|
|
|
formloading.value = false; |
|
|
|
|
}); |
|
|
|
|
dialogCustomer.value = false; |
|
|
|
|
onLoad(); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
.catch(error => { |
|
|
|
|
console.log(error); |
|
|
|
|
}) |
|
|
|
|
.finally(() => { |
|
|
|
|
formloading.value = false; |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
// 编辑 |
|
|
|
|
const edit = row => { |
|
|
|
@ -669,23 +719,26 @@ const Viewdelete = rwo => {
|
|
|
|
|
}) |
|
|
|
|
.then(() => { |
|
|
|
|
console.log(rwo); |
|
|
|
|
let data={ |
|
|
|
|
ids:rwo.id |
|
|
|
|
} |
|
|
|
|
let data = { |
|
|
|
|
ids: rwo.id, |
|
|
|
|
}; |
|
|
|
|
details.loadingObj.list = true; |
|
|
|
|
$_Warehouserentalmanagementremove(data).then(res => { |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
ElMessage({ |
|
|
|
|
type: 'success', |
|
|
|
|
message: '删除成功', |
|
|
|
|
}); |
|
|
|
|
onLoad(); |
|
|
|
|
} |
|
|
|
|
}).catch(error=>{ |
|
|
|
|
console.log(error) |
|
|
|
|
}).finally(()=>{ |
|
|
|
|
details.loadingObj.list = false; |
|
|
|
|
}); |
|
|
|
|
$_Warehouserentalmanagementremove(data) |
|
|
|
|
.then(res => { |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
ElMessage({ |
|
|
|
|
type: 'success', |
|
|
|
|
message: '删除成功', |
|
|
|
|
}); |
|
|
|
|
onLoad(); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
.catch(error => { |
|
|
|
|
console.log(error); |
|
|
|
|
}) |
|
|
|
|
.finally(() => { |
|
|
|
|
details.loadingObj.list = false; |
|
|
|
|
}); |
|
|
|
|
}) |
|
|
|
|
.catch(() => {}); |
|
|
|
|
}; |
|
|
|
|