123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750 |
- // 采购内转需求
- <template>
- <div class="admin">
- <template>
- <div class="admin1">
- <el-tabs v-model="activeName">
- <el-tab-pane label="补录计量实绩" name="first">
- <div class="switch">
- <el-switch
- v-model="switchValue"
- active-text="二次过磅"
- inactive-text="首次过磅"
- @change="onchange"
- >
- </el-switch>
- </div>
- <div class="admin2">
- <div class="carrier from">
- <el-form
- :inline="true"
- class="demo-form-inline"
- label-width="80px"
- >
- <el-form-item label="车牌号:">
- <el-autocomplete
- class="inline-input"
- v-model="capacityName"
- :fetch-suggestions="querySearchCapacity"
- placeholder="车牌号"
- :trigger-on-focus="false"
- @select="handleSelectCapacity"
- >
- <template slot-scope="{ item }">
- <div class="name">{{ item.capacityNumber }}</div>
- </template>
- </el-autocomplete>
- </el-form-item>
- </el-form>
- </div>
- <div class="material from">
- <span class="text">物资:</span>
- <el-select v-model="materialId" placeholder="请选择">
- <el-option
- v-for="item in materialList"
- :key="item.materialId"
- :label="item.materialName"
- :value="item.materialId"
- >
- </el-option>
- </el-select>
- </div>
- <div class="block" v-if="first">
- <span class="text">首次称重时间:</span>
- <el-date-picker
- v-model="value1"
- type="datetime"
- placeholder="选择日期时间"
- >
- </el-date-picker>
- </div>
- <div class="firstWeight from " v-if="first">
- <span class="text">首次称重重量(吨):</span>
- <el-input v-model="firstWeight"></el-input>
- </div>
- <div class="truckCalFirst from" v-if="first">
- <span class="text">首次汽车衡:</span>
- <el-select
- v-model="truckCalFirst"
- placeholder="请选择"
- @change="onchange1"
- >
- <el-option
- v-for="item in truckCalFirstList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </div>
- <div class="block" v-if="second">
- <span class="text">二次称重时间:</span>
- <el-date-picker
- v-model="value2"
- type="datetime"
- placeholder="选择日期时间"
- >
- </el-date-picker>
- </div>
- <div class="secondWeight from" v-if="second">
- <span class="text">二次称重重量(吨):</span>
- <el-input v-model="secondWeight"></el-input>
- </div>
- <div class="truckCalSecond from" v-if="second">
- <span class="text">二次汽车衡:</span>
- <el-select
- v-model="truckCalSecond"
- placeholder="请选择"
- @change="onchange2"
- >
- <el-option
- v-for="item in truckCalSecondList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </div>
- </div>
- <div class="button_box">
- <el-button @click="onClickCancel">返回</el-button>
- <el-button
- type="primary"
- @click="onClickConfirm"
- :disabled="disabled"
- >确认</el-button
- >
- </div>
- </el-tab-pane>
- <el-tab-pane label="修改路段顺序" name="second">
- <div class="admin2">
- <div class="carrier from">
- <el-form
- :inline="true"
- class="demo-form-inline"
- label-width="80px"
- >
- <el-form-item label="车牌号:">
- <el-autocomplete
- class="inline-input"
- v-model="capacityName"
- :fetch-suggestions="querySearchCapacity"
- placeholder="车牌号"
- :trigger-on-focus="false"
- @select="handleSelectCapacity"
- >
- <template slot-scope="{ item }">
- <div class="name">{{ item.capacityNumber }}</div>
- </template>
- </el-autocomplete>
- </el-form-item>
- </el-form>
- </div>
- <div class="poundNo from">
- <span class="text">运输订单号:</span>
- <el-input v-model="orderNumber" disabled></el-input>
- </div>
- <div class="poundNo from">
- <span class="text">路段顺序号:</span>
- <el-input v-model="lineQuence" @input="oninput"></el-input>
- </div>
- <div class="button_box">
- <el-button
- type="primary"
- @click="updateLineSqe"
- :disabled="disabled"
- >确认</el-button
- >
- </div>
- </div>
- </el-tab-pane>
- <el-tab-pane label="删除多余实绩" name="third">
- <div class="admin2">
- <div class="carrier from">
- <el-form
- :inline="true"
- class="demo-form-inline"
- label-width="80px"
- >
- <el-form-item label="车牌号:">
- <el-autocomplete
- class="inline-input"
- v-model="capacityName"
- :fetch-suggestions="querySearchCapacity"
- placeholder="车牌号"
- :trigger-on-focus="false"
- @select="handleSelectCapacity"
- >
- <template slot-scope="{ item }">
- <div class="name">{{ item.capacityNumber }}</div>
- </template>
- </el-autocomplete>
- </el-form-item>
- </el-form>
- </div>
- <div class="poundNo from">
- <span class="text">运输订单号:</span>
- <el-input v-model="orderNumber" disabled></el-input>
- </div>
- <div class="button_box">
- <el-button
- type="primary"
- @click="deleteMoreResult"
- :disabled="disabled"
- >确认</el-button
- >
- </div>
- </div>
- </el-tab-pane>
- <el-tab-pane label="手动车辆排队" name="fourth">
- <div class="admin2">
- <div class="carrier from">
- <el-form
- :inline="true"
- class="demo-form-inline"
- label-width="80px"
- >
- <el-form-item label="车牌号:">
- <el-autocomplete
- class="inline-input"
- v-model="capacityName"
- :fetch-suggestions="querySearchCapacity"
- placeholder="车牌号"
- :trigger-on-focus="false"
- @select="handleSelectCapacity"
- >
- <template slot-scope="{ item }">
- <div class="name">{{ item.capacityNumber }}</div>
- </template>
- </el-autocomplete>
- </el-form-item>
- </el-form>
- </div>
- <div class="poundNo from">
- <span class="text">运输订单号:</span>
- <el-input v-model="orderNumber" disabled></el-input>
- </div>
- <div class="button_box">
- <el-button
- type="primary"
- @click="queueClick"
- :disabled="disabled"
- >确认</el-button
- >
- </div>
- </div>
- </el-tab-pane>
- <el-tab-pane label="钢材车辆手动放行" name="fifth">
- <div class="admin2">
- <div class="carrier from">
- <el-form
- :inline="true"
- class="demo-form-inline"
- label-width="80px"
- >
- <el-form-item label="车牌号:">
- <el-autocomplete
- class="inline-input"
- v-model="capacityName"
- :fetch-suggestions="querySearchCapacity"
- placeholder="车牌号"
- :trigger-on-focus="false"
- @select="handleSelectCapacity"
- >
- <template slot-scope="{ item }">
- <div class="name">{{ item.capacityNumber }}</div>
- </template>
- </el-autocomplete>
- </el-form-item>
- </el-form>
- </div>
- <div class="poundNo from">
- <span class="text">运输订单号:</span>
- <el-input v-model="orderNumber" disabled></el-input>
- </div>
- <div class="button_box">
- <el-button
- type="primary"
- @click="allowEnfactoryClick"
- :disabled="disabled"
- >确认</el-button
- >
- </div>
- </div>
- </el-tab-pane>
- <el-tab-pane label="车辆手动进厂" name="sixth">
- <div class="admin2">
- <div class="carrier from">
- <el-form
- :inline="true"
- class="demo-form-inline"
- label-width="80px"
- >
- <el-form-item label="车牌号:">
- <el-autocomplete
- class="inline-input"
- v-model="capacityName"
- :fetch-suggestions="querySearchCapacity"
- placeholder="车牌号"
- :trigger-on-focus="false"
- @select="handleSelectCapacity"
- >
- <template slot-scope="{ item }">
- <div class="name">{{ item.capacityNumber }}</div>
- </template>
- </el-autocomplete>
- </el-form-item>
- </el-form>
- </div>
- <div class="poundNo from">
- <span class="text">运输订单号:</span>
- <el-input v-model="orderNumber" disabled></el-input>
- </div>
- <span class="text">进厂门岗:</span>
- <el-select
- v-model="enFactoryGatepost"
- placeholder="请选择"
- @change="onchangeGatepost(enFactoryGatepost)"
- >
- <el-option
- v-for="item in gatePostList"
- :key="item.gatepostId"
- :label="item.gatepostName"
- :value="item.gatepostName"
- >
- </el-option>
- </el-select>
- <div class="button_box">
- <el-button
- type="primary"
- @click="enFactoryResultByPDA"
- :disabled="disabled"
- >确认</el-button
- >
- </div>
- </div>
- </el-tab-pane>
- </el-tabs>
- </div>
- </template>
- </div>
- </template>
- <script>
- import { toDateString, toDateNo } from "../app.js";
- export default {
- data() {
- return {
- orderNumber: null,
- first: true,
- second: true,
- activeName: "first",
- capacityName: null,
- stateCapacity: null,
- materialList: [],
- capacityId: null,
- materialId: null,
- value1: null,
- value2: null,
- disabled: false,
- orderId: null,
- firstWeight: null,
- secondWeight: null,
- netWeight: null,
- poundNo: null,
- truckCalFirstList: [],
- truckCalSecondList: [],
- truckCalFirst: null,
- truckCalSecond: null,
- switchValue: true,
- truckCalFirstNum: null,
- truckCalSecondNum: null,
- lineQuence: null,
- gatePostList: [],
- enFactoryGatepost: null,
- gatePostId: null
- };
- },
- created() {
- this.value1 = new Date();
- this.value2 = new Date();
- },
- mounted() {
- this.information();
- },
- methods: {
- onchangeGatepost(value) {
- console.log(value);
- this.gatePostList.forEach(e => {
- if (e.gatepostName == value) {
- this.gatePostId = e.gatePostId;
- }
- });
- },
- enFactoryResultByPDA() {
- let map = {
- orderNumber: this.orderNumber + " ",
- gatepostId: this.gatePostId
- };
- this.axios.post("");
- },
- allowEnfactoryClick() {},
- queueClick() {
- this.axios
- .post("/api/v1/qms/addQueueResult?vno=" + this.capacityName + "_")
- .then(res => {
- if (res.data.code == 200) {
- this.$message.success("操作成功");
- this.$router.go(0);
- }
- });
- },
- deleteMoreResult() {
- console.log(this.orderNumber);
- this.axios
- .post("/api/v1/bp/deleteErrorResult?orderNumber=" + this.orderNumber)
- .then(res => {
- if (res.data.code == "200") {
- this.$message.success("删除成功");
- }
- });
- },
- updateLineSqe() {
- let map = {
- orderId: this.orderId,
- orderLineSqe: this.lineQuence
- };
- this.axios.post("/api/v1/uc/updateLineSqe", map).then(res => {
- console.log(res.data);
- if (res.data.code == "200") {
- this.$message.success("修改路段顺序号成功");
- this.$router.go(0);
- }
- });
- },
- oninput() {},
- onchange() {
- if (this.switchValue) {
- this.first = true;
- this.second = true;
- } else {
- this.second = false;
- }
- },
- onchange1() {
- console.log(this.truckCalFirst);
- this.truckCalFirstList.forEach(e => {
- if (this.truckCalFirst == e.value) {
- this.truckCalFirstNum = e.label;
- }
- });
- },
- onchange2() {
- this.truckCalSecondList.forEach(e => {
- if (this.truckCalSecond == e.value) {
- this.truckCalSecondNum = e.label;
- }
- });
- },
- //运力弹出层
- handleSelectCapacity(item) {
- this.capacityId = item.capacityId;
- this.capacityName = item.capacityNumber;
- this.axios
- .get("/api/v1/uc/getOrderNumber?capacityId=" + this.capacityId)
- .then(res => {
- if (res.data.code == "200") {
- this.orderId = res.data.data.orderId;
- this.orderNumber = res.data.data.orderNumber;
- this.axios
- .get("/api/v1/uc/getMaterialIdByOrderId?orderId=" + this.orderId)
- .then(res => {
- if (res.data.code == "200") {
- this.materialList = res.data.data;
- }
- });
- }
- });
- },
- //以下是运力边输边查搜索
- querySearchCapacity(queryString, cb) {
- if (queryString.length < 3) {
- return;
- }
- this.axios
- .get("/api/v1/uc/getCapacityNumber?index=" + queryString)
- .then(res => {
- if (res.data.code == "200") {
- var restaurantsCarrier = res.data.data;
- console.log(restaurantsCarrier, "restaurantsCarrier");
- var results = queryString
- ? restaurantsCarrier.filter(this.createFilterCarrier(queryString))
- : restaurantsCarrier;
- // 调用 callback 返回建议列表的数据
- cb(results);
- }
- });
- },
- createFilterCarrier(queryString) {
- return restaurantsCarrier => {
- return (
- restaurantsCarrier.capacityNumber
- .toLowerCase()
- .indexOf(queryString.toLowerCase()) > -1
- );
- };
- },
- //以上是承运商边输边查搜索
- information() {
- this.axios.get("/api/v1/uc/getAllCalculateMes").then(res => {
- this.truckCalFirstList = res.data;
- this.truckCalSecondList = res.data;
- });
- this.axios.get("/api/v1/uc/getAllGatepost").then(res => {
- console.log(res);
- this.gatePostList = res.data;
- });
- },
- onClickConfirm() {
- this.poundNo = "jlbl" + toDateNo(new Date());
- if (this.switchValue) {
- if (
- this.orderNumber == null ||
- this.truckCalFirst == null ||
- this.truckCalSecond == null ||
- this.firstWeight == null ||
- this.secondWeight == null ||
- this.value1 == null ||
- this.value2 == null ||
- this.materialId == null
- ) {
- this.$message.warning("请填写所有值!!!");
- return;
- }
- } else {
- if (
- this.orderNumber == null ||
- this.truckCalFirst == null ||
- this.firstWeight == null ||
- this.value1 == null ||
- this.materialId == null
- ) {
- this.$message.warning("请填写所有值!!!");
- return;
- }
- }
- let mapFirst = {
- orderNumber: this.orderNumber,
- resultTareCalculateNumber: this.truckCalFirstNum,
- resultTareWeight: this.firstWeight + "",
- resultTareWeightTime: toDateString(this.value1),
- resultPoundNo: this.poundNo,
- materialId: this.materialId + ""
- };
- //如果首次大于二次,那么是先毛后皮,首次放在毛重上面,二次放在皮重上面
- if (this.firstWeight >= this.secondWeight) {
- var mapSecond = {
- orderNumber: this.orderNumber,
- resultTareCalculateNumber: this.truckCalSecondNum,
- resultCrossCalculateNumber: this.truckCalFirstNum,
- resultTareWeight: this.secondWeight + "",
- resultCrossWeight: this.firstWeight + "",
- resultNetWeight:
- Math.abs(this.firstWeight - this.secondWeight).toFixed(2) + "",
- resultTareWeightTime: toDateString(this.value2),
- resultCrossWeightTime: toDateString(this.value1),
- resultPoundNo: this.poundNo,
- materialId: this.materialId + ""
- };
- } else {
- //如果首次小于二次,那么是先皮后毛,首次放在皮重上面,二次放在毛重上面
- var mapSecond = {
- orderNumber: this.orderNumber,
- resultTareCalculateNumber: this.truckCalFirstNum,
- resultCrossCalculateNumber: this.truckCalSecondNum,
- resultTareWeight: this.firstWeight + "",
- resultCrossWeight: this.secondWeight + "",
- resultNetWeight:
- Math.abs(this.secondWeight - this.firstWeight).toFixed(2) + "",
- resultTareWeightTime: toDateString(this.value1),
- resultCrossWeightTime: toDateString(this.value2),
- resultPoundNo: this.poundNo,
- materialId: this.materialId + ""
- };
- }
- var arr = [];
- if (this.switchValue) {
- arr.push(mapSecond);
- } else {
- arr.push(mapFirst);
- }
- this.axios.post("/api/v1/uc/recordingWeightResult", arr).then(res => {
- this.$message.success("补录计量实绩成功");
- this.$router.go(0);
- });
- },
- onClickCancel() {}
- }
- };
- </script>
- <style lang="scss">
- .admin {
- .admin1 {
- margin-top: 40px;
- margin-left: 40px;
- .switch {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 20px;
- color: aqua;
- }
- .button_box {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 100%;
- height: 100px;
- }
- .admin2 {
- margin-top: 40px;
- .from {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 20px;
- margin-bottom: 20px;
- }
- .carrier {
- display: flex;
- justify-content: center;
- align-items: center;
- .el-form-item {
- text-align: right;
- }
- .el-autocomplete {
- width: 250px;
- }
- }
- .material {
- display: flex;
- justify-content: center;
- margin-top: 20px;
- margin-right: 100px;
- .text {
- display: inline-block;
- width: 170px;
- text-align: right;
- }
- .el-input {
- width: 250px;
- }
- }
- .poundNo {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 20px;
- margin-right: 100px;
- .text {
- display: inline-block;
- width: 170px;
- text-align: right;
- }
- .el-input {
- width: 250px;
- }
- }
- .block {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 20px;
- margin-right: 100px;
- .el-input {
- width: 250px;
- }
- .text {
- display: inline-block;
- width: 170px;
- text-align: right;
- }
- }
- .truckCalFirst {
- display: flex;
- justify-content: center;
- margin-top: 20px;
- margin-right: 100px;
- .text {
- display: inline-block;
- width: 170px;
- text-align: right;
- }
- .el-input {
- width: 250px;
- }
- }
- .truckCalSecond {
- display: flex;
- justify-content: center;
- margin-top: 20px;
- margin-right: 100px;
- .text {
- display: inline-block;
- width: 170px;
- text-align: right;
- }
- .el-input {
- width: 250px;
- }
- }
- .secondWeight {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 20px;
- margin-right: 100px;
- .text {
- display: inline-block;
- width: 170px;
- text-align: right;
- }
- .el-input {
- width: 250px;
- }
- }
- .firstWeight {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 20px;
- margin-right: 100px;
- .text {
- display: inline-block;
- width: 170px;
- text-align: right;
- }
- .el-input {
- width: 250px;
- }
- }
- .netWeight {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 20px;
- margin-right: 100px;
- .text {
- display: inline-block;
- width: 170px;
- text-align: right;
- }
- .el-input {
- width: 250px;
- }
- }
- }
- }
- }
- </style>
|