|  | @@ -0,0 +1,538 @@
 | 
											
												
													
														|  | 
 |  | +<template>
 | 
											
												
													
														|  | 
 |  | +  <div class="app-container">
 | 
											
												
													
														|  | 
 |  | +    <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
 | 
											
												
													
														|  | 
 |  | +      <el-form-item label="原始入库业务编号" prop="fOriginalbillno">
 | 
											
												
													
														|  | 
 |  | +        <el-input
 | 
											
												
													
														|  | 
 |  | +          v-model="queryParams.fOriginalbillno"
 | 
											
												
													
														|  | 
 |  | +          placeholder="请输入原始入库业务编号"
 | 
											
												
													
														|  | 
 |  | +          clearable
 | 
											
												
													
														|  | 
 |  | +          size="small"
 | 
											
												
													
														|  | 
 |  | +          @keyup.enter.native="handleQuery"
 | 
											
												
													
														|  | 
 |  | +        />
 | 
											
												
													
														|  | 
 |  | +      </el-form-item>
 | 
											
												
													
														|  | 
 |  | +      <el-form-item label="上期件数" prop="fPreqty">
 | 
											
												
													
														|  | 
 |  | +        <el-input
 | 
											
												
													
														|  | 
 |  | +          v-model="queryParams.fPreqty"
 | 
											
												
													
														|  | 
 |  | +          placeholder="请输入上期件数"
 | 
											
												
													
														|  | 
 |  | +          clearable
 | 
											
												
													
														|  | 
 |  | +          size="small"
 | 
											
												
													
														|  | 
 |  | +          @keyup.enter.native="handleQuery"
 | 
											
												
													
														|  | 
 |  | +        />
 | 
											
												
													
														|  | 
 |  | +      </el-form-item>
 | 
											
												
													
														|  | 
 |  | +      <el-form-item label="上期毛重,单位为吨,保留6位小数" prop="fPregrossweight">
 | 
											
												
													
														|  | 
 |  | +        <el-input
 | 
											
												
													
														|  | 
 |  | +          v-model="queryParams.fPregrossweight"
 | 
											
												
													
														|  | 
 |  | +          placeholder="请输入上期毛重,单位为吨,保留6位小数"
 | 
											
												
													
														|  | 
 |  | +          clearable
 | 
											
												
													
														|  | 
 |  | +          size="small"
 | 
											
												
													
														|  | 
 |  | +          @keyup.enter.native="handleQuery"
 | 
											
												
													
														|  | 
 |  | +        />
 | 
											
												
													
														|  | 
 |  | +      </el-form-item>
 | 
											
												
													
														|  | 
 |  | +      <el-form-item label="上期净重," prop="fPrenetweight">
 | 
											
												
													
														|  | 
 |  | +        <el-input
 | 
											
												
													
														|  | 
 |  | +          v-model="queryParams.fPrenetweight"
 | 
											
												
													
														|  | 
 |  | +          placeholder="请输入上期净重,"
 | 
											
												
													
														|  | 
 |  | +          clearable
 | 
											
												
													
														|  | 
 |  | +          size="small"
 | 
											
												
													
														|  | 
 |  | +          @keyup.enter.native="handleQuery"
 | 
											
												
													
														|  | 
 |  | +        />
 | 
											
												
													
														|  | 
 |  | +      </el-form-item>
 | 
											
												
													
														|  | 
 |  | +      <el-form-item label="入库件数" prop="fQtyd">
 | 
											
												
													
														|  | 
 |  | +        <el-input
 | 
											
												
													
														|  | 
 |  | +          v-model="queryParams.fQtyd"
 | 
											
												
													
														|  | 
 |  | +          placeholder="请输入入库件数"
 | 
											
												
													
														|  | 
 |  | +          clearable
 | 
											
												
													
														|  | 
 |  | +          size="small"
 | 
											
												
													
														|  | 
 |  | +          @keyup.enter.native="handleQuery"
 | 
											
												
													
														|  | 
 |  | +        />
 | 
											
												
													
														|  | 
 |  | +      </el-form-item>
 | 
											
												
													
														|  | 
 |  | +      <el-form-item label="入库尺码" prop="fVolumnd">
 | 
											
												
													
														|  | 
 |  | +        <el-input
 | 
											
												
													
														|  | 
 |  | +          v-model="queryParams.fVolumnd"
 | 
											
												
													
														|  | 
 |  | +          placeholder="请输入入库尺码"
 | 
											
												
													
														|  | 
 |  | +          clearable
 | 
											
												
													
														|  | 
 |  | +          size="small"
 | 
											
												
													
														|  | 
 |  | +          @keyup.enter.native="handleQuery"
 | 
											
												
													
														|  | 
 |  | +        />
 | 
											
												
													
														|  | 
 |  | +      </el-form-item>
 | 
											
												
													
														|  | 
 |  | +      <el-form-item label="入库毛重" prop="fGrossweightd">
 | 
											
												
													
														|  | 
 |  | +        <el-input
 | 
											
												
													
														|  | 
 |  | +          v-model="queryParams.fGrossweightd"
 | 
											
												
													
														|  | 
 |  | +          placeholder="请输入入库毛重"
 | 
											
												
													
														|  | 
 |  | +          clearable
 | 
											
												
													
														|  | 
 |  | +          size="small"
 | 
											
												
													
														|  | 
 |  | +          @keyup.enter.native="handleQuery"
 | 
											
												
													
														|  | 
 |  | +        />
 | 
											
												
													
														|  | 
 |  | +      </el-form-item>
 | 
											
												
													
														|  | 
 |  | +      <el-form-item label="入库净重" prop="fNetweightd">
 | 
											
												
													
														|  | 
 |  | +        <el-input
 | 
											
												
													
														|  | 
 |  | +          v-model="queryParams.fNetweightd"
 | 
											
												
													
														|  | 
 |  | +          placeholder="请输入入库净重"
 | 
											
												
													
														|  | 
 |  | +          clearable
 | 
											
												
													
														|  | 
 |  | +          size="small"
 | 
											
												
													
														|  | 
 |  | +          @keyup.enter.native="handleQuery"
 | 
											
												
													
														|  | 
 |  | +        />
 | 
											
												
													
														|  | 
 |  | +      </el-form-item>
 | 
											
												
													
														|  | 
 |  | +      <el-form-item label="出口尺码" prop="fVolumnc">
 | 
											
												
													
														|  | 
 |  | +        <el-input
 | 
											
												
													
														|  | 
 |  | +          v-model="queryParams.fVolumnc"
 | 
											
												
													
														|  | 
 |  | +          placeholder="请输入出口尺码"
 | 
											
												
													
														|  | 
 |  | +          clearable
 | 
											
												
													
														|  | 
 |  | +          size="small"
 | 
											
												
													
														|  | 
 |  | +          @keyup.enter.native="handleQuery"
 | 
											
												
													
														|  | 
 |  | +        />
 | 
											
												
													
														|  | 
 |  | +      </el-form-item>
 | 
											
												
													
														|  | 
 |  | +      <el-form-item label="出库件数" prop="fQtyc">
 | 
											
												
													
														|  | 
 |  | +        <el-input
 | 
											
												
													
														|  | 
 |  | +          v-model="queryParams.fQtyc"
 | 
											
												
													
														|  | 
 |  | +          placeholder="请输入出库件数"
 | 
											
												
													
														|  | 
 |  | +          clearable
 | 
											
												
													
														|  | 
 |  | +          size="small"
 | 
											
												
													
														|  | 
 |  | +          @keyup.enter.native="handleQuery"
 | 
											
												
													
														|  | 
 |  | +        />
 | 
											
												
													
														|  | 
 |  | +      </el-form-item>
 | 
											
												
													
														|  | 
 |  | +      <el-form-item label="结余件数" prop="fQtyblc">
 | 
											
												
													
														|  | 
 |  | +        <el-input
 | 
											
												
													
														|  | 
 |  | +          v-model="queryParams.fQtyblc"
 | 
											
												
													
														|  | 
 |  | +          placeholder="请输入结余件数"
 | 
											
												
													
														|  | 
 |  | +          clearable
 | 
											
												
													
														|  | 
 |  | +          size="small"
 | 
											
												
													
														|  | 
 |  | +          @keyup.enter.native="handleQuery"
 | 
											
												
													
														|  | 
 |  | +        />
 | 
											
												
													
														|  | 
 |  | +      </el-form-item>
 | 
											
												
													
														|  | 
 |  | +      <el-form-item label="出库毛重,单位为吨" prop="fGrossweightc">
 | 
											
												
													
														|  | 
 |  | +        <el-input
 | 
											
												
													
														|  | 
 |  | +          v-model="queryParams.fGrossweightc"
 | 
											
												
													
														|  | 
 |  | +          placeholder="请输入出库毛重,单位为吨"
 | 
											
												
													
														|  | 
 |  | +          clearable
 | 
											
												
													
														|  | 
 |  | +          size="small"
 | 
											
												
													
														|  | 
 |  | +          @keyup.enter.native="handleQuery"
 | 
											
												
													
														|  | 
 |  | +        />
 | 
											
												
													
														|  | 
 |  | +      </el-form-item>
 | 
											
												
													
														|  | 
 |  | +      <el-form-item label="出库净重" prop="fNetweightc">
 | 
											
												
													
														|  | 
 |  | +        <el-input
 | 
											
												
													
														|  | 
 |  | +          v-model="queryParams.fNetweightc"
 | 
											
												
													
														|  | 
 |  | +          placeholder="请输入出库净重"
 | 
											
												
													
														|  | 
 |  | +          clearable
 | 
											
												
													
														|  | 
 |  | +          size="small"
 | 
											
												
													
														|  | 
 |  | +          @keyup.enter.native="handleQuery"
 | 
											
												
													
														|  | 
 |  | +        />
 | 
											
												
													
														|  | 
 |  | +      </el-form-item>
 | 
											
												
													
														|  | 
 |  | +      <el-form-item label="结余毛重" prop="fGrossweightblc">
 | 
											
												
													
														|  | 
 |  | +        <el-input
 | 
											
												
													
														|  | 
 |  | +          v-model="queryParams.fGrossweightblc"
 | 
											
												
													
														|  | 
 |  | +          placeholder="请输入结余毛重"
 | 
											
												
													
														|  | 
 |  | +          clearable
 | 
											
												
													
														|  | 
 |  | +          size="small"
 | 
											
												
													
														|  | 
 |  | +          @keyup.enter.native="handleQuery"
 | 
											
												
													
														|  | 
 |  | +        />
 | 
											
												
													
														|  | 
 |  | +      </el-form-item>
 | 
											
												
													
														|  | 
 |  | +      <el-form-item label="结余净重" prop="fNetweightblc">
 | 
											
												
													
														|  | 
 |  | +        <el-input
 | 
											
												
													
														|  | 
 |  | +          v-model="queryParams.fNetweightblc"
 | 
											
												
													
														|  | 
 |  | +          placeholder="请输入结余净重"
 | 
											
												
													
														|  | 
 |  | +          clearable
 | 
											
												
													
														|  | 
 |  | +          size="small"
 | 
											
												
													
														|  | 
 |  | +          @keyup.enter.native="handleQuery"
 | 
											
												
													
														|  | 
 |  | +        />
 | 
											
												
													
														|  | 
 |  | +      </el-form-item>
 | 
											
												
													
														|  | 
 |  | +      <el-form-item label="箱号" prop="fCntrno">
 | 
											
												
													
														|  | 
 |  | +        <el-input
 | 
											
												
													
														|  | 
 |  | +          v-model="queryParams.fCntrno"
 | 
											
												
													
														|  | 
 |  | +          placeholder="请输入箱号"
 | 
											
												
													
														|  | 
 |  | +          clearable
 | 
											
												
													
														|  | 
 |  | +          size="small"
 | 
											
												
													
														|  | 
 |  | +          @keyup.enter.native="handleQuery"
 | 
											
												
													
														|  | 
 |  | +        />
 | 
											
												
													
														|  | 
 |  | +      </el-form-item>
 | 
											
												
													
														|  | 
 |  | +      <el-form-item label="状态,默认 T ,正常T 停用F 下拉选择" prop="fStatus">
 | 
											
												
													
														|  | 
 |  | +        <el-select v-model="queryParams.fStatus" placeholder="请选择状态,默认 T ,正常T 停用F 下拉选择" clearable size="small">
 | 
											
												
													
														|  | 
 |  | +          <el-option label="请选择字典生成" value="" />
 | 
											
												
													
														|  | 
 |  | +        </el-select>
 | 
											
												
													
														|  | 
 |  | +      </el-form-item>
 | 
											
												
													
														|  | 
 |  | +      <el-form-item label="唛头" prop="fMarks">
 | 
											
												
													
														|  | 
 |  | +        <el-input
 | 
											
												
													
														|  | 
 |  | +          v-model="queryParams.fMarks"
 | 
											
												
													
														|  | 
 |  | +          placeholder="请输入唛头"
 | 
											
												
													
														|  | 
 |  | +          clearable
 | 
											
												
													
														|  | 
 |  | +          size="small"
 | 
											
												
													
														|  | 
 |  | +          @keyup.enter.native="handleQuery"
 | 
											
												
													
														|  | 
 |  | +        />
 | 
											
												
													
														|  | 
 |  | +      </el-form-item>
 | 
											
												
													
														|  | 
 |  | +      <el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <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-form-item>
 | 
											
												
													
														|  | 
 |  | +    </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:whgenleg: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:whgenleg:edit']"
 | 
											
												
													
														|  | 
 |  | +        >修改</el-button>
 | 
											
												
													
														|  | 
 |  | +      </el-col>
 | 
											
												
													
														|  | 
 |  | +      <el-col :span="1.5">
 | 
											
												
													
														|  | 
 |  | +        <el-button
 | 
											
												
													
														|  | 
 |  | +          type="danger"
 | 
											
												
													
														|  | 
 |  | +          icon="el-icon-delete"
 | 
											
												
													
														|  | 
 |  | +          size="mini"
 | 
											
												
													
														|  | 
 |  | +          :disabled="multiple"
 | 
											
												
													
														|  | 
 |  | +          @click="handleDelete"
 | 
											
												
													
														|  | 
 |  | +          v-hasPermi="['warehouseBusiness:whgenleg:remove']"
 | 
											
												
													
														|  | 
 |  | +        >删除</el-button>
 | 
											
												
													
														|  | 
 |  | +      </el-col>
 | 
											
												
													
														|  | 
 |  | +      <el-col :span="1.5">
 | 
											
												
													
														|  | 
 |  | +        <el-button
 | 
											
												
													
														|  | 
 |  | +          type="warning"
 | 
											
												
													
														|  | 
 |  | +          icon="el-icon-download"
 | 
											
												
													
														|  | 
 |  | +          size="mini"
 | 
											
												
													
														|  | 
 |  | +          @click="handleExport"
 | 
											
												
													
														|  | 
 |  | +          v-hasPermi="['warehouseBusiness:whgenleg:export']"
 | 
											
												
													
														|  | 
 |  | +        >导出</el-button>
 | 
											
												
													
														|  | 
 |  | +      </el-col>
 | 
											
												
													
														|  | 
 |  | +	  <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
 | 
											
												
													
														|  | 
 |  | +    </el-row>
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  | 
 |  | +    <el-table v-loading="loading" :data="whgenlegList" @selection-change="handleSelectionChange">
 | 
											
												
													
														|  | 
 |  | +      <el-table-column type="selection" width="55" align="center" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="年" align="center" prop="fAccyear" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="年" align="center" prop="fId" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="月" align="center" prop="fAccmonth" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="客户id,t_corps 中的name" align="center" prop="fCorpid" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="提单号" align="center" prop="fMblno" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="原始入库业务编号" align="center" prop="fOriginalbillno" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="库区,显示仓库 库位 库区" align="center" prop="fWarehouseLocationid" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="货物品名,t_goods 中的no或 name,模糊查找选择后,存储f_id,显示name" align="center" prop="fGoodsid" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="贸易方式,对应t_trademodels name" align="center" prop="fTrademodeid" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="上期件数" align="center" prop="fPreqty" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="上期毛重,单位为吨,保留6位小数" align="center" prop="fPregrossweight" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="上期净重," align="center" prop="fPrenetweight" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="入库件数" align="center" prop="fQtyd" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="入库尺码" align="center" prop="fVolumnd" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="入库毛重" align="center" prop="fGrossweightd" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="入库净重" align="center" prop="fNetweightd" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="出口尺码" align="center" prop="fVolumnc" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="出库件数" align="center" prop="fQtyc" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="结余件数" align="center" prop="fQtyblc" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="出库毛重,单位为吨" align="center" prop="fGrossweightc" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="出库净重" align="center" prop="fNetweightc" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="结余毛重" align="center" prop="fGrossweightblc" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="结余净重" align="center" prop="fNetweightblc" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="箱号" align="center" prop="fCntrno" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="状态,默认 T ,正常T 停用F 下拉选择" align="center" prop="fStatus" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="唛头" align="center" prop="fMarks" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="备注" align="center" prop="remark" />
 | 
											
												
													
														|  | 
 |  | +      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
 | 
											
												
													
														|  | 
 |  | +        <template slot-scope="scope">
 | 
											
												
													
														|  | 
 |  | +          <el-button
 | 
											
												
													
														|  | 
 |  | +            size="mini"
 | 
											
												
													
														|  | 
 |  | +            type="text"
 | 
											
												
													
														|  | 
 |  | +            icon="el-icon-edit"
 | 
											
												
													
														|  | 
 |  | +            @click="handleUpdate(scope.row)"
 | 
											
												
													
														|  | 
 |  | +            v-hasPermi="['warehouseBusiness:whgenleg:edit']"
 | 
											
												
													
														|  | 
 |  | +          >修改</el-button>
 | 
											
												
													
														|  | 
 |  | +          <el-button
 | 
											
												
													
														|  | 
 |  | +            size="mini"
 | 
											
												
													
														|  | 
 |  | +            type="text"
 | 
											
												
													
														|  | 
 |  | +            icon="el-icon-delete"
 | 
											
												
													
														|  | 
 |  | +            @click="handleDelete(scope.row)"
 | 
											
												
													
														|  | 
 |  | +            v-hasPermi="['warehouseBusiness:whgenleg:remove']"
 | 
											
												
													
														|  | 
 |  | +          >删除</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"
 | 
											
												
													
														|  | 
 |  | +    />
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  | 
 |  | +    <!-- 添加或修改库存总账对话框 -->
 | 
											
												
													
														|  | 
 |  | +    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
 | 
											
												
													
														|  | 
 |  | +      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="原始入库业务编号" prop="fOriginalbillno">
 | 
											
												
													
														|  | 
 |  | +          <el-input v-model="form.fOriginalbillno" placeholder="请输入原始入库业务编号" />
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="上期件数" prop="fPreqty">
 | 
											
												
													
														|  | 
 |  | +          <el-input v-model="form.fPreqty" placeholder="请输入上期件数" />
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="上期毛重,单位为吨,保留6位小数" prop="fPregrossweight">
 | 
											
												
													
														|  | 
 |  | +          <el-input v-model="form.fPregrossweight" placeholder="请输入上期毛重,单位为吨,保留6位小数" />
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="上期净重," prop="fPrenetweight">
 | 
											
												
													
														|  | 
 |  | +          <el-input v-model="form.fPrenetweight" placeholder="请输入上期净重," />
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="入库件数" prop="fQtyd">
 | 
											
												
													
														|  | 
 |  | +          <el-input v-model="form.fQtyd" placeholder="请输入入库件数" />
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="入库尺码" prop="fVolumnd">
 | 
											
												
													
														|  | 
 |  | +          <el-input v-model="form.fVolumnd" placeholder="请输入入库尺码" />
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="入库毛重" prop="fGrossweightd">
 | 
											
												
													
														|  | 
 |  | +          <el-input v-model="form.fGrossweightd" placeholder="请输入入库毛重" />
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="入库净重" prop="fNetweightd">
 | 
											
												
													
														|  | 
 |  | +          <el-input v-model="form.fNetweightd" placeholder="请输入入库净重" />
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="出口尺码" prop="fVolumnc">
 | 
											
												
													
														|  | 
 |  | +          <el-input v-model="form.fVolumnc" placeholder="请输入出口尺码" />
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="出库件数" prop="fQtyc">
 | 
											
												
													
														|  | 
 |  | +          <el-input v-model="form.fQtyc" placeholder="请输入出库件数" />
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="结余件数" prop="fQtyblc">
 | 
											
												
													
														|  | 
 |  | +          <el-input v-model="form.fQtyblc" placeholder="请输入结余件数" />
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="出库毛重,单位为吨" prop="fGrossweightc">
 | 
											
												
													
														|  | 
 |  | +          <el-input v-model="form.fGrossweightc" placeholder="请输入出库毛重,单位为吨" />
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="出库净重" prop="fNetweightc">
 | 
											
												
													
														|  | 
 |  | +          <el-input v-model="form.fNetweightc" placeholder="请输入出库净重" />
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="结余毛重" prop="fGrossweightblc">
 | 
											
												
													
														|  | 
 |  | +          <el-input v-model="form.fGrossweightblc" placeholder="请输入结余毛重" />
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="结余净重" prop="fNetweightblc">
 | 
											
												
													
														|  | 
 |  | +          <el-input v-model="form.fNetweightblc" placeholder="请输入结余净重" />
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="箱号" prop="fCntrno">
 | 
											
												
													
														|  | 
 |  | +          <el-input v-model="form.fCntrno" placeholder="请输入箱号" />
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="状态,默认 T ,正常T 停用F 下拉选择">
 | 
											
												
													
														|  | 
 |  | +          <el-radio-group v-model="form.fStatus">
 | 
											
												
													
														|  | 
 |  | +            <el-radio label="1">请选择字典生成</el-radio>
 | 
											
												
													
														|  | 
 |  | +          </el-radio-group>
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="删除状态" prop="delFlag">
 | 
											
												
													
														|  | 
 |  | +          <el-input v-model="form.delFlag" placeholder="请输入删除状态" />
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="唛头" prop="fMarks">
 | 
											
												
													
														|  | 
 |  | +          <el-input v-model="form.fMarks" placeholder="请输入唛头" />
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +        <el-form-item label="备注" prop="remark">
 | 
											
												
													
														|  | 
 |  | +          <el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
 | 
											
												
													
														|  | 
 |  | +        </el-form-item>
 | 
											
												
													
														|  | 
 |  | +      </el-form>
 | 
											
												
													
														|  | 
 |  | +      <div slot="footer" class="dialog-footer">
 | 
											
												
													
														|  | 
 |  | +        <el-button type="primary" @click="submitForm">确 定</el-button>
 | 
											
												
													
														|  | 
 |  | +        <el-button @click="cancel">取 消</el-button>
 | 
											
												
													
														|  | 
 |  | +      </div>
 | 
											
												
													
														|  | 
 |  | +    </el-dialog>
 | 
											
												
													
														|  | 
 |  | +  </div>
 | 
											
												
													
														|  | 
 |  | +</template>
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  | 
 |  | +<script>
 | 
											
												
													
														|  | 
 |  | +import { listWhgenleg, getWhgenleg, delWhgenleg, addWhgenleg, updateWhgenleg, exportWhgenleg } from "@/api/reportManagement/whgenleg";
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  | 
 |  | +export default {
 | 
											
												
													
														|  | 
 |  | +  name: "Whgenleg",
 | 
											
												
													
														|  | 
 |  | +  components: {
 | 
											
												
													
														|  | 
 |  | +  },
 | 
											
												
													
														|  | 
 |  | +  data() {
 | 
											
												
													
														|  | 
 |  | +    return {
 | 
											
												
													
														|  | 
 |  | +      // 遮罩层
 | 
											
												
													
														|  | 
 |  | +      loading: true,
 | 
											
												
													
														|  | 
 |  | +      // 选中数组
 | 
											
												
													
														|  | 
 |  | +      ids: [],
 | 
											
												
													
														|  | 
 |  | +      // 非单个禁用
 | 
											
												
													
														|  | 
 |  | +      single: true,
 | 
											
												
													
														|  | 
 |  | +      // 非多个禁用
 | 
											
												
													
														|  | 
 |  | +      multiple: true,
 | 
											
												
													
														|  | 
 |  | +      // 显示搜索条件
 | 
											
												
													
														|  | 
 |  | +      showSearch: true,
 | 
											
												
													
														|  | 
 |  | +      // 总条数
 | 
											
												
													
														|  | 
 |  | +      total: 0,
 | 
											
												
													
														|  | 
 |  | +      // 库存总账表格数据
 | 
											
												
													
														|  | 
 |  | +      whgenlegList: [],
 | 
											
												
													
														|  | 
 |  | +      // 弹出层标题
 | 
											
												
													
														|  | 
 |  | +      title: "",
 | 
											
												
													
														|  | 
 |  | +      // 是否显示弹出层
 | 
											
												
													
														|  | 
 |  | +      open: false,
 | 
											
												
													
														|  | 
 |  | +      // 查询参数
 | 
											
												
													
														|  | 
 |  | +      queryParams: {
 | 
											
												
													
														|  | 
 |  | +        pageNum: 1,
 | 
											
												
													
														|  | 
 |  | +        pageSize: 10,
 | 
											
												
													
														|  | 
 |  | +        fOriginalbillno: null,
 | 
											
												
													
														|  | 
 |  | +        fPreqty: null,
 | 
											
												
													
														|  | 
 |  | +        fPregrossweight: null,
 | 
											
												
													
														|  | 
 |  | +        fPrenetweight: null,
 | 
											
												
													
														|  | 
 |  | +        fQtyd: null,
 | 
											
												
													
														|  | 
 |  | +        fVolumnd: null,
 | 
											
												
													
														|  | 
 |  | +        fGrossweightd: null,
 | 
											
												
													
														|  | 
 |  | +        fNetweightd: null,
 | 
											
												
													
														|  | 
 |  | +        fVolumnc: null,
 | 
											
												
													
														|  | 
 |  | +        fQtyc: null,
 | 
											
												
													
														|  | 
 |  | +        fQtyblc: null,
 | 
											
												
													
														|  | 
 |  | +        fGrossweightc: null,
 | 
											
												
													
														|  | 
 |  | +        fNetweightc: null,
 | 
											
												
													
														|  | 
 |  | +        fGrossweightblc: null,
 | 
											
												
													
														|  | 
 |  | +        fNetweightblc: null,
 | 
											
												
													
														|  | 
 |  | +        fCntrno: null,
 | 
											
												
													
														|  | 
 |  | +        fStatus: null,
 | 
											
												
													
														|  | 
 |  | +        fMarks: null,
 | 
											
												
													
														|  | 
 |  | +      },
 | 
											
												
													
														|  | 
 |  | +      // 表单参数
 | 
											
												
													
														|  | 
 |  | +      form: {},
 | 
											
												
													
														|  | 
 |  | +      // 表单校验
 | 
											
												
													
														|  | 
 |  | +      rules: {
 | 
											
												
													
														|  | 
 |  | +        fMarks: [
 | 
											
												
													
														|  | 
 |  | +          { required: true, message: "唛头不能为空", trigger: "blur" }
 | 
											
												
													
														|  | 
 |  | +        ],
 | 
											
												
													
														|  | 
 |  | +      }
 | 
											
												
													
														|  | 
 |  | +    };
 | 
											
												
													
														|  | 
 |  | +  },
 | 
											
												
													
														|  | 
 |  | +  created() {
 | 
											
												
													
														|  | 
 |  | +    this.getList();
 | 
											
												
													
														|  | 
 |  | +  },
 | 
											
												
													
														|  | 
 |  | +  methods: {
 | 
											
												
													
														|  | 
 |  | +    /** 查询库存总账列表 */
 | 
											
												
													
														|  | 
 |  | +    getList() {
 | 
											
												
													
														|  | 
 |  | +      this.loading = true;
 | 
											
												
													
														|  | 
 |  | +      listWhgenleg(this.queryParams).then(response => {
 | 
											
												
													
														|  | 
 |  | +        this.whgenlegList = response.rows;
 | 
											
												
													
														|  | 
 |  | +        this.total = response.total;
 | 
											
												
													
														|  | 
 |  | +        this.loading = false;
 | 
											
												
													
														|  | 
 |  | +      });
 | 
											
												
													
														|  | 
 |  | +    },
 | 
											
												
													
														|  | 
 |  | +    // 取消按钮
 | 
											
												
													
														|  | 
 |  | +    cancel() {
 | 
											
												
													
														|  | 
 |  | +      this.open = false;
 | 
											
												
													
														|  | 
 |  | +      this.reset();
 | 
											
												
													
														|  | 
 |  | +    },
 | 
											
												
													
														|  | 
 |  | +    // 表单重置
 | 
											
												
													
														|  | 
 |  | +    reset() {
 | 
											
												
													
														|  | 
 |  | +      this.form = {
 | 
											
												
													
														|  | 
 |  | +        fAccyear: null,
 | 
											
												
													
														|  | 
 |  | +        fId: null,
 | 
											
												
													
														|  | 
 |  | +        fAccmonth: null,
 | 
											
												
													
														|  | 
 |  | +        fCorpid: null,
 | 
											
												
													
														|  | 
 |  | +        fMblno: null,
 | 
											
												
													
														|  | 
 |  | +        fOriginalbillno: null,
 | 
											
												
													
														|  | 
 |  | +        fWarehouseLocationid: null,
 | 
											
												
													
														|  | 
 |  | +        fGoodsid: null,
 | 
											
												
													
														|  | 
 |  | +        fTrademodeid: null,
 | 
											
												
													
														|  | 
 |  | +        fPreqty: null,
 | 
											
												
													
														|  | 
 |  | +        fPregrossweight: null,
 | 
											
												
													
														|  | 
 |  | +        fPrenetweight: null,
 | 
											
												
													
														|  | 
 |  | +        fQtyd: null,
 | 
											
												
													
														|  | 
 |  | +        fVolumnd: null,
 | 
											
												
													
														|  | 
 |  | +        fGrossweightd: null,
 | 
											
												
													
														|  | 
 |  | +        fNetweightd: null,
 | 
											
												
													
														|  | 
 |  | +        fVolumnc: null,
 | 
											
												
													
														|  | 
 |  | +        fQtyc: null,
 | 
											
												
													
														|  | 
 |  | +        fQtyblc: null,
 | 
											
												
													
														|  | 
 |  | +        fGrossweightc: null,
 | 
											
												
													
														|  | 
 |  | +        fNetweightc: null,
 | 
											
												
													
														|  | 
 |  | +        fGrossweightblc: null,
 | 
											
												
													
														|  | 
 |  | +        fNetweightblc: null,
 | 
											
												
													
														|  | 
 |  | +        fCntrno: null,
 | 
											
												
													
														|  | 
 |  | +        fStatus: "0",
 | 
											
												
													
														|  | 
 |  | +        delFlag: null,
 | 
											
												
													
														|  | 
 |  | +        createBy: null,
 | 
											
												
													
														|  | 
 |  | +        fMarks: null,
 | 
											
												
													
														|  | 
 |  | +        createTime: null,
 | 
											
												
													
														|  | 
 |  | +        updateBy: null,
 | 
											
												
													
														|  | 
 |  | +        updateTime: null,
 | 
											
												
													
														|  | 
 |  | +        remark: null
 | 
											
												
													
														|  | 
 |  | +      };
 | 
											
												
													
														|  | 
 |  | +      this.resetForm("form");
 | 
											
												
													
														|  | 
 |  | +    },
 | 
											
												
													
														|  | 
 |  | +    /** 搜索按钮操作 */
 | 
											
												
													
														|  | 
 |  | +    handleQuery() {
 | 
											
												
													
														|  | 
 |  | +      this.queryParams.pageNum = 1;
 | 
											
												
													
														|  | 
 |  | +      this.getList();
 | 
											
												
													
														|  | 
 |  | +    },
 | 
											
												
													
														|  | 
 |  | +    /** 重置按钮操作 */
 | 
											
												
													
														|  | 
 |  | +    resetQuery() {
 | 
											
												
													
														|  | 
 |  | +      this.resetForm("queryForm");
 | 
											
												
													
														|  | 
 |  | +      this.handleQuery();
 | 
											
												
													
														|  | 
 |  | +    },
 | 
											
												
													
														|  | 
 |  | +    // 多选框选中数据
 | 
											
												
													
														|  | 
 |  | +    handleSelectionChange(selection) {
 | 
											
												
													
														|  | 
 |  | +      this.ids = selection.map(item => item.fAccyear)
 | 
											
												
													
														|  | 
 |  | +      this.single = selection.length!==1
 | 
											
												
													
														|  | 
 |  | +      this.multiple = !selection.length
 | 
											
												
													
														|  | 
 |  | +    },
 | 
											
												
													
														|  | 
 |  | +    /** 新增按钮操作 */
 | 
											
												
													
														|  | 
 |  | +    handleAdd() {
 | 
											
												
													
														|  | 
 |  | +      this.reset();
 | 
											
												
													
														|  | 
 |  | +      this.open = true;
 | 
											
												
													
														|  | 
 |  | +      this.title = "添加库存总账";
 | 
											
												
													
														|  | 
 |  | +    },
 | 
											
												
													
														|  | 
 |  | +    /** 修改按钮操作 */
 | 
											
												
													
														|  | 
 |  | +    handleUpdate(row) {
 | 
											
												
													
														|  | 
 |  | +      this.reset();
 | 
											
												
													
														|  | 
 |  | +      const fAccyear = row.fAccyear || this.ids
 | 
											
												
													
														|  | 
 |  | +      getWhgenleg(fAccyear).then(response => {
 | 
											
												
													
														|  | 
 |  | +        this.form = response.data;
 | 
											
												
													
														|  | 
 |  | +        this.open = true;
 | 
											
												
													
														|  | 
 |  | +        this.title = "修改库存总账";
 | 
											
												
													
														|  | 
 |  | +      });
 | 
											
												
													
														|  | 
 |  | +    },
 | 
											
												
													
														|  | 
 |  | +    /** 提交按钮 */
 | 
											
												
													
														|  | 
 |  | +    submitForm() {
 | 
											
												
													
														|  | 
 |  | +      this.$refs["form"].validate(valid => {
 | 
											
												
													
														|  | 
 |  | +        if (valid) {
 | 
											
												
													
														|  | 
 |  | +          if (this.form.fAccyear != null) {
 | 
											
												
													
														|  | 
 |  | +            updateWhgenleg(this.form).then(response => {
 | 
											
												
													
														|  | 
 |  | +              this.msgSuccess("修改成功");
 | 
											
												
													
														|  | 
 |  | +              this.open = false;
 | 
											
												
													
														|  | 
 |  | +              this.getList();
 | 
											
												
													
														|  | 
 |  | +            });
 | 
											
												
													
														|  | 
 |  | +          } else {
 | 
											
												
													
														|  | 
 |  | +            addWhgenleg(this.form).then(response => {
 | 
											
												
													
														|  | 
 |  | +              this.msgSuccess("新增成功");
 | 
											
												
													
														|  | 
 |  | +              this.open = false;
 | 
											
												
													
														|  | 
 |  | +              this.getList();
 | 
											
												
													
														|  | 
 |  | +            });
 | 
											
												
													
														|  | 
 |  | +          }
 | 
											
												
													
														|  | 
 |  | +        }
 | 
											
												
													
														|  | 
 |  | +      });
 | 
											
												
													
														|  | 
 |  | +    },
 | 
											
												
													
														|  | 
 |  | +    /** 删除按钮操作 */
 | 
											
												
													
														|  | 
 |  | +    handleDelete(row) {
 | 
											
												
													
														|  | 
 |  | +      const fAccyears = row.fAccyear || this.ids;
 | 
											
												
													
														|  | 
 |  | +      this.$confirm('是否确认删除库存总账编号为"' + fAccyears + '"的数据项?', "警告", {
 | 
											
												
													
														|  | 
 |  | +          confirmButtonText: "确定",
 | 
											
												
													
														|  | 
 |  | +          cancelButtonText: "取消",
 | 
											
												
													
														|  | 
 |  | +          type: "warning"
 | 
											
												
													
														|  | 
 |  | +        }).then(function() {
 | 
											
												
													
														|  | 
 |  | +          return delWhgenleg(fAccyears);
 | 
											
												
													
														|  | 
 |  | +        }).then(() => {
 | 
											
												
													
														|  | 
 |  | +          this.getList();
 | 
											
												
													
														|  | 
 |  | +          this.msgSuccess("删除成功");
 | 
											
												
													
														|  | 
 |  | +        })
 | 
											
												
													
														|  | 
 |  | +    },
 | 
											
												
													
														|  | 
 |  | +    /** 导出按钮操作 */
 | 
											
												
													
														|  | 
 |  | +    handleExport() {
 | 
											
												
													
														|  | 
 |  | +      const queryParams = this.queryParams;
 | 
											
												
													
														|  | 
 |  | +      this.$confirm('是否确认导出所有库存总账数据项?', "警告", {
 | 
											
												
													
														|  | 
 |  | +          confirmButtonText: "确定",
 | 
											
												
													
														|  | 
 |  | +          cancelButtonText: "取消",
 | 
											
												
													
														|  | 
 |  | +          type: "warning"
 | 
											
												
													
														|  | 
 |  | +        }).then(function() {
 | 
											
												
													
														|  | 
 |  | +          return exportWhgenleg(queryParams);
 | 
											
												
													
														|  | 
 |  | +        }).then(response => {
 | 
											
												
													
														|  | 
 |  | +          this.download(response.msg);
 | 
											
												
													
														|  | 
 |  | +        })
 | 
											
												
													
														|  | 
 |  | +    }
 | 
											
												
													
														|  | 
 |  | +  }
 | 
											
												
													
														|  | 
 |  | +};
 | 
											
												
													
														|  | 
 |  | +</script>
 |