| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519 |
- <template>
- <el-dialog :visible.sync="visible" title="选择出库明细" width="90vw">
- <el-form :model="formData" label-width="120px">
- <el-row>
- <!-- <el-col :span="6">
- <el-form-item label="仓库:" prop="warehouseId">
- <el-select
- style="width: 100%"
- clearable
- v-model="formData.warehouseId"
- placeholder="请选择"
- >
- <el-option
- v-for="item in warehouseList"
- :label="item.name"
- :value="item.id"
- :key="item.id"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col> -->
- <el-col :span="6">
- <el-form-item label="物品编码" prop="code">
- <el-input
- v-model.trim="formData.code"
- placeholder="请输入"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="物品名称" prop="name">
- <el-input
- v-model.trim="formData.name"
- placeholder="请输入"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="货位" prop="goodsAllocation">
- <el-input
- v-model.trim="formData.goodsAllocation"
- placeholder="请输入"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item :label="`${title}编码`" prop="sourceBizNo">
- <el-input
- v-model.trim="formData.sourceBizNo"
- placeholder="请输入"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="批次号" prop="batchNo">
- <el-input
- v-model.trim="formData.batchNo"
- placeholder="请输入"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="包装编码" prop="packageNo">
- <el-input
- v-model.trim="formData.packageNo"
- placeholder="请输入"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="时间类型">
- <el-select
- style="width: 100%"
- v-model="formData.dateType"
- placeholder=""
- @change="$forceUpdate()"
- >
- <el-option label="生产日期" :value="2"> </el-option>
- <el-option label="采购日期" :value="1"> </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="时间" prop="productTime">
- <el-date-picker
- v-model="formData.productTime"
- type="daterange"
- style="width: 100%"
- value-format="yyyy-MM-dd"
- range-separator="至"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- placeholder="选择日期"
- >
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col style="text-align: right">
- <el-button @click="reset" icon="el-icon-refresh-left" size="small"
- >重置</el-button
- >
- <el-button
- type="primary"
- @click="handleList"
- icon="el-icon-search"
- size="small"
- >搜索</el-button
- >
- </el-col>
- </el-row>
- </el-form>
- <div class="info-box">
- <ul>
- <li><span>物品编码</span>{{ infoData.code }}</li>
- <li><span>物品名称</span>{{ infoData.name }}</li>
- <li v-for="(item, index) in tableHeader" :key="index">
- <span>{{ item.label }}</span>
- <template v-if="item.formatter">{{
- item.formatter(infoData)
- }}</template>
- <template v-else>{{ infoData[item.prop] }}</template>
- </li>
- <li v-if="infoData.sparePartsNum">
- <span>申领数量</span>{{ infoData.sparePartsNum }}
- </li>
- </ul>
- <div class="result-box">
- <!-- takeStockPattern0,逐个出库,1,批量出库 -->
- <div class="select-box"><span>已选数量</span> {{ selectedNum }}条</div>
- <div v-if="infoData.takeStockPattern === 1" class="select-box">
- <!-- 选择数量<el-input-number
- size="mini"
- :controls="false"
- v-model="multipleNum"
- :max="tableData.length"
- >
- </el-input-number
- >条 -->
- <el-button type="text" @click="openBatch">批量出库</el-button>
- </div>
- </div>
- </div>
- <el-table
- height="60vh"
- ref="tableRef"
- :data="tableData"
- @selection-change="selecctedRow"
- style="width: 100%"
- :header-cell-style="{ background: '#EEEEEE', border: 'none' }"
- >
- <el-table-column label="序号" type="index"></el-table-column>
- <el-table-column
- label="货位"
- prop="pathName"
- show-overflow-tooltip
- width="270"
- >
- </el-table-column>
- <el-table-column
- :label="`${title}编码`"
- prop="sourceBizNo"
- ></el-table-column>
- <el-table-column label="物品编码" prop="code"> </el-table-column>
- <el-table-column label="物品名称" prop="name"> </el-table-column>
- <el-table-column label="批次号" prop="batchNum"> </el-table-column>
- <el-table-column
- label="生产日期"
- width="180"
- v-if="formData.dateType == 2"
- >
- <template slot-scope="{ row }">
- <span>
- {{ row.produceTime }}
- </span>
- </template>
- </el-table-column>
- <el-table-column
- label="采购日期"
- width="180"
- v-if="formData.dateType == 1"
- >
- <template slot-scope="{ row }">
- <span>
- {{ row.procureTime }}
- </span>
- </template>
- </el-table-column>
- <el-table-column
- label="最小包装单元"
- prop=""
- align="center"
- v-if="!infoData.isUnpack"
- >
- <template slot-scope="{ row }">
- {{ row.measurementUnit }}{{ row.unit }}/{{ row.minUnit }}
- </template>
- </el-table-column>
- <el-table-column label="包装编码" prop="packageNo"></el-table-column>
- <el-table-column label="入库时间" prop="createTime"></el-table-column>
- <el-table-column width="50" type="selection"></el-table-column>
- </el-table>
- <div style="text-align: right; padding: 10px">
- <el-pagination
- background
- layout="total, sizes, prev, pager, next, jumper"
- :total="total"
- :page-sizes="[5, 10, 20, 50]"
- :page-size.sync="formData.size"
- :current-page.sync="formData.pageNum"
- @current-change="handleCurrentChange"
- @size-change="handleSizeChange"
- >
- </el-pagination>
- </div>
- <div slot="footer" class="footer">
- <div class="info">
- <div><span>总库存量</span>{{ infoData.availableCountBase }}</div>
- <!-- <div><span>总包装数量</span>{{ infoData.realPacketNum }}</div> -->
- </div>
- <div>
- <el-button @click="cancel">取消</el-button>
- <el-button type="primary" @click="confirm">确定</el-button>
- </div>
- </div>
- <el-dialog
- :visible.sync="batchVisible"
- title="批量选择"
- width="300px"
- append-to-body
- >
- <div style="text-align: center">
- <el-input-number
- size="small"
- v-model="multipleNum"
- :max="tableData.length"
- >
- </el-input-number>
- </div>
- <div slot="footer">
- <el-button size="small" @click="batchVisible = false">取消</el-button>
- <el-button size="small" type="primary" @click="multiConfirm"
- >确认</el-button
- >
- </div>
- </el-dialog>
- </el-dialog>
- </template>
- <script>
- // import { getWarehouseActualDetail } from '@/api/stockManagement/stockLedger.js'
- import outin from '@/api/warehouseManagement/outin';
- import { getWarehouseList } from '@/api/classifyManage/itemInformation';
- export default {
- props: {
- tableHeader: {
- type: Array,
- default: () => []
- },
- title: {
- type: String,
- default: ''
- }
- },
- data() {
- return {
- visible: false,
- batchVisible: false,
- multipleNum: '',
- confirmResolve: null,
- tableData: [],
- selectList: [],
- formData: {
- cargoSpaceCode: '',
- time: '',
- dateType: 2,
- batchNo: '',
- packageNo: '',
- onlyCode: '',
- pageNum: 1,
- size: 10
- },
- infoData: {},
- memo: [],
- memo1: [],
- total: 0,
- warehouseList: []
- };
- },
- computed: {
- selectedNum() {
- return this.memo.length;
- },
- checkedAll: {
- get() {
- return this.tableData.every((item) => item.checked);
- },
- set(val) {
- this.tableData.forEach((item) => (item.checked = val));
- }
- }
- },
- created() {
- this.getArguInfo();
- },
- methods: {
- //搜索数据源
- async getArguInfo() {
- const { data } = await getWarehouseList();
- this.warehouseList = data;
- },
- handleCurrentChange() {
- this.handleList();
- },
- handleSizeChange() {
- this.formData.pageNum = 1;
- this.handleList();
- },
- selecctedRow(val) {
- console.log(val);
- this.$emit('mxArgs', val);
- this.memo = val;
- },
- open(infoData, memo = []) {
- this.visible = true;
- this.batchVisible = false;
- this.infoData = infoData;
- this.tableData = [];
- this.formData = {};
- this.formData.dateType = 2;
- this.memo1 = memo || [];
- this.multipleNum = this.memo.length;
- this.handleList(true);
- return new Promise((res) => (this.confirmResolve = res));
- },
- cancel() {
- this.tableData = [];
- this.memo = [];
- this.memo1 = [];
- this.visible = false;
- },
- confirm() {
- if (!this.selectedNum) {
- return this.$message.error('请勾选数据');
- }
- this.confirmResolve && this.confirmResolve(this.memo);
- this.cancel();
- },
- openBatch() {
- this.multipleNum = 0;
- this.batchVisible = true;
- },
- multiConfirm() {
- if (!this.multipleNum) {
- return this.$message.error('请输入大于0的数量');
- }
- this.batchVisible = false;
- const selectedList = this.tableData.filter((i) => i.checked);
- if (selectedList.length === this.multipleNum) return;
- if (selectedList.length >= this.multipleNum) {
- for (
- let index = this.multipleNum;
- index < selectedList.length;
- index++
- ) {
- selectedList[index].checked = false;
- this.singleSelect(false, selectedList[index]);
- }
- } else {
- let rest = this.multipleNum - selectedList.length;
- for (const p of this.tableData) {
- if (!p.checked) {
- p.checked = true;
- this.memo.push(p);
- rest--;
- }
- if (!rest) break;
- }
- }
- // this.tableData.forEach((item, index) => {
- // item.checked = index < this.multipleNum
- // if (item.checked) {
- // this.memo.push(item)
- // }
- // })
- },
- reset() {
- this.formData = {};
- this.handleList();
- },
- singleSelect(checked, row) {
- // 取消选中
- if (!checked) {
- let index = this.memo.findIndex(
- (item) => item.onlyCode === row.onlyCode
- );
- if (index > -1) {
- this.memo.splice(index, 1);
- }
- } else {
- this.memo.push(row);
- }
- },
- // 表格数据
- async handleList(val) {
- console.log(this.infoData);
- console.log('sasa', this.formData);
- if (this.formData.dateType == 1) {
- this.formData.manufactureTime = this.formData.productTime;
- } else {
- this.formData.procurementTime = this.formData.productTime;
- }
- const res = await outin.getoutDetail({
- ...this.formData,
- categoryId: this.infoData.id
- });
- console.log('11', res);
- this.tableData = res.data.list;
- this.total = res.data.count;
- if (res.data.list.length > 0 && res.data.list[0].brandNum) {
- this.infoData.brandNum = res.data.list[0].brandNum;
- }
- if (val) {
- this.changeSelect();
- }
- },
- changeSelect() {
- this.$nextTick(() => {
- this.tableData.forEach((item) => {
- const index = this.memo1.findIndex(
- (i) => item.sourceBizNo == i.sourceBizNo
- );
- if (index > -1) {
- this.$refs.tableRef.toggleRowSelection(item, true);
- }
- });
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .info-box {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 14px;
- padding: 20px 0 5px;
- ul {
- list-style: none;
- display: flex;
- justify-content: space-between;
- align-items: center;
- li {
- margin-right: 40px;
- }
- span {
- font-weight: bold;
- margin-right: 10px;
- }
- }
- .result-box {
- margin: 0 20px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- white-space: nowrap;
- .el-input {
- width: 100px;
- margin: 0 10px;
- }
- .select-box {
- margin-left: 20px;
- .el-input-number {
- width: 80px;
- }
- }
- .el-button {
- font-size: 16px;
- }
- }
- }
- .footer {
- display: flex;
- justify-content: space-between;
- .info {
- display: flex;
- span {
- font-weight: bold;
- margin-right: 10px;
- }
- > div {
- margin-right: 20px;
- }
- }
- }
- </style>
|