|
@@ -159,6 +159,7 @@
|
|
label="操作"
|
|
label="操作"
|
|
align="center"
|
|
align="center"
|
|
class-name="small-padding fixed-width"
|
|
class-name="small-padding fixed-width"
|
|
|
|
+ width="160"
|
|
>
|
|
>
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
<el-button
|
|
@@ -500,6 +501,44 @@
|
|
</el-select>
|
|
</el-select>
|
|
</template>
|
|
</template>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
+ <el-form-item label="仓储业务" prop="fFeeid">
|
|
|
|
+ <el-select
|
|
|
|
+ v-model="TWareHouseFees.fBilltype"
|
|
|
|
+ filterable
|
|
|
|
+ :disabled="browseStatus"
|
|
|
|
+ remote
|
|
|
|
+ size="small"
|
|
|
|
+ style="width:200px"
|
|
|
|
+ :remote-method="fWRemoteMethod"
|
|
|
|
+ placeholder="请选择仓储业务"
|
|
|
|
+ multiple
|
|
|
|
+ >
|
|
|
|
+ <el-option label="入库" value="SJRK"></el-option>
|
|
|
|
+ <el-option label="实际出库" value="SJCK"></el-option>
|
|
|
|
+ <el-option label="调拨" value="CKDB"></el-option>
|
|
|
|
+ <el-option label="货权转移" value="HQZY"></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="作业类型" prop="fBusinessType">
|
|
|
|
+ <el-select
|
|
|
|
+ v-model="TWareHouseFees.fBusinessType"
|
|
|
|
+ filterable
|
|
|
|
+ :disabled="browseStatus"
|
|
|
|
+ remote
|
|
|
|
+ size="small"
|
|
|
|
+ style="width:200px"
|
|
|
|
+ placeholder="作业类型"
|
|
|
|
+ multiple
|
|
|
|
+ >
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="dict in businessTypeOption"
|
|
|
|
+ :key="dict.dictValue"
|
|
|
|
+ :label="dict.dictLabel"
|
|
|
|
+ :value="dict.dictValue"
|
|
|
|
+ >
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
|
|
<el-form-item label="审核日期" prop="timeExamine">
|
|
<el-form-item label="审核日期" prop="timeExamine">
|
|
<el-date-picker
|
|
<el-date-picker
|
|
@@ -526,7 +565,6 @@
|
|
:default-time="['00:00:00', '23:59:59']"
|
|
:default-time="['00:00:00', '23:59:59']"
|
|
></el-date-picker>
|
|
></el-date-picker>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
-
|
|
|
|
<el-form-item>
|
|
<el-form-item>
|
|
<!-- <el-button class="btnColor" type="info" size="mini">导入</el-button> -->
|
|
<!-- <el-button class="btnColor" type="info" size="mini">导入</el-button> -->
|
|
<el-button
|
|
<el-button
|
|
@@ -747,6 +785,7 @@ export default {
|
|
},
|
|
},
|
|
hide:false,
|
|
hide:false,
|
|
cancelButton:true,
|
|
cancelButton:true,
|
|
|
|
+ businessTypeOption:[],
|
|
// 传值对象
|
|
// 传值对象
|
|
TWareHouseFees:{
|
|
TWareHouseFees:{
|
|
fCorpid:'',
|
|
fCorpid:'',
|
|
@@ -759,6 +798,8 @@ export default {
|
|
fDc:'D',
|
|
fDc:'D',
|
|
fReconciliation:'0',
|
|
fReconciliation:'0',
|
|
timeReconci:'',
|
|
timeReconci:'',
|
|
|
|
+ fBusinessType:'',
|
|
|
|
+ fBilltype:'SJRK'
|
|
},
|
|
},
|
|
// 查询参数
|
|
// 查询参数
|
|
queryParams: {
|
|
queryParams: {
|
|
@@ -836,6 +877,9 @@ export default {
|
|
this.getDicts("data_unitfees").then((response) => {
|
|
this.getDicts("data_unitfees").then((response) => {
|
|
this.jFeetunitOptions = response.data;
|
|
this.jFeetunitOptions = response.data;
|
|
});
|
|
});
|
|
|
|
+ this.getDicts("st_in_type").then((response) => {
|
|
|
|
+ this.businessTypeOption = response.data;
|
|
|
|
+ });
|
|
},
|
|
},
|
|
activated(){
|
|
activated(){
|
|
this.Jump()
|
|
this.Jump()
|
|
@@ -1078,7 +1122,8 @@ export default {
|
|
fSrcdc:'',
|
|
fSrcdc:'',
|
|
fReconciliation:'0',
|
|
fReconciliation:'0',
|
|
timeReconci: '',
|
|
timeReconci: '',
|
|
- fDc:'D'
|
|
|
|
|
|
+ fDc:'D',
|
|
|
|
+ fBilltype:'SJRK'
|
|
}
|
|
}
|
|
if(this.queryParams.fCorpid){
|
|
if(this.queryParams.fCorpid){
|
|
this.doNot = true
|
|
this.doNot = true
|