123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439 |
- <template>
- <el-row class="addForm">
- <el-col :span="24">
- <el-form
- :model="tableForm"
- :rules="tableFormThis"
- ref="tableForm"
- :size="'mini'"
- class="demo-tableForm product_go"
- >
- <el-table
- :data="tableForm.product_go"
- border
- :size="'mini'"
- row-key="key"
- >
- <template v-for="(item, index) in columns">
- <el-table-column
- :prop="item.prop"
- show-overflow-tooltip
- :label="item.label"
- v-if="
- item.type === 'text' && item.show && item.prop !== 'error_code'
- "
- :width="item.width"
- :min-width="item.minWidth"
- :key="item.prop + index"
- />
- <el-table-column
- :prop="item.prop"
- :label="item.label"
- v-else-if="
- item.type === 'text' && item.show && item.prop === 'error_code'
- "
- :width="item.width"
- :min-width="item.minWidth"
- :key="item.prop + index"
- >
- <template slot-scope="scope">
- <span class="spscope">{{ scope.row.error_msg }}</span>
- </template>
- </el-table-column>
- <el-table-column
- :prop="item.prop"
- :label="item.label"
- v-else-if="item.type !== 'text' && item.show"
- :width="item.width"
- :min-width="item.minWidth"
- :key="item.prop + index"
- >
- <template slot-scope="scope">
- <el-form-item
- :prop="'product_go.' + scope.$index + '.' + item.prop"
- :rules="scope.row.edit ? tableFormThis[item.prop] : {}"
- :size="'mini'"
- >
- <el-input
- v-if="scope.row.edit === true && item.type === 'input'"
- :size="'mini'"
- maxlength="250"
- clearable
- v-model="scope.row[item.prop]"
- />
- <el-select
- v-model="scope.row[item.prop]"
- v-if="scope.row.edit === true && item.type === 'select'"
- style="width: 100%"
- clearable
- placeholder="异常原因"
- @change="elSelectChange($event, scope.$index)"
- >
- <el-option
- v-for="item in options"
- :key="item.result_code"
- :label="item.result"
- :value="item.result_code"
- :disabled="item.status === '0'"
- >
- </el-option>
- </el-select>
- <span v-if="!scope.row.edit" class="spscope">{{
- item.type === "select"
- ? scope.row.error_msg
- : scope.row[item.prop]
- }}</span>
- </el-form-item>
- </template>
- </el-table-column>
- </template>
- <el-table-column
- fixed="right"
- v-if="
- (status == '3' && powers.some((item) => item == '022')) ||
- (status == '4' && powers.some((item) => item == '023'))
- "
- label="操作"
- width="80"
- >
- <template slot-scope="scope">
- <el-tooltip
- effect="dark"
- content="编辑"
- v-if="!scope.row.edit"
- placement="top"
- >
- <i
- class="el-icon-edit tb-icon"
- @click="editRow(scope.$index)"
- ></i>
- </el-tooltip>
- <el-tooltip
- effect="dark"
- content="保存"
- v-if="scope.row.edit"
- placement="top"
- >
- <i
- class="el-icon-circle-check tb-icon"
- @click="checkRow(scope.$index)"
- ></i>
- </el-tooltip>
- <el-tooltip effect="dark" content="重置" placement="top">
- <i
- class="el-icon-refresh-left tb-icon"
- @click="resetRow(scope.$index)"
- ></i>
- </el-tooltip>
- </template>
- </el-table-column>
- </el-table>
- </el-form>
- </el-col>
- <el-col :span="24" style="text-align: right; padding: 10px 0 0 0">
- <el-button
- type="primary"
- :size="'mini'"
- @click="submitForm"
- v-if="
- (status == '3' && powers.some((item) => item == '022')) ||
- (status == '4' && powers.some((item) => item == '023'))
- "
- >保 存
- </el-button>
- </el-col>
- </el-row>
- </template>
- <script>
- import asyncRequest from "@/apis/service/stock/allot/detail";
- import resToken from "@/mixins/resToken";
- import { isnumber } from "@/utils/validate";
- import config from "./columns"; //表格列参数
- export default {
- name: "allot",
- props: ["id", "sitem", "newTime"],
- mixins: [resToken],
- computed: {
- powers() {
- let tran =
- this.$store.getters.btnList.find(
- (item) => item.menu_route == "allotDetail"
- ) || {};
- if (tran && tran.action && tran.action.length > 0) {
- return tran.action;
- } else {
- return [];
- }
- },
- },
- data() {
- return {
- options: [],
- status: "",
- loading: false,
- tableForm: {
- product_go: [], //出库商品
- },
- tableFormThis: config.tableFormThis,
- columns: [],
- };
- },
- watch: {
- newTime: function (val) {
- if (val) {
- this.initForm();
- }
- },
- },
- mounted() {
- this.initForm();
- },
- methods: {
- async initForm() {
- this.loading = true;
- this.columns = [];
- await this.getresultlist();
- await this.resetForm();
- this.loading = false;
- },
- async getresultlist() {
- const res = await asyncRequest.resultlist({
- page: 1,
- size: 100,
- type:"1",
- status: "",
- });
- if (res && res.code === 0 && res.data) {
- const { list } = res.data;
- this.options = list;
- } else if (res && res.code >= 100 && res.code <= 104) {
- await this.logout();
- } else {
- this.$message.warning(res.message);
- }
- },
- async resetForm() {
- // 重置
- await this.$nextTick(() => {
- if (this.$refs.tableForm) {
- this.$refs.tableForm.resetFields();
- this.$refs.tableForm.clearValidate();
- const { item, status } = this.sitem;
- this.status = status;
- let columnsList = JSON.parse(JSON.stringify(config.columns));
- columnsList.forEach((v1) => {
- if (this.status == "5" || this.status == "4") {
- v1.show = true;
- }
- if (this.status == "4" && v1.prop === "stock_num") {
- v1.type = "input";
- v1.width = "150px";
- }
- if (this.status == "3") {
- if (v1.prop === "error_remark" || v1.prop === "error_num") {
- v1.show = true;
- v1.width = "150px";
- v1.type = "input";
- }
- if (v1.prop === "error_code") {
- v1.show = true;
- v1.width = "150px";
- v1.type = "select";
- }
- }
- this.columns.push(v1);
- });
- this.tableForm.product_go = [];
- let list = JSON.parse(JSON.stringify(item));
- // item || []; //出库商品
- list.forEach((v) => {
- v.usable_stock = v.usable_num;
- v.type_code = v.good_type_code;
- v.error_num = v.error_num || "0";
- v.error_code = v.error_code || "";
- v.error_msg = v.error_msg || "";
- v.error_remark = v.error_remark || "";
- v.stock_num = v.stock_num || "0";
- v.edit = false;
- this.tableForm.product_go.push(v);
- });
- }
- });
- },
- async submitForm() {
- let index = -1,
- good = [];
- this.tableForm.product_go.forEach((v, i) => {
- if (v.edit && index === -1) {
- index = i;
- }
- });
- if (index !== -1) {
- this.$message.warning("当前已有商品正在编辑!");
- return;
- }
- this.loading = true;
- good = this.getGoodList();
- const model = {
- allot_code: this.sitem.allot_code,
- good: good,
- };
- let res = {};
- if (this.status == "3") {
- res = await asyncRequest.allotgetin(model);
- } else {
- res = await asyncRequest.allotvesio(model);
- }
- this.loading = false;
- if (res && res.code === 0) {
- this.$notify.success({
- title:
- this.status == "3"
- ? "入库方验货结果提交成功!"
- : "入库方验货审核结果提交成功",
- message: "",
- });
- this.$emit("refresh");
- } else if (res && res.code >= 100 && res.code <= 104) {
- await this.logout();
- } else {
- this.$message.warning(res.message);
- }
- },
- //提交表单前 商品信息list 汇总
- getGoodList() {
- let oldList = JSON.parse(JSON.stringify(this.tableForm.product_go)),
- resList = [];
- oldList.forEach((v1) => {
- let goodModel = {
- good_code: v1.type_code,
- usable_num: v1.usable_stock,
- error_num: v1.error_num,
- error_remark: v1.error_remark,
- error_code: v1.error_code,
- };
- if (this.status === "4") {
- goodModel.stock_num = v1.stock_num;
- }
- resList.push(goodModel);
- });
- return resList;
- },
- // 重置行操作
- resetRow(index) {
- if (this.status === "3") {
- this.tableForm.product_go[index].error_num = "0";
- this.tableForm.product_go[index].error_code = "";
- this.tableForm.product_go[index].error_msg = "";
- this.tableForm.product_go[index].error_remark = "";
- } else {
- this.tableForm.product_go[index].stock_num = "0";
- }
- },
- //异常原因筛选
- elSelectChange(e, index) {
- let oindex = this.options.findIndex((v) => v.result_code === e);
- this.tableForm.product_go[index].error_msg =
- oindex !== -1 ? this.options[oindex].result : "";
- },
- //保存某一行
- checkRow(rowIndex) {
- const { allot_num, error_num, error_code, error_remark, stock_num } =
- this.tableForm.product_go[rowIndex];
- if (this.status === "3") {
- if (!isnumber(error_num + "") || error_num === "") {
- this.$message.warning("异常数量必须为整数!");
- return;
- }
- if (parseInt(error_num + "") > parseInt(allot_num + "")) {
- this.$message.warning("异常数量不大于调拨总数量!");
- return;
- }
- if (parseInt(error_num + "") > 0 && error_code === "") {
- this.$message.warning("请选择异常原因!");
- return;
- }
- if (parseInt(error_num + "") > 0 && error_remark === "") {
- this.$message.warning("请输入异常备注!");
- return;
- }
- if (parseInt(error_num + "") === 0 && error_code !== "") {
- this.$message.warning("异常数量为零,不用选择异常原因!");
- return;
- }
- if (parseInt(error_num + "") === 0 && error_remark !== "") {
- this.$message.warning("异常数量为零,不用填写异常备注!");
- return;
- }
- } else {
- if (!isnumber(stock_num + "" || stock_num === "")) {
- this.$message.warning("入库数量必须为整数!");
- return;
- }
- if (parseInt(stock_num + "") > parseInt(allot_num + "")) {
- this.$message.warning("入库数量不大于调拨总数量!");
- return;
- }
- }
- this.tableForm.product_go[rowIndex].edit = false;
- },
- //编辑某一行
- editRow(rowIndex) {
- let index = this.tableForm.product_go.findIndex((v) => v.edit);
- if (index !== -1) {
- this.$message.warning("请完成其他行的编辑!");
- return;
- } else {
- this.tableForm.product_go[rowIndex].edit = true;
- }
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .allot,
- .allotDetail {
- .label-title-model {
- line-height: 30px;
- width: 100%;
- color: #909399;
- font-weight: bold;
- font-size: 15px;
- padding-bottom: 12px;
- text-align: center;
- }
- .product_go {
- .el-form-item--mini.el-form-item {
- margin: 0 !important;
- .spscope {
- word-break: break-all !important;
- line-height: 23px !important;
- padding: 0 !important;
- margin: 0 !important;
- list-style: none !important;
- font-style: normal !important;
- text-decoration: none !important;
- border: none !important;
- display: inline-block !important;
- font-weight: 500 !important;
- font-family: "Microsoft Yahei", sans-serif !important;
- -webkit-tap-highlight-color: transparent !important;
- -webkit-font-smoothing: antialiased !important;
- color: #606266 !important;
- font-size: 12px !important;
- }
- }
- }
- }
- </style>
-
|