|
@@ -22,231 +22,232 @@
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
|
|
|
|
- <ws-form ref="deptBudgetList" :model="deptBudgetList" :rules="rules">
|
|
|
|
- <div class="basicInformation">
|
|
|
|
- <h2>
|
|
|
|
- 任务编号
|
|
|
|
- </h2>
|
|
|
|
- <ws-info-table>
|
|
|
|
- <!-- 任务编号 -->
|
|
|
|
- <ws-form-item label="任务编号" span="1" prop="grossWeight">
|
|
|
|
- <ws-input
|
|
|
|
- @input="grossWeightchange"
|
|
|
|
- v-model="deptBudgetList.grossWeight"
|
|
|
|
- placeholder="请输入任务编号"
|
|
|
|
- maxlength="20"
|
|
|
|
- size="small"
|
|
|
|
- />
|
|
|
|
- </ws-form-item>
|
|
|
|
- <!-- 货名 -->
|
|
|
|
- <ws-form-item label="货名" span="1">
|
|
|
|
- <ws-input
|
|
|
|
- @input="grossWeightchange"
|
|
|
|
- v-model="deptBudgetList.grossWeight"
|
|
|
|
- placeholder="请输入货名"
|
|
|
|
- maxlength="20"
|
|
|
|
- size="small"
|
|
|
|
- />
|
|
|
|
- </ws-form-item>
|
|
|
|
- <!--重量(吨)-->
|
|
|
|
- <ws-form-item
|
|
|
|
- label="重量(吨)"
|
|
|
|
- span="1"
|
|
|
|
- prop="tare"
|
|
|
|
- class="readonly"
|
|
|
|
|
|
+ <ws-form ref="deptBudgetList" :rules="rules" :model="deptBudgetList">
|
|
|
|
+ <div class="small-title">任务详情</div>
|
|
|
|
+ <ws-info-table>
|
|
|
|
+ <!--任务编号-->
|
|
|
|
+ <ws-form-item label="任务编号" span="1" prop="processNo">
|
|
|
|
+ <ws-input
|
|
|
|
+ v-model="deptBudgetList.processNo"
|
|
|
|
+ placeholder="请输入任务编号"
|
|
|
|
+ maxlength="20"
|
|
|
|
+ size="small"
|
|
|
|
+ />
|
|
|
|
+ </ws-form-item>
|
|
|
|
+ <!--货名-->
|
|
|
|
+ <ws-form-item label="货名" span="1" prop="goodsName">
|
|
|
|
+ <!-- <el-select
|
|
|
|
+ v-model="deptBudgetList.goodsName"
|
|
|
|
+ placeholder="请选择货名"
|
|
|
|
+ filterable
|
|
|
|
+ :filter-method="dataFilter"
|
|
|
|
+ @change="selectstaff"
|
|
>
|
|
>
|
|
- <ws-input
|
|
|
|
- @input="tarechange"
|
|
|
|
- v-model="deptBudgetList.tare"
|
|
|
|
- placeholder="请输入重重"
|
|
|
|
- maxlength="100"
|
|
|
|
- size="small"
|
|
|
|
- />
|
|
|
|
- </ws-form-item>
|
|
|
|
-
|
|
|
|
- <!--发货地址-->
|
|
|
|
- <ws-form-item label="发货地址" span="1" prop="netWeight">
|
|
|
|
- <ws-input
|
|
|
|
- readonly="readonly"
|
|
|
|
- v-model="deptBudgetList.netWeight"
|
|
|
|
- placeholder="不可编辑,自动计算"
|
|
|
|
- maxlength="120"
|
|
|
|
- size="small"
|
|
|
|
- />
|
|
|
|
- </ws-form-item>
|
|
|
|
- <!--发货人-->
|
|
|
|
- <ws-form-item label="发货人" span="1" prop="agent">
|
|
|
|
- <ws-input
|
|
|
|
- v-model="deptBudgetList.agent"
|
|
|
|
- placeholder="请输入发货人姓名"
|
|
|
|
- maxlength="100"
|
|
|
|
- size="small"
|
|
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in personCharge"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.staffName"
|
|
|
|
+ :value="item.staffName"
|
|
|
|
+ /> -->
|
|
|
|
+ <ws-input
|
|
|
|
+ v-model="deptBudgetList.goodsName"
|
|
|
|
+ placeholder="请输入货名"
|
|
|
|
+ maxlength="20"
|
|
|
|
+ size="small"
|
|
/>
|
|
/>
|
|
- </ws-form-item>
|
|
|
|
|
|
+ <!-- </el-select> -->
|
|
|
|
+ </ws-form-item>
|
|
|
|
+ <!--重量(吨)-->
|
|
|
|
+ <ws-form-item label="重量(吨)" span="1" prop="weight">
|
|
|
|
+ <ws-input
|
|
|
|
+ v-model="deptBudgetList.weight"
|
|
|
|
+ placeholder="请输入重量(吨)"
|
|
|
|
+ maxlength="100"
|
|
|
|
+ size="small"
|
|
|
|
+ />
|
|
|
|
+ </ws-form-item>
|
|
|
|
|
|
- <!--发货人电话-->
|
|
|
|
- <ws-form-item label="发货人电话" span="1" prop="agent">
|
|
|
|
- <ws-input
|
|
|
|
- v-model="deptBudgetList.agent"
|
|
|
|
- placeholder="请输入发货人电话"
|
|
|
|
- maxlength="100"
|
|
|
|
- size="small"
|
|
|
|
- />
|
|
|
|
- </ws-form-item>
|
|
|
|
- <!--收货地址-->
|
|
|
|
- <ws-form-item label="收货地址" span="1" prop="netWeight">
|
|
|
|
- <ws-input
|
|
|
|
- readonly="readonly"
|
|
|
|
- v-model="deptBudgetList.netWeight"
|
|
|
|
- placeholder="不可编辑,自动计算"
|
|
|
|
- maxlength="120"
|
|
|
|
- size="small"
|
|
|
|
- />
|
|
|
|
- </ws-form-item>
|
|
|
|
- <!--收货人-->
|
|
|
|
- <ws-form-item label="收货人" span="1" prop="agent">
|
|
|
|
- <ws-input
|
|
|
|
- v-model="deptBudgetList.agent"
|
|
|
|
- placeholder="请输入发货人"
|
|
|
|
- maxlength="100"
|
|
|
|
- size="small"
|
|
|
|
|
|
+ <!--发货地址-->
|
|
|
|
+ <ws-form-item label="发货地址" span="1" prop="sendDetailedAddress">
|
|
|
|
+ <!-- <ws-input
|
|
|
|
+ v-model="deptBudgetList.sendDetailedAddress"
|
|
|
|
+ placeholder=""
|
|
|
|
+ maxlength="100"
|
|
|
|
+ size="small"
|
|
|
|
+ /> -->
|
|
|
|
+ {{ deptBudgetList.sendPrivate }}{{ deptBudgetList.sendCity
|
|
|
|
+ }}{{ deptBudgetList.sendArea }}
|
|
|
|
+ </ws-form-item>
|
|
|
|
+
|
|
|
|
+ <!--发货人-->
|
|
|
|
+ <ws-form-item label="发货人" span="1" prop="sender" class="readonly">
|
|
|
|
+ <ws-input
|
|
|
|
+ v-model="deptBudgetList.sender"
|
|
|
|
+ placeholder="请输入发货人"
|
|
|
|
+ maxlength="100"
|
|
|
|
+ size="small"
|
|
/>
|
|
/>
|
|
- </ws-form-item>
|
|
|
|
|
|
+ </ws-form-item>
|
|
|
|
|
|
- <!--收货人电话-->
|
|
|
|
- <ws-form-item label="收货人电话" span="1" prop="agent">
|
|
|
|
- <ws-input
|
|
|
|
- v-model="deptBudgetList.agent"
|
|
|
|
- placeholder="请输入收货人电话"
|
|
|
|
- maxlength="100"
|
|
|
|
- size="small"
|
|
|
|
- />
|
|
|
|
- </ws-form-item>
|
|
|
|
- <!--发货日期-->
|
|
|
|
- <ws-form-item
|
|
|
|
- label="发货日期"
|
|
|
|
- span="1"
|
|
|
|
- prop="inOutDate"
|
|
|
|
- class="deliverydate"
|
|
|
|
- >
|
|
|
|
- <ws-date-picker
|
|
|
|
- v-model="deptBudgetList.inOutDate"
|
|
|
|
- type="date"
|
|
|
|
- placeholder="请选择发货日期"
|
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
|
- />
|
|
|
|
- </ws-form-item>
|
|
|
|
- <!--最晚发货日期-->
|
|
|
|
- <ws-form-item
|
|
|
|
- label="最晚到货日期"
|
|
|
|
- span="1"
|
|
|
|
- prop="inOutDate"
|
|
|
|
- class="deliverydate"
|
|
|
|
- >
|
|
|
|
- <ws-date-picker
|
|
|
|
- v-model="deptBudgetList.inOutDate"
|
|
|
|
- type="date"
|
|
|
|
- placeholder="请选择最晚发货日期"
|
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
|
- />
|
|
|
|
- </ws-form-item>
|
|
|
|
- <!--合同编号-->
|
|
|
|
- <ws-form-item label="合同编号" span="1" prop="contractNo">
|
|
|
|
- <ws-input
|
|
|
|
- v-model="deptBudgetList.contractNo"
|
|
|
|
- placeholder="请输入合同编号"
|
|
|
|
- maxlength="100"
|
|
|
|
- size="small"
|
|
|
|
- />
|
|
|
|
- </ws-form-item>
|
|
|
|
-
|
|
|
|
- </ws-info-table>
|
|
|
|
- </div>
|
|
|
|
- <div class="small-title"><h2>派车</h2></div>
|
|
|
|
- <div class="neifor">
|
|
|
|
|
|
+ <!--发货人电话-->
|
|
|
|
+ <ws-form-item
|
|
|
|
+ label="发货人电话"
|
|
|
|
+ span="1"
|
|
|
|
+ prop="senderPhone"
|
|
|
|
+ class="readonly"
|
|
|
|
+ >
|
|
|
|
+ <ws-input
|
|
|
|
+ v-model="deptBudgetList.senderPhone"
|
|
|
|
+ placeholder="请输入发货人电话"
|
|
|
|
+ maxlength="100"
|
|
|
|
+ size="small"
|
|
|
|
+ />
|
|
|
|
+ </ws-form-item>
|
|
|
|
+ <!--收货地址-->
|
|
|
|
+ <ws-form-item label="收货地址" span="1" prop="receiveDetailedAddress">
|
|
|
|
+ <!-- <ws-input
|
|
|
|
+ v-model="deptBudgetList.receiveDetailedAddress"
|
|
|
|
+ placeholder="请输入仓库名"
|
|
|
|
+ maxlength="20"
|
|
|
|
+ size="small"
|
|
|
|
+ /> -->
|
|
|
|
+ {{ deptBudgetList.receivePrivate }}{{ deptBudgetList.receiveCity
|
|
|
|
+ }}{{ deptBudgetList.receiveArea }}
|
|
|
|
+ </ws-form-item>
|
|
|
|
+ <!--收货人-->
|
|
|
|
+ <ws-form-item label="收货人" span="1" prop="receiver">
|
|
|
|
+ <ws-input
|
|
|
|
+ v-model="deptBudgetList.receiver"
|
|
|
|
+ placeholder="请输入仓库名"
|
|
|
|
+ maxlength="20"
|
|
|
|
+ size="small"
|
|
|
|
+ />
|
|
|
|
+ </ws-form-item>
|
|
|
|
+ <!--收货人电话-->
|
|
|
|
+ <ws-form-item label="收货人电话" span="1" prop="receiverPhone">
|
|
|
|
+ <ws-input
|
|
|
|
+ v-model="deptBudgetList.receiverPhone"
|
|
|
|
+ placeholder="请输入仓库名"
|
|
|
|
+ maxlength="20"
|
|
|
|
+ size="small"
|
|
|
|
+ />
|
|
|
|
+ </ws-form-item>
|
|
|
|
+ <!--发货日期-->
|
|
|
|
+ <ws-form-item label="发货日期" span="1" prop="deliveryDateStart">
|
|
|
|
+ <ws-input
|
|
|
|
+ v-model="deptBudgetList.deliveryDateStart"
|
|
|
|
+ placeholder="请输入仓库名"
|
|
|
|
+ maxlength="20"
|
|
|
|
+ size="small"
|
|
|
|
+ />
|
|
|
|
+ </ws-form-item>
|
|
|
|
+ <!--最晚到货日期-->
|
|
|
|
+ <ws-form-item label="最晚到货日期" span="1" prop="deliveryDateEnd">
|
|
|
|
+ <ws-input
|
|
|
|
+ v-model="deptBudgetList.deliveryDateEnd"
|
|
|
|
+ placeholder="请输入仓库名"
|
|
|
|
+ maxlength="20"
|
|
|
|
+ size="small"
|
|
|
|
+ />
|
|
|
|
+ </ws-form-item>
|
|
|
|
+ <!--合同编号-->
|
|
|
|
+ <ws-form-item label="合同编号" span="1" prop="contractNo">
|
|
|
|
+ <ws-input
|
|
|
|
+ v-model="deptBudgetList.contractNo"
|
|
|
|
+ placeholder="请输入合同编号"
|
|
|
|
+ maxlength="20"
|
|
|
|
+ size="small"
|
|
|
|
+ />
|
|
|
|
+ </ws-form-item>
|
|
|
|
+ </ws-info-table>
|
|
|
|
+ <div class="small-title">派车</div>
|
|
|
|
+ <div
|
|
|
|
+ style="width: 100%"
|
|
|
|
+ class="flex position"
|
|
|
|
+ v-for="(item, index) in freightspace"
|
|
|
|
+ >
|
|
<ws-info-table>
|
|
<ws-info-table>
|
|
- <!--司机-->
|
|
|
|
- <ws-form-item label="司机" span="1" prop="waterContent" class="xia">
|
|
|
|
- <ws-input
|
|
|
|
- v-model="deptBudgetList.bulkDensity"
|
|
|
|
- placeholder=""
|
|
|
|
- maxlength="120"
|
|
|
|
- size="small"
|
|
|
|
- class="aa"
|
|
|
|
-
|
|
|
|
- />
|
|
|
|
- </ws-form-item>
|
|
|
|
- <!--司机电话-->
|
|
|
|
- <ws-form-item label="司机电话" span="1" prop="impurity" class="xia">
|
|
|
|
|
|
+ <!--姓名-->
|
|
|
|
+ <ws-form-item label="姓名" span="1" prop="driver">
|
|
<ws-input
|
|
<ws-input
|
|
- v-model="deptBudgetList.bulkDensity"
|
|
|
|
- placeholder=""
|
|
|
|
- maxlength="120"
|
|
|
|
|
|
+ v-model="deptBudgetList.driver"
|
|
|
|
+ placeholder="请输入姓名"
|
|
|
|
+ maxlength="20"
|
|
size="small"
|
|
size="small"
|
|
- class="aa"
|
|
|
|
-
|
|
|
|
/>
|
|
/>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
- <!--车牌号-->
|
|
|
|
- <ws-form-item label="车牌号" span="1" prop="bulkDensity" class="xia">
|
|
|
|
|
|
+ <!--电话-->
|
|
|
|
+ <ws-form-item label="电话" span="1" prop="driverPhone">
|
|
<ws-input
|
|
<ws-input
|
|
- v-model="deptBudgetList.bulkDensity"
|
|
|
|
- placeholder=""
|
|
|
|
- maxlength="120"
|
|
|
|
|
|
+ v-model="deptBudgetList.driverPhone"
|
|
|
|
+ placeholder="请输入电话"
|
|
|
|
+ maxlength="20"
|
|
size="small"
|
|
size="small"
|
|
- class="aa"
|
|
|
|
-
|
|
|
|
/>
|
|
/>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
- <!--车型-->
|
|
|
|
- <ws-form-item label="车型" span="1" prop="mildewGrain" class="xia">
|
|
|
|
|
|
+ <!--发车日期-->
|
|
|
|
+ <ws-form-item label="发车日期" span="1" prop="sendDateStart">
|
|
<ws-input
|
|
<ws-input
|
|
- v-model="deptBudgetList.mildewGrain"
|
|
|
|
- placeholder="请输入高栏"
|
|
|
|
- maxlength="120"
|
|
|
|
|
|
+ v-model="deptBudgetList.sendDateStart"
|
|
|
|
+ placeholder="请输入发车日期"
|
|
|
|
+ maxlength="20"
|
|
size="small"
|
|
size="small"
|
|
- class="aa"
|
|
|
|
/>
|
|
/>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
- <!--车长-->
|
|
|
|
- <ws-form-item label="车长" span="1" prop="jiaorenli" class="xia">
|
|
|
|
|
|
+ <!--到站日期-->
|
|
|
|
+ <ws-form-item label="到站日期" span="1" prop="receiveDateEnd">
|
|
<ws-input
|
|
<ws-input
|
|
- v-model="deptBudgetList.jiaorenli"
|
|
|
|
- placeholder="请输入车长"
|
|
|
|
- maxlength="120"
|
|
|
|
|
|
+ v-model="deptBudgetList.receiveDateEnd"
|
|
|
|
+ placeholder="请输入到站日期"
|
|
|
|
+ maxlength="20"
|
|
size="small"
|
|
size="small"
|
|
- class="aa"
|
|
|
|
/>
|
|
/>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
- <!--载重吨-->
|
|
|
|
- <ws-form-item label="载重(吨)" span="1" prop="imperfectGrain" class="xia">
|
|
|
|
|
|
+ <!--车次-->
|
|
|
|
+ <ws-form-item label="车次" span="1" prop="trainNo">
|
|
<ws-input
|
|
<ws-input
|
|
- v-model="deptBudgetList.warehouseInOutDetail.imperfectGrain"
|
|
|
|
- placeholder="请输入载重(吨)"
|
|
|
|
- maxlength="120"
|
|
|
|
|
|
+ v-model="deptBudgetList.trainNo"
|
|
|
|
+ placeholder="请输入车次"
|
|
|
|
+ maxlength="20"
|
|
size="small"
|
|
size="small"
|
|
- class="aa"
|
|
|
|
/>
|
|
/>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
- </ws-info-table>
|
|
|
|
- </div>
|
|
|
|
- <div style="text-align: right; padding: 10px">
|
|
|
|
-
|
|
|
|
- <el-button
|
|
|
|
- class="bg-bottom-up"
|
|
|
|
- type="primary"
|
|
|
|
- size="small"
|
|
|
|
- @click="submit()"
|
|
|
|
- >提交</el-button
|
|
|
|
- >
|
|
|
|
|
|
+ <!-- 加减号 -->
|
|
|
|
+ <img
|
|
|
|
+ width="22"
|
|
|
|
+ height="22"
|
|
|
|
+ class="add"
|
|
|
|
+ @click="add"
|
|
|
|
+ src="../../../public/img/add.png"
|
|
|
|
+ alt=""
|
|
|
|
+ />
|
|
|
|
+ <img
|
|
|
|
+ width="22"
|
|
|
|
+ height="22"
|
|
|
|
+ class="del"
|
|
|
|
+ @click="del(index)"
|
|
|
|
+ src="../../../public/img/del.png"
|
|
|
|
+ alt=""
|
|
|
|
+ />
|
|
|
|
+ </ws-info-table>
|
|
</div>
|
|
</div>
|
|
</ws-form>
|
|
</ws-form>
|
|
|
|
+ <div style="text-align: right; padding: 10px">
|
|
|
|
+ <el-button
|
|
|
|
+ class="bg-bottom-up"
|
|
|
|
+ type="primary"
|
|
|
|
+ size="small"
|
|
|
|
+ @click="submit()"
|
|
|
|
+ >提交</el-button
|
|
|
|
+ >
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<script>
|
|
<script>
|
|
import { pullDown, addstorageputList } from '@/model/warehouse/index'
|
|
import { pullDown, addstorageputList } from '@/model/warehouse/index'
|
|
import Pagination from '@/components/Pagination'
|
|
import Pagination from '@/components/Pagination'
|
|
import WsUpload from '@/components/WsUpload'
|
|
import WsUpload from '@/components/WsUpload'
|
|
|
|
+import { seeCat } from '@/model/transport/index'
|
|
// import { dayjs, fmoney, EventBus } from 'base-core-lib'
|
|
// import { dayjs, fmoney, EventBus } from 'base-core-lib'
|
|
import { dayjs, EventBus } from 'base-core-lib'
|
|
import { dayjs, EventBus } from 'base-core-lib'
|
|
export default {
|
|
export default {
|
|
@@ -325,28 +326,8 @@ export default {
|
|
accessoryTFs: false,
|
|
accessoryTFs: false,
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- mounted() {
|
|
|
|
- this.deptBudgetList.baseId = this.$route.query.baseId
|
|
|
|
- this.deptBudgetList.positionId = this.$route.query.positionId
|
|
|
|
- this.deptBudgetList.warehouseName = this.$route.query.warehouseName
|
|
|
|
- this.deptBudgetList.binNumber = this.$route.query.binNumber
|
|
|
|
- this.getList()
|
|
|
|
- this.deptBudgetList.goodsName = '玉米'
|
|
|
|
- this.deptBudgetList.goodsNameKey = '1'
|
|
|
|
- this.deptBudgetList.grade = '一等品'
|
|
|
|
- this.deptBudgetList.gradeKey = '1'
|
|
|
|
- this.deptBudgetList.inOutType = '采购入库'
|
|
|
|
- this.deptBudgetList.inOutTypeKey = '1'
|
|
|
|
- },
|
|
|
|
activated() {
|
|
activated() {
|
|
- // //cg.viewBudget
|
|
|
|
- // //cg.viewSpareMoney
|
|
|
|
- // // this.getVesselData();
|
|
|
|
- // console.log(2222)
|
|
|
|
- // this.getList()
|
|
|
|
- // console.log(1111)
|
|
|
|
- // this.showType = this.isShow
|
|
|
|
- // this.getList(this.$route.query.baseId,)
|
|
|
|
|
|
+ this.getList()
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
//返回按钮
|
|
//返回按钮
|
|
@@ -358,6 +339,13 @@ export default {
|
|
this.freightspace.splice(index, 1)
|
|
this.freightspace.splice(index, 1)
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ getList() {
|
|
|
|
+ seeCat({ id: this.$route.query.id })
|
|
|
|
+ .toPromise()
|
|
|
|
+ .then((response) => {
|
|
|
|
+ this.deptBudgetList = response
|
|
|
|
+ })
|
|
|
|
+ },
|
|
//提交按钮
|
|
//提交按钮
|
|
submit() {
|
|
submit() {
|
|
if (!this.deptBudgetList.goodsName) {
|
|
if (!this.deptBudgetList.goodsName) {
|
|
@@ -367,8 +355,8 @@ export default {
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if(!this.deptBudgetList.grossWeight){
|
|
|
|
- this.$message({
|
|
|
|
|
|
+ if (!this.deptBudgetList.grossWeight) {
|
|
|
|
+ this.$message({
|
|
message: '毛重不能为空',
|
|
message: '毛重不能为空',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
})
|
|
})
|
|
@@ -388,8 +376,8 @@ export default {
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if(!this.deptBudgetList.tare){
|
|
|
|
- this.$message({
|
|
|
|
|
|
+ if (!this.deptBudgetList.tare) {
|
|
|
|
+ this.$message({
|
|
message: '皮重不能为空',
|
|
message: '皮重不能为空',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
})
|
|
})
|
|
@@ -409,8 +397,8 @@ export default {
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if(!this.deptBudgetList.agent){
|
|
|
|
- this.$message({
|
|
|
|
|
|
+ if (!this.deptBudgetList.agent) {
|
|
|
|
+ this.$message({
|
|
message: '经办人不能为空',
|
|
message: '经办人不能为空',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
})
|
|
})
|
|
@@ -426,8 +414,8 @@ export default {
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if(!this.deptBudgetList.carNo){
|
|
|
|
- this.$message({
|
|
|
|
|
|
+ if (!this.deptBudgetList.carNo) {
|
|
|
|
+ this.$message({
|
|
message: '车牌号不能为空',
|
|
message: '车牌号不能为空',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
})
|
|
})
|
|
@@ -440,8 +428,8 @@ export default {
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if(!this.deptBudgetList.contractNo){
|
|
|
|
- this.$message({
|
|
|
|
|
|
+ if (!this.deptBudgetList.contractNo) {
|
|
|
|
+ this.$message({
|
|
message: '合同编号不能为空',
|
|
message: '合同编号不能为空',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
})
|
|
})
|
|
@@ -458,8 +446,7 @@ export default {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
- if(this.deptBudgetList.netWeight > this.$route.query.capacity){
|
|
|
|
|
|
+ if (this.deptBudgetList.netWeight > this.$route.query.capacity) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '入库量大于该仓库容量!',
|
|
message: '入库量大于该仓库容量!',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
@@ -474,9 +461,8 @@ export default {
|
|
.then(() => {
|
|
.then(() => {
|
|
this.$refs.deptBudgetList.validate((valid) => {
|
|
this.$refs.deptBudgetList.validate((valid) => {
|
|
if (valid) {
|
|
if (valid) {
|
|
- this.deptBudgetList.compId = sessionStorage.getItem(
|
|
|
|
- 'ws-pf_compId'
|
|
|
|
- )
|
|
|
|
|
|
+ this.deptBudgetList.compId =
|
|
|
|
+ sessionStorage.getItem('ws-pf_compId')
|
|
this.deptBudgetList.inOutFlag = 2
|
|
this.deptBudgetList.inOutFlag = 2
|
|
this.deptBudgetList.statusFlag = 3
|
|
this.deptBudgetList.statusFlag = 3
|
|
addstorageputList(this.deptBudgetList)
|
|
addstorageputList(this.deptBudgetList)
|
|
@@ -495,140 +481,6 @@ export default {
|
|
return false
|
|
return false
|
|
})
|
|
})
|
|
},
|
|
},
|
|
- temporaryStorage() {
|
|
|
|
- if (!this.deptBudgetList.goodsName) {
|
|
|
|
- this.$message({
|
|
|
|
- message: '货名不能为空',
|
|
|
|
- type: 'warning',
|
|
|
|
- })
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- if(!this.deptBudgetList.grossWeight){
|
|
|
|
- this.$message({
|
|
|
|
- message: '毛重不能为空',
|
|
|
|
- type: 'warning',
|
|
|
|
- })
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- if (
|
|
|
|
- this.deptBudgetList.grossWeight < 0 ||
|
|
|
|
- this.deptBudgetList.grossWeight > 10000 ||
|
|
|
|
- (String(this.deptBudgetList.grossWeight).indexOf('.') != -1 &&
|
|
|
|
- String(this.deptBudgetList.grossWeight).length -
|
|
|
|
- (String(this.deptBudgetList.grossWeight).indexOf('.') + 1) >
|
|
|
|
- 3)
|
|
|
|
- ) {
|
|
|
|
- this.$message({
|
|
|
|
- message: '毛重输入错误',
|
|
|
|
- type: 'warning',
|
|
|
|
- })
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- if(!this.deptBudgetList.tare){
|
|
|
|
- this.$message({
|
|
|
|
- message: '皮重不能为空',
|
|
|
|
- type: 'warning',
|
|
|
|
- })
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- if (
|
|
|
|
- this.deptBudgetList.tare < 0 ||
|
|
|
|
- this.deptBudgetList.tare > 10000 ||
|
|
|
|
- (String(this.deptBudgetList.tare).indexOf('.') != -1 &&
|
|
|
|
- String(this.deptBudgetList.tare).length -
|
|
|
|
- (String(this.deptBudgetList.tare).indexOf('.') + 1) >
|
|
|
|
- 3)
|
|
|
|
- ) {
|
|
|
|
- this.$message({
|
|
|
|
- message: '皮重输入错误',
|
|
|
|
- type: 'warning',
|
|
|
|
- })
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- if(!this.deptBudgetList.agent){
|
|
|
|
- this.$message({
|
|
|
|
- message: '经办人不能为空',
|
|
|
|
- type: 'warning',
|
|
|
|
- })
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- if (
|
|
|
|
- this.deptBudgetList.agent.length < 2 ||
|
|
|
|
- this.deptBudgetList.agent.length > 10
|
|
|
|
- ) {
|
|
|
|
- this.$message({
|
|
|
|
- message: '经办人输入有误',
|
|
|
|
- type: 'warning',
|
|
|
|
- })
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- if(!this.deptBudgetList.carNo){
|
|
|
|
- this.$message({
|
|
|
|
- message: '车牌号不能为空',
|
|
|
|
- type: 'warning',
|
|
|
|
- })
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- if (this.deptBudgetList.carNo.length > 7) {
|
|
|
|
- this.$message({
|
|
|
|
- message: '车牌号输入错误,请输入7个字符之内',
|
|
|
|
- type: 'warning',
|
|
|
|
- })
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- if(!this.deptBudgetList.contractNo){
|
|
|
|
- this.$message({
|
|
|
|
- message: '合同编号不能为空',
|
|
|
|
- type: 'warning',
|
|
|
|
- })
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- if (
|
|
|
|
- this.deptBudgetList.contractNo.length < 6 ||
|
|
|
|
- this.deptBudgetList.contractNo.length > 20
|
|
|
|
- ) {
|
|
|
|
- this.$message({
|
|
|
|
- message: '合同编号长度不符合要求,请输入6-20个字符之内',
|
|
|
|
- type: 'warning',
|
|
|
|
- })
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- if(this.deptBudgetList.netWeight > this.$route.query.capacity){
|
|
|
|
- this.$message({
|
|
|
|
- message: '入库量大于该仓库容量!',
|
|
|
|
- type: 'warning',
|
|
|
|
- })
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- this.$confirm(`暂存后可在待完成页面查看,确定暂存`, {
|
|
|
|
- cancelButtonText: '取消',
|
|
|
|
- confirmButtonText: '确定',
|
|
|
|
- type: 'warning',
|
|
|
|
- })
|
|
|
|
- .then(() => {
|
|
|
|
- this.$refs.deptBudgetList.validate((valid) => {
|
|
|
|
- if (valid) {
|
|
|
|
- this.deptBudgetList.compId = sessionStorage.getItem(
|
|
|
|
- 'ws-pf_compId'
|
|
|
|
- )
|
|
|
|
- this.deptBudgetList.inOutFlag = 2
|
|
|
|
- this.deptBudgetList.statusFlag = 1
|
|
|
|
- addstorageputList(this.deptBudgetList)
|
|
|
|
- .toPromise()
|
|
|
|
- .then((response) => {
|
|
|
|
- this.$message.success('暂存成功')
|
|
|
|
- this.$router.push({ path: 'warehouseManagementList' })
|
|
|
|
- })
|
|
|
|
- } else {
|
|
|
|
- EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
|
|
|
|
- return false
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- })
|
|
|
|
- .catch(() => {
|
|
|
|
- return false
|
|
|
|
- })
|
|
|
|
- },
|
|
|
|
tarechange(e) {
|
|
tarechange(e) {
|
|
if (this.deptBudgetList.grossWeight && this.deptBudgetList.tare) {
|
|
if (this.deptBudgetList.grossWeight && this.deptBudgetList.tare) {
|
|
this.deptBudgetList.netWeight = Number(
|
|
this.deptBudgetList.netWeight = Number(
|
|
@@ -664,39 +516,6 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- handleClose() {
|
|
|
|
- this.accessoryTFs = false
|
|
|
|
- },
|
|
|
|
- handleSizeChange(val) {
|
|
|
|
- console.log(`每页 ${val} 条`)
|
|
|
|
- this.pageSize = val
|
|
|
|
- this.getList()
|
|
|
|
- },
|
|
|
|
- handleCurrentChange(val) {
|
|
|
|
- this.currentPage = val
|
|
|
|
- console.log(`当前页: ${val}`)
|
|
|
|
- this.getList()
|
|
|
|
- },
|
|
|
|
- getList() {
|
|
|
|
- // 货名
|
|
|
|
- pullDown({ constId: 'CON2' })
|
|
|
|
- .toPromise()
|
|
|
|
- .then((response) => {
|
|
|
|
- this.goodnameList = response
|
|
|
|
- })
|
|
|
|
- // 品级
|
|
|
|
- pullDown({ constId: 'CON3' })
|
|
|
|
- .toPromise()
|
|
|
|
- .then((response) => {
|
|
|
|
- this.gradeList = response
|
|
|
|
- })
|
|
|
|
- // 类型
|
|
|
|
- pullDown({ constId: 'CON5' })
|
|
|
|
- .toPromise()
|
|
|
|
- .then((response) => {
|
|
|
|
- this.storageType = response
|
|
|
|
- })
|
|
|
|
- },
|
|
|
|
selecttaskType(e) {
|
|
selecttaskType(e) {
|
|
for (var i = 0; i < this.taskTypeList.length; i++) {
|
|
for (var i = 0; i < this.taskTypeList.length; i++) {
|
|
if (this.taskTypeList[i].value == e) {
|
|
if (this.taskTypeList[i].value == e) {
|
|
@@ -794,6 +613,9 @@ export default {
|
|
height: 2000px;
|
|
height: 2000px;
|
|
margin: 0 auto;
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
|
|
+/deep/.ws-info-table .el-form-item {
|
|
|
|
+ width: 33.33%;
|
|
|
|
+}
|
|
/deep/.el-form-item__label {
|
|
/deep/.el-form-item__label {
|
|
width: 160px;
|
|
width: 160px;
|
|
}
|
|
}
|
|
@@ -818,14 +640,12 @@ export default {
|
|
}
|
|
}
|
|
//仓位
|
|
//仓位
|
|
|
|
|
|
-.position{
|
|
|
|
-background: #AFB5CB;
|
|
|
|
-border-radius: 2px;
|
|
|
|
-font-size: 12px;
|
|
|
|
-color: #FFFFFF;
|
|
|
|
-line-height: 20px;
|
|
|
|
-display: inline-grid;
|
|
|
|
-padding: 2px 4px;
|
|
|
|
|
|
+.position {
|
|
|
|
+ border-radius: 2px;
|
|
|
|
+ font-size: 12px;
|
|
|
|
+ line-height: 20px;
|
|
|
|
+ display: inline-grid;
|
|
|
|
+ padding: 2px 4px;
|
|
}
|
|
}
|
|
// .position {
|
|
// .position {
|
|
// width: 52px;
|
|
// width: 52px;
|
|
@@ -876,15 +696,34 @@ padding: 2px 4px;
|
|
background-color: #f6f7fc;
|
|
background-color: #f6f7fc;
|
|
}
|
|
}
|
|
|
|
|
|
-/deep/.neifor .el-input--small .el-input__inner{
|
|
|
|
|
|
+/deep/.neifor .el-input--small .el-input__inner {
|
|
width: 100%;
|
|
width: 100%;
|
|
}
|
|
}
|
|
// .ws-info-table[data-v-850a44a6] .el-form-item {
|
|
// .ws-info-table[data-v-850a44a6] .el-form-item {
|
|
// width: 16.66%;
|
|
// width: 16.66%;
|
|
// }
|
|
// }
|
|
.xia {
|
|
.xia {
|
|
-
|
|
|
|
- width: 16%;
|
|
|
|
|
|
+ width: 16%;
|
|
|
|
+}
|
|
|
|
+//去边框
|
|
|
|
+/deep/.el-form-item {
|
|
|
|
+ border-right: 0px;
|
|
|
|
+ border-bottom: 0px;
|
|
|
|
+}
|
|
|
|
+/deep/.ws-info-table {
|
|
|
|
+ border-left: 0px;
|
|
|
|
+ border-top: 0px;
|
|
|
|
+}
|
|
|
|
+.ws-info-table .el-form-item .el-form-item__content {
|
|
|
|
+ border-right: 0px;
|
|
|
|
+ border-bottom: 0px;
|
|
|
|
+ border-left: 0px;
|
|
|
|
+ border-top: 0px;
|
|
|
|
+}
|
|
|
|
+/deep/.ws-info-table .el-form-item {
|
|
|
|
+ border-right: 0px;
|
|
|
|
+ border-bottom: 0px;
|
|
|
|
+ border-left: 0px;
|
|
|
|
+ border-top: 0px;
|
|
}
|
|
}
|
|
-
|
|
|
|
</style>
|
|
</style>
|