| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325 | <template>  <div class="app-container">    <el-form      :model="queryParams"      ref="queryForm"      :inline="true"      v-show="showSearch"      label-width="68px"    >      <el-form-item label="客户名称" prop="fCorpid">        <el-input          v-model="queryParams.fCorpid"          placeholder="请输入客户名称"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="仓库" prop="fWarehouseid">        <el-input          v-model="queryParams.fWarehouseid"          placeholder="请输入仓库"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="联系人" prop="fContacts">        <el-input          v-model="queryParams.fContacts"          placeholder="请输入联系人"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="电话" prop="fTel">        <el-input          v-model="queryParams.fTel"          placeholder="请输入电话"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-button type="primary">入库记账</el-button>      <el-form-item label="提单号" prop="fMblno">        <el-input          v-model="queryParams.fMblno"          placeholder="请输入提单号"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="入库日期" prop="fBsdate">        <el-date-picker          clearable          size="small"          style="width: 200px"          v-model="queryParams.fBsdate"          type="date"          value-format="yyyy-MM-dd"          placeholder="选择入库日期"        >        </el-date-picker>      </el-form-item>      <el-form-item label="仓管员" prop="fStorekeeper">        <el-input          v-model="queryParams.fStorekeeper"          placeholder="请输入仓管员"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="制单部门" prop="fDeptid">        <el-input          v-model="queryParams.fDeptid"          placeholder="请输入制单部门"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="制单人" prop="fCreateby">        <el-input          v-model="queryParams.fCreateby"          placeholder="请输入制单人"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="制单日期" prop="fCreatetime">        <el-date-picker          clearable          size="small"          style="width: 200px"          v-model="queryParams.fCreatetime"          type="date"          value-format="yyyy-MM-dd"          placeholder="选择制单日期"        >        </el-date-picker>      </el-form-item>      <el-form-item label="船名航次" prop="fVslvoy">        <el-input          v-model="queryParams.fVslvoy"          placeholder="请输入船名航次"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="到港日期" prop="fEta">        <el-date-picker          clearable          size="small"          style="width: 200px"          v-model="queryParams.fEta"          type="date"          value-format="yyyy-MM-dd"          placeholder="选择到港日期"        >        </el-date-picker>      </el-form-item>      <el-form-item label="贸易方式" prop="fTrademodeid">        <el-input          v-model="queryParams.fTrademodeid"          placeholder="请输入贸易方式"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>        <el-form-item label="计费方式" prop="fBillingway ">        <el-select          v-model="queryParams.fBillingway "          placeholder="请选择计费方式"          clearable          size="small"        >          <el-option            v-for="dict in fFeetunitOptions"            :key="dict.dictValue"            :label="dict.dictLabel"            :value="dict.dictValue"          />        </el-select>      </el-form-item>      <el-form-item label="计费单位" prop="fFeetunit">        <el-select          v-model="queryParams.fFeetunit"          placeholder="请选择计费单位"          clearable          size="small"        >          <el-option            v-for="dict in fFeetunitOptions"            :key="dict.dictValue"            :label="dict.dictLabel"            :value="dict.dictValue"          />        </el-select>      </el-form-item>      <el-form-item label="客户存货编号" prop="fBscorpno">        <el-input          v-model="queryParams.fBscorpno"          placeholder="请输入客户存货编号"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="报关号" prop="fCustomsdeclartion">        <el-input          v-model="queryParams.fCustomsdeclartion"          placeholder="请输入报关号"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item        label="结算方式"        prop="fStltypeid"      >        <el-input          v-model="queryParams.fStltypeid"          placeholder="请输入结算方式"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="是否过磅" prop="fIfweigh">        <el-select          v-model="queryParams.fIfweigh"          placeholder="请选择是否过磅"          clearable          size="small"        >          <el-option            v-for="dict in fIfweighOptions"            :key="dict.dictValue"            :label="dict.dictLabel"            :value="dict.dictValue"          />        </el-select>      </el-form-item>      <el-form-item label="是否破损" prop="fIfdamage">        <el-select          v-model="queryParams.fIfdamage"          placeholder="请选择是否破损"          clearable          size="small"        >          <el-option            v-for="dict in fIfdamageOptions"            :key="dict.dictValue"            :label="dict.dictLabel"            :value="dict.dictValue"          />        </el-select>      </el-form-item>      <el-form-item label="经营单位" prop="fSbu">        <el-input          v-model="queryParams.fSbu"          placeholder="请输入经营单位"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>       <el-form-item        label="是否质押"        prop="fIfpledge"      >        <el-select          v-model="queryParams.fIfpledge"          placeholder="请选择是否质押"          clearable          size="small"        >          <el-option            v-for="dict in fIfpledgeOptions"            :key="dict.dictValue"            :label="dict.dictLabel"            :value="dict.dictValue"          />        </el-select>      </el-form-item>      <el-form-item        label="银行名称"        prop="fBankcorpid"      >        <el-input          v-model="queryParams.fBankcorpid"          placeholder="请输入银行名称"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <!-- <el-form-item label="单据类型" prop="fBilltype">        <el-select          v-model="queryParams.fBilltype"          placeholder="请选择单据类型"          clearable          size="small"        >          <el-option            v-for="dict in fBilltypeOptions"            :key="dict.dictValue"            :label="dict.dictLabel"            :value="dict.dictValue"          />        </el-select>      </el-form-item>      <el-form-item        label="业务编号,格式RK+YYYY+YY+NNN,编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用删除单据号,每月从001开始。RK CK DB HZ"        prop="fBillno"      >        <el-input          v-model="queryParams.fBillno"          placeholder="请输入业务编号,格式RK+YYYY+YY+NNN,编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用删除单据号,每月从001开始。RK CK DB HZ"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item        label="原始业务编号,入库时和f_billno 相同,出库 取入库的f_originalbillno"        prop="fOriginalbillno"      >        <el-input          v-model="queryParams.fOriginalbillno"          placeholder="请输入原始业务编号,入库时和f_billno 相同,出库 取入库的f_originalbillno"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="业务所属部门" prop="fBsdeptid">        <el-input          v-model="queryParams.fBsdeptid"          placeholder="请输入业务所属部门"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item        label="货转客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name,自有在货权转移是该字段有效"        prop="fTocorpid"      >        <el-input          v-model="queryParams.fTocorpid"          placeholder="请输入货转客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name,自有在货权转移是该字段有效"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="计划件数,由明细表自动合计生成" prop="fPlanqty">        <el-input          v-model="queryParams.fPlanqty"          placeholder="请输入计划件数,由明细表自动合计生成"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item        label="计划毛重,由明细表自动合计生成"        prop="fPlangrossweight"      >        <el-input          v-model="queryParams.fPlangrossweight"          placeholder="请输入计划毛重,由明细表自动合计生成"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="计划净重,由明细表自动合计生成" prop="fPlannetweight">        <el-input          v-model="queryParams.fPlannetweight"          placeholder="请输入计划净重,由明细表自动合计生成"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="计划尺码,由明细表自动合计生成" prop="fPlanvolumn">        <el-input          v-model="queryParams.fPlanvolumn"          placeholder="请输入计划尺码,由明细表自动合计生成"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="件数,由明细表自动合计生成" prop="fQty">        <el-input          v-model="queryParams.fQty"          placeholder="请输入件数,由明细表自动合计生成"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="毛重,由明细表自动合计生成" prop="fGrossweight">        <el-input          v-model="queryParams.fGrossweight"          placeholder="请输入毛重,由明细表自动合计生成"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="净重,由明细表自动合计生成" prop="fNetweight">        <el-input          v-model="queryParams.fNetweight"          placeholder="请输入净重,由明细表自动合计生成"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="尺码,由明细表自动合计生成" prop="fVolumn">        <el-input          v-model="queryParams.fVolumn"          placeholder="请输入尺码,由明细表自动合计生成"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="报关单号" prop="fCustomno">        <el-input          v-model="queryParams.fCustomno"          placeholder="请输入报关单号"          clearable          size="small"          @keyup.enter.native="handleQuery"        />      </el-form-item>      <el-form-item label="状态(数据字典),N 入" prop="fBillstatus">        <el-select          v-model="queryParams.fBillstatus"          placeholder="请选择状态(数据字典),N 入"          clearable          size="small"        >          <el-option            v-for="dict in fBillstatusOptions"            :key="dict.dictValue"            :label="dict.dictLabel"            :value="dict.dictValue"          />        </el-select>      </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:warehousebills: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:warehousebills: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:warehousebills: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:warehousebills:export']"          >导出</el-button        >      </el-col>      <right-toolbar        :showSearch.sync="showSearch"        @queryTable="getList"      ></right-toolbar>    </el-row>    <el-table      v-loading="loading"      :data="warehousebillsList"      @selection-change="handleSelectionChange"    >      <el-table-column type="selection" width="55" align="center" />      <el-table-column label="状态(数据字典),N 入" align="center" prop="fId" />      <el-table-column        label="业务编号,格式RK+YYYY+YY+NNN,编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用删除单据号,每月从001开始。RK CK DB HZ"        align="center"        prop="fBillno"      />      <el-table-column        label="报关号"        align="center"        prop="fCustomsdeclartion"      />      <el-table-column        label="原始业务编号,入库时和f_billno 相同,出库 取入库的f_originalbillno"        align="center"        prop="fOriginalbillno"      />      <el-table-column label="制单部门" align="center" prop="fDeptid" />      <el-table-column label="业务所属部门" align="center" prop="fBsdeptid" />      <el-table-column label="联系人" align="center" prop="fContacts" />      <el-table-column label="电话" align="center" prop="fTel" />      <el-table-column        label="客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name"        align="center"        prop="fCorpid"      />      <el-table-column        label="货转客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name,自有在货权转移是该字段有效"        align="center"        prop="fTocorpid"      />      <el-table-column        label="结算方式,默认提取corps中stltypeid	也可以从表t_stltypes中下拉选择,存储id,显示name"        align="center"        prop="fStltypeid"      />      <el-table-column        label="客户存货编号,格式编号客户编号+YYYY +NNNN,编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用,每年从001开始"        align="center"        prop="fBscorpno"      />      <el-table-column label="仓库" align="center" prop="fWarehouseid" />      <el-table-column label="仓管人" align="center" prop="fStorekeeper" />      <el-table-column label="入" align="center" prop="fBsdate" width="180">        <template slot-scope="scope">          <span>{{ parseTime(scope.row.fBsdate, "{y}-{m}-{d}") }}</span>        </template>      </el-table-column>      <el-table-column        label="计划件数,由明细表自动合计生成"        align="center"        prop="fPlanqty"      />      <el-table-column        label="计划毛重(kg),由明细表自动合计生成"        align="center"        prop="fPlangrossweight"      />      <el-table-column        label="计划净重(kg),由明细表自动合计生成"        align="center"        prop="fPlannetweight"      />      <el-table-column        label="计划尺码,由明细表自动合计生成"        align="center"        prop="fPlanvolumn"      />      <el-table-column        label="件数,由明细表自动合计生成"        align="center"        prop="fQty"      />      <el-table-column        label="毛重(kg),由明细表自动合计生成"        align="center"        prop="fGrossweight"      />      <el-table-column        label="净重(kg),由明细表自动合计生成"        align="center"        prop="fNetweight"      />      <el-table-column        label="尺码,由明细表自动合计生成"        align="center"        prop="fVolumn"      />      <el-table-column        label="贸易方式(数据字典),对应t_trademodels "        align="center"        prop="fTrademodeid"        :formatter="fTrademodeidFormat"      />      <el-table-column label="经营单位(客户列表)" align="center" prop="fSbu" />      <el-table-column        label="计费单位(数据字典),下拉选择毛重(kg)或净重"        align="center"        prop="fFeetunit"        :formatter="fFeetunitFormat"      />      <el-table-column label="提单号" align="center" prop="fMblno" />      <el-table-column        label="船名航次,CMA/A0001"        align="center"        prop="fVslvoy"      />      <el-table-column label="到港日期" align="center" prop="fEta" width="180">        <template slot-scope="scope">          <span>{{ parseTime(scope.row.fEta, "{y}-{m}-{d}") }}</span>        </template>      </el-table-column>      <el-table-column label="报关单号" align="center" prop="fCustomno" />      <el-table-column        label="是否过磅(数据字典)默认 F ,过磅T 否者F 下拉选择"        align="center"        prop="fIfweigh"        :formatter="fIfweighFormat"      />      <el-table-column        label="是否质押(数据字典),默认 F ,质押T 否者F 下拉选择"        align="center"        prop="fIfpledge"        :formatter="fIfpledgeFormat"      />      <el-table-column        label="是否破损(数据字典),默认F否则T"        align="center"        prop="fIfdamage"        :formatter="fIfdamageFormat"      />      <el-table-column        label="银行名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name"        align="center"        prop="fBankcorpid"      />      <el-table-column        label="单据类型(数据字典)SJRK"        align="center"        prop="fBilltype"        :formatter="fBilltypeFormat"      />      <el-table-column        label="状态(数据字典),N 入"        align="center"        prop="fBillstatus"        :formatter="fBillstatusFormat"      />      <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:warehousebills:edit']"            >修改</el-button          >          <el-button            size="mini"            type="text"            icon="el-icon-delete"            @click="handleDelete(scope.row)"            v-hasPermi="['warehouseBusiness:warehousebills: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" :close-on-click-modal="false" width="500px" append-to-body>      <el-form ref="form" :model="form" :rules="rules" label-width="80px">        <el-form-item          label="业务编号,格式RK+YYYY+YY+NNN,编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用删除单据号,每月从001开始。RK CK DB HZ"          prop="fBillno"        >          <el-input            v-model="form.fBillno"            placeholder="请输入业务编号,格式RK+YYYY+YY+NNN,编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用删除单据号,每月从001开始。RK CK DB HZ"          />        </el-form-item>        <el-form-item label="报关号" prop="fCustomsdeclartion">          <el-input            v-model="form.fCustomsdeclartion"            placeholder="请输入报关号"          />        </el-form-item>        <el-form-item          label="原始业务编号,入库时和f_billno 相同,出库 取入库的f_originalbillno"          prop="fOriginalbillno"        >          <el-input            v-model="form.fOriginalbillno"            placeholder="请输入原始业务编号,入库时和f_billno 相同,出库 取入库的f_originalbillno"          />        </el-form-item>        <el-form-item label="制单部门" prop="fDeptid">          <el-input v-model="form.fDeptid" placeholder="请输入制单部门" />        </el-form-item>        <el-form-item label="业务所属部门" prop="fBsdeptid">          <el-input v-model="form.fBsdeptid" placeholder="请输入业务所属部门" />        </el-form-item>        <el-form-item label="联系人" prop="fContacts">          <el-input v-model="form.fContacts" placeholder="请输入联系人" />        </el-form-item>        <el-form-item label="电话" prop="fTel">          <el-input v-model="form.fTel" placeholder="请输入电话" />        </el-form-item>        <el-form-item          label="客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name"          prop="fCorpid"        >          <el-input            v-model="form.fCorpid"            placeholder="请输入客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name"          />        </el-form-item>        <el-form-item          label="货转客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name,自有在货权转移是该字段有效"          prop="fTocorpid"        >          <el-input            v-model="form.fTocorpid"            placeholder="请输入货转客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name,自有在货权转移是该字段有效"          />        </el-form-item>        <el-form-item          label="结算方式,默认提取corps中stltypeid	也可以从表t_stltypes中下拉选择,存储id,显示name"          prop="fStltypeid"        >          <el-input            v-model="form.fStltypeid"            placeholder="请输入结算方式,默认提取corps中stltypeid	也可以从表t_stltypes中下拉选择,存储id,显示name"          />        </el-form-item>        <el-form-item          label="客户存货编号,格式编号客户编号+YYYY +NNNN,编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用,每年从001开始"          prop="fBscorpno"        >          <el-input            v-model="form.fBscorpno"            placeholder="请输入客户存货编号,格式编号客户编号+YYYY +NNNN,编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用,每年从001开始"          />        </el-form-item>        <el-form-item label="仓库" prop="fWarehouseid">          <el-input v-model="form.fWarehouseid" placeholder="请输入仓库" />        </el-form-item>        <el-form-item label="仓管人" prop="fStorekeeper">          <el-input v-model="form.fStorekeeper" placeholder="请输入仓管人" />        </el-form-item>        <el-form-item label="入" prop="fBsdate">          <el-date-picker            clearable            size="small"            style="width: 200px"            v-model="form.fBsdate"            type="date"            value-format="yyyy-MM-dd"            placeholder="选择入"          >          </el-date-picker>        </el-form-item>        <el-form-item label="计划件数,由明细表自动合计生成" prop="fPlanqty">          <el-input            v-model="form.fPlanqty"            placeholder="请输入计划件数,由明细表自动合计生成"          />        </el-form-item>        <el-form-item          label="计划毛重(kg),由明细表自动合计生成"          prop="fPlangrossweight"        >          <el-input            v-model="form.fPlangrossweight"            placeholder="请输入计划毛重,由明细表自动合计生成"          />        </el-form-item>        <el-form-item          label="计划净重(kg),由明细表自动合计生成"          prop="fPlannetweight"        >          <el-input            v-model="form.fPlannetweight"            placeholder="请输入计划净重,由明细表自动合计生成"          />        </el-form-item>        <el-form-item label="计划尺码,由明细表自动合计生成" prop="fPlanvolumn">          <el-input            v-model="form.fPlanvolumn"            placeholder="请输入计划尺码,由明细表自动合计生成"          />        </el-form-item>        <el-form-item label="件数,由明细表自动合计生成" prop="fQty">          <el-input            v-model="form.fQty"            placeholder="请输入件数,由明细表自动合计生成"          />        </el-form-item>        <el-form-item label="毛重(kg),由明细表自动合计生成" prop="fGrossweight">          <el-input            v-model="form.fGrossweight"            placeholder="请输入毛重,由明细表自动合计生成"          />        </el-form-item>        <el-form-item label="净重(kg),由明细表自动合计生成" prop="fNetweight">          <el-input            v-model="form.fNetweight"            placeholder="请输入净重,由明细表自动合计生成"          />        </el-form-item>        <el-form-item label="尺码,由明细表自动合计生成" prop="fVolumn">          <el-input            v-model="form.fVolumn"            placeholder="请输入尺码,由明细表自动合计生成"          />        </el-form-item>        <el-form-item          label="贸易方式(数据字典),对应t_trademodels "          prop="fTrademodeid"        >          <el-input            v-model="form.fTrademodeid"            placeholder="请输入贸易方式(数据字典),对应t_trademodels "          />        </el-form-item>        <el-form-item label="经营单位(客户列表)" prop="fSbu">          <el-input            v-model="form.fSbu"            placeholder="请输入经营单位(客户列表)"          />        </el-form-item>        <el-form-item          label="计费单位(数据字典),下拉选择毛重(kg)或净重(kg)"          prop="fFeetunit"        >          <el-select            v-model="form.fFeetunit"            placeholder="请选择计费单位(数据字典),下拉选择毛重或净重"          >            <el-option              v-for="dict in fFeetunitOptions"              :key="dict.dictValue"              :label="dict.dictLabel"              :value="dict.dictValue"            ></el-option>          </el-select>        </el-form-item>        <el-form-item label="提单号" prop="fMblno">          <el-input v-model="form.fMblno" placeholder="请输入提单号" />        </el-form-item>        <el-form-item label="船名航次,CMA/A0001" prop="fVslvoy">          <el-input            v-model="form.fVslvoy"            placeholder="请输入船名航次,CMA/A0001"          />        </el-form-item>        <el-form-item label="到港日期" prop="fEta">          <el-date-picker            clearable            size="small"            style="width: 200px"            v-model="form.fEta"            type="date"            value-format="yyyy-MM-dd"            placeholder="选择到港日期"          >          </el-date-picker>        </el-form-item>        <el-form-item label="报关单号" prop="fCustomno">          <el-input v-model="form.fCustomno" placeholder="请输入报关单号" />        </el-form-item>        <el-form-item          label="是否过磅(数据字典)默认 F ,过磅T 否者F 下拉选择"          prop="fIfweigh"        >          <el-select            v-model="form.fIfweigh"            placeholder="请选择是否过磅(数据字典)默认 F ,过磅T 否者F 下拉选择"          >            <el-option              v-for="dict in fIfweighOptions"              :key="dict.dictValue"              :label="dict.dictLabel"              :value="dict.dictValue"            ></el-option>          </el-select>        </el-form-item>        <el-form-item          label="是否质押(数据字典),默认 F ,质押T 否者F 下拉选择"          prop="fIfpledge"        >          <el-select            v-model="form.fIfpledge"            placeholder="请选择是否质押(数据字典),默认 F ,质押T 否者F 下拉选择"          >            <el-option              v-for="dict in fIfpledgeOptions"              :key="dict.dictValue"              :label="dict.dictLabel"              :value="dict.dictValue"            ></el-option>          </el-select>        </el-form-item>        <el-form-item label="是否破损(数据字典),默认F否则T" prop="fIfdamage">          <el-select            v-model="form.fIfdamage"            placeholder="请选择是否破损(数据字典),默认F否则T"          >            <el-option              v-for="dict in fIfdamageOptions"              :key="dict.dictValue"              :label="dict.dictLabel"              :value="dict.dictValue"            ></el-option>          </el-select>        </el-form-item>        <el-form-item          label="银行名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name"          prop="fBankcorpid"        >          <el-input            v-model="form.fBankcorpid"            placeholder="请输入银行名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name"          />        </el-form-item>        <el-form-item label="单据类型(数据字典)SJRK" prop="fBilltype">          <el-select            v-model="form.fBilltype"            placeholder="请选择单据类型(数据字典)SJRK"          >            <el-option              v-for="dict in fBilltypeOptions"              :key="dict.dictValue"              :label="dict.dictLabel"              :value="dict.dictValue"            ></el-option>          </el-select>        </el-form-item>        <el-form-item label="状态(数据字典),N 入" prop="fBillstatus">          <el-select            v-model="form.fBillstatus"            placeholder="请选择状态(数据字典),N 入"          >            <el-option              v-for="dict in fBillstatusOptions"              :key="dict.dictValue"              :label="dict.dictLabel"              :value="dict.dictValue"            ></el-option>          </el-select>        </el-form-item>        <el-form-item label="删除状态" prop="delFlag">          <el-input v-model="form.delFlag" 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 {  listWarehousebills,  getWarehousebills,  delWarehousebills,  addWarehousebills,  updateWarehousebills,  exportWarehousebills,} from "@/api/warehouseBusiness/warehouseInStock";export default {  name: "Warehousebills",  components: {},  data() {    return {      // 遮罩层      loading: true,      // 选中数组      ids: [],      // 非单个禁用      single: true,      // 非多个禁用      multiple: true,      // 显示搜索条件      showSearch: true,      // 总条数      total: 0,      // 仓库主(出入库)表格数据      warehousebillsList: [],      // 弹出层标题      title: "",      // 是否显示弹出层      open: false,      // 贸易方式(数据字典),对应t_trademodels 字典      fTrademodeidOptions: [],      // 计费单位(数据字典),下拉选择毛重或净重字典      fFeetunitOptions: [],      // 是否过磅(数据字典)默认 F ,过磅T 否者F 下拉选择字典      fIfweighOptions: [],      // 是否质押(数据字典),默认 F ,质押T 否者F 下拉选择字典      fIfpledgeOptions: [],      // 是否破损(数据字典),默认F否则T字典      fIfdamageOptions: [],      // 单据类型(数据字典)SJRK字典      fBilltypeOptions: [],      // 状态(数据字典),N 入字典      fBillstatusOptions: [],      // 查询参数      queryParams: {        pageNum: 1,        pageSize: 10,        fBillno: null,        fCustomsdeclartion: null,        fOriginalbillno: null,        fDeptid: null,        fBsdeptid: null,        fContacts: null,        fTel: null,        fCorpid: null,        fTocorpid: null,        fStltypeid: null,        fBscorpno: null,        fWarehouseid: null,        fStorekeeper: null,        fBsdate: null,        fPlanqty: null,        fPlangrossweight: null,        fPlannetweight: null,        fPlanvolumn: null,        fQty: null,        fGrossweight: null,        fNetweight: null,        fVolumn: null,        fTrademodeid: null,        fSbu: null,        fFeetunit: null,        fMblno: null,        fVslvoy: null,        fEta: null,        fCustomno: null,        fIfweigh: null,        fIfpledge: null,        fIfdamage: null,        fBankcorpid: null,        fBilltype: null,        fBillstatus: null,        fCreateby :null,        fCreatetime :null,      },      // 表单参数      form: {},      // 表单校验      rules: {        fDeptid: [          { required: true, message: "制单部门不能为空", trigger: "blur" },        ],        fBsdeptid: [          { required: true, message: "业务所属部门不能为空", trigger: "blur" },        ],        fCorpid: [          {            required: true,            message:              "客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name不能为空",            trigger: "blur",          },        ],        fTocorpid: [          {            required: true,            message:              "货转客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name,自有在货权转移是该字段有效不能为空",            trigger: "blur",          },        ],        fBscorpno: [          {            required: true,            message:              "客户存货编号,格式编号客户编号+YYYY +NNNN,编号不能断号,要连续、如果删除该编号,下次新建单据,优先使用,每年从001开始不能为空",            trigger: "blur",          },        ],      },    };  },  created() {    this.getList();    this.getDicts("data_trademodes").then((response) => {      this.fTrademodeidOptions = response.data;    });    this.getDicts("data_unitfees").then((response) => {      this.fFeetunitOptions = response.data;    });    this.getDicts("data_ifweigh_status").then((response) => {      this.fIfweighOptions = response.data;    });    this.getDicts("data_ifpledge_status").then((response) => {      this.fIfpledgeOptions = response.data;    });    this.getDicts("data_ifdamage_status").then((response) => {      this.fIfdamageOptions = response.data;    });    this.getDicts("data_billtype_type").then((response) => {      this.fBilltypeOptions = response.data;    });    this.getDicts("sys_common_status").then((response) => {      this.fBillstatusOptions = response.data;    });  },  methods: {    /** 查询仓库主(出入库)列表 */    getList() {      this.loading = true;      listWarehousebills(this.queryParams).then((response) => {        this.warehousebillsList = response.rows;        this.total = response.total;        this.loading = false;      });    },    // 贸易方式(数据字典),对应t_trademodels 字典翻译    fTrademodeidFormat(row, column) {      return this.selectDictLabel(this.fTrademodeidOptions, row.fTrademodeid);    },    // 计费单位(数据字典),下拉选择毛重或净重字典翻译    fFeetunitFormat(row, column) {      return this.selectDictLabel(this.fFeetunitOptions, row.fFeetunit);    },    // 是否过磅(数据字典)默认 F ,过磅T 否者F 下拉选择字典翻译    fIfweighFormat(row, column) {      return this.selectDictLabel(this.fIfweighOptions, row.fIfweigh);    },    // 是否质押(数据字典),默认 F ,质押T 否者F 下拉选择字典翻译    fIfpledgeFormat(row, column) {      return this.selectDictLabel(this.fIfpledgeOptions, row.fIfpledge);    },    // 是否破损(数据字典),默认F否则T字典翻译    fIfdamageFormat(row, column) {      return this.selectDictLabel(this.fIfdamageOptions, row.fIfdamage);    },    // 单据类型(数据字典)SJRK字典翻译    fBilltypeFormat(row, column) {      return this.selectDictLabel(this.fBilltypeOptions, row.fBilltype);    },    // 状态(数据字典),N 入字典翻译    fBillstatusFormat(row, column) {      return this.selectDictLabel(this.fBillstatusOptions, row.fBillstatus);    },    // 取消按钮    cancel() {      this.open = false;      this.reset();    },    // 表单重置    reset() {      this.form = {        fId: null,        fBillno: null,        fCustomsdeclartion: null,        fOriginalbillno: null,        fDeptid: null,        fBsdeptid: null,        fContacts: null,        fTel: null,        fCorpid: null,        fTocorpid: null,        fStltypeid: null,        fBscorpno: null,        fWarehouseid: null,        fStorekeeper: null,        fBsdate: null,        fPlanqty: null,        fPlangrossweight: null,        fPlannetweight: null,        fPlanvolumn: null,        fQty: null,        fGrossweight: null,        fNetweight: null,        fVolumn: null,        fTrademodeid: null,        fSbu: null,        fFeetunit: null,        fMblno: null,        fVslvoy: null,        fEta: null,        fCustomno: null,        fIfweigh: null,        fIfpledge: null,        fIfdamage: null,        fBankcorpid: null,        fBilltype: null,        fBillstatus: null,        delFlag: null,        createBy: null,        createTime: null,        updateBy: null,        updateTime: null,        remark: null,        fCreateby :null,        fCreatetime :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.fId);      this.single = selection.length !== 1;      this.multiple = !selection.length;    },    /** 新增按钮操作 */    handleAdd() {      this.reset();      this.open = true;      this.title = "添加仓库主(出入库)";    },    /** 修改按钮操作 */    handleUpdate(row) {      this.reset();      const fId = row.fId || this.ids;      getWarehousebills(fId).then((response) => {        this.form = response.data;        this.open = true;        this.title = "修改仓库主(出入库)";      });    },    /** 提交按钮 */    submitForm() {      this.$refs["form"].validate((valid) => {        if (valid) {          if (this.form.fId != null) {            updateWarehousebills(this.form).then((response) => {              this.msgSuccess("修改成功");              this.open = false;              this.getList();            });          } else {            addWarehousebills(this.form).then((response) => {              this.msgSuccess("新增成功");              this.open = false;              this.getList();            });          }        }      });    },    /** 删除按钮操作 */    handleDelete(row) {      const fIds = row.fId || this.ids;      this.$confirm(        '是否确认删除仓库主(出入库)编号为"' + fIds + '"的数据项?',        "警告",        {          confirmButtonText: "确定",          cancelButtonText: "取消",          type: "warning",        }      )        .then(function () {          return delWarehousebills(fIds);        })        .then(() => {          this.getList();          this.msgSuccess("删除成功");        });    },    /** 导出按钮操作 */    handleExport() {      const queryParams = this.queryParams;      this.$confirm("是否确认导出所有仓库主(出入库)数据项?", "警告", {        confirmButtonText: "确定",        cancelButtonText: "取消",        type: "warning",      })        .then(function () {          return exportWarehousebills(queryParams);        })        .then((response) => {          this.download(response.msg);        });    },  },};</script>
 |