12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073 |
- <template>
- <div class="app-container">
- <div v-show="pageShow">
- <el-form :model="queryParams" ref="queryForm" v-show="showSearch" label-width="90px" size="small">
- <el-row>
- <el-col :span="6">
- <el-form-item label="客户" prop="fCorpid">
- <el-select v-model="queryParams.fCorpid" clearable filterable placeholder="请输入关键词" style="width: 200px">
- <el-option v-for="(item, index) in fMblnoOptions" :key="index.fId" :label="item.fName"
- :value="item.fId"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="提单号" prop="fMblno">
- <el-input v-model="queryParams.fMblno" placeholder="请输入提单号" clearable style="width: 200px"
- @keyup.enter.native="handleQuery" />
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="入库日期" prop="timeInterval">
- <el-date-picker v-model="queryParams.timeInterval" type="daterange" value-format="yyyy-MM-dd HH:mm:ss"
- :default-time="['00:00:00', '23:59:59']" clearable style="width: 230px" range-separator="至"
- start-placeholder="开始日期" end-placeholder="结束日期" @keyup.enter.native="handleQuery"
- :picker-options="pickerOptions" unlink-panels>
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="车号" prop="fWarehouseid">
- <el-select v-model="queryParams.fTruckno" clearable filterable placeholder="请选择车号" style="width: 200px"
- @keyup.enter.native="handleQuery">
- <el-option v-for="(item, index) in fTrucknoList" :key="index" :label="item.fTruckno"
- :value="item.fTruckno"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-collapse-transition>
- <div v-show="show">
- <el-row>
- <el-col :span="6">
- <el-form-item label="货物名称" prop="fGoodsid">
- <el-select v-model="queryParams.fGoodsid" clearable filterable placeholder="请选择货物名称"
- style="width: 200px" @keyup.enter.native="handleQuery">
- <el-option v-for="(item, index) in goodsOptions" :key="index.fId" :label="item.fName"
- :value="item.fId"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="属性详情" prop="fMarks">
- <el-input v-model="queryParams.fMarks" placeholder="请输入属性详情" clearable style="width: 200px"
- @keyup.enter.native="handleQuery" />
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="入库状态" prop="fItemsStatus">
- <el-select style="width: 200px" v-model="queryParams.fItemsStatus" placeholder="请选择入库状态">
- <el-option label="计划" value="1"></el-option>
- <el-option label="待入库" value="2"></el-option>
- <el-option label="入库中" value="3"></el-option>
- <el-option label="已入库" value="4"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="费用状态" prop="fFeeStatus">
- <el-select style="width: 200px" v-model="queryParams.fFeeStatus" placeholder="请选择费用状态">
- <el-option label="暂存" :value="1"></el-option>
- <el-option label="部分" :value="2"></el-option>
- <el-option label="全部入账" :value="3"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="6">
- <el-form-item label="业务编号" prop="fBillno">
- <el-input v-model="queryParams.fBillno" placeholder="请输入业务编号" clearable
- @keyup.enter.native="handleQuery" style="width: 200px" />
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="制单人" prop="createBy">
- <el-select v-model="queryParams.createBy" filterable clearable placeholder="请输入关键词"
- style="width: 200px">
- <el-option v-for="(item, index) in userOptions" :key="index.userName" :label="item.nickName"
- :value="item.userName">
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="仓库" prop="fWarehouseid">
- <el-select v-model="queryParams.fWarehouseid" clearable filterable placeholder="请选择仓库"
- style="width: 200px" @keyup.enter.native="handleQuery">
- <el-option v-for="(item, index) in warehouseOptions" :key="index.fId" :label="item.fName"
- :value="item.fId"></el-option>
- </el-select>
- </el-form-item>
- <!-- <el-form-item label="经营单位" prop="fSbu">-->
- <!-- <el-select-->
- <!-- v-model="queryParams.fSbu"-->
- <!-- clearable-->
- <!-- filterable-->
- <!-- placeholder="请输入关键词"-->
- <!-- style="width: 200px"-->
- <!-- >-->
- <!-- <el-option-->
- <!-- v-for="(item, index) in fMblnoOptions"-->
- <!-- :key="index.fId"-->
- <!-- :label="item.fName"-->
- <!-- :value="item.fId"-->
- <!-- ></el-option>-->
- <!-- </el-select>-->
- <!-- </el-form-item>-->
- </el-col>
- <el-col :span="6">
- <el-form-item label="贸易方式" prop="fTrademodeid">
- <el-select v-model="queryParams.fTrademodeid" placeholder="请选择贸易方式" clearable
- @keyup.enter.native="handleQuery" style="width: 200px">
- <el-option v-for="(item, index) in fTrademodeidOptions" :key="index.dictValue"
- :label="item.dictLabel" :value="item.dictValue" />
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="6">
- <el-form-item label="箱使日期" prop="freeContainerList">
- <el-date-picker v-model="queryParams.freeContainerList" type="daterange"
- value-format="yyyy-MM-dd HH:mm:ss" :default-time="['00:00:00', '23:59:59']" clearable
- style="width: 230px" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期"
- @keyup.enter.native="handleQuery">
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="6" v-if="company === '青岛金港物流有限公司'">
- <el-form-item label="报关单号">
- <el-input v-model="queryParams.fCustomno" placeholder="请输入报关单号" clearable style="width: 200px" />
- </el-form-item>
- </el-col>
- <el-col :span="6" v-if="company === '青岛金港物流有限公司'">
- <el-form-item label="境内收货人" prop="fSbu">
- <el-select v-model="queryParams.fSbu" clearable filterable placeholder="请输入关键词" style="width: 200px">
- <el-option v-for="(item, index) in fSbuOptions" :key="index.fId" :label="item.fName"
- :value="item.fId"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- </div>
- </el-collapse-transition>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button type="primary" icon="el-icon-plus" size="mini" @click="handleAdd"
- v-hasPermi="['warehouseBusiness:inStock:add']">新增
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button type="success" icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate"
- v-hasPermi="['warehouseBusiness:inStock:edit']">修改
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button type="warning" icon="el-icon-download" size="mini" @click="handleExport"
- v-hasPermi="['warehouseBusiness:inStock:export']">导出
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button type="info" icon="el-icon-download" size="mini" :disabled="single" @click="copyUpdate"
- v-hasPermi="['agreement:agreementStorage:export']">复制新增
- </el-button>
- </el-col>
- <div class="tabSetting">
- <div style="margin-right: 20px">
- <el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
- <el-button v-show="show" @click="show = !show" icon="el-icon-arrow-up" size="mini">展开</el-button>
- <el-button v-show="!show" @click="show = !show" icon="el-icon-arrow-down" size="mini">展开</el-button>
- </div>
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
- <div style="margin: 0 12px">
- <el-button icon="el-icon-setting" size="mini" circle @click="showSetting = !showSetting"></el-button>
- </div>
- </div>
- </el-row>
- <el-dialog title="自定义列显示" :visible.sync="showSetting" width="700px" v-dialogDrag :close-on-click-modal="false">
- <template slot="title">
- <div class="avue-crud__dialog__header">
- <span class="el-dialog__title">
- <span style="
- display: inline-block;
- width: 3px;
- height: 20px;
- margin-right: 5px;
- float: left;
- margin-top: 2px;
- "></span>
- </span>
- </div>
- </template>
- <div>配置排序列数据(拖动调整顺序)</div>
- <div style="margin-left: 17px">
- <el-checkbox v-model="allCheck" label="全选" @change="allChecked"></el-checkbox>
- </div>
- <div style="padding: 4px; display: flex; justify-content: center">
- <draggable v-model="setRowList" group="site" animation="300" @start="onStart" @end="onEnd"
- handle=".indraggable">
- <transition-group>
- <div v-for="item in setRowList" :key="item.surface" class="listStyle">
- <div style="width: 500px" class="indraggable">
- <div class="progress" :style="{ width: item.width + 'px' }">
- <el-checkbox :label="item.name" v-model="item.checked" :true-label="0" :false-label="1">{{ item.name
- }}
- </el-checkbox>
- </div>
- </div>
- <el-input-number v-model.number="item.width" controls-position="right" :min="1" :max="500" size="mini">
- </el-input-number>
- </div>
- </transition-group>
- </draggable>
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button @click="showSetting = false">取 消</el-button>
- <el-button @click="delRow" type="danger">重 置</el-button>
- <el-button type="primary" @click="save()">确 定</el-button>
- </span>
- </el-dialog>
- <el-table ref="table" v-loading="loading" :data="warehousebillsList" @selection-change="handleSelectionChange"
- show-summary :summary-method="getSum" :height="tableHeight" @expand-change="expandChange">
- <el-table-column type="selection" fixed align="center" width="58" />
- <el-table-column type="expand" fixed="left">
- <template slot-scope="props">
- <el-table :data="props.row.dataList" v-loading="props.row.loading">
- <el-table-column type="index" label="行号" width="50" align="center" fixed />
- <el-table-column label="状态" prop="fBillstatus" align="center" show-overflow-tooltip width="100">
- <template slot-scope="scope">
- {{ scope.row.fBillstatus | fBillstatusFormat }}
- </template>
- </el-table-column>
- <el-table-column label="入库日期" prop="fBsdate" align="center" show-overflow-tooltip width="100">
- </el-table-column>
- <el-table-column label="品名" prop="fGoodsid" align="center" show-overflow-tooltip width="100">
- <template slot-scope="scope">
- {{ scope.row.fGoodsid | goodsFormat(goodsOptions) }}
- </template>
- </el-table-column>
- <el-table-column label="货物属性" prop="fBusinessType" align="center" show-overflow-tooltip width="100">
- <template slot-scope="scope">
- {{ scope.row.fBusinessType | fStorageTypeFormat(fStorageTypeOptions) }}
- </template>
- </el-table-column>
- <el-table-column label="属性详情" prop="fMarks" align="center" show-overflow-tooltip width="100">
- </el-table-column>
- <el-table-column label="入库件数" prop="fQty" align="center" show-overflow-tooltip width="100">
- </el-table-column>
- <el-table-column label="入库毛重(kg)" prop="fGrossweight" align="center" show-overflow-tooltip width="150">
- </el-table-column>
- <el-table-column label="入库净重(kg)" prop="fNetweight" align="center" show-overflow-tooltip width="150">
- </el-table-column>
- <el-table-column label="箱号" prop="fCntrno" align="center" show-overflow-tooltip width="180">
- </el-table-column>
- </el-table>
- </template>
- </el-table-column>
- <el-table-column type="index" label="行号" align="center" fixed />
- <el-table-column v-for="(item, index) in getRowList" :key="index" :label="item.name" :width="item.width"
- :prop="item.label" align="center" :fixed="item.fixed" :show-overflow-tooltip="true" sortable>
- <template slot-scope="scope">
- <span v-if="item.label == 'fMblno'">
- <el-link :underline="false" type="primary">
- <div @click="handleUpdate(scope.row)">
- {{ scope.row.fMblno }}
- </div>
- </el-link>
- </span>
- <span v-else>{{ scope.row[item.label] }}</span>
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width" min-width="200" fixed="right">
- <template slot-scope="scope">
- <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row, true)"
- v-hasPermi="['warehouseBusiness:inStock:edit']">查看
- </el-button>
- <el-button size="mini" type="text" icon="el-icon-edit" v-if="
- scope.row.fBillstatus == '录入' ||
- scope.row.fBillstatus == '暂存' ||
- scope.row.fBillstatus == '驳回'
- " @click="handleUpdate(scope.row, false)" v-hasPermi="['warehouseBusiness:inStock:edit']">修改
- </el-button>
- <el-button size="mini" type="text" icon="el-icon-delete"
- v-if="(scope.row.fItemsStatus == '待入库' || scope.row.fItemsStatus == '计划') && scope.row.warehouseStatus < 4 && scope.row.isCreate == 1 || (scope.row.fItemsStatus == '待入库' || scope.row.fItemsStatus == '计划') && scope.row.warehouseStatus < 4 && scope.row.isCreate == 0"
- @click="handleDelete(scope.row)" v-hasPermi="['warehouseBusiness:inStock:remove']">删除
- </el-button>
- <el-button size="mini" type="text" icon="el-icon-delete" v-if="
- scope.row.fBillstatus == '请核' ||
- scope.row.fBillstatus == '审核中'
- " @click="handleUpdate(scope.row, true)">审核进度
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
- @pagination="getList" />
- </div>
- <add-or-update v-show="pageShow2" @changeShow="showAddOrUpdate" ref="addOrUpdateRef" :chiId="formId"
- :copyStatus="copyStatus" :key="timer"></add-or-update>
- </div>
- </template>
- <script>
- import AddOrUpdate from "./AddOrUpdate.vue";
- import {
- listWarehousebills,
- delinStock_s,
- delWarehousebills,
- getWarehousebills,
- exportWarehousebills,
- } from "@/api/warehouseBusiness/warehouseInStock";
- import { listCorps } from "@/api/basicdata/corps";
- import { listWarehousesss } from "@/api/basicdata/warehouse";
- import { listGoods, queryVehicle } from "@/api/basicdata/goods";
- import { listUser, queryUserVal } from "@/api/system/user";
- import "@riophae/vue-treeselect/dist/vue-treeselect.css";
- import Cookies from "js-cookie";
- import { addSet, select, resetModule } from "@/api/system/set";
- import draggable from "vuedraggable";
- export default {
- name: "plans",
- data() {
- return {
- // 明细数据
- warehouseDetailed: [],
- // 货物属性
- fStorageTypeOptions: [],
- tableHeight: '600',
- timer: "",
- pageShow: true,
- pageShow2: false,
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- fBillno: null,
- createBy: null,
- fTrademodeid: null,
- fCorpid: null,
- fMblno: null,
- fSbu: null,
- fGoodsid: null,
- fWarehouseid: null,
- fMarks: null,
- fBillstatus: null,
- fItemsStatus: null,
- timeInterval: null,
- fFeeStatus: null,
- },
- // 显示搜索条件
- showSearch: true,
- userOptions: [],
- fTrademodeidOptions: [],
- warehouseOptions: [],
- goodsOptions: [],
- fMblnoOptions: [],
- show: false,
- drag: false,
- tableDate: [
- {
- surface: "1",
- label: "fMblno",
- name: "提单号",
- checked: 0,
- width: 200,
- fixed: "left",
- },
- {
- surface: "2",
- label: "createBy",
- name: "制单人",
- checked: 0,
- width: 100,
- },
- {
- surface: "3",
- label: "fItemsStatus",
- name: "入库状态",
- checked: 0,
- // fixed: "left",
- width: 100,
- },
- {
- surface: "4",
- label: "fCorpid",
- name: "客户",
- checked: 0,
- // fixed: "left",
- width: 100,
- },
- {
- surface: "5",
- label: "fGoodsid",
- name: "品名",
- checked: 0,
- // fixed: "left",
- width: 100,
- },
- {
- surface: "6",
- label: "fMarks",
- name: "属性详情",
- checked: 0,
- width: 100,
- },
- {
- surface: "7",
- label: "fBsdate",
- name: "入库日期",
- checked: 0,
- // fixed: "left",
- width: 100,
- },
- {
- surface: "8",
- label: "fWarehouseid",
- name: "仓库",
- checked: 0,
- width: 100,
- },
- {
- surface: "9",
- label: "fPlanqty",
- name: "计划件数",
- checked: 0,
- width: 120,
- },
- {
- surface: "10",
- label: "fQty",
- name: "入库件数",
- checked: 0,
- width: 120,
- },
- {
- surface: "11",
- label: "fGrossweight",
- name: "入库毛重",
- checked: 0,
- width: 120,
- },
- {
- surface: "12",
- label: "fNetweight",
- name: "入库净重",
- checked: 0,
- width: 120,
- },
- {
- surface: "13",
- label: "fCntval",
- name: "箱型箱量",
- checked: 0,
- width: 120,
- },
- {
- surface: "14",
- label: "fApplyMoney",
- name: "开票金额",
- checked: 0,
- width: 130,
- },
- {
- surface: "15",
- label: "invoiceNo",
- name: "发票号",
- checked: 0,
- width: 130,
- },
- {
- surface: "16",
- label: "fAccbilldate",
- name: "开票时间",
- checked: 0,
- width: 130,
- },
- {
- surface: "17",
- label: "fTruckno",
- name: "车号",
- checked: 0,
- width: 100,
- },
- {
- surface: "18",
- label: "fDriverName",
- name: "司机名称",
- checked: 0,
- width: 100,
- },
- {
- surface: "19",
- label: "fDriverTel",
- name: "司机电话",
- checked: 0,
- width: 100,
- },
- {
- surface: "20",
- label: "fDriverIdCar",
- name: "司机身份证",
- checked: 0,
- width: 180,
- },
- {
- surface: "21",
- label: "fBusinessType",
- name: "业务类别",
- checked: 0,
- width: 100,
- },
- {
- surface: "22",
- label: "fFeeStatus",
- name: "费用状态",
- checked: 0,
- width: 100,
- },
- {
- surface: "23",
- label: "freeContainerDate",
- name: "箱使日期",
- checked: 0,
- width: 100,
- },
- {
- surface: "24",
- label: "fStorekeeper",
- name: "仓管员",
- checked: 0,
- width: 100,
- },
- {
- surface: "25",
- label: "fBillno",
- name: "系统编号",
- checked: 0,
- width: 100,
- },
- {
- surface: "26",
- label: "fReceivable",
- name: "应收合计",
- checked: 0,
- width: 100,
- },
- {
- surface: "27",
- label: "fDue",
- name: "应付合计",
- checked: 0,
- width: 100,
- },
- {
- surface: "28",
- label: "",
- name: "利润",
- checked: 0,
- width: 100,
- },
- {
- surface: "29",
- label: "fRecycle",
- name: "实收合计",
- checked: 0,
- width: 100,
- },
- {
- surface: "30",
- label: "fPay",
- name: "实付合计",
- checked: 0,
- width: 100,
- },
- {
- surface: "31",
- label: "remark",
- name: "备注",
- checked: 0,
- width: 100,
- }
- ],
- setRowList: [],
- getRowList: [],
- allCheck: false,
- showSetting: false,
- total: 0,
- warehousebillsList: [],
- loading: true,
- single: true,
- multiple: true,
- formId: null,
- ids: [],
- copyStatus: null,
- fTrucknoList: [],
- // 公司名称
- company: '',
- fSbuOptions: [],
- pickerOptions: {
- shortcuts: [{
- text: '最近一周',
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
- picker.$emit('pick', [start, end]);
- }
- }, {
- text: '最近一个月',
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
- picker.$emit('pick', [start, end]);
- }
- }, {
- text: '最近三个月',
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
- picker.$emit('pick', [start, end]);
- }
- }]
- },
- };
- },
- // 使用子组件
- components: { draggable, AddOrUpdate },
- created() {
- let date = new Date();
- let lYear = parseInt(date.getFullYear())
- let lMonth = parseInt(date.getMonth())
- if (lMonth == 0) {
- lMonth = 12
- lYear = lYear - 1
- }
- let nYear = parseInt(date.getFullYear())
- let nMonth = parseInt(date.getMonth() + 2)
- if (nMonth > 12) {
- nMonth = nMonth - 12
- nYear = nYear + 1
- }
- let day30 = [4, 6, 9, 11]
- let day31 = [1, 3, 5, 7, 8, 10, 12]
- let nDay = null
- if (day31.indexOf(nMonth) > -1) {
- nDay = 31
- } else if (day30.indexOf(nMonth) > -1) {
- nDay = 30
- } else if ((nYear % 4 == 0) && (nYear % 100 != 0 || nYear % 400 == 0)) {
- nDay = 29
- } else {
- nDay = 28
- }
- this.queryParams.timeInterval = [lYear + '-' + lMonth + '-' + '01 00:00:00', nYear + '-' + nMonth + '-' + nDay + ' 23:59:59']
- this.setRowList = this.tableDate;
- this.getRowList = this.tableDate;
- this.getDicts("data_trademodes").then((response) => {
- this.fTrademodeidOptions = response.data;
- });
- this.getDicts("storage_type").then((response) => {
- this.fStorageTypeOptions = response.data;
- localStorage.setItem("fStorageTypeList", JSON.stringify(response.data));
- });
- listGoods({ fStatus: 0, delFlag: 0 }).then((response) => {
- this.goodsOptions = response.rows;
- });
- queryVehicle().then(res => {
- this.fTrucknoList = res.data
- })
- listWarehousesss({ fStatus: 0, delFlag: 0 }).then((response) => {
- this.warehouseOptions = response.rows;
- });
- listUser().then((response) => {
- this.userOptions = response.rows;
- });
- listCorps({ type: 1 }).then((response) => {
- this.fMblnoOptions = response.rows;
- });
- listCorps().then((response) => {
- this.fSbuOptions = response.rows;
- });
- this.company = Cookies.get("companyName")
- this.getRow();
- this.getList();
- },
- activated() {
- if (this.$route.query.id) {
- this.handleUpdate(this.$route.query.id);
- }
- },
- mounted() {
- this.$nextTick(() => {
- // 监听浏览器高度变化,改变表格高度
- window.onresize = () => {
- this.tableHeight = window.innerHeight - this.$refs.table.$el.offsetTop - 70
- }
- })
- },
- filters: {
- fBillstatusFormat(row) {
- let Name;
- switch (row) {
- case 10:
- Name = "计划";
- break;
- case 20:
- Name = "待入库";
- break;
- case 30:
- Name = "入库中";
- break;
- default:
- Name = "已入库";
- }
- return Name;
- },
- goodsFormat(row, goodsOptions) {
- let goods;
- goodsOptions.map((e) => {
- if (row == e.fId) {
- goods = e.fName;
- }
- });
- return goods;
- },
- fStorageTypeFormat(row, fStorageTypeOptions) {
- let fStorageType;
- fStorageTypeOptions.map((e) => {
- if (row == e.dictValue) {
- fStorageType = e.dictLabel;
- }
- });
- return fStorageType;
- },
- },
- methods: {
- // 获取当前月的第一天和最后一天
- // getMonth() {
- // let date = new Date();
- // let year = parseInt(date.getFullYear())
- // let month = parseInt(date.getMonth() + 1)
- // let currentMonth = date.getMonth()
- // let nextMonth = ++currentMonth
- // let nextMonthFirstDay = new Date(date.getFullYear(), nextMonth, 1) // 下个月的第一天
- // let oneDay = 1000*60*60*24
- // let lastTime = new Date(nextMonthFirstDay - oneDay) // 下个月的第一天减去一天,就是上个月的最后一天
- // let day = lastTime.getDate()
- // if (day < 10) {
- // day = '0' + day
- // }
- // this.queryParams.timeInterval = [year + '-' + month + '-' + '01 00:00:00', year + '-' + month + '-' + day + ' 23:59:59']
- // },
- //列设置全选
- allChecked() {
- if (this.allCheck == true) {
- this.setRowList.map((e) => {
- return (e.checked = 0);
- });
- } else {
- this.setRowList.map((e) => {
- return (e.checked = 1);
- });
- }
- },
- //查询列数据
- getRow() {
- let that = this;
- this.data = {
- tableName: "入库",
- userId: Cookies.get("userName"),
- };
- select(this.data).then((res) => {
- if (res.data.length != 0) {
- this.getRowList = res.data.filter((e) => e.checked == 0);
- this.setRowList = res.data;
- this.setRowList = this.setRowList.reduce((res, item) => {
- res.push({
- surface: item.surface,
- label: item.label,
- name: item.name,
- checked: item.checked,
- width: item.width,
- fixed: item.fixed,
- });
- return res;
- }, []);
- }
- });
- },
- //重置列表
- delRow() {
- this.data = {
- tableName: "入库",
- userId: Cookies.get("userName"),
- };
- resetModule(this.data).then((res) => {
- if (res.code == 200) {
- this.showSetting = false;
- this.setRowList = this.$options.data().tableDate;
- this.getRowList = this.$options.data().tableDate;
- }
- });
- },
- //保存列设置
- save() {
- this.showSetting = false;
- this.data = {
- tableName: "入库",
- userId: Cookies.get("userName"),
- sysTableSetList: this.setRowList,
- };
- addSet(this.data).then((res) => {
- if (res.code == 200) {
- this.showSetting = false;
- this.getRowList = this.setRowList.filter((e) => e.checked == 0);
- }
- });
- },
- //开始拖拽事件
- onStart() {
- this.drag = true;
- },
- //拖拽结束事件
- onEnd() {
- this.drag = false;
- },
- getList() {
- //获取仓库
- listWarehousebills(this.queryParams).then((response) => {
- response.rows.map((e) => {
- e.freeContainerDate = e.freeContainerDate
- ? e.freeContainerDate.substring(0, 10)
- : null;
- });
- this.warehousebillsList = response.rows;
- this.warehousebillsList.forEach(item => {
- this.$set(item, 'dataList', [])
- this.$set(item, 'loading', true)
- })
- this.total = response.total;
- this.loading = false;
- // 根据浏览器高度设置初始高度
- setTimeout(() => {
- this.tableHeight = window.innerHeight - this.$refs.table.$el.offsetTop - 70
- }, 300)
- });
- },
- //合计
- getSum(param) {
- const { columns, data } = param;
- const sums = [];
- var values = [];
- columns.forEach((column, index) => {
- if (index === 0) {
- sums[index] = "合计";
- return;
- }
- if (column.property === "fGrossweight") {
- values = data.map((item) => Number(item["fGrossweight"]));
- }
- if (column.property === "fNetweight") {
- values = data.map((item) => Number(item["fNetweight"]));
- }
- if (column.property === "fQty") {
- values = data.map((item) => Number(item["fQty"]));
- }
- if (column.property === "fPlanqty") {
- values = data.map((item) => Number(item.fPlanqty));
- }
- if (
- column.property === "fGrossweight" ||
- column.property === "fNetweight" ||
- column.property === "fQty" ||
- column.property === "fPlanqty"
- ) {
- sums[index] = values.reduce((prev, curr) => {
- const value = Number(curr);
- if (!isNaN(value)) {
- return prev + curr;
- } else {
- return prev;
- }
- }, 0);
- if (column.property === "fGrossweight") {
- sums[index] = (sums[index] / 1000).toFixed(4) + "(吨)";
- }
- if (column.property === "fNetweight") {
- sums[index] = (sums[index] / 1000).toFixed(4) + "(吨)";
- }
- if (column.property === "fQty") {
- // sums[index] = sums[index].toFixed(2);
- sums[index] = sums[index];
- }
- if (column.property === "fPlanqty") {
- if (sums[index]) {
- sums[index] = sums[index];
- }
- }
- }
- });
- return sums;
- },
- handleAdd() {
- this.timer = new Date().getTime();
- this.pageShow = false;
- this.pageShow2 = true;
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map((item) => item.fId);
- this.single =
- selection.length !== 1 ||
- selection.map((item) => item.fBillstatus) == 6 ||
- selection.map((item) => item.fBillstatus) == 4;
- this.multiple = !selection.length;
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- const fId = row.fId || this.ids[0] || row;
- this.copyStatus = null;
- this.formId = fId;
- this.$nextTick(() => {
- this.$refs.addOrUpdateRef.init();
- });
- setTimeout(() => {
- this.pageShow = false;
- this.pageShow2 = true;
- }, 200);
- },
- copyUpdate() {
- this.formId = this.ids[0];
- this.copyStatus = 2;
- this.$nextTick(() => {
- this.$refs.addOrUpdateRef.init();
- });
- setTimeout(() => {
- this.pageShow = false;
- this.pageShow2 = true;
- }, 200);
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- const ids = row.fId || this.ids;
- delinStock_s(ids).then((data) => {
- switch (data.msg) {
- case "0": {
- this.$message.error("当前数据已被其他操作员操作请刷新页面");
- break;
- }
- case "1": {
- this.delete(ids, "当前主表有数据从表无数据是否删除");
- break;
- }
- case "2": {
- this.delete(ids, "当前主表有数据从表有数据是否删除");
- break;
- }
- default: {
- return this.$message.error("未知错误,无状态");
- }
- }
- this.getList()
- });
- },
- delete(ids, tips) {
- this.$confirm(tips, "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- }).then(() => {
- delWarehousebills(ids);
- this.msgSuccess("删除成功");
- this.getList();
- });
- },
- /** 导出按钮操作 */
- handleExport() {
- this.$confirm('是否确认导出', '警告', {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- }).then(() => {
- exportWarehousebills(this.queryParams).then(res => {
- this.download(res.msg);
- })
- })
- // require.ensure([], () => {
- // const { export_json_to_excel } = require("../../../excel/Export2Excel");
- // const tHeader = ["客户名称", "制单日期"];
- // // 上面设置Excel的表格第一行的标题
- // const filterVal = ["corpId", "createTime"];
- // // 上面的index、nickName、name是tableData里对象的属性
- // const list = this.ftmsorderbillsList; //把data里的tableData存到list
- // const data = this.formatJson(filterVal, list);
- // export_json_to_excel(
- // tHeader,
- // data,
- // "列表excel",
- // true,
- // );
- // });
- },
- formatJson(filterVal, jsonData) {
- return jsonData.map((v) => filterVal.map((j) => v[j]));
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.queryParams = {
- pageNum: 1,
- pageSize: 10,
- fBillno: null,
- createBy: null,
- fTrademodeid: null,
- fCorpid: null,
- fMblno: null,
- fSbu: null,
- fGoodsid: null,
- fWarehouseid: null,
- fMarks: null,
- fBillstatus: null,
- fItemsStatus: null,
- timeInterval: null,
- fFeeStatus: null,
- };
- this.handleQuery();
- },
- showAddOrUpdate(data) {
- if (data) {
- this.getList();
- this.pageShow = true;
- this.pageShow2 = false;
- }
- },
- expandChange(row, index) {
- if (row.loading == true) {
- getWarehousebills(row.fId).then(res => {
- row.dataList = res.data.warehouseBillsItem
- // this.$set(row,'dataList',res.data.warehouseBillsItem)
- row.loading = false;
- })
- }
- },
- },
- };
- </script>
- <style scoped>
- </style>
|