| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- <template>
- <div>
- <el-dialog title="查看库区" :visible.sync="dialogVisible" append-to-body width="60%" :before-close="handleClose">
- <avue-crud
- v-if="dialogVisible"
- :option="option"
- :table-loading="loading"
- :data="data"
- ref="crud"
- id="out-table"
- :header-cell-class-name="headerClassName"
- >
- <template slot-scope="{ scope, row }" slot="menuLeft">
- <div style="display: flex;">
- <el-button type="primary" size="small" @click="addRow">新增</el-button>
- <dic-select
- v-if="dialogVisible"
- style="width: 300px;"
- v-model="query.dot"
- placeholder="批次号"
- label="dot"
- :disabled="disabled || query.historyList.length"
- :url="'/blade-sales-part/stockDesc/dotList?storageId=' + form.storageId + '&goodsId=' + query.goodsId"
- :filterable="true"
- :allowCreate="true"
- ></dic-select>
- <el-tag type="danger">入库数量:{{ qtyMax }}</el-tag>
- </div>
- </template>
- <template slot="reservoirAreaName" slot-scope="{ row }">
- <dic-select
- v-model="row.reservoirAreaName"
- placeholder="库区"
- label="cname"
- res="records"
- :url="'/blade-sales-part/reservoirarea/list?current=1&size=5&storageId=' + form.storageId"
- :filterable="true"
- :remote="true"
- dataName="cname"
- :disabled="disabled"
- @selectChange="rowDicChange('reservoirAreaName', $event, row)"
- :slotRight="true"
- rightLabel="balanceQuantity"
- ></dic-select>
- </template>
- <template slot="quantity" slot-scope="{ row }">
- <el-input-number
- v-model="row.quantity"
- size="small"
- :controls="false"
- style="width: 100%"
- :max="qtyMax"
- :disabled="disabled"
- @change="qtyChange(row)"
- />
- </template>
- <template slot-scope="{ row, index }" slot="menu">
- <el-button icon="el-icon-delete" :disabled="disabled" size="small" type="text" @click="rowDel(row, index)">删除 </el-button>
- </template>
- </avue-crud>
- <span slot="footer" class="dialog-footer">
- <el-button @click="dialogVisible = false" size="mini">取 消</el-button>
- <el-button type="primary" @click="submit" size="mini">确 认</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import dicSelect from "@/components/dicSelect/main";
- import { itemRemove } from "@/api/tirePartsMall/salesManagement/outboundWorkOrder";
- export default {
- props: {
- disabled: {
- type: Boolean,
- default: false
- }
- },
- components: {
- dicSelect
- },
- data() {
- return {
- data: [],
- dialogVisible: false,
- loading: false,
- option: {
- height: 500,
- calcHeight: 30,
- menuWidth: 80,
- border: true,
- index: true,
- addBtn: false,
- viewBtn: false,
- delBtn: false,
- editBtn: false,
- refreshBtn: false,
- columnBtn: false,
- // menu: false,
- // header: false,
- column: [
- {
- label: "库区",
- prop: "reservoirAreaName",
- overHidden: true
- },
- {
- label: "库存",
- prop: "balanceQuantity",
- overHidden: true
- },
- {
- label: "本次数量",
- prop: "quantity",
- overHidden: true
- }
- ]
- },
- form: {},
- query: {},
- index: 0,
- qtyMax: 0
- };
- },
- async created() {},
- methods: {
- rowDel(row, index) {
- this.$confirm("确定删除数据?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- if (row.id) {
- itemRemove({ ids: row.id }).then(res => {
- this.data.splice(index, 1);
- this.$message.success("操作成功!");
- });
- } else {
- this.data.splice(index, 1);
- this.$message.success("操作成功!");
- }
- });
- },
- addRow() {
- this.data.push({
- quantity: 0
- });
- },
- rowDicChange(name, row, el) {
- if (name == "reservoirAreaName") {
- if (row) {
- el.reservoirAreaId = row.id;
- el.balanceQuantity = row.balanceQuantity;
- } else {
- el.reservoirAreaId = null;
- el.reservoirAreaName = null;
- el.balanceQuantity = null;
- }
- }
- },
- qtyChange(row) {
- let sum = 0;
- for (let item of this.data) {
- sum += Number(item.quantity);
- }
- if (sum > this.qtyMax) {
- return this.$message.error("总数量不能超过" + this.qtyMax);
- }
- },
- openDialog(form, row, index) {
- this.form = {};
- this.query = {};
- this.index = null;
- this.data = [];
- this.qtyMax = 0;
- this.form = form;
- this.query = row;
- this.index = index;
- this.data = row.historyList;
- this.qtyMax = row.goodsNum;
- this.dialogVisible = true;
- },
- submit() {
- let sum = 0;
- for (let item of this.data) {
- if (!item.reservoirAreaId) {
- return this.$message.error("请选择库区");
- }
- if (!item.quantity) {
- return this.$message.error("本次数量不能为0");
- }
- sum += Number(item.quantity);
- }
- if (sum > this.qtyMax) {
- return this.$message.error("总数量不能超过" + this.qtyMax);
- }
- let obj = {
- ...this.query,
- sendNum: sum,
- historyList: this.data
- };
- this.$emit("areaData", obj, this.index);
- this.dialogVisible = false;
- },
- //自定义列保存
- async saveColumn(ref, option, optionBack, code) {
- /**
- * 已定义全局方法,直接使用,saveColumnData保存列数据方法,参数传值(表格名称,当前表格的option数据)
- * 已定义全局方法,直接使用,getColumnName方法用来获取枚举值,参数根据自己定义的code值获取中文名
- * 一定要执行异步操作,要等接口成功返回,才能执行下一行代码
- */
- const inSave = await this.saveColumnData(this.getColumnName(code), this[option]);
- if (inSave) {
- this.$message.success("保存成功");
- //关闭窗口
- this.$refs[ref].$refs.dialogColumn.columnBox = false;
- this.searchReset();
- }
- },
- //自定义列重置
- async resetColumn(ref, option, optionBack, code) {
- this[option] = this[optionBack];
- const inSave = await this.delColumnData(this.getColumnName(code), this[optionBack]);
- if (inSave) {
- this.$message.success("重置成功");
- this.$refs[ref].$refs.dialogColumn.columnBox = false;
- }
- },
- // 更改表格颜色
- headerClassName(tab) {
- //颜色间隔
- let back = "";
- if (tab.columnIndex >= 0 && tab.column.level === 1) {
- if (tab.columnIndex % 2 === 0) {
- back = "back-one";
- } else if (tab.columnIndex % 2 === 1) {
- back = "back-two";
- }
- }
- return back;
- }
- }
- };
- </script>
- <style scoped>
- ::v-deep#out-table .back-one {
- background: #ecf5ff !important;
- text-align: center;
- padding: 4px 0;
- }
- ::v-deep#out-table .back-two {
- background: #ecf5ff !important;
- text-align: center;
- padding: 4px 0;
- }
- </style>
|