123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262 |
- <template>
- <div class="my-container">
- <div class="bill-left" v-show="isShow==='home'" key="item">
- <div class="bill-tab">
- <div class="bill-title">导航</div>
- <side-tree :propConfig="treeConfig" @onChange="onChangeTree" ref="sideTree" />
- </div>
- </div>
- <div class="bill-main" v-show="isShow==='home'" key="item2">
- <module-view :propConfig="config" ref="moduleView" @pagination="getDataList" @search="getDataList"
- @resert="onRefresh" @clickHandle="clickHandle" @detail="getDetail" @onRefresh="onRefresh" />
- </div>
- <!-- 新增/编辑 -->
- <div class="detil" v-show="isShow==='add'" key="item3">
- <by-tool :propConfig="toolConfig" @clickHandle="insideTools" ref="byTool" />
- <div class="box-shadow">
- <el-button style="margin-bottom: 20px;" type="primary" icon="el-icon-sort" @click="openVxeData">关联金蝶财务系统物料</el-button>
- <by-form :propConfig="formConfig" ref="form">
- <template v-slot:description>
- <el-input type="textarea" :rows="5" placeholder="请输入内容" v-model="textarea">
- </el-input>
- </template>
- <template v-slot:tags>
- <el-tag style="margin-right: 16px;" :disable-transitions="true" v-for="(item,index) of tagsData"
- :key="index" closable @close="handleClose2(index)">
- {{item}}
- </el-tag>
- <by-input class="input-new-tag" ref="tagsValue" style="width: 150px;"></by-input>
- <el-button class="button-new-tag" @click="getTagsValue">添加</el-button>
- </template>
- <template v-slot:status>
- <el-radio v-model="status" :label="0">启用</el-radio>
- <el-radio v-model="status" :label="1">备用</el-radio>
- <el-radio v-model="status" :label="2">禁用</el-radio>
- </template>
- <template v-slot:ismakeup>
- <el-radio v-model="ismakeup" :label="0" :disabled="materialSpec==1">是</el-radio>
- <el-radio v-model="ismakeup" :label="1">否</el-radio>
- <el-button v-show="ismakeup===0" @click="openMakeup">选择商品</el-button>
- </template>
- <template v-slot:makeupTable>
- <div v-if="ismakeup===0">
- <by-table :propConfig="makeupTable" ref="makeupTable" @onChangeRow="getMakeupTableValue"></by-table>
- </div>
- </template>
- <template v-slot:issued>
- <el-radio v-model="issued" :label="0">是</el-radio>
- <el-radio v-model="issued" :label="1">否</el-radio>
- </template>
- <template v-slot:materialSpec>
- <el-radio v-model="materialSpec" :label="0" @input="changeSingle">单规格</el-radio>
- <el-radio v-model="materialSpec" :label="1" @input="changeSingle" :disabled="ismakeup==0">多规格</el-radio>
- </template>
- <template v-slot:attributeName>
- <div v-if="isSingle" key="item4">
- <by-table :propConfig="singleTable" @onChangeRow="getInputValue" ref="singeTable">
- <template v-slot:stock="{row}">
- <vxe-input v-if="!isEdit" v-model="row.stock" size="mini" type="integer"></vxe-input>
- <span v-else>{{ row.stock }}</span>
- </template>
- </by-table>
- </div>
- <div v-if="!isSingle" key="item5">
- <el-select :value="selectValue" clearable placeholder="请选择" style="width: 19.5%;" @input="getSelectValue">
- <el-option v-for="item in selectList" :key="item.value" :label="item.name" :value="item.id">
- </el-option>
- </el-select>
- <div class="by-tab" key="item6">
- <div v-for="(item,index) of attributeList" :key="index">
- <div class="tab-title">{{item.title}} <i class="el-icon-circle-close" @click="closeGroup(index)"></i>
- </div>
- <el-tag class="item-tab" :disable-transitions="true" :key="i" v-for="(tag,i) of item.list" closable
- @close="handleClose(tag,index)">
- {{tag}}
- </el-tag>
- <by-input class="input-new-tag" :ref="'getValue_'+index"></by-input>
- <el-button class="button-new-tag" @click="showInput(index)">添加</el-button>
- </div>
- <div style="margin: 20px 0;" v-if="!isAdd" key="item7">
- <div class="el-button mr15 el-button--primary el-button--small" @click="isAdd=true">添加新规格</div>
- </div>
- <div style="display: flex;margin: 20px 0;" v-else key='item8'>
- <div class="flex-item">
- <label>规格:</label>
- <div class="el-input el-input--small" style="width: 250px;margin-right: 16px;">
- <input type="text" v-model="norms" placeholder="请输入规格" class="el-input__inner">
- </div>
- </div>
- <div class="flex-item">
- <label>规格值:</label>
- <div class="el-input el-input--small" style="width: 250px;margin-right: 16px;">
- <input type="text" v-model="normsValue" placeholder="请输入规格值" class="el-input__inner">
- </div>
- </div>
- <div @click="doComfirm" class="el-button el-button--primary el-button--small">确定</div>
- <div @click="isAdd=false" class="el-button el-button--danger el-button--small">取消</div>
- </div>
- <div>
- <by-table :propConfig="tableConfig" @onChangeRow="getInputValue" ref="table">
- <template v-slot:stock="{row}">
- <vxe-input v-if="!isEdit" v-model="row.stock" size="mini" type="integer"></vxe-input>
- <span v-else>{{ row.stock }}</span>
- </template>
- </by-table>
- </div>
- </div>
- </div>
- </template>
- </by-form>
- </div>
- </div>
- <!-- 选择物料 -->
- <productModal ref="product" :mulit="true" @confirm="confirmProduct" />
-
- <vxe-modal v-model="vxeValue" width="48%" height="88%" show-zoom resize transfer show-footer mask-closable :loading="tableloading">
- <template #title>
- <span>关联金蝶财务系统物料</span>
- </template>
- <template #default>
- <el-form ref="tableSearchForm" :inline="true" :model="tableSearchForm" label-width="80px">
- <el-form-item label="标题">
- <el-input style="width: 220px;" v-model="tableSearchForm.fname" placeholder="请输入标题" clearable></el-input>
- </el-form-item>
- <el-form-item label="财务编号">
- <el-input style="width: 220px;" v-model="tableSearchForm.fnumber" placeholder="请输入财务编号" clearable></el-input>
- </el-form-item>
- <el-form-item label="开始时间">
- <el-date-picker style="width: 220px;" v-model="tableSearchForm.stime" type="date" placeholder="选择日期" :clearable="false" value-format="yyyy-MM-dd"></el-date-picker>
- </el-form-item>
- <el-form-item label="结束时间">
- <el-date-picker style="width: 220px;" v-model="tableSearchForm.etime" type="date" placeholder="选择日期" :clearable="false" value-format="yyyy-MM-dd"></el-date-picker>
- </el-form-item>
- <el-form-item>
- <el-button type="primary" @click="tableSearchOnSubmit">搜索</el-button>
- <el-button @click="resetTableSearch">重置</el-button>
- </el-form-item>
- </el-form>
- <el-table
- ref="multipleTable"
- :data="newtableData"
- stripe
- border
- style="width: 100%"
- :header-cell-style="{ background: '#f3f6fd', color: '#555'}">
- <el-table-column
- width="55">
- <template slot-scope="scope">
- <el-radio v-model="tableRadio" :label="scope.row" @input="handleSelectionChange">{{""}}</el-radio>
- </template>
- </el-table-column>
- <el-table-column prop="fname" label="标题"></el-table-column>
- <el-table-column prop="fnumber" label="财务编号"></el-table-column>
- <el-table-column prop="fbaseUnitName" label="单位"></el-table-column>
- <el-table-column prop="fbaseUnitCode" label="单位编码"></el-table-column>
- </el-table>
- <el-pagination
- style="margin-top: 25px;"
- background
- layout="prev, pager, next"
- :page-size="tablePageSize"
- :current-page="tablePageNum"
- :total="tableDataTotal"
- @current-change="currentChange">
- </el-pagination>
- </template>
- <template #footer>
- <div class="btn">
- <el-button size="small" @click="vxeValue=false">取消</el-button>
- <el-button type="primary" size="small" @click="doConfirm">确定</el-button>
- </div>
- </template>
- </vxe-modal>
-
- <el-dialog
- title="同步金蝶物料"
- v-loading="dateLoading"
- :visible.sync="dateDialogVisible"
- :close-on-click-modal='false'
- :close-on-press-escape='false'
- :show-close='false'
- width="518px">
- <el-date-picker v-model="stime" type="date" :picker-options="stimePickerOptions" placeholder="选择日期" value-format="yyyy-MM-dd"></el-date-picker>
- <span style="margin: 0 12px;">至</span>
- <el-date-picker v-model="etime" type="date" :picker-options="etimePickerOptions" placeholder="选择日期" value-format="yyyy-MM-dd"></el-date-picker>
- <span slot="footer" class="dialog-footer">
- <el-button @click="dateDialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="dateConfirm">确 定</el-button>
- </span>
- </el-dialog>
-
- </div>
- </template>
- <script lang="ts">
- import { Component, Prop, Vue, Watch } from "vue-property-decorator";
- import api from '@/api/currency'
- import other from '@/api/other'
- import ForTab from "@/components/ForTab/index.vue";
- import productModal from "./components/productModal.vue";
- import brandType from "./components/brandType.vue";
- // import selectKin from "./components/selectKin.vue";
- @Component({ components: { ForTab, productModal, brandType } })
- export default class productManagement extends Vue {
- tagsData : any = [] // 标签值
- isShow = 'home'
- isEdit = true
- vxeValue = false
- editInfo : any = ''
- isSingle : any = true
- timeNum = 0;
- timer : any = null
- materialSpec : any = 0
- status : any = 0
- ismakeup : any = 1
- issued : any = 0
- textarea : any = ''
- categoryIds : any = ''
- selectList = []
- selectValue = ''
- // tab
- singeTable : any = ''
- setTableConfig : any = ''
- towTable : any = ''
- attributeList : any = [] // 物料属性规格
- inputValue : any = ''
- norms : any = ''
- normsValue : any = ''
- isAdd : any = false
- skuRuleList : any = ''
- tableList : any = ''
- attributeId : any = ''
- intercept : any = ''
- makeupList : any = [] // 组合商品列表
-
- dateDialogVisible = false
- dateLoading = false
- stime : any = null
- etime : any = null
- stimePickerOptions : any = {
- disabledDate(time : any) {
- return time.getTime() > Date.now();
- }
- }
- etimePickerOptions : any = {
- disabledDate(time : any) {
- return time.getTime() > Date.now();
- }
- }
- // tab
- toolConfig = {
- tools: {
- return: true,
- save: true,
- }
- }
- treeConfig = {
- attr: {
- retConfig: {
- id: 'id',
- },
- defaultExpandAll: true,
- label: 'name',
- // resType: 'data'
- },
- // request: {
- // url: '/maindata/maindataMaterialCategory/treeUseList',
- // method: 'GET'
- // }
- }
- singleTable : any = {
- attr: {
- size: 'mini',
- align: 'left',
- editRules: {
- skuTitle: [
- { required: true, message: '请输入标题'}
- ],
- skuCode: [
- { required: true, message: '请输入物料编码'}
- ],
- barCode: [
- { required: true, message: '请输入69码-商品条码'}
- ]
- }
- },
- columns: [
- {
- // width: '150px',
- title: '标题(必填项)',
- field: 'skuTitle',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' '
- },
- }
- },
- {
- // width: '150px',
- title: '副标题',
- field: 'skuSubtitle',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' '
- },
- }
- },
- {
- // width: '150px',
- title: '物料编码(必填项)',
- field: 'skuCode',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' '
- },
- }
- },
- {
- width: '110px',
- title: '69码-商品条码(必填项)',
- field: 'barCode',
- component: 'by-input',
- // width:110,
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' '
- },
- }
- },
- // {
- // width: '55px',
- // component: selectKin
- // },
- {
- // width: '150px',
- title: '财务编号',
- field: 'financialCode',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' '
- },
- }
- },
- {
- width: '90px',
- title: '价格',
- field: 'price',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- type: "number",
- min: 0,
- defaultValue: 0
- },
- }
- },
- {
- width: '90px',
- title: '单位',
- field: 'unit',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- },
- }
- },
- {
- width: '90px',
- title: '单位编码',
- field: 'unitCode',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- },
- }
- },
- // {
- // width: '70px',
- // title: '库存',
- // field: 'stock',
- // slot: true,
- // },
- {
- width: '100px',
- title: '保质期(天)',
- field: 'shelfLife',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- type: "integer",
- min: 0,
- },
- }
- },
- {
- width: '80px',
- title: '重量/g',
- field: 'weight',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- type: "number",
- min: 0,
- },
- }
- },
- {
- width: '80px',
- title: '长/cm',
- field: 'length',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- type: "number",
- min: 0,
- },
- }
- },
- {
- width: '80px',
- title: '宽/cm',
- field: 'width',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- type: "number",
- min: 0,
- },
- }
- },
- {
- width: '80px',
- title: '高/cm',
- field: 'height',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- type: "number",
- min: 0,
- },
- }
- },
- {
- width: '80px',
- title: '体积/cm³',
- field: 'volume',
- },
- // {
- // width: '100px',
- // title: '操作',
- // action: true,
- // // plugins: [{
- // // icon: 'el-icon-edit',
- // // name: '选择物料',
- // // audit: '',
- // // event: {
- // // click: () => {
- // // (this as any).openVxeData(1)
- // // }
- // // }
- // // }]
- // }
- ]
- }
- tableConfig : any = {
- attr: {
- size: 'mini',
- align: 'left',
- editRules: {
- skuTitle: [
- { required: true, message: '请输入标题'}
- ],
- skuCode: [
- { required: true, message: '请输入物料编码'}
- ],
- barCode: [
- { required: true, message: '请输入69码-商品条码'}
- ]
- }
- },
- columns: [
- {
- width: '160px',
- title: '标题(必填项)',
- field: 'skuTitle',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' '
- },
- }
- },
- {
- width: '120px',
- title: '副标题',
- field: 'skuSubtitle',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' '
- },
- }
- },
- {
- width: '140px',
- title: '物料编码(必填项)',
- field: 'skuCode',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' '
- },
- }
- },
- {
- width: '110px',
- title: '69码-商品条码(必填项)',
- field: 'barCode',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- },
- }
- },
- // {
- // width: '55px',
- // component: selectKin
- // },
- {
- width: '140px',
- title: '财务编号',
- field: 'financialCode',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' '
- },
- }
- },
- {
- width: '80px',
- title: '价格',
- field: 'price',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- type: "number",
- min: 0,
- },
- }
- },
- {
- width: '80px',
- title: '单位',
- field: 'unit',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- },
- }
- },
- {
- width: '80px',
- title: '单位编码',
- field: 'unitCode',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- },
- }
- },
- // {
- // width: '80px',
- // title: '库存',
- // field: 'stock',
- // slot: true,
- // },
- {
- width: '100px',
- title: '保质期(天)',
- field: 'shelfLife',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- type: "integer",
- min: 0,
- },
- }
- },
- {
- width: '80px',
- title: '重量/g',
- field: 'weight',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- type: "number",
- min: 0,
- },
- }
- },
- {
- width: '80px',
- title: '长/cm',
- field: 'length',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- type: "number",
- min: 0,
- },
- }
- },
- {
- width: '80px',
- title: '宽/cm',
- field: 'width',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- type: "number",
- min: 0,
- },
- }
- },
- {
- width: '80px',
- title: '高/cm',
- field: 'height',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- type: "number",
- min: 0,
- },
- }
- },
- {
- width: '80px',
- title: '体积/cm³',
- field: 'volume',
- },
- {
- width: '180px',
- title: '操作',
- action: true,
- plugins: [
- // {
- // icon: 'el-icon-edit',
- // name: '选择物料',
- // audit: '',
- // event: {
- // click: () => {
- // (this as any).openVxeData(2)
- // }
- // }
- // },
- {
- icon: 'el-icon-delete',
- name: '删除',
- audit: '',
- event: {
- click: (item : any) => {
- (this as any).doDeleteTable(item)
- }
- }
- },
- ]
- }
- ]
- }
- makeupTable : any = {
- attr: {
- size: 'mini',
- align: 'center',
- },
- columns: [
- {
- // width: '170px',
- title: '标题',
- field: 'title',
- },
- {
- // width: '170px',
- title: '副标题',
- field: 'subtitle',
- },
- {
- width: '170px',
- title: '数量',
- field: 'number',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- defaultValue: '1',
- type: 'number',
- min: '0'
- },
- }
- },
- {
- width: 120,
- title: '操作',
- action: true,
- plugins: [{
- name: '删除',
- event: {
- click: (item : any) => (this as any).deleteMakeup(item)
- }
- }]
- }
- ]
- }
- formConfig = {
- attr: {
- size: 'medium',
- rules: {
- name: [{
- required: true, message: '请输入名称', trigger: 'blur'
- }],
- // materialCode: [{
- // required: true, message: '请输入物料编码', trigger: 'blur'
- // }],
- basePrice: [{
- required: true, message: '请输入基本售价', trigger: 'blur'
- }],
- categoryName: [{
- required: true, message: '请选择物料分类', trigger: 'change'
- }],
- brandId: [{
- required: true, message: '请选择物料品牌', trigger: 'change'
- }],
- }
- },
- columns: [
- [
- {
- span: 6,
- label: '名称',
- prop: 'name',
- component: 'by-input',
- compConfig: {
- attr: {
- placeholder: '请输入名称',
- clearable: true
- }
- }
- },
- {
- span: 6,
- label: '简称',
- prop: 'shortName',
- component: 'by-input',
- compConfig: {
- attr: {
- placeholder: '请输入简称',
- clearable: true
- }
- }
- },
- {
- span: 6,
- label: '物料编码',
- prop: 'materialCode',
- component: 'by-input',
- compConfig: {
- attr: {
- placeholder: '请输入物料编码',
- }
- }
- },
- {
- span: 6,
- label: '货号',
- prop: 'itemNumber',
- component: 'by-input',
- compConfig: {
- attr: {
- placeholder: '请输入货号',
- clearable: true
- }
- }
- },
- ],
- [
- {
- span: 6,
- label: '基本售价',
- prop: 'basePrice',
- component: 'by-input',
- compConfig: {
- attr: {
- placeholder: '请输入基本售价',
- type: 'number',
- min: '0'
- }
- }
- },
- {
- span: 6,
- label: '市场价格',
- prop: 'markPrice',
- component: 'by-input',
- compConfig: {
- attr: {
- placeholder: '请输入市场价格',
- type: 'number',
- min: '0'
- }
- }
- },
- {
- span: 6,
- label: '国际码',
- prop: 'nsCode',
- component: 'by-input',
- compConfig: {
- attr: {
- placeholder: '请输入国际码',
- clearable: true
- }
- }
- },
- ],
- [
- {
- span: 6,
- label: '物料分类',
- prop: 'categoryName',
- component: 'select-tree',
- compConfig: {
- attr: {
- label: 'name',
- clearable: true,
- placeholder: '请选择物料分类',
- retConfig: {
- categoryName: 'name',
- categoryId: 'id'
- },
- defaultExpandAll: true
- },
- request: {
- url: '/maindata/maindataMaterialCategory/treeUseList'
- }
- }
- },
- {
- span: 6,
- label: '物料品牌',
- prop: 'brandId',
- component: brandType,
- },
- {
- span: 6,
- label: '虚拟分类',
- prop: 'vmCategoryName',
- component: 'select-tree',
- compConfig: {
- attr: {
- label: 'name',
- clearable: true,
- placeholder: '请选择虚拟分类',
- retConfig: {
- vmCategoryName: 'name',
- vmCategoryId: 'id'
- },
- defaultExpandAll: true
- },
- request: {
- url: '/maindata/maindataMaterialVmcategory/treeUseList'
- }
- }
- },
- {
- labelWidth: '116px',
- span: 6,
- label: '机构商品分类',
- prop: 'organizationCategoryName',
- component: 'select-tree',
- compConfig: {
- attr: {
- label: 'name',
- clearable: true,
- placeholder: '请选择机构商品分类',
- retConfig: {
- organizationCategoryName: 'name',
- organizationCategoryId: 'id'
- },
- defaultExpandAll: true
- },
- request: {
- url: '/maindata/maindataMaterialOrganizationCategory/treeUseList'
- }
- }
- },
- ],
- [
- {
- span: 30,
- label: '描述',
- slot: true,
- prop: 'description',
- }
- ],
- [
- {
- span: 20,
- label: '标签',
- slot: true,
- prop: 'tags',
- }
- ],
- [
- {
- span: 20,
- label: '物料状态',
- slot: true,
- prop: 'status',
- }
- ],
- [
- {
- span: 20,
- label: '组合商品',
- slot: true,
- prop: 'ismakeup',
- }
- ],
- [
- {
- span: 30,
- label: '',
- slot: true,
- prop: 'makeupTable',
- }
- ],
- [
- {
- span: 20,
- label: '是否公布',
- slot: true,
- prop: 'issued',
- }
- ],
- [
- {
- span: 20,
- label: '商品规格',
- slot: true,
- prop: 'materialSpec',
- }
- ],
- [
- {
- span: 30,
- label: '物料属性',
- slot: true,
- prop: 'attributeName',
- }
- ],
- ],
- }
- config : any = {
- attr: {
- calculateH: true
- },
- search: {
- attr: {
- size: 'mini'
- },
- columns: [
- [
- {
- span: 6,
- label: '名称',
- prop: 'name',
- component: 'by-input',
- labelWidth: '70px',
- compConfig: {
- attr: {
- placeholder: '请输入名称',
- clearable: true
- }
- },
- }, {
- span: 6,
- label: '简称',
- prop: 'shortName',
- component: 'by-input',
- labelWidth: '70px',
- compConfig: {
- attr: {
- placeholder: '请输入简称',
- clearable: true
- }
- }
- },
- {
- span: 6,
- label: '货号',
- prop: 'itemNumber',
- component: 'by-input',
- labelWidth: '70px',
- compConfig: {
- attr: {
- placeholder: '请输入货号',
- clearable: true
- }
- }
- },
- ],
- ]
- },
- tool: {
- tools: {
- add: true,
- delete: true,
- search: true,
- refresh: true,
- },
- customTools: [
- {
- name: '同步金蝶物料', icon: 'el-icon-top', audit: [''], event: {
- click: () => {
- (this as any).syncSystem()
- }
- }
- },
- ]
- },
- table: {
- attr: {
- size: 'mini',
- align: 'left',
- checkbox: true,
- },
- columns: [{
- width: 250,
- title: '名称',
- field: 'name',
- isDetail: true,
- }, {
- width: 200,
- title: '简称',
- field: 'shortName'
- }, {
- width: 200,
- title: '货号',
- field: 'itemNumber'
- }, {
- width: 200,
- title: '国际码',
- field: 'nsCode'
- }, {
- width: 90,
- title: '基本售价',
- field: 'basePrice'
- }, {
- width: 90,
- title: '市场价格', // (市场价格统一售价)
- field: 'markPrice'
- },
- {
- width: 120,
- title: '操作',
- action: true,
- plugins: [{
- icon: 'el-icon-edit',
- name: '编辑',
- audit: '',
- event: {
- click: (item : any) => {
- (this as any).getDetail(item)
- }
- }
- }, {
- name: '删除',
- event: {
- click: (item : any) => (this as any).doDelete2(item)
- }
- }]
- }]
- },
- }
-
- tableloading: boolean = true
- tableRadio: any = {}
- tableData: any = []
- newtableData: any = []
- tableSearchForm: any = {}
- tableDataTotal: any = 0
- tablePageSize: any = 10
- tablePageNum: any = 1
-
- productDataList: any = []
-
- mounted() {
- this.getAttribute()
- this.timer = setInterval(() => {
- this.getDataList()
- }, 500)
-
- // 获取关联金蝶财务系统物料列表
- var t = new Date();
- var y = t.getFullYear();
- var m:any = t.getMonth()+1;
- if(m<10){m='0'+m}
- var d:any = t.getDate()
- if(d<10){d='0'+d}
- this.tableSearchForm.stime = '2020-01-01';
- this.tableSearchForm.etime = y+'-'+m+'-'+d;
- this.etime = y+'-'+m+'-'+d;
- // this.getFinancialCode()
- }
- // 确定商品新增
- confirmProduct(e : any) {
- this.$nextTick(() => {
- let nowData = (this.$refs.makeupTable as any).getValue();
- let names = '';
- if (e.length > 0) {
- for (const item of e) {
- this.productDataList.push(item)
- let t = true;
- for (const t_item of nowData) {
- if (item.id == t_item.materialSkuId) {
- if (!names) {
- names = item.skuTitle
- } else {
- names = names + ',' + item.skuTitle
- }
- t = false;
- break;
- }
- }
- if (t) {
- let obj : any = {};
- obj.title = item.skuTitle
- obj.subtitle = item.skuSubtitle
- obj.materialSkuId = item.id
- obj.isDeleted = 0
- this.makeupList.push(obj);
- nowData.push(obj);
- }
- };
- (this as any).$refs.makeupTable.setValue(nowData) // 设置表格数据
- if (names) {
- this.$alert('商品 “' + names + '”已存在!', '提示', {
- confirmButtonText: '确定',
- });
- }
- }
- })
- }
- //点击树获取数据
- onChangeTree(e : any) {
- this.categoryIds = e.id;
- var ids:any = e.id;
- if(e.id[0]==0) ids = 0;
- let loading = this.$loading({ target: '.main-container' });
- api.byCategoryPage({
- categoryId: ids,
- pageSize: 20,
- pageNo: 1,
- }, 'maindataMaterialCategory').then((res : any) => {
- loading.close();
- if (res.code === 200) {
- (this.$refs.moduleView as any).setTableValue(res.data.records);
- let page = {
- pageNo: res.data.current, //当前页
- pageSize: res.data.size, //每页条数
- total: res.data.total //总条数
- };
- (this.$refs.moduleView as any).setPage(page);
- }
- }).catch(() => loading.close());
- }
- // 保存编辑/新增
- doFormData() {
- (this as any).$refs.form.validate().then(() => {
- let query = (this as any).$refs.form.getValue();
- // console.log('物料信息 ==> ', query);
- query.materialSpec = this.materialSpec; // 商品规格
- query.attributeList = JSON.stringify(this.attributeList) // 物料属性
- query.attributeId = this.attributeId // 物料属性ID
- query.status = this.status; // 物料状态
- query.tags = this.tagsData.join(","); // 标签
- query.ismakeup = this.ismakeup; // 商品组合
- query.issued = this.issued; // 是否公布
- query.description = this.textarea; // 备注
- let data : any = {}
- // 多规格
- if (query.materialSpec === 1) {
- if (this.tableList.length <= 0 || this.attributeList.length <= 0) return (this as any).$message.warning('多规格商品,物料属性不能为空!');
- // console.log('多规格表格数据 ==> ', this.tableList);
- for (let v of this.tableList) {
- // if (!v.price) return this.$message.warning('物料属性价格必填');
- // if (parseInt(v.price) <= 0) return this.$message.warning('物料属性价格不能小于1');
- // if (!v.unit) return this.$message.warning('物料属性单位必填');
- // if (!v.stock) return this.$message.warning('物料属性库存必填');
- // if (parseInt(v.stock) <= 0) return this.$message.warning('物料属性库存必须为自然数');
- // if (!v.shelfLife) return this.$message.warning('物料属性保质期必填');
- // if (parseInt(v.shelfLife) <= 0) return this.$message.warning('物料属性保质期必须为自然数');
- // if (!v.weight) return this.$message.warning('物料属性重量必填');
- // if (parseInt(v.weight) <= 0) return this.$message.warning('物料属性重量不能小于1');
- // if (!v.length) return this.$message.warning('物料属性长度必填');
- // if (parseInt(v.length) <= 0) return this.$message.warning('物料属性长度不能小于1');
- // if (!v.width) return this.$message.warning('物料属性宽度必填');
- // if (parseInt(v.width) <= 0) return this.$message.warning('物料属性宽度不能小于1');
- // if (!v.height) return this.$message.warning('物料属性高度必填');
- // if (parseInt(v.height) <= 0) return this.$message.warning('物料属性高度不能小于1');
- (this.$refs.table as any).validate();
- if (!v.skuTitle) return this.$message.warning('物料标题必填');
- if (!v.skuCode) return this.$message.warning('物料编码必填');
- if (!v.barCode) return this.$message.warning('物料属性的69码-商品条码需必填');
- if (!/^\d{1,32}$/.test(v.barCode)){
- return this.$message.warning('69码-商品条码为数字,最大32位');
- }
- // if(v.weight&&v.weight!=0){
- // v.weight = v.weight/1000
- // }
- // v.isDeleted = 0
- v.ismakeup = this.ismakeup
- };
- data = { maindataMaterialReceiveParam: query, maindataMaterialSkus: this.tableList }
- let newArray : any = []
- let materialSpecData : any = []
- let attributeLength = this.attributeList.length
- this.tableList.map((v : any) => {
- for (let kyes in v) {
- if (kyes.indexOf('_field_name') != -1) {
- let key = kyes.split('_field_name')[0]
- newArray.push({ [key]: v[kyes] })
- }
- }
- })
- // console.log('newArray ==> ',newArray);
- for (var i = 0; i < newArray.length; i += attributeLength) {
- materialSpecData.push(newArray.slice(i, i + attributeLength));
- }
- // console.log('materialSpecData ==> ', materialSpecData);
- data.maindataMaterialSkus.map((v : any, i : any) => {
- if (materialSpecData[i]) v.materialSpec = JSON.stringify(materialSpecData[i])
- })
- } else { // 单规格
- data = { maindataMaterialReceiveParam: query, maindataMaterialSkus: (this.$refs.singeTable as any).getValue() }
- // console.log('单规格表格数据 ==> ', data.maindataMaterialSkus);
- for (let v of data.maindataMaterialSkus) {
- // if (!v.price) return this.$message.warning('物料价格必填');
- // if (parseInt(v.price) <= 0) return this.$message.warning('物料价格不能小于1');
- // if (parseInt(v.price) < 0) return this.$message.warning('物料价格不能为负数');
- // if (!v.unit) return this.$message.warning('物料单位必填');
- // if (!v.stock) return this.$message.warning('物料库存必填');
- // if (parseInt(v.stock) <= 0) return this.$message.warning('物料库存必须为自然数');
- // if (!v.shelfLife) return this.$message.warning('物料保质期必填');
- // if (parseInt(v.shelfLife) <= 0) return this.$message.warning('物料保质期必须为自然数');
- // if (!v.weight) return this.$message.warning('物料重量必填');
- // if (parseInt(v.weight) <= 0) return this.$message.warning('物料重量不能小于1');
- // if (!v.length) return this.$message.warning('物料长必填');
- // if (parseInt(v.length) <= 0) return this.$message.warning('物料长不能小于1');
- // if (!v.width) return this.$message.warning('物料宽必填');
- // if (parseInt(v.width) <= 0) return this.$message.warning('物料宽不能小于1');
- // if (!v.height) return this.$message.warning('物料高必填');
- // if (parseInt(v.height) <= 0) return this.$message.warning('物料高不能小于1');
- (this.$refs.singeTable as any).validate();
- if (!v.skuTitle) return this.$message.warning('物料属性的标题需必填');
- if (!v.skuCode) return this.$message.warning('物料属性的物料编码需必填');
- if (!v.barCode) return this.$message.warning('物料属性的69码-商品条码需必填');
- if (!/^\d{1,32}$/.test(v.barCode)){
- return this.$message.warning('69码-商品条码为数字,最大32位');
- }
-
- // if(v.weight&&v.weight!=0){
- // v.weight = v.weight/1000
- // }
- // v.isDeleted = 1
- v.ismakeup = this.ismakeup
- };
- data.maindataMaterialSkus[0].isDeleted = 0;
- data.maindataMaterialReceiveParam.attributeList = ""
- }
- if (this.ismakeup === 0) {
- // console.log('this.makeupList ==> ', this.makeupList);
- if (this.makeupList.length <= 0) return this.$message.warning('请选择组合商品');
- data.maindataMaterialLinks = this.makeupList;
- // 表格删除
- data.maindataMaterialLinks.map((v : any, i : any) => {
- if (v.isDeleted === 1 && !v.id) {
- data.maindataMaterialLinks.splice(i, 1)
- }
- });
- }
- // console.log('data ==> ', data);
- let loading = this.$loading({ target: '.main-container' });
- if (this.isEdit) { // 编辑
- api.updateList(data, 'maindataMaterial').then((res : any) => {
- loading.close()
- if (res.code === 200) {
- this.isShow = 'home';
- // (this as any).$refs.sideTree.request();
- this.getDataList();
- this.$message.success('保存成功');
- }
- }).catch(() => loading.close());
- } else {// 新增
- api.saveList(data, 'maindataMaterial').then((res : any) => {
- loading.close()
- if (res.code === 200) {
- this.isShow = 'home';
- // (this as any).$refs.sideTree.request();
- this.getDataList();
- this.$message.success('保存成功');
- }
- }).catch(() => loading.close());
- }
- }).catch(() => {});
- }
- // 打开新增
- onAdd() {
- this.isShow = 'add'; // 展示类型
- this.selectValue = '' // 物料属性名称
- this.towTable = '' // 表格数据
- this.textarea = '' // 描述
- this.tagsData = [] // 标签
- this.attributeList = [] // 属性规格
- this.tableList = [] // 表格数据
- this.materialSpec = 0; // 单规格
- this.status = 0; // 物料状态
- this.ismakeup = 1; // 商品组合
- this.makeupList = [] // 组合商品列表
- this.issued = 0; // 是否公布
- this.isSingle = true; // 显示单表格
- this.isEdit = false; // 是否编辑
- (this as any).$refs.byTool.setTool({ return: true, save: true });
- this.$nextTick(() => {
- (this as any).$refs.form.setValue(); // 设置表单数据
- (this as any).$refs.singeTable.setValue([{}]) // 设置单表格数据
- });
- }
- // 打开编辑
- getDetail(e : any) {
- // console.log('编辑 ==> ', e);
- (this as any).$refs.byTool.setTool({ return: true, save: true, delete: true });
- let loading = this.$loading({ target: '.my-container' });
- api.single({ id: e.id }, 'maindataMaterial').then((v : any) => {
- let data = v.data;
- if (data.vmCategoryId) {
- api.single({ id: data.vmCategoryId }, 'maindataMaterialVmcategory').then((res : any) => {
- if (res.code === 200) {
- if (res.data) data.vmCategoryName = res.data.name;
- }
- }).catch(() => loading.close());
- }
- if (data.organizationCategoryId) {
- api.single({ id: data.organizationCategoryId }, 'maindataMaterialOrganizationCategory').then((res : any) => {
- if (res.code === 200) {
- if (res.data) data.organizationCategoryName = res.data.name;
- }
- }).catch(() => loading.close());
- }
-
- this.intercept = data.attributeId // 拦截物料属性判断
- this.isEdit = true;
- this.editInfo = data;
- this.isShow = 'add';
- // 标签
- if (data.tags) {
- this.tagsData = data.tags.split(",")
- } else this.tagsData = [];
- this.materialSpec = data.materialSpec
- if(this.materialSpec == 1){
- this.ismakeup = 1
- }else{
- this.ismakeup = 0
- }
- this.isSingle = data.materialSpec === 0 ? true : false;
- if (data.attributeList) this.attributeList = JSON.parse(data.attributeList);
-
- if (data.categoryId) {
- api.single({ id: data.categoryId }, 'maindataMaterialCategory').then((res : any) => {
- if (res.code === 200) data.categoryName = res.data.name;
- if (data.attributeId) {
- api.single({ id: data.attributeId }, 'maindataMaterialAttribute').then((p : any) => {
- if (p.code === 200) {
- if (p.data) this.selectValue = p.data.name
- }
- }).catch(() => loading.close());
- }
- other.selectByMaterialId({ id: data.id }, 'maindataMaterialSku').then((info : any) => {
- if (info.code === 200) {
- this.status = data.status
- // console.log(data.ismakeup);
- this.ismakeup = data.ismakeup
- if (data.ismakeup === 0 && data.maindataMaterialLinks.length > 0) {
- (this as any).makeupList = data.maindataMaterialLinks;
- setTimeout(() => {
- (this as any).$refs.makeupTable.setValue(data.maindataMaterialLinks) // 设置组合表格数据
- })
- }
- this.issued = data.issued
- if (this.isSingle) {
- this.selectValue = '' // 物料属性名称
- this.towTable = '' // 表格数据
- this.attributeList = []; // 属性规格
- this.$nextTick(() => {
- // console.log(info.data);
- info.data.map((v : any, i : any) => {
- // if(v.volume&&v.weight!='0.00'&&v.weight!=0&&v.weight!='0'){
- // v.weight = parseFloat(v.weight)*1000
- // }
- if(v.volume&&v.volume!='0.00'&&v.volume!=0&&v.volume!='0'){
- v.volume = parseFloat(v.volume).toFixed(2)
- }
- });
- (this as any).$refs.singeTable.setValue(info.data);
- });
- } else {
- this.forFun(this.attributeList[0], 0) // 生成sku
- let tableConfig = (this as any).$lodash.cloneDeep(this.tableConfig);
- let skuRuleList = (this as any).$lodash.cloneDeep(this.skuRuleList);
- let newColumns = (this as any).$lodash.cloneDeep(this.attributeList).reverse();
- info.data.map((v : any, i : any) => {
- v = Object.assign(v, skuRuleList[i])
- v.dataIndex = i
- // if(v.volume&&v.weight!='0.00'&&v.weight!=0&&v.weight!='0'){
- // v.weight = parseFloat(v.weight)*1000
- // }
- if(v.volume&&v.volume!='0.00'&&v.volume!=0&&v.volume!='0'){
- v.volume = parseFloat(v.volume).toFixed(2)
- }
- });
- newColumns.map((v : any) => {
- tableConfig.columns.unshift({
- width: '80px',
- title: v.title,
- field: v.field,
- })
- });
- this.tableList = (this as any).$lodash.cloneDeep(info.data);
- // console.log('表格配置 ==> ', tableConfig);
- // console.log('skuRuleList ==> ', skuRuleList);
- // console.log('表格数据 ==> ', this.tableList);
- this.setTableConfig = tableConfig;
- this.$nextTick(() => {
- (this as any).$refs.table.setConfig(tableConfig); // 设置表格配置
- (this as any).$refs.table.setValue(this.tableList) // 设置表格数据
- });
- }
- }
- (this as any).$refs.form.setValue(data)
- loading.close()
- }).catch(() => loading.close());
- }).catch(() => loading.close());
- } else {
- // loading.close();
- // this.$message.error('该数据没有物料分类id')
- other.selectByMaterialId({ id: data.id }, 'maindataMaterialSku').then((info : any) => {
- if (info.code === 200) {
- this.status = data.status
- // console.log(data.ismakeup);
- this.ismakeup = data.ismakeup
- if (data.ismakeup === 0 && data.maindataMaterialLinks.length > 0) {
- (this as any).makeupList = data.maindataMaterialLinks;
- setTimeout(() => {
- (this as any).$refs.makeupTable.setValue(data.maindataMaterialLinks) // 设置组合表格数据
- })
- }
- this.issued = data.issued
- if (this.isSingle) {
- this.selectValue = '' // 物料属性名称
- this.towTable = '' // 表格数据
- this.attributeList = []; // 属性规格
- this.$nextTick(() => {
- (this as any).$refs.singeTable.setValue(info.data);
- });
- } else {
- this.forFun(this.attributeList[0], 0) // 生成sku
- let tableConfig = (this as any).$lodash.cloneDeep(this.tableConfig);
- let skuRuleList = (this as any).$lodash.cloneDeep(this.skuRuleList);
- let newColumns = (this as any).$lodash.cloneDeep(this.attributeList).reverse();
- info.data.map((v : any, i : any) => {
- v = Object.assign(v, skuRuleList[i])
- v.dataIndex = i
- });
- newColumns.map((v : any) => {
- tableConfig.columns.unshift({
- width: '80px',
- title: v.title,
- field: v.field,
- })
- });
- this.tableList = (this as any).$lodash.cloneDeep(info.data);
- // console.log('表格配置 ==> ', tableConfig);
- // console.log('skuRuleList ==> ', skuRuleList);
- // console.log('表格数据 ==> ', this.tableList);
- this.setTableConfig = tableConfig;
- this.$nextTick(() => {
- (this as any).$refs.table.setConfig(tableConfig); // 设置表格配置
- (this as any).$refs.table.setValue(this.tableList) // 设置表格数据
- });
- }
- }
- (this as any).$refs.form.setValue(data)
- loading.close()
- }).catch(() => loading.close());
- }
- }).catch(() => loading.close());
- }
- // 同步金蝶物料
- syncSystem() {
- (this as any).dateDialogVisible = true
- }
- dateConfirm(){
- if((this as any).stime){
- (this as any).dateLoading = true;
- var data = {
- stime: (this as any).stime,
- etime: (this as any).etime
- }
- // console.log(data)
- api.syncMaterialByKingdeeToOms(data).then((res : any) => {
- if(res.code === 200){
- (this as any).dateDialogVisible = false;
- (this as any).dateLoading = false;
- this.$message.success('同步金蝶物料成功');
- }else{
- (this as any).dateLoading = false;
- this.$message.error(res.msg);
- }
- }).catch(()=>{
- (this as any).dateLoading = false;
- })
- }else{
- this.$message.warning('请选择时间');
- }
-
- }
- // 立即生成
- generateNow() {
- this.forFun(this.attributeList[0], 0) // 生成sku
- let newArray : any = []
- let materialSpecData : any = []
- let attributeLength = this.attributeList.length
- let tableConfig = (this as any).$lodash.cloneDeep(this.tableConfig);
- let skuRuleList = (this as any).$lodash.cloneDeep(this.skuRuleList);
- let newColumns = (this as any).$lodash.cloneDeep(this.attributeList).reverse();
- let tableList = (this as any).$refs.table.getValue();
- tableList.map((v : any) => {
- for (let key in v) {
- if (key.indexOf('_field_name') != -1) {
- delete v[key]
- }
- }
- })
- skuRuleList.map((v : any) => {
- for (let kyes in v) {
- if (kyes.indexOf('_field_name') != -1) {
- let key = kyes.split('_field_name')[0]
- newArray.push({ [key]: v[kyes] })
- }
- }
- })
- // console.log('skuRuleList ==> ', skuRuleList);
- for (var i = 0; i < newArray.length; i += attributeLength) {
- materialSpecData.push(newArray.slice(i, i + attributeLength));
- }
- // console.log('materialSpecData ==> ', materialSpecData);
- skuRuleList.map((v : any, i : any) => {
- v.materialSpec = JSON.stringify(materialSpecData[i]);
- v.dataIndex = i;
- v.isDeleted = 0;
- if (tableList[i] && v.materialSpec.indexOf(tableList[i].materialSpec != -1)) {
- v = Object.assign(v, tableList[i])
- };
- })
- newColumns.map((v : any) => {
- tableConfig.columns.unshift({
- width: '80px',
- title: v.title,
- field: v.field,
- })
- });
- // console.log('旧表格数据 ==> ', tableList);
- // console.log('新表格数据 ==> ', skuRuleList);
- this.tableList = skuRuleList;
- this.setTableConfig = tableConfig;
- this.$nextTick(() => {
- (this as any).$refs.table.setConfig(tableConfig); // 设置表格配置
- (this as any).$refs.table.setValue(this.tableList); // 设置表格数据
- });
- }
- // 更换物料属性数据
- getSelectValue(e : any) {
- if (this.intercept === e) return console.log('拦截!');
- this.$confirm('确定更换物料属性吗?确定之后原表格数据会被清除', '注意', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- center: true
- }).then(() => {
- api.single({ id: e }, 'maindataMaterialAttribute').then((res : any) => {
- if (res.code === 200) {
- this.selectList.map((v : any) => {
- if (v.id === e) {
- v.id = e
- this.selectValue = v.name
- }
- });
- this.intercept = e
- this.attributeList = JSON.parse(res.data.attributeValue);
- this.attributeId = e
- this.forFun(this.attributeList[0], 0) // 生成sku
- let tableConfig = (this as any).$lodash.cloneDeep(this.tableConfig);
- let skuRuleList = (this as any).$lodash.cloneDeep(this.skuRuleList);
- let newColumns = (this as any).$lodash.cloneDeep(this.attributeList).reverse();
- let giveInfo = (this as any).$refs.form.getValue();
- skuRuleList.map((v : any, i : any) => {
- v.dataIndex = i;
- v.isDeleted = 0;
- v.skuTitle = giveInfo.name;
- v.skuSubtitle = giveInfo.shortName;
- v.price = giveInfo.basePrice
- })
- newColumns.map((v : any) => {
- tableConfig.columns.unshift({
- width: '80px',
- title: v.title,
- field: v.field,
- })
- });
- // console.log('表格配置 ==> ', tableConfig);
- // console.log('表格数据 ==> ', skuRuleList);
- this.setTableConfig = tableConfig;
- this.tableList = skuRuleList;
- this.$nextTick(() => {
- (this as any).$refs.table.setConfig(tableConfig); // 设置表格配置
- (this as any).$refs.table.setValue(skuRuleList); // 设置表格数据
- });
- }
- }).catch(() => {});
- }).catch(() => { });
- }
- // 关联金蝶财务系统物料选择
- handleSelectionChange(row: any){
- // console.log(row)
- this.tableRadio = row
- }
- // 关联金蝶财务系统物料列表搜索
- tableSearchOnSubmit(){
- this.getFinancialCode()
- }
- // 关联金蝶财务系统物料列表重置
- resetTableSearch(){
- var t = new Date();
- var y = t.getFullYear();
- var m:any = t.getMonth()+1;
- if(m<10){m='0'+m}
- var d:any = t.getDate()
- if(d<10){d='0'+d}
- this.tableSearchForm.fname = null;
- this.tableSearchForm.fnumber = null;
- this.tableSearchForm.stime = '2020-01-01';
- this.tableSearchForm.etime = y+'-'+m+'-'+d;
- this.getFinancialCode()
- }
- // 关联金蝶财务系统物料表格分页
- currentChange(e: any){
- this.newtableData = this.tableData.slice((e-1)*this.tablePageSize, e*this.tablePageSize)
- }
- // 打开关联金蝶财务系统物料选择
- openVxeData(){
- this.vxeValue = true;
- if(this.tableData.length==0){
- setTimeout(()=>{
- this.getFinancialCode();
- },0)
- }
- }
- // 获取关联金蝶财务系统物料列表
- getFinancialCode(){
- this.tableloading = true;
- api.getFinancialCode(this.tableSearchForm).then((res : any) => {
- if(res.code==200){
- this.tableloading = false;
- this.tableData = res.data
- if(this.tableSearchForm.fname || this.tableSearchForm.fnumber){
- let newData = [];
- if(this.tableSearchForm.fname){
- newData = this.tableData.filter((v : any) => v.fname.indexOf(this.tableSearchForm.fname) != -1);
- }
- if(this.tableSearchForm.fnumber){
- newData = this.tableData.filter((v : any) => v.fnumber.indexOf(this.tableSearchForm.fnumber) != -1);
- }
- if(this.tableSearchForm.fname && this.tableSearchForm.fnumber){
- newData = this.tableData.filter((v : any) => v.fname.indexOf(this.tableSearchForm.fname) != -1 && v.fnumber.indexOf(this.tableSearchForm.fnumber) != -1);
- }
- this.tableDataTotal = newData.length
- this.newtableData = newData.slice(0, this.tablePageNum*this.tablePageSize)
- }else{
- this.tableDataTotal = this.tableData.length
- this.newtableData = this.tableData.slice(0, this.tablePageNum*this.tablePageSize)
- }
- }else{
- this.$message.error(res.msg);
- this.tableloading = false;
- }
- }).catch(() => {});
- }
- // 确定关联金蝶财务系统物料
- doConfirm() {
- if(JSON.stringify(this.tableRadio) === "{}" || this.tableRadio === null || this.tableRadio === {}) { return this.$message.warning('请选择物料'); }
- // 表单赋值赋值
- var val2 = (this as any).$refs.form.getValue();
- val2.name = this.tableRadio.fname;
- val2.shortName = this.tableRadio.fname;
- // 物料属性赋值
- var val = (this as any).$refs.singeTable.getValue();
- if(JSON.stringify(val[0]) === "{}" || val[0] === null){
- val = [{
- skuTitle: this.tableRadio.fname,
- skuSubtitle: this.tableRadio.fname,
- // skuCode: '',
- financialCode: this.tableRadio.fnumber,
- // price: '0',
- unit: this.tableRadio.fbaseUnitName,
- unitCode: this.tableRadio.fbaseUnitCode,
- // shelfLife: '0',
- // weight: '0',
- // length: '0',
- // width: '0',
- // height: '0',
- // volume: '0',
- }];
- this.$message.success('关联物料 '+this.tableRadio.fname+' 成功');
- }else{
- val[0].skuTitle = this.tableRadio.fname;
- val[0].skuSubtitle = this.tableRadio.fname;
- val[0].financialCode = this.tableRadio.fnumber;
- val[0].unit = this.tableRadio.fbaseUnitName;
- val[0].unitCode = this.tableRadio.fbaseUnitCode;
- this.$message.success('物料 '+val[0].skuTitle+' 信息变更为 '+this.tableRadio.fname);
- }
- (this as any).$refs.singeTable.setValue(val);
- (this as any).$refs.form.setValue(val2);
- this.vxeValue = false;
- }
- // 切换组合商品
- openMakeup() {
- (this.$refs.product as any).setShow(true); // 打开sku弹窗
- }
- // 切换商品规格
- changeSingle() {
- if(this.materialSpec == 1){
- this.ismakeup = 1
- }
- if (this.isSingle) {
- if ((this as any).$refs.singeTable) this.singeTable = (this as any).$refs.singeTable.getValue()
- this.isSingle = false;
- this.$nextTick(() => {
- // 设置表格数据
- if (this.towTable) {
- if ((this as any).$refs.table) {
- this.tableList = this.towTable;
- (this as any).$refs.table.setConfig(this.setTableConfig); // 设置表格配置
- (this as any).$refs.table.setValue(this.towTable); // 设置表格数据
- }
- }
- });
- } else {
- if ((this as any).$refs.table) this.towTable = (this as any).$refs.table.getValue()
- this.isSingle = true;
- this.$nextTick(() => {
- // 设置单表格数据
- if (this.singeTable) {
- // console.log('单表格数据 ==> ', this.singeTable);
- (this as any).$refs.singeTable.setValue(this.singeTable);
- } else (this as any).$refs.singeTable.setValue([{}]);
- });
- }
- }
- // 添加规格
- showInput(index : any) {
- this.$confirm('确定添加吗!确定后将可能影响原表格数据', '注意', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- center: true
- }).then(() => {
- let inputValue = (this as any).$refs['getValue_' + index][0].getValue();
- if (!inputValue) return (this as any).$message.warning('请输入内容');
- if (!/^\S*$/.test(inputValue)) return (this as any).$message.warning('输入内容不能有空格');
- if (this.attributeList[index].list.indexOf(inputValue) !== -1) return (this as any).$refs['getValue_' + index][0].clearValue();
- if (inputValue) {
- this.attributeList[index].list.push(inputValue);
- }
- (this as any).$refs['getValue_' + index][0].clearValue();
- this.generateNow();
- this.$message.success('添加成功');
- }).catch(() => this.$message.info('已取消添加'));
- }
- // 添加sku规格
- doComfirm() {
- if (!this.normsValue || !this.norms) return (this as any).$message.warning('请添加完整的规格');
- if (!/^\S*$/.test(this.normsValue) || !/^\S*$/.test(this.norms)) return this.$message.warning('输入内容不能有空格');
- this.$confirm('确定添加吗!确定后将可能影响原表格数据', '注意', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- center: true
- }).then(() => {
- let obj : any = {
- title: this.norms,
- field: this.norms + '_field_name',
- list: [this.normsValue]
- };
- this.attributeList.push(obj);
- this.norms = '';
- this.normsValue = '';
- this.isAdd = false;
- this.generateNow();
- this.$message.success('添加成功');
- }).catch(() => this.$message.info('已取消添加'));
- }
- // 监听表格数据
- getInputValue(e : any) {
- // console.log('监听表格 ==> ', e);
- if (e.length && e.width && e.height) {
- e.volume = (e.length * e.width * e.height).toFixed(2);
- }
- }
- // 监听组合商品表格数据
- getMakeupTableValue(e : any) {
- // console.log('监听表格 ==> ', e);
- // console.log(this.productDataList)
- this.volumeCount()
- }
- volumeCount(){
- let nowData:any = (this.$refs.makeupTable as any).getValue();
- var data:any = {
- weight: 0,
- length: 0,
- width: 0,
- height: 0
- }
- for (let i in this.productDataList) {
- for (let j in nowData) {
- if(this.productDataList[i].id==nowData[j].materialSkuId){
- var number:any = 1;
- if(nowData[j].number){
- var number:any = parseFloat(nowData[j].number).toFixed(2);
- }
- if(this.productDataList[i].weight){
- var weight:any = parseFloat(this.productDataList[i].weight).toFixed(2);
- data.weight += weight*number;
- }
- if(this.productDataList[i].length){
- var length:any = parseFloat(this.productDataList[i].length).toFixed(2);
- data.length += length*number;
- }
- if(this.productDataList[i].width){
- var width:any = parseFloat(this.productDataList[i].width).toFixed(2);
- data.width += width*number;
- }
- if(this.productDataList[i].height){
- var height:any = parseFloat(this.productDataList[i].height).toFixed(2);
- data.height += height*number;
- }
- }
- }
- }
- var val = (this as any).$refs.singeTable.getValue();
- val[0].weight = data.weight;
- val[0].length = data.length;
- val[0].width = data.width;
- val[0].height = data.height;
- (this as any).$refs.singeTable.setValue(val);
- }
-
- // 排序生成
- forFun(data : any, i : number, v ?: any) {
- if (data.list) {
- let d : Array<any> = [];
- data.list.forEach((item : any) => {
- if (i == 0) { // 第一次循环
- let obj : any = {}
- obj[data.field] = item
- d.push(obj);
- } else {
- v.forEach((ele : any) => {
- let obj : any = {};
- obj = (this as any).$lodash.clone(ele);
- obj[data.field] = item
- d.push(obj);
- });
- }
- });
- i++
- if (this.attributeList[i]) {
- this.forFun(this.attributeList[i], i, d);
- }
- else {
- this.skuRuleList = d;
- }
- }
- }
- // 添加标签
- getTagsValue() {
- let value = (this as any).$refs.tagsValue.getValue().trim();
- if (!value) return this.$message.warning('请输入标签值');
- this.tagsData.push(value);
- (this as any).$refs.tagsValue.clearValue();
- }
- // 删除标签
- handleClose2(index : any) {
- this.$confirm('确定删除吗!', '注意', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- center: true
- }).then(() => {
- this.tagsData.splice(index, 1)
- this.$message.success('删除成功');
- }).catch(() => this.$message.info('已取消删除'));
- }
- // 删除标签
- handleClose(tag : any, index : any) {
- this.$confirm('确定删除吗!确定后将可能影响原表格数据', '注意', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- center: true
- }).then(() => {
- this.attributeList[index].list.splice(this.attributeList[index].list.indexOf(tag), 1);
- this.generateNow();
- this.$message.success('删除成功');
- }).catch(() => this.$message.info('已取消删除'));
- }
- // 删除数组
- closeGroup(index : any) {
- this.$confirm('确定删除吗!确定后将可能影响原表格数据', '注意', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- center: true
- }).then(() => {
- this.attributeList.splice(index, 1);
- this.generateNow();
- this.$message.success('删除成功');
- }).catch(() => this.$message.info('已取消删除'));
- }
- // 删除表格数据
- doDeleteTable(item : any) {
- if((this as any).tableList.length>1){
- this.$confirm('确定删除吗!', '注意', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- center: true
- }).then(() => {
- // console.log(this.tableList);
- (this as any).tableList.map((v : any) => {
- if (v.dataIndex === item.dataIndex) v.isDeleted = 1;
- })
- let filterList = this.tableList.filter((v : any) => v.isDeleted !== 1);
- (this as any).$refs.table.setValue(filterList); // 设置表格数据
- this.$message.success('删除成功');
- }).catch(() => this.$message.info('已取消删除'));
- }else{
- this.$message.warning('物料属性不能为空,无法删除!')
- }
- }
- // 获取物料属性
- getAttribute() {
- api.pageList({
- pageSize: 999,
- status: 0
- }, 'maindataMaterialAttribute').then((res : any) => {
- if (res.code === 200) {
- this.selectList = res.data.records
- } else this.$message.error(res.msg);
- }).catch(() => {});
- }
- // 获取列表数据
- getDataList() {
- if (!this.$refs.moduleView) {
- if (this.timeNum > 5) {
- clearInterval(this.timer)
- }
- this.timeNum++;
- return
- }
- clearInterval(this.timer)
- let query = (this.$refs.moduleView as any).getQuery();
- if (this.categoryIds) query.categoryIds = this.categoryIds;
- // console.log('表单字段 ==> ', query);
- this.getPageList(query)
- }
- getPageList(query : any) {
- let loading = this.$loading({ target: '.main-container' });
- api.treeList('maindataMaterialCategory').then((treeRes : any) => {
- if(treeRes.code==200){
- api.pageList(query, 'maindataMaterial').then((res : any) => {
- if (res.code === 200) {
-
- var data:any = [{
- id: 0,
- name: '物料分类',
- children: treeRes.data
- }];
- (this as any).$refs.sideTree.setData(data);
-
- (this.$refs.moduleView as any).setTableValue(res.data.records);
- let page = {
- pageNo: res.data.current, //当前页
- pageSize: res.data.size, //每页条数
- total: res.data.total //总条数
- };
- (this.$refs.moduleView as any).setPage(page);
- loading.close();
- } else this.$message.error(res.msg);
- }).catch(() => loading.close());
- }
- }).catch(() => loading.close());
- }
- // 工具栏方法
- clickHandle(e : any) {
- if (e === 'onAdd') this.onAdd();
- if (e === 'onDelete') this.doDelete();
- }
- // 内页工具栏方法
- insideTools(e : any) {
- // console.log(e);
- if (e === 'onReturn') this.isShow = 'home';
- if (e === 'onSave') this.doFormData();
- if (e === 'onDelete') this.pageDelete(this.editInfo);
- }
- // 组合商品删除
- deleteMakeup(item : any) {
- this.$confirm('确定删除吗', '注意', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- center: true
- }).then((res) => {
- // console.log(res)
- let data = (this.$refs.makeupTable as any).getValue();// 获取表格数据
- // let i = -1;
- // let j = -1;
- // for (const v of data) {
- // i++;
- // if (v.id == item.id) {
- // break
- // }
- // };
- // for (const v of this.makeupList) {
- // j++;
- // if (v.id == item.id && item.isDeleted === 0) {
- // break
- // }
- // };
- // this.makeupList[j].isDeleted = 1;
- // data.splice(i, 1);
- // this.productDataList.splice(i, 1);
- for (var i = 0; i < data.length; i++) {
- if(data[i].materialSkuId == item.materialSkuId){
- if(item.isDeleted == 0){
- this.makeupList[i].isDeleted = 1;
- }
- data.splice(i, 1);
- this.productDataList.splice(i, 1)
- }
- };
- (this.$refs.makeupTable as any).setValue(data);// 设置表格数据
- this.$message.success('删除成功');
- // setTimeout(()=> {
- // this.volumeCount()
- // }, 10);
- }).catch((err) => {
- this.$message.info('已取消删除');
- // console.log(err)
- });
- }
- // 内页删除
- pageDelete(item : any) {
- this.$confirm('确定删除吗,此操作不能撤销!', '注意', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- center: true
- }).then(() => {
- other.deleteSpuAndSku({ ids: item.id }, 'maindataMaterial').then((res : any) => {
- if (res.code === 200) {
- this.$message.success('删除成功');
- this.isShow = 'home';
- // (this as any).$refs.sideTree.request();
- this.getDataList();
- } else this.$message.error(res.msg);
- }).catch(() => {});
- }).catch(() => this.$message.info('已取消删除'));
- }
- // 工具栏删除
- doDelete() {
- let selectData = (this.$refs.moduleView as any).getSelectData()
- let ids = '';
- if (selectData.length > 0) {
- selectData.map((v : any) => {
- ids += v.id + ','
- })
- } else return this.$message({ type: 'warning', message: '请选择删除数据' })
- ids = ids.slice(0, ids.length - 1);
- this.$confirm('确定删除吗,此操作不能撤销!', '注意', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- center: true
- }).then(() => {
- other.deleteSpuAndSku({ ids: ids }, 'maindataMaterial').then((res : any) => {
- if (res.code === 200) {
- // (this as any).$refs.sideTree.request();
- this.getDataList();
- this.$message.success('删除成功');
- } else this.$message.error(res.msg);
- }).catch(() => {});
- }).catch(() => this.$message.info('已取消删除'));
- }
- // 操作删除
- doDelete2(item : any) {
- this.$confirm('确定删除吗,此操作不能撤销!', '注意', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- center: true
- }).then(() => {
- other.deleteSpuAndSku({ ids: item.id }, 'maindataMaterial').then((res : any) => {
- if (res.code === 200) {
- // (this as any).$refs.sideTree.request();
- this.getDataList();
- this.$message.success('删除成功');
- } else this.$message.error(res.msg);
- }).catch(() => {});
- }).catch(() => this.$message.info('已取消删除'));
- }
- // 刷新
- onRefresh() {
- (this as any).$refs.moduleView.clearSearch();
- // (this as any).$refs.sideTree.request();
- this.categoryIds = '';
- this.getDataList();
- }
- }
- </script>
- <style>
- .el-tree{max-height: 100%;overflow-y: auto;}
- </style>
- <style lang="scss" scoped>
- .my-container {
- width: 100%;
- box-sizing: border-box;
- display: flex;
- padding: 16px;
- height: 100%;
- .bill-left {
- position: relative;
- border-right: solid #EEE 1px;
- padding-right: 16px;
- flex-shrink: 0;
- .bill-tab {
- width: 210px;
- height: 100%;
- transition: all .5s;
- overflow: auto;
- }
- .tab-title {
- font-size: 16px;
- padding-bottom: 16px;
- width: 200px;
- }
- }
- .item-tab {
- margin-right: 16px;
- }
- .bill-main {
- width: calc(100% - 16px);
- box-sizing: border-box;
- margin-left: 16px;
- position: relative;
- height: 100%;
- overflow-y: hidden;
- }
- .detil {
- width: 100%;
- .box-shadow {
- box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
- padding: 20px;
- border-radius: 4px;
- border: 1px solid #e6ebf5;
- background-color: #fff;
- overflow: hidden;
- color: #303133;
- -webkit-transition: .3s;
- transition: .3s;
- margin-top: 20px;
- }
- }
- }
- </style>
|