index.vue 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307
  1. <template>
  2. <div class="app-container">
  3. <div class="operation">
  4. <el-button v-if="isRoleEdit" class="success" icon="el-icon-plus" style="float: left;" @click="handleCreate">{{$t('premixedPlan.xzcc')}}
  5. </el-button>
  6. <el-button v-if="isRoleEdit" class="danger" icon="el-icon-delete" style="float: left;" @click="form_delete">{{$t('premixedPlan.jscc')}}
  7. </el-button>
  8. <el-button v-if="isRoleEdit" class="success" style="float: left;" @click="handleCheck">{{$t('premixedPlan.jy')}} </el-button>
  9. <el-button v-if="isOrder && isRoleEdit" icon="el-icon-sort" style="float: left;" class="success"
  10. @click="handleChangeOrder">{{$t('formulationEvaluation.ggsx')}}</el-button>
  11. <div v-else style="float: left;margin-left: 10px;">
  12. <el-button v-if="isRoleEdit" icon="el-icon-folder-checked" class="success" @click="saveChangeOrder">{{$t('premixedPlan.save')}}
  13. </el-button>
  14. <el-button v-if="isRoleEdit" icon="el-icon-close" class="sortCancel" @click="cancelChangeOrder">{{$t('formulationEvaluation.cancel')}}</el-button>
  15. </div>
  16. <el-button v-if="isRoleEdit" class="success" icon="el-icon-open" style="float: left;" @click="handleTakeEffect">{{$t('premixedPlan.sx')}}
  17. </el-button>
  18. <el-button v-if="isRoleEdit" class="danger" icon="el-icon-turn-off" style="float: left;" @click="handleDisable">{{$t('premixedPlan.jy')}}
  19. </el-button>
  20. <el-button class="import" style="float: right;" @click="handleHistoryRecords">{{$t('dhedFormula.lsjl')}}</el-button>
  21. </div>
  22. <div class="search" />
  23. <div class="table">
  24. <el-table id="table" :key="table.tableKey" v-loading="table.listLoading" :element-loading-text="$t('common.tableMsg')"
  25. :data="table.list" border fit highlight-current-row style="width: 100%;" :row-style="rowStyle"
  26. :cell-style="cellStyle" class="elTable table-fixed" row-key="id" @selection-change="handleSelect">
  27. <el-table-column type="selection" min-width="50" />
  28. <el-table-column :label="$t('errorAnalysis.projname')" min-width="80px" align="center">
  29. <template slot-scope="scope">
  30. <span>{{ scope.row.sort }}</span>
  31. </template>
  32. </el-table-column>
  33. <el-table-column :label="$t('errorAnalysis.pen')" min-width="110px" align="center">
  34. <template slot-scope="scope">
  35. <span>{{ scope.row.qstr }}</span>
  36. </template>
  37. </el-table-column>
  38. <el-table-column :label="$t('premixedPlan.tmrbh')" prop="weight" min-width="110px" align="center">
  39. <template slot-scope="scope">
  40. <span>{{ scope.row.tmrcode }}</span>
  41. </template>
  42. </el-table-column>
  43. <el-table-column :label="$t('premixedPlan.sx')" min-width="70px" align="center">
  44. <template slot-scope="scope">
  45. <el-switch v-model="scope.row.enable" :disabled="scope.row.NoEdit==true" active-color="#13ce66"
  46. inactive-color="#ff4949" :active-value="1" :inactive-value="0" />
  47. </template>
  48. </el-table-column>
  49. <el-table-column :label="$t('errorAnalysis.isTrainNumber')" min-width="120px" align="center">
  50. <template slot-scope="scope">
  51. <span>{{ scope.row.times }}</span>
  52. </template>
  53. </el-table-column>
  54. <el-table-column :label="$t('premixedPlan.sljhccgs')" min-width="90px" align="center">
  55. <template slot-scope="scope">
  56. <span>{{ scope.row.lppcode }}</span>
  57. </template>
  58. </el-table-column>
  59. <el-table-column :label="$t('premixedPlan.slclfs')" min-width="130px" align="center">
  60. <template slot-scope="scope">
  61. <span>{{ scope.row.treatmethod }}</span>
  62. </template>
  63. </el-table-column>
  64. <el-table-column :label="$t('premixedPlan.ztls')" min-width="130px" align="center">
  65. <template slot-scope="scope">
  66. <span>{{ scope.row.hstr }}</span>
  67. </template>
  68. </el-table-column>
  69. <!-- <el-table-column :label="$t('errorAnalysis.cz')" align="center" width="80" class-name="small-padding fixed-width" fixed="right">
  70. <template slot-scope="{row}">
  71. <el-button v-if="row.isCreate && isRoleEdit" :disabled="isokDisable" icon="el-icon-folder-checked" class="miniSuccess" @click="createData(row)" />
  72. <span v-if="row.isCreate && isRoleEdit" class="centerSpan">|</span>
  73. <el-button v-if="row.isCreate && isRoleEdit" class="minCancel" icon="el-icon-close" @click="createCancel(row)" />
  74. <el-button v-if="row.isUpdate && isRoleEdit" class="miniSuccess" icon="el-icon-edit-outline" @click="handleUpdate(row)" />
  75. <span v-if="row.isUpdate && isRoleEdit" class="centerSpan">|</span>
  76. <el-button v-if="row.isUpdate && isRoleEdit" class="miniDanger" icon="el-icon-delete" @click="handleRowDelete(row)" />
  77. <el-button v-if="row.isUpdateSave && isRoleEdit" :disabled="isokDisable" icon="el-icon-folder-checked" class="miniSuccess" @click="updateData(row)" />
  78. <span v-if="row.isUpdateSave && isRoleEdit" class="centerSpan">|</span>
  79. <el-button v-if="row.isUpdateSave && isRoleEdit" class="minCancel" icon="el-icon-close" @click="updateCancel(row)" />
  80. </template>
  81. </el-table-column> -->
  82. <el-table-column :label="$t('errorAnalysis.cz')" align="center" width="180" class-name="small-padding fixed-width" fixed="right">
  83. <template slot-scope="{row}">
  84. <!-- <span v-if="isRoleEdit" class="centerSpan">|</span> -->
  85. <el-button v-if="isRoleEdit" icon="el-icon-edit-outline" class="miniSuccess" @click="handleUpdate(row)" />
  86. <span v-if="isRoleEdit" class="centerSpan">|</span>
  87. <el-button v-if="isRoleEdit" icon="el-icon-delete" class="miniDanger" @click="handleRowDelete(row)" />
  88. </template>
  89. </el-table-column>
  90. </el-table>
  91. <span v-if="table.listLoading == false"
  92. style="margin-right: 30px;margin-top: 10px;font-size: 14px;">{{$t('processAnalysis.total')}}{{ table.total }}{{$t('processAnalysis.tiao')}}</span>
  93. </div>
  94. <!-- 新增/编辑 -->
  95. <el-dialog :fullscreen="dialogFull" :visible.sync="create.dialogFormVisible" :close-on-click-modal="false"
  96. width="90%">
  97. <template slot="title">
  98. <div class="avue-crud__dialog__header">
  99. <span class="el-dialog__title">
  100. <span style="display:inline-block;width:3px;height:20px;margin-right:5px; float: left;margin-top:2px" />
  101. {{ textMap[create.dialogStatus] }}
  102. </span>
  103. <div class="avue-crud__dialog__menu" @click="dialogFull? dialogFull=false: dialogFull=true">
  104. <svg-icon v-if="dialogFull" icon-class="exit-fullscreen" />
  105. <svg-icon v-else icon-class="fullscreen" />
  106. </div>
  107. </div>
  108. </template>
  109. <div class="app-add">
  110. <el-form ref="temp" :rules="create.rules" :model="create.temp" label-position="right" label-width="155px" style="width: 100%;margin:0 auto 50px">
  111. <el-row>
  112. <el-col :span="6">
  113. <el-form-item :label="$t('premixedPlan.cci')"prop="sort">
  114. <el-input ref="sort" v-model="create.temp.sort" class="filter-item" type="number" :placeholder="$t('errorAnalysis.projname')" />
  115. </el-form-item>
  116. </el-col>
  117. <el-col :span="6">
  118. <el-form-item :label="$t('premixedPlan.lsname')" prop="barid">
  119. <el-select v-model="create.temp.barid" multiple filterable :placeholder="$t('errorAnalysis.isHouseName')" class="filter-item"
  120. style="width:100%; " @change="changeBars">
  121. <el-option v-for="item in barsList" :key="item.id" :label="item.bname" :value="item.id" />
  122. </el-select>
  123. </el-form-item>
  124. </el-col>
  125. <el-col :span="6">
  126. <el-form-item label="TMR编号:" prop="tmrid">
  127. <el-select v-model="create.temp.tmrid" filterable :placeholder="$t('premixedPlan.tmrbh')" class="filter-item"
  128. style="width: 100%;" @change="changeTMRNumber">
  129. <el-option v-for="item in TMRNumberList" :key="item.id" :label="item.eqcode" :value="item.id" />
  130. </el-select>
  131. </el-form-item>
  132. </el-col>
  133. <el-col :span="6">
  134. <el-form-item :label="$t('premixedPlan.sx')" prop="sort">
  135. <el-switch ref="enable" v-model="create.temp.enable" active-color="#13ce66" inactive-color="#ff4949"
  136. :active-value="1" :inactive-value="0" />
  137. </el-form-item>
  138. </el-col>
  139. </el-row>
  140. <el-row>
  141. <el-col :span="6">
  142. <el-form-item :label="$t('premixedPlan.bc')" prop="times">
  143. <el-select v-model="create.temp.times" filterable :placeholder="$t('premixedPlan.bc')" class="filter-item"
  144. style="width: 100%;" @change="changeTimes">
  145. <el-option v-for="item in frequencyList" :key="item.id" :label="item.name" :value="item.id" />
  146. </el-select>
  147. </el-form-item>
  148. </el-col>
  149. <el-col :span="6">
  150. <el-form-item :label="$t('premixedPlan.sljhccgs')" prop="lppid">
  151. <el-select v-model="create.temp.lppid" filterable :placeholder="$t('premixedPlan.sljhccgs')" class="filter-item"
  152. style="width: 100%;" @change="changeCarFollow">
  153. <el-option v-for="item in carFollowList" :key="item.id" :label="item.lppcode" :value="item.id" />
  154. </el-select>
  155. </el-form-item>
  156. </el-col>
  157. <el-col :span="6">
  158. <el-form-item :label="$t('premixedPlan.time')" prop="rtime">
  159. <el-time-picker v-model="create.temp.rtime" type="datetime" :placeholder="$t('dhedFormula.xzrq')" format="HH:mm"
  160. value-format="HH:mm" style="display: inline-block;width: 95%;" />
  161. </el-form-item>
  162. </el-col>
  163. <el-col :span="6">
  164. <el-form-item :label="$t('premixedPlan.slclfs')" prop="treatmethod">
  165. <el-select v-model="create.temp.treatmethod" filterable placeholder="剩料处理方式" class="filter-item"
  166. style="width: 100%;" @change="changeResidueDisposal">
  167. <el-option v-for="item in residueDisposalList" :key="item.value" :label="item.label"
  168. :value="item.label" />
  169. </el-select>
  170. </el-form-item>
  171. </el-col>
  172. </el-row>
  173. <el-row>
  174. <el-col :span="6">
  175. <el-form-item :label="$t('premixedPlan.ztls')" prop="useinbarid">
  176. <el-select v-model="create.temp.useinbarid" filterable placeholder="转投栏舍" class="filter-item"
  177. style="width: 100%;" @change="changeTransferbars" :disabled='isDis'>
  178. <el-option v-for="item in transferbarsList" :key="item.id" :label="item.bname" :value="item.id" />
  179. </el-select>
  180. </el-form-item>
  181. </el-col>
  182. </el-row>
  183. <el-row>
  184. <draggable v-model="barSortList" group="itxst" animation="300" :group="{name: 'dashboard',pull: true}"
  185. @start="onStart" @end="onEnd">
  186. <transition-group>
  187. <div
  188. style="width:80px;height:30px;border:1px soild #333;display:inline-block;background: #2ed1f9;padding: 5px 5px;margin-right: 15px;margin-bottom: 15px;"
  189. v-for="item in barSortList" key="1">{{item.bname}}</div>
  190. </transition-group>
  191. </draggable>
  192. </el-row>
  193. </el-form>
  194. <div slot="footer" class="dialog-footer">
  195. <el-button class="cancelClose" @click="create.dialogFormVisible = false;getList()">{{$t('common.closed')}}</el-button>
  196. <el-button v-if="create.dialogStatus==='create' || create.dialogStatus==='update'" class="save"
  197. :disabled="isokDisable" @click="create.dialogStatus==='create'?createData():updateData()">{{$t('errorAnalysis.confirm')}}</el-button>
  198. </div>
  199. </div>
  200. </el-dialog>
  201. <!-- 历史记录 -->
  202. <el-dialog :fullscreen="dialogFull" :destroy-on-close="true" :visible.sync="history.dialogFormVisible"
  203. :close-on-click-modal="false" width="90%">
  204. <template slot="title">
  205. <div class="avue-crud__dialog__header">
  206. <span class="el-dialog__title">
  207. <span style="display:inline-block;width:3px;height:20px;margin-right:5px; float: left;margin-top:2px" />
  208. {{ textMap[history.dialogStatus] }}
  209. </span>
  210. <div class="avue-crud__dialog__menu" @click="dialogFull? dialogFull=false: dialogFull=true">
  211. <svg-icon v-if="dialogFull" icon-class="exit-fullscreen" />
  212. <svg-icon v-else icon-class="fullscreen" />
  213. </div>
  214. </div>
  215. </template>
  216. <div class="app-history">
  217. <div class="search">
  218. <el-date-picker v-model="history.getdataListParm.parammaps.date" type="date" placeholder="请选择历史记录时间"
  219. :clearable="false" style="width: 180px;" format="yyyy-MM-dd" value-format="yyyy-MM-dd"
  220. @change="changeDate" />
  221. <!-- <el-button class="successBorder" @click="handleApplication">应用</el-button> -->
  222. </div>
  223. <div class="table">
  224. <el-table :key="history.tableKey" v-loading="history.listLoading" :element-loading-text="$t('common.tableMsg')"
  225. :data="history.list" border fit highlight-current-row style="width: 100%;" :row-style="rowStyle"
  226. :cell-style="cellStyle" class="elTable table-fixed">
  227. <el-table-column :label="$t('errorAnalysis.projname')" min-width="130px" align="center">
  228. <template slot-scope="scope">
  229. <span>{{ scope.row.sort }}</span>
  230. </template>
  231. </el-table-column>
  232. <el-table-column :label="$t('errorAnalysis.pen')" min-width="130px" align="center">
  233. <template slot-scope="scope">
  234. <span>{{ scope.row.qstr }}</span>
  235. </template>
  236. </el-table-column>
  237. <el-table-column :label="$t('premixedPlan.tmrbh')" prop="weight" min-width="130px" align="center">
  238. <template slot-scope="scope">
  239. <span>{{ scope.row.tmrcode }}</span>
  240. </template>
  241. </el-table-column>
  242. <el-table-column :label="$t('premixedPlan.sx')" min-width="130px" align="center">
  243. <template slot-scope="scope">
  244. <el-switch v-model="scope.row.enable" disabled active-color="#13ce66" inactive-color="#ff4949"
  245. :active-value="1" :inactive-value="0" @change="handleEnableChange(scope.$index, scope.row)" />
  246. </template>
  247. </el-table-column>
  248. <el-table-column :label="$t('errorAnalysis.isTrainNumber')" min-width="130px" align="center">
  249. <template slot-scope="scope">
  250. <span>{{ scope.row.times }}</span>
  251. </template>
  252. </el-table-column>
  253. <el-table-column :label="$t('premixedPlan.fljhcsgs')" min-width="130px" align="center">
  254. <template slot-scope="scope">
  255. <span>{{ scope.row.lppcode }}</span>
  256. </template>
  257. </el-table-column>
  258. <el-table-column :label="$t('premixedPlan.time')" min-width="180px" align="center">
  259. <template slot-scope="scope">
  260. <span>{{ scope.row.rtime }}</span>
  261. </template>
  262. </el-table-column>
  263. <el-table-column :label="$t('premixedPlan.slclfs')"min-width="130px" align="center">
  264. <template slot-scope="scope">
  265. <span>{{ scope.row.treatmethod }}</span>
  266. </template>
  267. </el-table-column>
  268. <el-table-column :label="$t('premixedPlan.ztls')"min-width="130px" align="center">
  269. <template slot-scope="scope">
  270. <span>{{ scope.row.hstr }}</span>
  271. </template>
  272. </el-table-column>
  273. </el-table>
  274. <pagination v-show="history.total>0" :total="history.total" :page.sync="history.getdataListParm.offset"
  275. :limit.sync="history.getdataListParm.pagecount" @pagination="getHistoryList" />
  276. </div>
  277. </div>
  278. <div slot="footer" class="dialog-footer">
  279. <el-button class="cancelClose cancelClose1" @click="history.dialogFormVisible = false; ">{{$t('common.closed')}}</el-button>
  280. </div>
  281. </el-dialog>
  282. <!-- 校验 -->
  283. <el-dialog :title="textMap[check.dialogStatus]" :destroy-on-close="true" :visible.sync="check.dialogFormVisible"
  284. :close-on-click-modal="false" width="30%">
  285. <div class="check">
  286. <p v-if="check.temp.isDistribution == '0'">当前有栏舍未分配,建议及时进行分配,未分配栏舍如下:</p>
  287. <p v-else>已分配完:当前栏舍已分配完善</p>
  288. {{ check.temp.bnames }}
  289. </div>
  290. <div slot="footer" class="dialog-footer" style="bottom: 10px;">
  291. <el-button class="save" @click="check.dialogFormVisible=false;">{{$t('errorAnalysis.confirm')}}</el-button>
  292. </div>
  293. </el-dialog>
  294. </div>
  295. </template>
  296. <script>
  297. import {
  298. GetDataByName,
  299. GetDataByNames,
  300. PostDataByName,
  301. failproccess,
  302. ExecDataByConfig,
  303. checkButtons,postJson2
  304. } from '@/api/common'
  305. import { parseTime } from '@/utils/index.js'
  306. import Pagination from '@/components/Pagination'
  307. import Sortable from 'sortablejs'
  308. import draggable from 'vuedraggable'
  309. import Cookies from 'js-cookie'
  310. import {
  311. MessageBox
  312. } from 'element-ui'
  313. export default {
  314. name: 'SurplusMaterialPlan',
  315. components: {
  316. Pagination,
  317. draggable
  318. },
  319. data() {
  320. return {
  321. barSortList: [],
  322. dialogFull: false,
  323. isDis: false,
  324. isRoleEdit: [],
  325. requestParams: [{
  326. name: 'getBarListEnable',
  327. offset: 0,
  328. pagecount: 0,
  329. parammaps: {
  330. pastureid: Cookies.get('pastureid')
  331. }
  332. },
  333. {
  334. name: 'getTMRYHList',
  335. offset: 0,
  336. pagecount: 0,
  337. parammaps: {
  338. pastureid: Cookies.get('pastureid')
  339. }
  340. }
  341. ],
  342. barsList: [], // 栏舍
  343. residueDisposalList: [{
  344. value: '0',
  345. label: '转投剩料'
  346. }, {
  347. value: '1',
  348. label: '继续饲喂'
  349. }], // 剩料处理方式
  350. TMRNumberList: [], // TMR编号
  351. barsNamesIdTempArr: [],
  352. useinbarNamesIdTempArr: [],
  353. // 班次
  354. maxTime: {
  355. getMaxTimesParm: {
  356. name: 'getSysoptEnable',
  357. page: 1,
  358. offset: 1,
  359. pagecount: 1,
  360. returntype: 'Map',
  361. parammaps: {
  362. pastureid: Cookies.get('pastureid'),
  363. inforname: 'times'
  364. }
  365. }
  366. },
  367. frequencyList: [], // 班次
  368. getCarFollowParm: {
  369. name: 'getLPPCodeList',
  370. offset: 0,
  371. pagecount: 0,
  372. parammaps: {
  373. pastureid: Cookies.get('pastureid'),
  374. times: ''
  375. }
  376. },
  377. carFollowList: [], // 发料计划车次跟随
  378. getTransferbarsParm: {
  379. name: 'getBarListEnable',
  380. offset: 0,
  381. pagecount: 0,
  382. parammaps: {
  383. pastureid: Cookies.get('pastureid'),
  384. times: ''
  385. }
  386. },
  387. transferbarsList: [], // 转头栏舍
  388. table: {
  389. getdataListParm: {
  390. name: 'getRemainplanList',
  391. page: 1,
  392. offset: 1,
  393. pagecount: '',
  394. returntype: 'Map',
  395. parammaps: {
  396. pastureid: Cookies.get('pastureid')
  397. }
  398. },
  399. tableKey: 0,
  400. list: [],
  401. total: 0,
  402. listLoading: true,
  403. temp: {},
  404. temp2: {}
  405. },
  406. // 新增/编辑
  407. create: {
  408. dialogFormVisible: false,
  409. dialogStatus: '',
  410. temp: {
  411. pastureid: Cookies.get('pastureid'),
  412. fname: '',
  413. fclassid: '',
  414. fclass: '',
  415. feedcode: '',
  416. source: '用户自定义',
  417. printgroupid: '1',
  418. printgroup: '无',
  419. unitweight: '',
  420. uprice: '',
  421. allowratio: '',
  422. autozone: '',
  423. autosecond: '0',
  424. autosecondname: '禁用',
  425. confirmstart: '0',
  426. confirmstartname: '禁用',
  427. enable: '1',
  428. trgaddress: '',
  429. backup1: '',
  430. backup2: '',
  431. backup3: '',
  432. sort: ''
  433. },
  434. rules: {
  435. // fname: [{ type: 'string', required: true, message: this.$t('hardwareTest.bt'), trigger: 'blur' }],
  436. // fclassid: [{ type: 'string', required: true, message: this.$t('hardwareTest.bt'), trigger: 'blur' }],
  437. // feedcode: [{ type: 'string', required: true, message: this.$t('hardwareTest.bt'), trigger: 'blur' }]
  438. }
  439. },
  440. history: {
  441. dialogFormVisible: false,
  442. dialogStatus: '',
  443. temp: {},
  444. rules: {},
  445. tableKey: 0,
  446. list: [],
  447. total: 0,
  448. listLoading: true,
  449. getdataDateParm: {
  450. name: 'getRPMaxDate',
  451. page: 1,
  452. offset: 1,
  453. pagecount: 10,
  454. returntype: 'Map',
  455. parammaps: {
  456. pastureid: Cookies.get('pastureid')
  457. }
  458. },
  459. getdataListParm: {
  460. name: 'getRemainplanListDate',
  461. page: 1,
  462. offset: 1,
  463. pagecount: 10,
  464. returntype: 'Map',
  465. parammaps: {
  466. pastureid: Cookies.get('pastureid'),
  467. date: ''
  468. }
  469. }
  470. },
  471. check: {
  472. dialogFormVisible: false,
  473. dialogStatus: '',
  474. getCheckParm: {
  475. name: 'checkRemainplan',
  476. page: 1,
  477. offset: 1,
  478. pagecount: 10,
  479. returntype: 'Map',
  480. parammaps: {
  481. pastureid: Cookies.get('pastureid')
  482. }
  483. },
  484. temp: {
  485. bnames: '',
  486. isDistribution: ''
  487. }
  488. },
  489. textMap: {
  490. create: '新增',
  491. update: '编辑',
  492. history: this.$t('message.msg34'),
  493. check: this.$t('message.msg111')
  494. },
  495. requestParam: {},
  496. selectList: [],
  497. isokDisable: false,
  498. rowStyle: {
  499. maxHeight: 30 + 'px',
  500. height: 30 + 'px'
  501. },
  502. cellStyle: {
  503. padding: 0 + 'px'
  504. },
  505. dropState: false,
  506. isOrder: true
  507. }
  508. },
  509. created() {
  510. this.getButtons()
  511. this.getList()
  512. this.getDownList()
  513. this.getIsDisplay()
  514. },
  515. methods: {
  516. getButtons() {
  517. const Edit = 'SurplusMaterialPlan'
  518. const isRoleEdit = checkButtons(JSON.parse(sessionStorage.getItem('buttons')), Edit)
  519. this.isRoleEdit = isRoleEdit
  520. },
  521. getDownList() {
  522. GetDataByNames(this.requestParams).then(response => {
  523. this.barsList = response.data.getBarListEnable.list
  524. this.TMRNumberList = response.data.getTMRYHList.list
  525. })
  526. },
  527. getIsDisplay() {
  528. GetDataByName(this.maxTime.getMaxTimesParm).then(response => {
  529. if (response.data.list[0].inforvalue == 1) {
  530. this.frequencyList = [{
  531. id: '1',
  532. name: this.$t('errorAnalysis.one'),
  533. }]
  534. } else if (response.data.list[0].inforvalue == 2) {
  535. this.frequencyList = [{
  536. id: '1',
  537. name: this.$t('errorAnalysis.one'),
  538. }, {
  539. id: '2',
  540. name: this.$t('errorAnalysis.two'),
  541. }]
  542. } else if (response.data.list[0].inforvalue == 3) {
  543. this.frequencyList = [{
  544. id: '1',
  545. name: this.$t('errorAnalysis.one'),
  546. }, {
  547. id: '2',
  548. name: this.$t('errorAnalysis.two'),
  549. }, {
  550. id: '3',
  551. name: this.$t('errorAnalysis.three'),
  552. }]
  553. } else if (response.data.list[0].inforvalue == 4) {
  554. this.frequencyList = [{
  555. id: '1',
  556. name: this.$t('errorAnalysis.one'),
  557. }, {
  558. id: '2',
  559. name: this.$t('errorAnalysis.two'),
  560. }, {
  561. id: '3',
  562. name: this.$t('errorAnalysis.three'),
  563. }, {
  564. id: '4',
  565. name: this.$t('errorAnalysis.four'),
  566. }]
  567. }else if (response.data.list[0].inforvalue == 5) {
  568. this.frequencyList = [{
  569. id: '1',
  570. name: this.$t('errorAnalysis.one'),
  571. }, {
  572. id: '2',
  573. name: this.$t('errorAnalysis.two'),
  574. }, {
  575. id: '3',
  576. name: this.$t('errorAnalysis.three'),
  577. }, {
  578. id: '4',
  579. name: this.$t('errorAnalysis.four'),
  580. }, {
  581. id: '5',
  582. name: this.$t('errorAnalysis.five'),
  583. }]
  584. }else if (response.data.list[0].inforvalue == 6) {
  585. this.frequencyList = [{
  586. id: '1',
  587. name: this.$t('errorAnalysis.one'),
  588. }, {
  589. id: '2',
  590. name: this.$t('errorAnalysis.two'),
  591. }, {
  592. id: '3',
  593. name: this.$t('errorAnalysis.three'),
  594. }, {
  595. id: '4',
  596. name: this.$t('errorAnalysis.four'),
  597. }, {
  598. id: '5',
  599. name: this.$t('errorAnalysis.five'),
  600. }, {
  601. id: '6',
  602. name: this.$t('errorAnalysis.six'),
  603. }]
  604. }
  605. })
  606. },
  607. getList() {
  608. this.table.listLoading = true
  609. GetDataByName(this.table.getdataListParm).then(response => {
  610. console.log('table数据', response.data.list)
  611. if (response.data.list !== null) {
  612. for (let i = 0; i < response.data.list.length; i++) {
  613. this.$set(response.data.list[i], 'Edit', false) // 编辑
  614. this.$set(response.data.list[i], 'NoEdit', true) // 不可编辑/输入
  615. this.$set(response.data.list[i], 'groupEdit', false) // 饲料组编辑
  616. this.$set(response.data.list[i], 'groupNoEdit', true) // 饲料组不可编辑
  617. this.$set(response.data.list[i], 'isCreate', false) // 新增操作
  618. this.$set(response.data.list[i], 'isUpdate', true) // 编辑操作
  619. this.$set(response.data.list[i], 'isUpdateSave', false) // 编辑保存
  620. }
  621. var arr = response.data.list
  622. arr.map(function(i, j) {
  623. // console.log(i, '====')
  624. if (i.qstrids) {
  625. return i.barid = i.qstrids.split(',')
  626. } else {
  627. return i.barid = []
  628. }
  629. })
  630. arr.map(function(i, j) {
  631. if (i.hstrids) {
  632. return i.useinbarid = i.hstrids
  633. } else {
  634. return i.useinbarid = ""
  635. }
  636. })
  637. this.table.list = arr
  638. // this.table.list = response.data.list
  639. this.table.pageNum = response.data.pageNum
  640. this.table.pageSize = response.data.pageSize
  641. // this.rowDrop()
  642. this.table.total = response.data.total
  643. } else {
  644. this.table.list = []
  645. }
  646. setTimeout(() => {
  647. this.table.listLoading = false
  648. }, 100)
  649. })
  650. },
  651. handleEnableChange() {
  652. console.log('点击了生效')
  653. },
  654. handleChangeOrder() {
  655. this.isOrder = false
  656. this.rowDrop()
  657. },
  658. saveChangeOrder() {
  659. // 保存顺序
  660. var sortArr = []
  661. for (let i = 0; i < this.table.list.length; i++) {
  662. var obj = {}
  663. obj.sort = i + 1
  664. obj.id = this.table.list[i].id
  665. obj.pastureid = this.table.list[i].pastureid
  666. sortArr.push(obj)
  667. }
  668. this.requestParam = {}
  669. this.requestParam.common = {
  670. 'returnmap': '0'
  671. }
  672. this.requestParam.data = []
  673. this.requestParam.data[0] = {
  674. 'name': 'insertSpotList',
  675. 'resultmaps': {
  676. 'list': sortArr
  677. }
  678. }
  679. this.requestParam.data[0].children = []
  680. this.requestParam.data[0].children[0] = {
  681. 'name': 'updateRemainplanSort',
  682. 'type': 'e',
  683. 'parammaps': {
  684. id: '@insertSpotList.id',
  685. pastureid: '@insertSpotList.pastureid',
  686. sort: '@insertSpotList.sort'
  687. }
  688. }
  689. ExecDataByConfig(this.requestParam).then(response => {
  690. console.log('顺序切换保存发送参数', this.requestParam)
  691. if (response.msg === 'fail') {
  692. this.$notify({
  693. title: this.$t('message.msg51'),
  694. message: response.data,
  695. type: 'warning',
  696. duration: 2000
  697. })
  698. } else {
  699. this.$notify({
  700. title: '',
  701. message: this.$t('message.msg50'),
  702. type: 'success',
  703. duration: 2000
  704. })
  705. this.getList()
  706. this.isOrder = true
  707. }
  708. })
  709. },
  710. cancelChangeOrder() {
  711. // 取消顺序
  712. this.getList()
  713. this.isOrder = true
  714. },
  715. // 行拖拽
  716. rowDrop() {
  717. console.log(document.querySelector('#table .el-table__body-wrapper tbody'))
  718. const tbody = document.querySelector('#table .el-table__body-wrapper tbody')
  719. const that = this
  720. var sortable = Sortable.create(tbody, {
  721. disabled: that.dropState,
  722. onChoose({
  723. newIndex,
  724. oldIndex
  725. }) {
  726. if (that.dropState == true) {
  727. sortable.destroy()
  728. }
  729. },
  730. onEnd({
  731. newIndex,
  732. oldIndex
  733. }) {
  734. const currRow = that.table.list.splice(oldIndex, 1)[0]
  735. that.table.list.splice(newIndex, 0, currRow)
  736. console.log('索引', newIndex)
  737. console.log('拖动数据', currRow)
  738. console.log('上', that.table.list[newIndex - 1])
  739. console.log('下', that.table.list[newIndex + 1])
  740. }
  741. })
  742. },
  743. // 新增
  744. handleCreate() {
  745. console.log('点击了新增')
  746. this.resetTemp()
  747. this.dialogFull = false
  748. this.create.dialogStatus = 'create'
  749. this.create.dialogFormVisible = true
  750. },
  751. resetTemp() {
  752. this.create.temp = {
  753. pastureid: Cookies.get('pastureid'),
  754. 'myId': (new Date()).valueOf(),
  755. 'Edit': true,
  756. 'NoEdit': false,
  757. 'isCreate': true,
  758. 'isUpdate': false,
  759. 'isUpdateSave': false,
  760. 'enable': 1,
  761. 'sort': "",
  762. 'ftid': '',
  763. 'ftname': '',
  764. 'tmrcode': '',
  765. 'tmrid': '',
  766. 'times': '',
  767. 'lppcode': '',
  768. 'lppid': '',
  769. 'rtime': '',
  770. 'barid': '',
  771. 'treatmethod': '',
  772. 'useinbar': '',
  773. 'useinbarid': ''
  774. }
  775. this.barSortList = []
  776. this.isDis = false
  777. },
  778. // // 栏舍
  779. // changeBars(val) {
  780. // console.log('点击了栏舍', val)
  781. // var arr = []
  782. // this.barsList.forEach(function(i) {
  783. // val.forEach(function(j) {
  784. // if (i.id == j) { arr.push(i) }
  785. // })
  786. // })
  787. // console.log('点击了栏舍', arr)
  788. // this.table.temp.barid = arr
  789. // this.barsNamesIdTempArr = arr
  790. // this.$forceUpdate()
  791. // },
  792. changeBars(val) {
  793. console.log(this.barsList)
  794. console.log('点击了栏舍1', val)
  795. var barSortList = []
  796. var barsList = this.barsList
  797. val.forEach(function(i) {
  798. barsList.forEach(function(j) {
  799. if (i == j.id) {
  800. barSortList.push(j)
  801. }
  802. })
  803. })
  804. this.barSortList = barSortList
  805. console.log('点击了栏舍1', barSortList)
  806. this.table.temp.barid = barSortList
  807. this.barsNamesIdTempArr = barSortList
  808. this.$forceUpdate()
  809. },
  810. onStart() {
  811. console.log(2222)
  812. },
  813. onEnd() {
  814. console.log(this.barSortList)
  815. this.table.temp.barid = this.barSortList
  816. this.barsNamesIdTempArr = this.barSortList
  817. },
  818. // // TMR编号
  819. // changeTMRNumber(item, row) {
  820. // row.tmrcode = this.TMRNumberList.find(obj => obj.id == item).tname
  821. // },
  822. changeTMRNumber(item) {
  823. this.create.temp.tmrcode = this.TMRNumberList.find(obj => obj.id === item).eqcode
  824. },
  825. // // 撒料计划车次跟随列表
  826. // changeCarFollow(item, row) {
  827. // if (item == '') {
  828. // row.lppcode = ''
  829. // } else {
  830. // row.lppcode = this.carFollowList.find(obj => obj.id == item).lppcode
  831. // }
  832. // },
  833. changeCarFollow(item, row) {
  834. if (item == '') {
  835. this.create.temp.lppcode = ''
  836. } else {
  837. this.create.temp.lppcode = this.carFollowList.find(obj => obj.id == item).lppcode
  838. }
  839. },
  840. // 班次
  841. // changeTimes(item, row) {
  842. // console.log(item, row)
  843. // this.getCarFollowParm.parammaps.times = item
  844. // this.getCarFollowList(row)
  845. // },
  846. // 班次
  847. changeTimes(item) {
  848. console.log(item)
  849. this.getCarFollowParm.parammaps.times = item
  850. this.getCarFollowList()
  851. },
  852. // 撒料计划车次跟随列表
  853. // getCarFollowList(row) {
  854. // GetDataByName(this.getCarFollowParm).then(response => {
  855. // console.log('撒料计划车次跟随列表数据', response.data.list)
  856. // if (response.data.list !== null) {
  857. // this.carFollowList = response.data.list
  858. // row.lppid = this.carFollowList[0].id
  859. // row.lppcode = this.carFollowList[0].lppcode
  860. // }
  861. // })
  862. // },
  863. getCarFollowList() {
  864. GetDataByName(this.getCarFollowParm).then(response => {
  865. console.log('撒料计划车次跟随列表数据', response.data.list)
  866. if (response.data.list !== null) {
  867. this.carFollowList = response.data.list
  868. this.create.temp.lppid = this.carFollowList[0].id
  869. this.create.temp.lppcode = this.carFollowList[0].lppcode
  870. }
  871. })
  872. },
  873. // changeResidueDisposal(item, row) {
  874. // console.log(item, row)
  875. // this.getCarFollowParm.parammaps.times = item
  876. // this.getTransferbarsList()
  877. // },
  878. changeResidueDisposal(item) {
  879. console.log(item)
  880. this.getCarFollowParm.parammaps.times = item
  881. this.getTransferbarsList()
  882. if (item == "继续饲喂") {
  883. this.isDis = true
  884. } else {
  885. this.isDis = false
  886. }
  887. },
  888. getTransferbarsList() {
  889. GetDataByName(this.getTransferbarsParm).then(response => {
  890. if (response.data.list !== null) {
  891. this.transferbarsList = response.data.list
  892. }
  893. console.log(this.transferbarsList)
  894. })
  895. },
  896. // // 转头栏舍
  897. // changeTransferbars(val) {
  898. // console.log('点击了转头栏舍', val)
  899. // var arr2 = []
  900. // this.transferbarsList.forEach(function(i) {
  901. // val.forEach(function(j) {
  902. // if (i.id == j) { arr2.push(i) }
  903. // })
  904. // })
  905. // this.table.temp2.useinbar = arr2
  906. // this.useinbarNamesIdTempArr = arr2
  907. // this.$forceUpdate()
  908. // },
  909. // 转头栏舍
  910. changeTransferbars(val) {
  911. console.log('点击了转头栏舍', val)
  912. // var arr2 = []
  913. // this.transferbarsList.forEach(function(i) {
  914. // val.forEach(function(j) {
  915. // if (i.id == j) { arr2.push(i) }
  916. // })
  917. // })
  918. // this.table.temp2.useinbar = arr2
  919. // // this.useinbarNamesIdTempArr = arr2
  920. // this.$forceUpdate()
  921. },
  922. // createData(row) {
  923. // console.log('点击了新增保存', row)
  924. // if (row.rtime == null || row.rtime == 'null') {
  925. // row.rtime = ''
  926. // }
  927. // if (row.sort == '' && row.barid == '' && row.tmrid == '' && row.times == '' && row.treatmethod == '') {
  928. // this.$message({ type: 'error', message: '车次/栏舍/TMR编号/班次/剩料处理方式不能为空', duration: 2000 })
  929. // return false
  930. // } else if (row.barid == '' && row.tmrid == '' && row.times == '' && row.treatmethod == '') {
  931. // this.$message({ type: 'error', message: '栏舍/TMR编号/班次/剩料处理方式不能为空', duration: 2000 })
  932. // return false
  933. // } else if (row.tmrid == '' && row.times == '' && row.treatmethod == '') {
  934. // this.$message({ type: 'error', message: 'TMR编号/班次/剩料处理方式不能为空', duration: 2000 })
  935. // return false
  936. // } else if (row.times == '' && row.treatmethod == '') {
  937. // this.$message({ type: 'error', message: '班次/剩料处理方式不能为空', duration: 2000 })
  938. // return false
  939. // } else if (row.sort == '' || row.sort == 0) {
  940. // this.$message({ type: 'error', message: '车次不能为空且大于0', duration: 2000 })
  941. // return false
  942. // } else if (row.barid == '') {
  943. // this.$message({ type: 'error', message: '栏舍不能为空', duration: 2000 })
  944. // return false
  945. // } else if (row.tmrid == '') {
  946. // this.$message({ type: 'error', message: 'TMR编号不能为空', duration: 2000 })
  947. // return false
  948. // } else if (row.times == '') {
  949. // this.$message({ type: 'error', message: '班次不能为空', duration: 2000 })
  950. // return false
  951. // } else if (row.treatmethod == '') {
  952. // this.$message({ type: 'error', message: '剩料处理方式不能为空', duration: 2000 })
  953. // return false
  954. // }
  955. // if (row.treatmethod !== '' && row.treatmethod == '转投剩料') {
  956. // if (row.useinbarid == '') {
  957. // this.$message({ type: 'error', message: '转投栏舍不能为空', duration: 2000 })
  958. // return false
  959. // }
  960. // }
  961. // if (row.treatmethod !== '' && row.treatmethod == '继续饲喂') {
  962. // row.useinbarid = '0'
  963. // }
  964. // if (row.rtime == '' || row.rtime == null) {
  965. // row.rtime = ''
  966. // }
  967. // for (let i = 0; i < this.table.list.length; i++) {
  968. // if (row.sort == this.table.list[i].sort) {
  969. // if (row.myId !== this.table.list[i].myId) {
  970. // this.$message({ type: 'error', message: '车次不可重复', duration: 2000 })
  971. // return false
  972. // }
  973. // }
  974. // }
  975. // var isInteger = /^\d+$/
  976. // if (row.sort !== '') {
  977. // if (!isInteger.test(parseFloat(row.sort))) {
  978. // this.$message({ type: 'error', message: '车次请输入整数', duration: 2000 })
  979. // return false
  980. // }
  981. // }
  982. // this.isokDisable = true
  983. // setTimeout(() => {
  984. // this.isokDisable = false
  985. // }, 1000)
  986. // this.requestParam.common = { 'returnmap': '0' }
  987. // this.requestParam.data = []
  988. // this.requestParam.data[0] = { 'name': 'insertRemainplan', 'type': 'e', 'parammaps': {
  989. // pastureid: Cookies.get('pastureid'),
  990. // sort: row.sort,
  991. // tmrid: row.tmrid,
  992. // tmrcode: row.tmrcode,
  993. // enable: row.enable,
  994. // times: row.times,
  995. // lppid: row.lppid,
  996. // lppcode: row.lppcode,
  997. // rtime: row.rtime,
  998. // treatmethod: row.treatmethod
  999. // }}
  1000. // this.requestParam.data[1] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.barsNamesIdTempArr }}
  1001. // this.requestParam.data[1].children = []
  1002. // this.requestParam.data[1].children[0] = { 'name': 'insertRpdetail', 'type': 'e', 'parammaps': {
  1003. // pastureid: Cookies.get('pastureid'),
  1004. // bigid: '@insertRemainplan.LastInsertId',
  1005. // barid: '@insertSpotList.id',
  1006. // bar: '@insertSpotList.bname',
  1007. // type: 0
  1008. // }}
  1009. // this.requestParam.data[2] = { 'name': 'insertSpotList2', 'resultmaps': { 'list': this.useinbarNamesIdTempArr }}
  1010. // this.requestParam.data[2].children = []
  1011. // this.requestParam.data[2].children[0] = { 'name': 'insertRpdetail', 'type': 'e', 'parammaps': {
  1012. // pastureid: Cookies.get('pastureid'),
  1013. // bigid: '@insertRemainplan.LastInsertId',
  1014. // barid: '@insertSpotList2.id',
  1015. // bar: '@insertSpotList2.bname',
  1016. // type: 1
  1017. // }}
  1018. // ExecDataByConfig(this.requestParam).then(response => {
  1019. // console.log('新增保存发送参数', this.requestParam)
  1020. // if (response.msg === 'fail') {
  1021. // this.$notify({ title: this.$t('driver.saveFail'), message: response.data, type: 'warning', duration: 2000 })
  1022. // } else {
  1023. // this.$notify({ title: this.$t('common.succes'), message: this.$t('driver.saveSuccess'), type: 'success', duration: 2000 })
  1024. // this.getList()
  1025. // this.dropState = false
  1026. // }
  1027. // })
  1028. // },
  1029. createData() {
  1030. console.log('点击了新增保存')
  1031. this.isokDisable = true
  1032. setTimeout(() => {
  1033. this.isokDisable = false
  1034. }, 1000)
  1035. this.$refs['temp'].validate(valid => {
  1036. if (valid) {
  1037. if (this.create.temp.rtime == null || this.create.temp.rtime == 'null') {
  1038. this.create.temp.rtime = ''
  1039. }
  1040. if (this.create.temp.sort == '' && this.create.temp.barid == '' && this.create.temp.tmrid == '' && this
  1041. .create.temp.times == '' && this.create.temp.treatmethod == '') {
  1042. this.$message({
  1043. type: 'error',
  1044. message: '车次/栏舍/TMR编号/班次/剩料处理方式不能为空',
  1045. duration: 2000
  1046. })
  1047. return false
  1048. } else if (this.create.temp.barid == '' && this.create.temp.tmrid == '' && this.create.temp.times ==
  1049. '' && this.create.temp.treatmethod == '') {
  1050. this.$message({
  1051. type: 'error',
  1052. message: '栏舍/TMR编号/班次/剩料处理方式不能为空',
  1053. duration: 2000
  1054. })
  1055. return false
  1056. } else if (this.create.temp.tmrid == '' && this.create.temp.times == '' && this.create.temp
  1057. .treatmethod == '') {
  1058. this.$message({
  1059. type: 'error',
  1060. message: 'TMR编号/班次/剩料处理方式不能为空',
  1061. duration: 2000
  1062. })
  1063. return false
  1064. } else if (this.create.temp.times == '' && this.create.temp.treatmethod == '') {
  1065. this.$message({
  1066. type: 'error',
  1067. message: '班次/剩料处理方式不能为空',
  1068. duration: 2000
  1069. })
  1070. return false
  1071. } else if (this.create.temp.sort == '' || this.create.temp.sort == 0) {
  1072. this.$message({
  1073. type: 'error',
  1074. message: '车次不能为空且大于0',
  1075. duration: 2000
  1076. })
  1077. return false
  1078. } else if (this.create.temp.barid == '') {
  1079. this.$message({
  1080. type: 'error',
  1081. message: '栏舍不能为空',
  1082. duration: 2000
  1083. })
  1084. return false
  1085. } else if (this.create.temp.tmrid == '') {
  1086. this.$message({
  1087. type: 'error',
  1088. message: 'TMR编号不能为空',
  1089. duration: 2000
  1090. })
  1091. return false
  1092. } else if (this.create.temp.times == '') {
  1093. this.$message({
  1094. type: 'error',
  1095. message: '班次不能为空',
  1096. duration: 2000
  1097. })
  1098. return false
  1099. } else if (this.create.temp.treatmethod == '') {
  1100. this.$message({
  1101. type: 'error',
  1102. message: '剩料处理方式不能为空',
  1103. duration: 2000
  1104. })
  1105. return false
  1106. }
  1107. if (this.create.temp.treatmethod !== '' && this.create.temp.treatmethod == '转投剩料') {
  1108. if (this.create.temp.useinbarid == '') {
  1109. this.$message({
  1110. type: 'error',
  1111. message: '转投栏舍不能为空',
  1112. duration: 2000
  1113. })
  1114. return false
  1115. }
  1116. }
  1117. if (this.create.temp.treatmethod !== '' && this.create.temp.treatmethod == '继续饲喂') {
  1118. // this.create.temp.useinbarid = '0'
  1119. this.create.temp.useinbarid = '0'
  1120. }
  1121. if (this.create.temp.rtime == '' || this.create.temp.rtime == null) {
  1122. this.create.temp.rtime = ''
  1123. }
  1124. for (let i = 0; i < this.table.list.length; i++) {
  1125. if (this.create.temp.sort == this.table.list[i].sort) {
  1126. if (this.create.temp.myId !== this.table.list[i].myId) {
  1127. this.$message({
  1128. type: 'error',
  1129. message: '车次不可重复',
  1130. duration: 2000
  1131. })
  1132. return false
  1133. }
  1134. }
  1135. }
  1136. var isInteger = /^\d+$/
  1137. if (this.create.temp.sort !== '') {
  1138. if (!isInteger.test(parseFloat(this.create.temp.sort))) {
  1139. this.$message({
  1140. type: 'error',
  1141. message: '车次请输入整数',
  1142. duration: 2000
  1143. })
  1144. return false
  1145. }
  1146. }
  1147. this.isokDisable = true
  1148. setTimeout(() => {
  1149. this.isokDisable = false
  1150. }, 1000)
  1151. console.log(this.create.temp)
  1152. var ztlasArr = [{
  1153. "bname": "",
  1154. "id": this.create.temp.useinbarid
  1155. }]
  1156. this.transferbarsList.forEach(function(item) {
  1157. if (item.id == ztlasArr[0].id) {
  1158. ztlasArr[0].bname = item.bname
  1159. }
  1160. })
  1161. console.log("ztlasArr", ztlasArr)
  1162. var ssss_data = {
  1163. "common": {
  1164. "returnmap": "0"
  1165. },
  1166. "data": [{
  1167. "name": "insertRemainplan",
  1168. "type": "e",
  1169. "parammaps": {
  1170. pastureid: Cookies.get('pastureid'),
  1171. sort: this.create.temp.sort,
  1172. tmrid: this.create.temp.tmrid,
  1173. tmrcode: this.create.temp.tmrcode,
  1174. enable: this.create.temp.enable,
  1175. times: this.create.temp.times,
  1176. lppid: this.create.temp.lppid,
  1177. lppcode: this.create.temp.lppcode,
  1178. rtime: this.create.temp.rtime,
  1179. treatmethod: this.create.temp.treatmethod
  1180. }
  1181. },
  1182. {
  1183. "name": "insertSpotList",
  1184. "resultmaps": {
  1185. 'list': this.barsNamesIdTempArr
  1186. },
  1187. "children": [{
  1188. "name": "insertRpdetail",
  1189. "type": "e",
  1190. "parammaps": {
  1191. "pastureid": Cookies.get('pastureid'),
  1192. "bigid": "@insertRemainplan.LastInsertId",
  1193. "barid": "@insertSpotList.id",
  1194. "bar": "@insertSpotList.bname",
  1195. "type": 0
  1196. }
  1197. }]
  1198. },
  1199. {
  1200. "name": "insertRpdetail",
  1201. "type": "e",
  1202. "parammaps": {
  1203. "pastureid": "1647917519",
  1204. "bigid": "@insertRemainplan.LastInsertId",
  1205. "barid": ztlasArr[0].id,
  1206. "bar": ztlasArr[0].bname,
  1207. "type": 1
  1208. }
  1209. }
  1210. ]
  1211. }
  1212. // this.requestParam.common = { 'returnmap': '0' }
  1213. // this.requestParam.data = []
  1214. // this.requestParam.data[0] = { 'name': 'insertRemainplan', 'type': 'e', 'parammaps': {
  1215. // pastureid: Cookies.get('pastureid'),
  1216. // sort: this.create.temp.sort,
  1217. // tmrid: this.create.temp.tmrid,
  1218. // tmrcode: this.create.temp.tmrcode,
  1219. // enable: this.create.temp.enable,
  1220. // times: this.create.temp.times,
  1221. // lppid: this.create.temp.lppid,
  1222. // lppcode: this.create.temp.lppcode,
  1223. // rtime: this.create.temp.rtime,
  1224. // treatmethod: this.create.temp.treatmethod
  1225. // }}
  1226. // this.requestParam.data[1] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.barsNamesIdTempArr }}
  1227. // this.requestParam.data[1].children = []
  1228. // this.requestParam.data[1].children[0] = { 'name': 'insertRpdetail', 'type': 'e', 'parammaps': {
  1229. // pastureid: Cookies.get('pastureid'),
  1230. // bigid: '@insertRemainplan.LastInsertId',
  1231. // barid: '@insertSpotList.id',
  1232. // bar: '@insertSpotList.bname',
  1233. // type: 0
  1234. // }}
  1235. // this.requestParam.data[2] = { 'name': 'insertSpotList2', 'resultmaps': { 'list': this.useinbarNamesIdTempArr }}
  1236. // this.requestParam.data[2].children = []
  1237. // this.requestParam.data[2].children[0] = { 'name': 'insertRpdetail', 'type': 'e', 'parammaps': {
  1238. // pastureid: Cookies.get('pastureid'),
  1239. // bigid: '@insertRemainplan.LastInsertId',
  1240. // barid: '@insertSpotList2.id',
  1241. // bar: '@insertSpotList2.bname',
  1242. // type: 1
  1243. // }}
  1244. ExecDataByConfig(ssss_data).then(response => {
  1245. console.log('新增保存发送参数', this.requestParam)
  1246. if (response.msg === 'fail') {
  1247. this.$notify({
  1248. title: this.$t('driver.saveFail'),
  1249. message: response.data,
  1250. type: 'warning',
  1251. duration: 2000
  1252. })
  1253. } else {
  1254. this.$notify({
  1255. title: this.$t('common.succes'),
  1256. message: this.$t('driver.saveSuccess'),
  1257. type: 'success',
  1258. duration: 2000
  1259. })
  1260. this.create.dialogFormVisible = false
  1261. this.getList()
  1262. this.dropState = false
  1263. }
  1264. })
  1265. }
  1266. })
  1267. },
  1268. createCancel(row) {
  1269. console.log('点击了新增取消')
  1270. this.dropState = false
  1271. for (let i = 0; i < this.table.list.length; i++) {
  1272. if (row.myId === this.table.list[i].myId) {
  1273. var listIndex = this.table.list.indexOf(this.table.list[i])
  1274. }
  1275. if (listIndex > -1) {
  1276. this.table.list.splice(listIndex, 1)
  1277. return
  1278. }
  1279. }
  1280. },
  1281. // 模板编辑
  1282. // handleUpdate(row) {
  1283. // for (let i = 0; i < this.table.list.length; i++) {
  1284. // if (this.table.list[i].Edit == true) {
  1285. // this.$message({ type: 'error', message: this.$t('driver.messageNote'), duration: 2000 })
  1286. // return false
  1287. // }
  1288. // }
  1289. // console.log(row, '=========')
  1290. // // 编辑true,不可编辑false
  1291. // row.Edit = true
  1292. // row.NoEdit = false
  1293. // // 新增false,编辑false,编辑保存true
  1294. // row.isCreate = false
  1295. // row.isUpdate = false
  1296. // row.isUpdateSave = true
  1297. // row.temp = {}
  1298. // row.temp2 = {}
  1299. // if (row.useinbarid == '0') { row.useinbarid = [] }
  1300. // if (row.barid == undefined) { row.barid = [] }
  1301. // if (row.tmrid == undefined) { row.tmrid = '' }
  1302. // if (row.times == undefined) { row.times = '' }
  1303. // if (row.treatmethod == undefined) { row.treatmethod = '' }
  1304. // // this.getCarFollowParm.parammaps.times = row.times
  1305. // if (row.times == '第一班') {
  1306. // this.getCarFollowParm.parammaps.times = 1
  1307. // row.times = '1'
  1308. // } else if (row.times == '第二班') {
  1309. // this.getCarFollowParm.parammaps.times = 2
  1310. // row.times = '2'
  1311. // } else if (row.times == '第三班') {
  1312. // this.getCarFollowParm.parammaps.times = 3
  1313. // row.times = '3'
  1314. // } else if (row.times == '第四班') {
  1315. // this.getCarFollowParm.parammaps.times = 4
  1316. // row.times = '4'
  1317. // } else if (row.times == '第五班') {
  1318. // this.getCarFollowParm.parammaps.times = 5
  1319. // row.times = '5'
  1320. // }
  1321. // GetDataByName(this.getCarFollowParm).then(response => {
  1322. // console.log('撒料计划车次跟随列表数据', response.data.list)
  1323. // if (response.data.list !== null) {
  1324. // this.carFollowList = response.data.list
  1325. // }
  1326. // })
  1327. // console.log(row, '====')
  1328. // if (row.lppcode == undefined) {
  1329. // this.$set(row, 'lppid', '')
  1330. // }
  1331. // this.getTransferbarsList()
  1332. // // row.barid = row.qstrids.split(',')
  1333. // // row.useinbarid = row.hstrids.split(',')
  1334. // var arr3 = []
  1335. // for (let i = 0; i < row.barid.length; i++) {
  1336. // arr3.push(this.barsList.find(obj => obj.id == row.barid[i]))
  1337. // }
  1338. // this.barsNamesIdTempArr = arr3
  1339. // var arr4 = []
  1340. // setTimeout(() => {
  1341. // for (let i = 0; i < row.useinbarid.length; i++) {
  1342. // arr4.push(this.transferbarsList.find(obj => obj.id == row.useinbarid[i]))
  1343. // }
  1344. // }, 500)
  1345. // this.useinbarNamesIdTempArr = arr4
  1346. // console.log(this.useinbarNamesIdTempArr, 'this.useinbarNamesIdTempArr')
  1347. // this.dropState = true
  1348. // },
  1349. // 编辑
  1350. handleUpdate(row) {
  1351. console.log('点击了编辑', row)
  1352. this.create.dialogStatus = 'update'
  1353. this.dialogFull = false
  1354. this.create.dialogFormVisible = true
  1355. this.getCarFollowParm.parammaps.times = row.times
  1356. this.getCarFollowList()
  1357. row.temp = {}
  1358. row.temp2 = {}
  1359. if (row.treatmethod == "继续饲喂") {
  1360. this.isDis = true
  1361. } else {
  1362. this.isDis = false
  1363. }
  1364. // if (row.useinbarid == '0') { row.useinbarid = "" }
  1365. if (row.barid == undefined) {
  1366. row.barid = []
  1367. }
  1368. if (row.tmrid == undefined) {
  1369. row.tmrid = ''
  1370. }
  1371. if (row.times == undefined) {
  1372. row.times = ''
  1373. }
  1374. if (row.treatmethod == undefined) {
  1375. row.treatmethod = ''
  1376. }
  1377. // this.getCarFollowParm.parammaps.times = row.times
  1378. if (row.times == '第一班') {
  1379. this.getCarFollowParm.parammaps.times = 1
  1380. row.times = '1'
  1381. } else if (row.times == '第二班') {
  1382. this.getCarFollowParm.parammaps.times = 2
  1383. row.times = '2'
  1384. } else if (row.times == '第三班') {
  1385. this.getCarFollowParm.parammaps.times = 3
  1386. row.times = '3'
  1387. } else if (row.times == '第四班') {
  1388. this.getCarFollowParm.parammaps.times = 4
  1389. row.times = '4'
  1390. } else if (row.times == '第五班') {
  1391. this.getCarFollowParm.parammaps.times = 5
  1392. row.times = '5'
  1393. }
  1394. GetDataByName(this.getCarFollowParm).then(response => {
  1395. console.log('撒料计划车次跟随列表数据', response.data.list)
  1396. if (response.data.list !== null) {
  1397. this.carFollowList = response.data.list
  1398. }else{
  1399. this.carFollowList = []
  1400. }
  1401. })
  1402. if(this.carFollowList.length>0){
  1403. if(this.carFollowList.find(obj => obj.id == row.lppid).lppcode == undefined){
  1404. this.$set(row, 'lppid', '')
  1405. }
  1406. }else{
  1407. this.$set(row, 'lppid', '')
  1408. }
  1409. if (row.lppcode == undefined) {
  1410. this.$set(row, 'lppid', '')
  1411. }
  1412. this.getTransferbarsList()
  1413. row.barid = row.qstrids.split(',')
  1414. row.useinbarid = row.hstrids
  1415. if (row.useinbarid == '0') {
  1416. row.useinbarid = ""
  1417. }
  1418. var arr3 = []
  1419. for (let i = 0; i < row.barid.length; i++) {
  1420. arr3.push(this.barsList.find(obj => obj.id == row.barid[i]))
  1421. }
  1422. this.barsNamesIdTempArr = arr3
  1423. this.barSortList = arr3
  1424. var arr4 = []
  1425. // setTimeout(() => {
  1426. // for (let i = 0; i < row.useinbarid.length; i++) {
  1427. // arr4.push(this.transferbarsList.find(obj => obj.id == row.useinbarid[i]))
  1428. // }
  1429. // }, 500)
  1430. // this.useinbarNamesIdTempArr = arr4
  1431. // console.log(this.useinbarNamesIdTempArr, 'this.useinbarNamesIdTempArr')
  1432. this.dropState = true
  1433. this.create.temp = Object.assign({}, row)
  1434. },
  1435. // updateData(row) {
  1436. // console.log('点击了编辑保存', row)
  1437. // console.log(this.useinbarNamesIdTempArr, 'this.useinbarNamesIdTempArr========')
  1438. // if (row.rtime == null || row.rtime == 'null') {
  1439. // row.rtime = ''
  1440. // }
  1441. // if (row.barid == '' && row.tmrid == '' && row.times == '' && row.treatmethod == '') {
  1442. // this.$message({ type: 'error', message: '栏舍/TMR编号/班次/剩料处理方式不能为空', duration: 2000 })
  1443. // return false
  1444. // } else if (row.tmrid == '' && row.times == '' && row.treatmethod == '') {
  1445. // this.$message({ type: 'error', message: 'TMR编号/班次/剩料处理方式不能为空', duration: 2000 })
  1446. // return false
  1447. // } else if (row.times == '' && row.treatmethod == '') {
  1448. // this.$message({ type: 'error', message: '班次/混剩料处理方式不能为空', duration: 2000 })
  1449. // return false
  1450. // } else if (row.barid == '') {
  1451. // this.$message({ type: 'error', message: '栏舍不能为空', duration: 2000 })
  1452. // return false
  1453. // } else if (row.tmrid == '') {
  1454. // this.$message({ type: 'error', message: 'TMR编号不能为空', duration: 2000 })
  1455. // return false
  1456. // } else if (row.times == '') {
  1457. // this.$message({ type: 'error', message: '班次不能为空', duration: 2000 })
  1458. // return false
  1459. // } else if (row.treatmethod == '') {
  1460. // this.$message({ type: 'error', message: '剩料处理方式不能为空', duration: 2000 })
  1461. // return false
  1462. // }
  1463. // if (row.treatmethod !== '' && row.treatmethod == '转投剩料') {
  1464. // if (row.useinbarid == '') {
  1465. // this.$message({ type: 'error', message: '转投栏舍不能为空', duration: 2000 })
  1466. // return false
  1467. // }
  1468. // }
  1469. // if (row.treatmethod !== '' && row.treatmethod == '继续饲喂') {
  1470. // row.useinbarid = '0'
  1471. // }
  1472. // if (row.rtime == '' || row.rtime == null) {
  1473. // row.rtime = ''
  1474. // }
  1475. // for (let i = 0; i < this.table.list.length; i++) {
  1476. // if (row.sort == this.table.list[i].sort) {
  1477. // if (row.id !== this.table.list[i].id) {
  1478. // this.$message({ type: 'error', message: '车次不可重复', duration: 2000 })
  1479. // return false
  1480. // }
  1481. // }
  1482. // }
  1483. // var isInteger = /^\d+$/
  1484. // if (row.sort !== '') {
  1485. // if (!isInteger.test(parseFloat(row.sort))) {
  1486. // this.$message({ type: 'error', message: '车次请输入整数', duration: 2000 })
  1487. // return false
  1488. // }
  1489. // }
  1490. // if (row.sort == '' || row.sort == 0) {
  1491. // this.$message({ type: 'error', message: '车次不能为空且大于0', duration: 2000 })
  1492. // return false
  1493. // }
  1494. // if (row.times == '第一班') {
  1495. // row.times = 1
  1496. // } else if (row.times == '第二班') {
  1497. // row.times = 2
  1498. // } else if (row.times == '第三班') {
  1499. // row.times = 3
  1500. // } else if (row.times == '第四班') {
  1501. // row.times = 4
  1502. // } else if (row.times == '第五班') {
  1503. // row.times = 5
  1504. // }
  1505. // this.isokDisable = true
  1506. // setTimeout(() => {
  1507. // this.isokDisable = false
  1508. // }, 1000)
  1509. // this.requestParam = {}
  1510. // this.requestParam.common = { 'returnmap': '0' }
  1511. // this.requestParam.data = []
  1512. // this.requestParam.data[0] = { 'name': 'updateRemainplan', 'type': 'e', 'parammaps': {
  1513. // pastureid: row.pastureid,
  1514. // id: row.id,
  1515. // sort: row.sort,
  1516. // tmrid: row.tmrid,
  1517. // tmrcode: row.tmrcode,
  1518. // enable: row.enable,
  1519. // times: row.times,
  1520. // lppid: row.lppid,
  1521. // lppcode: row.lppcode,
  1522. // rtime: row.rtime,
  1523. // treatmethod: row.treatmethod
  1524. // }}
  1525. // this.requestParam.data[1] = { 'name': 'deleteRpdetail', 'type': 'e', 'parammaps': {
  1526. // pastureid: row.pastureid,
  1527. // bigid: row.id
  1528. // }}
  1529. // this.requestParam.data[2] = { 'name': 'insertSpotList2', 'resultmaps': { 'list': this.barsNamesIdTempArr }}
  1530. // this.requestParam.data[2].children = []
  1531. // this.requestParam.data[2].children[0] = { 'name': 'insertRpdetail', 'type': 'e', 'parammaps': {
  1532. // pastureid: row.pastureid,
  1533. // bigid: row.id,
  1534. // barid: '@insertSpotList2.id',
  1535. // bar: '@insertSpotList2.bname',
  1536. // type: 0
  1537. // }}
  1538. // this.requestParam.data[3] = { 'name': 'insertSpotList3', 'resultmaps': { 'list': this.useinbarNamesIdTempArr }}
  1539. // this.requestParam.data[3].children = []
  1540. // this.requestParam.data[3].children[0] = { 'name': 'insertRpdetail', 'type': 'e', 'parammaps': {
  1541. // pastureid: row.pastureid,
  1542. // bigid: row.id,
  1543. // barid: '@insertSpotList3.id',
  1544. // bar: '@insertSpotList3.bname',
  1545. // type: 1
  1546. // }}
  1547. // ExecDataByConfig(this.requestParam).then(response => {
  1548. // console.log('新增保存发送参数', this.requestParam)
  1549. // if (response.msg === 'fail') {
  1550. // this.$notify({ title: this.$t('driver.saveFail'), message: response.data, type: 'warning', duration: 2000 })
  1551. // } else {
  1552. // this.$notify({ title: this.$t('common.succes'), message: this.$t('driver.saveSuccess'), type: 'success', duration: 2000 })
  1553. // this.getList()
  1554. // this.dropState = false
  1555. // }
  1556. // })
  1557. // },
  1558. updateData() {
  1559. console.log('点击了编辑保存')
  1560. this.isokDisable = true
  1561. setTimeout(() => {
  1562. this.isokDisable = false
  1563. }, 1000)
  1564. this.$refs['temp'].validate(valid => {
  1565. if (valid) {
  1566. if (this.create.temp.rtime == null || this.create.temp.rtime == 'null') {
  1567. this.create.temp.rtime = ''
  1568. }
  1569. if (this.create.temp.barid == '' && this.create.temp.tmrid == '' && this.create.temp.times == '' && this
  1570. .create.temp.treatmethod == '') {
  1571. this.$message({
  1572. type: 'error',
  1573. message: '栏舍/TMR编号/班次/剩料处理方式不能为空',
  1574. duration: 2000
  1575. })
  1576. return false
  1577. } else if (this.create.temp.tmrid == '' && this.create.temp.times == '' && this.create.temp
  1578. .treatmethod == '') {
  1579. this.$message({
  1580. type: 'error',
  1581. message: 'TMR编号/班次/剩料处理方式不能为空',
  1582. duration: 2000
  1583. })
  1584. return false
  1585. } else if (this.create.temp.times == '' && this.create.temp.treatmethod == '') {
  1586. this.$message({
  1587. type: 'error',
  1588. message: '班次/混剩料处理方式不能为空',
  1589. duration: 2000
  1590. })
  1591. return false
  1592. } else if (this.create.temp.barid == '') {
  1593. this.$message({
  1594. type: 'error',
  1595. message: '栏舍不能为空',
  1596. duration: 2000
  1597. })
  1598. return false
  1599. } else if (this.create.temp.tmrid == '') {
  1600. this.$message({
  1601. type: 'error',
  1602. message: 'TMR编号不能为空',
  1603. duration: 2000
  1604. })
  1605. return false
  1606. } else if (this.create.temp.times == '') {
  1607. this.$message({
  1608. type: 'error',
  1609. message: '班次不能为空',
  1610. duration: 2000
  1611. })
  1612. return false
  1613. } else if (this.create.temp.treatmethod == '') {
  1614. this.$message({
  1615. type: 'error',
  1616. message: '剩料处理方式不能为空',
  1617. duration: 2000
  1618. })
  1619. return false
  1620. }
  1621. if (this.create.temp.treatmethod !== '' && this.create.temp.treatmethod == '转投剩料') {
  1622. if (this.create.temp.useinbarid == '') {
  1623. this.$message({
  1624. type: 'error',
  1625. message: '转投栏舍不能为空',
  1626. duration: 2000
  1627. })
  1628. return false
  1629. }
  1630. }
  1631. if (this.create.temp.treatmethod !== '' && this.create.temp.treatmethod == '继续饲喂') {
  1632. this.create.temp.useinbarid = '0'
  1633. }
  1634. if (this.create.temp.rtime == '' || this.create.temp.rtime == null) {
  1635. this.create.temp.rtime = ''
  1636. }
  1637. for (let i = 0; i < this.table.list.length; i++) {
  1638. if (this.create.temp.sort == this.table.list[i].sort) {
  1639. if (this.create.temp.id !== this.table.list[i].id) {
  1640. this.$message({
  1641. type: 'error',
  1642. message: '车次不可重复',
  1643. duration: 2000
  1644. })
  1645. return false
  1646. }
  1647. }
  1648. }
  1649. var isInteger = /^\d+$/
  1650. if (this.create.temp.sort !== '') {
  1651. if (!isInteger.test(parseFloat(this.create.temp.sort))) {
  1652. this.$message({
  1653. type: 'error',
  1654. message: '车次请输入整数',
  1655. duration: 2000
  1656. })
  1657. return false
  1658. }
  1659. }
  1660. if (this.create.temp.sort == '' || this.create.temp.sort == 0) {
  1661. this.$message({
  1662. type: 'error',
  1663. message: '车次不能为空且大于0',
  1664. duration: 2000
  1665. })
  1666. return false
  1667. }
  1668. if (this.create.temp.times == '第一班') {
  1669. this.create.temp.times = 1
  1670. } else if (this.create.temp.times == '第二班') {
  1671. this.create.temp.times = 2
  1672. } else if (this.create.temp.times == '第三班') {
  1673. this.create.temp.times = 3
  1674. } else if (this.create.temp.times == '第四班') {
  1675. this.create.temp.times = 4
  1676. } else if (this.create.temp.times == '第五班') {
  1677. this.create.temp.times = 5
  1678. }
  1679. this.isokDisable = true
  1680. setTimeout(() => {
  1681. this.isokDisable = false
  1682. }, 1000)
  1683. var ztlasArr2 = [{
  1684. "bname": "",
  1685. "id": this.create.temp.useinbarid
  1686. }]
  1687. this.transferbarsList.forEach(function(item) {
  1688. if (item.id == ztlasArr2[0].id) {
  1689. ztlasArr2[0].bname = item.bname
  1690. }
  1691. })
  1692. console.log("ztlasArr2", ztlasArr2)
  1693. var ssss_data2 = {
  1694. "common": {
  1695. "returnmap": "0"
  1696. },
  1697. "data": [{
  1698. "name": "updateRemainplan",
  1699. "type": "e",
  1700. "parammaps": {
  1701. pastureid: this.create.temp.pastureid,
  1702. id: this.create.temp.id,
  1703. sort: this.create.temp.sort,
  1704. tmrid: this.create.temp.tmrid,
  1705. tmrcode: this.create.temp.tmrcode,
  1706. enable: this.create.temp.enable,
  1707. times: this.create.temp.times,
  1708. lppid: this.create.temp.lppid,
  1709. lppcode: this.create.temp.lppcode,
  1710. rtime: this.create.temp.rtime,
  1711. treatmethod: this.create.temp.treatmethod
  1712. }
  1713. },
  1714. {
  1715. "name": "deleteRpdetail",
  1716. "type": "e",
  1717. "parammaps": {
  1718. pastureid: this.create.temp.pastureid,
  1719. bigid: this.create.temp.id
  1720. }
  1721. },
  1722. {
  1723. "name": "insertSpotList2",
  1724. "resultmaps": {
  1725. "list": this.barsNamesIdTempArr
  1726. },
  1727. "children": [{
  1728. "name": "insertRpdetail",
  1729. "type": "e",
  1730. "parammaps": {
  1731. pastureid: this.create.temp.pastureid,
  1732. bigid: this.create.temp.id,
  1733. "barid": "@insertSpotList2.id",
  1734. "bar": "@insertSpotList2.bname",
  1735. "type": 0
  1736. }
  1737. }]
  1738. },
  1739. {
  1740. "name": "insertRpdetail",
  1741. "type": "e",
  1742. "parammaps": {
  1743. "pastureid": this.create.temp.pastureid,
  1744. "bigid": this.create.temp.id,
  1745. "barid": ztlasArr2[0].id,
  1746. "bar": ztlasArr2[0].bname,
  1747. "type": 1
  1748. }
  1749. }
  1750. ]
  1751. }
  1752. // this.requestParam = {}
  1753. // this.requestParam.common = { 'returnmap': '0' }
  1754. // this.requestParam.data = []
  1755. // this.requestParam.data[0] = { 'name': 'updateRemainplan', 'type': 'e', 'parammaps': {
  1756. // pastureid: this.create.temp.pastureid,
  1757. // id: this.create.temp.id,
  1758. // sort: this.create.temp.sort,
  1759. // tmrid: this.create.temp.tmrid,
  1760. // tmrcode: this.create.temp.tmrcode,
  1761. // enable: this.create.temp.enable,
  1762. // times: this.create.temp.times,
  1763. // lppid: this.create.temp.lppid,
  1764. // lppcode: this.create.temp.lppcode,
  1765. // rtime: this.create.temp.rtime,
  1766. // treatmethod: this.create.temp.treatmethod
  1767. // }}
  1768. // this.requestParam.data[1] = { 'name': 'deleteRpdetail', 'type': 'e', 'parammaps': {
  1769. // pastureid: this.create.temp.pastureid,
  1770. // bigid: this.create.temp.id
  1771. // }}
  1772. // this.requestParam.data[2] = { 'name': 'insertSpotList2', 'resultmaps': { 'list': this.barsNamesIdTempArr }}
  1773. // this.requestParam.data[2].children = []
  1774. // this.requestParam.data[2].children[0] = { 'name': 'insertRpdetail', 'type': 'e', 'parammaps': {
  1775. // pastureid: this.create.temp.pastureid,
  1776. // bigid: this.create.temp.id,
  1777. // barid: '@insertSpotList2.id',
  1778. // bar: '@insertSpotList2.bname',
  1779. // type: 0
  1780. // }}
  1781. // // this.requestParam.data[3] = { 'name': 'insertSpotList3', 'resultmaps': { 'list': this.useinbarNamesIdTempArr }}
  1782. // this.requestParam.data[3] = { 'name': 'insertSpotList3', 'resultmaps': { 'list': this.barsNamesIdTempArr }}
  1783. // this.requestParam.data[3].children = []
  1784. // this.requestParam.data[3].children[0] = { 'name': 'insertRpdetail', 'type': 'e', 'parammaps': {
  1785. // pastureid: this.create.temp.pastureid,
  1786. // bigid: this.create.temp.id,
  1787. // barid: '@insertSpotList3.id',
  1788. // bar: '@insertSpotList3.bname',
  1789. // type: 1
  1790. // }}
  1791. ExecDataByConfig(ssss_data2).then(response => {
  1792. console.log('保存发送参数', this.requestParam)
  1793. if (response.msg === 'fail') {
  1794. this.$notify({
  1795. title: this.$t('driver.saveFail'),
  1796. message: response.data,
  1797. type: 'warning',
  1798. duration: 2000
  1799. })
  1800. } else {
  1801. this.$notify({
  1802. title: this.$t('common.succes'),
  1803. message: this.$t('driver.saveSuccess'),
  1804. type: 'success',
  1805. duration: 2000
  1806. })
  1807. this.create.dialogFormVisible = false
  1808. this.getList()
  1809. this.dropState = false
  1810. }
  1811. })
  1812. }
  1813. })
  1814. },
  1815. updateCancel(row) {
  1816. console.log('点击了编辑取消')
  1817. // 编辑false,不可编辑true
  1818. row.Edit = false
  1819. row.NoEdit = true
  1820. // 新增false,编辑true,编辑保存false
  1821. row.isCreate = false
  1822. row.isUpdate = true
  1823. row.isUpdateSave = false
  1824. this.getList()
  1825. this.dropState = false
  1826. },
  1827. handleSelect(val) {
  1828. console.log('勾选数据', val)
  1829. this.selectList = val
  1830. },
  1831. // 行内删除
  1832. handleRowDelete(row) {
  1833. console.log(row, '点击了行删除')
  1834. MessageBox.confirm( this.$t('common.delMsg'), {
  1835. confirmButtonText: this.$t('common.confirm'),
  1836. confirmButtonText: this.$t('common.cancel'),
  1837. type: 'warning'
  1838. }).then(() => {
  1839. this.selectList = []
  1840. this.requestParam = {}
  1841. this.requestParam.name = 'deleteRemainplan'
  1842. this.requestParam.parammaps = {}
  1843. this.requestParam.parammaps.pastureid = row.pastureid
  1844. this.requestParam.parammaps.id = row.id
  1845. PostDataByName(this.requestParam).then(response => {
  1846. if (response.msg === 'fail') {
  1847. this.$notify({
  1848. title: this.$t('common.delfail'),
  1849. message: response.data,
  1850. type: 'warning',
  1851. duration: 2000
  1852. })
  1853. } else {
  1854. this.$notify({
  1855. title: this.$t('common.succes'),
  1856. message: this.$t('common.delSuccess'),
  1857. type: 'success',
  1858. duration: 2000
  1859. })
  1860. this.getList()
  1861. }
  1862. })
  1863. }).catch(() => {
  1864. this.$message({
  1865. type: 'info',
  1866. message: this.$t('common.cancelMsg')
  1867. })
  1868. })
  1869. },
  1870. // 减少车次
  1871. form_delete() {
  1872. if (this.selectList.length == 0) {
  1873. this.$message({
  1874. type: 'error',
  1875. message:this.$t('message.msg12'),
  1876. duration: 2000
  1877. })
  1878. } else {
  1879. MessageBox.confirm(this.$t('message.msg29')+ this.selectList.length + this.$t('message.msg31'), {
  1880. confirmButtonText: this.$t('common.confirm'),
  1881. confirmButtonText: this.$t('common.cancel'),
  1882. type: 'warning'
  1883. }).then(() => {
  1884. console.log(this.selectList)
  1885. this.requestParam.common = {
  1886. 'returnmap': '0'
  1887. }
  1888. this.requestParam.data = []
  1889. this.requestParam.data[0] = {
  1890. 'name': 'insertSpotList',
  1891. 'resultmaps': {
  1892. 'list': this.selectList
  1893. }
  1894. }
  1895. this.requestParam.data[0].children = []
  1896. this.requestParam.data[0].children[0] = {
  1897. 'name': 'deleteRemainplan',
  1898. 'type': 'e',
  1899. 'parammaps': {
  1900. id: '@insertSpotList.id',
  1901. pastureid: '@insertSpotList.pastureid'
  1902. }
  1903. }
  1904. ExecDataByConfig(this.requestParam).then(response => {
  1905. console.log('删除保存发送参数', this.requestParam)
  1906. if (response.msg === 'fail') {
  1907. this.$notify({
  1908. title: this.$t('common.delfail'),
  1909. message: response.data,
  1910. type: 'warning',
  1911. duration: 2000
  1912. })
  1913. } else {
  1914. this.$notify({
  1915. title: '',
  1916. message: this.$t('common.delSuccess'),
  1917. type: 'success',
  1918. duration: 2000
  1919. })
  1920. this.getList()
  1921. }
  1922. })
  1923. })
  1924. }
  1925. },
  1926. // 校验
  1927. handleCheck() {
  1928. console.log('点击了校验')
  1929. this.check.dialogStatus = 'check'
  1930. this.check.dialogFormVisible = true
  1931. this.getCheckList()
  1932. },
  1933. getCheckList() {
  1934. GetDataByName(this.check.getCheckParm).then(response => {
  1935. if (response.data.list[0].bnames !== undefined) {
  1936. this.check.temp.isDistribution = 0
  1937. this.check.temp.bnames = response.data.list[0].bnames
  1938. } else {
  1939. this.check.temp = {}
  1940. this.check.temp.isDistribution = 1
  1941. }
  1942. })
  1943. },
  1944. // 历史记录
  1945. handleHistoryRecords() {
  1946. console.log('点击了历史记录')
  1947. this.dialogFull = false
  1948. this.history.dialogStatus = 'history'
  1949. this.history.dialogFormVisible = true
  1950. this.getDateList()
  1951. },
  1952. // 历史时间
  1953. getDateList() {
  1954. GetDataByName(this.history.getdataDateParm).then(response => {
  1955. console.log('table数据', response.data.list)
  1956. if (response.data.list !== null) {
  1957. this.history.getdataListParm.parammaps.date = response.data.list[0].maxdate
  1958. this.getHistoryList()
  1959. } else {
  1960. this.history.getdataListParm.parammaps.date = ''
  1961. }
  1962. })
  1963. },
  1964. changeDate() {
  1965. this.getHistoryList()
  1966. },
  1967. // 应用
  1968. handleApplication() {
  1969. console.log('点击了应用')
  1970. MessageBox.confirm(this.$t('message.msg58') + this.history.getdataListParm.parammaps.date + this.$t('message.msg59'), {
  1971. confirmButtonText: this.$t('common.confirm'),
  1972. confirmButtonText: this.$t('common.cancel'),
  1973. type: 'warning'
  1974. }).then(() => {
  1975. this.requestParam.name = 'applyFPdate'
  1976. this.requestParam.parammaps = {}
  1977. this.requestParam.parammaps.pastureid = Cookies.get('pastureid')
  1978. this.requestParam.parammaps.date = this.history.getdataListParm.parammaps.date
  1979. PostDataByName(this.requestParam).then(response => {
  1980. if (response.msg === 'fail') {
  1981. this.$notify({
  1982. title: this.$t('driver.saveFail'),
  1983. message: response.data,
  1984. type: 'warning',
  1985. duration: 2000
  1986. })
  1987. } else {
  1988. this.$notify({
  1989. title: this.$t('common.succes'),
  1990. message: this.$t('driver.saveSuccess'),
  1991. type: 'success',
  1992. duration: 2000
  1993. })
  1994. this.getHistoryIsDisplay()
  1995. this.getList()
  1996. }
  1997. })
  1998. }).catch(() => {
  1999. this.$message({
  2000. type: 'info',
  2001. message: this.$t('message.msg41')
  2002. })
  2003. })
  2004. },
  2005. getHistoryList() {
  2006. this.history.listLoading = true
  2007. GetDataByName(this.history.getdataListParm).then(response => {
  2008. console.log('table数据', response.data.list)
  2009. if (response.data.list !== null) {
  2010. console.log('table数据', response.data.list)
  2011. this.history.list = response.data.list
  2012. this.history.pageNum = response.data.pageNum
  2013. this.history.pageSize = response.data.pageSize
  2014. this.history.total = response.data.total
  2015. } else {
  2016. this.history.list = []
  2017. }
  2018. setTimeout(() => {
  2019. this.history.listLoading = false
  2020. }, 100)
  2021. })
  2022. },
  2023. handleTakeEffect() {
  2024. if (this.selectList.length == 0) {
  2025. this.$message({
  2026. type: 'error',
  2027. message:this.$t('message.msg12'),
  2028. duration: 2000
  2029. })
  2030. } else {
  2031. MessageBox.confirm(this.$t('message.msg29')+ this.selectList.length + '条信息,是否生效?', {
  2032. confirmButtonText: this.$t('common.confirm'),
  2033. confirmButtonText: this.$t('common.cancel'),
  2034. type: 'warning'
  2035. }).then(() => {
  2036. for (let i = 0; i < this.selectList.length; i++) {
  2037. // this.$set(this.selectList[i], 'enable', '1')
  2038. this.selectList[i].enable = 1
  2039. }
  2040. console.log('生效', this.selectList)
  2041. this.requestParam.common = {
  2042. 'returnmap': '0'
  2043. }
  2044. this.requestParam.data = []
  2045. this.requestParam.data[0] = {
  2046. 'name': 'insertSpotList',
  2047. 'resultmaps': {
  2048. 'list': this.selectList
  2049. }
  2050. }
  2051. this.requestParam.data[0].children = []
  2052. this.requestParam.data[0].children[0] = {
  2053. 'name': 'updateRemainplanEnable',
  2054. 'type': 'e',
  2055. 'parammaps': {
  2056. enable: '@insertSpotList.enable',
  2057. id: '@insertSpotList.id',
  2058. pastureid: '@insertSpotList.pastureid'
  2059. }
  2060. }
  2061. ExecDataByConfig(this.requestParam).then(response => {
  2062. console.log('生效保存发送参数', this.requestParam)
  2063. if (response.msg === 'fail') {
  2064. this.$notify({
  2065. title:this.$t('message.msg11'),
  2066. message: response.data,
  2067. type: 'warning',
  2068. duration: 2000
  2069. })
  2070. } else {
  2071. this.$notify({
  2072. title: '',
  2073. message:this.$t('message.msg10'),
  2074. type: 'success',
  2075. duration: 2000
  2076. })
  2077. this.getList()
  2078. }
  2079. })
  2080. })
  2081. }
  2082. },
  2083. handleDisable() {
  2084. if (this.selectList.length == 0) {
  2085. this.$message({
  2086. type: 'error',
  2087. message:this.$t('message.msg12'),
  2088. duration: 2000
  2089. })
  2090. } else {
  2091. MessageBox.confirm(this.$t('message.msg29')+ this.selectList.length + this.$t('message.msg30'), {
  2092. confirmButtonText: this.$t('common.confirm'),
  2093. confirmButtonText: this.$t('common.cancel'),
  2094. type: 'warning'
  2095. }).then(() => {
  2096. for (let i = 0; i < this.selectList.length; i++) {
  2097. // this.$set(this.selectList[i], 'enable', '1')
  2098. this.selectList[i].enable = 0
  2099. }
  2100. console.log('禁用', this.selectList)
  2101. this.requestParam.common = {
  2102. 'returnmap': '0'
  2103. }
  2104. this.requestParam.data = []
  2105. this.requestParam.data[0] = {
  2106. 'name': 'insertSpotList',
  2107. 'resultmaps': {
  2108. 'list': this.selectList
  2109. }
  2110. }
  2111. this.requestParam.data[0].children = []
  2112. this.requestParam.data[0].children[0] = {
  2113. 'name': 'updateRemainplanEnable',
  2114. 'type': 'e',
  2115. 'parammaps': {
  2116. enable: '@insertSpotList.enable',
  2117. id: '@insertSpotList.id',
  2118. pastureid: '@insertSpotList.pastureid'
  2119. }
  2120. }
  2121. ExecDataByConfig(this.requestParam).then(response => {
  2122. console.log('禁用保存发送参数', this.requestParam)
  2123. if (response.msg === 'fail') {
  2124. this.$notify({
  2125. title:this.$t('message.msg13'),
  2126. message: response.data,
  2127. type: 'warning',
  2128. duration: 2000
  2129. })
  2130. } else {
  2131. this.$notify({
  2132. title: '',
  2133. message:this.$t('message.msg15'),
  2134. type: 'success',
  2135. duration: 2000
  2136. })
  2137. this.getList()
  2138. }
  2139. })
  2140. })
  2141. }
  2142. }
  2143. }
  2144. }
  2145. </script>
  2146. <style lang="scss" scoped>
  2147. .search {
  2148. clear: both;
  2149. }
  2150. .table {
  2151. margin-top: 10px;
  2152. }
  2153. </style>