ffcd6b0661c069828245a9fa5f9c5f4aa6a0113e.svn-base 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956
  1. <template>
  2. <div class="app-container">
  3. <div class="operation">
  4. <el-button class="success" style="float: left;" @click="handleCreate">新增车次</el-button>
  5. <el-button class="danger" style="float: left;" @click="handleDelete">减少车次</el-button>
  6. <el-button class="success" style="float: left;" @click="handleCheck">校验</el-button>
  7. <el-button class="import" style="float: right;" @click="handleHistoryRecords">历史记录</el-button>
  8. </div>
  9. <div class="search" />
  10. <div class="table">
  11. <el-table
  12. id="table"
  13. :key="table.tableKey"
  14. v-loading="table.listLoading"
  15. element-loading-text="给我一点时间"
  16. :data="table.list"
  17. border
  18. fit
  19. highlight-current-row
  20. style="width: 100%;"
  21. :row-style="rowStyle"
  22. :cell-style="cellStyle"
  23. class="elTable table-fixed"
  24. row-key="id"
  25. @selection-change="handleSelect"
  26. >
  27. <el-table-column type="selection" min-width="50" />
  28. <el-table-column label="车次" min-width="110px" align="center">
  29. <template slot-scope="scope">
  30. <span v-if="scope.row.NoEdit">{{ scope.row.sort }}</span>
  31. <el-input v-if="scope.row.Edit" v-model="scope.row.sort" type="number" style="width:95%;padding:10px 0;" />
  32. </template>
  33. </el-table-column>
  34. <el-table-column label="栏舍" min-width="150px" align="center">
  35. <template slot-scope="scope">
  36. <span v-if="scope.row.NoEdit">{{ scope.row.qstr }}</span>
  37. <el-select v-if="scope.row.Edit" v-model="scope.row.barid" filterable multiple placeholder="" class="filter-item" style="width:95%;padding:10px 0;" @change="changeBars">
  38. <el-option v-for="item in barsList" :key="item.id" :label="item.bname" :value="item.id" />
  39. </el-select>
  40. </template>
  41. </el-table-column>
  42. <el-table-column label="TMR编号" prop="weight" min-width="130px" align="center">
  43. <template slot-scope="scope">
  44. <span v-if="scope.row.NoEdit">{{ scope.row.tmrcode }}</span>
  45. <el-select v-if="scope.row.Edit" v-model="scope.row.tmrid" filterable placeholder="" class="filter-item" style="width:95%;padding:10px 0;" @change="(value)=> {changeTMRNumber(value, scope.row)}">
  46. <el-option v-for="item in TMRNumberList" :key="item.id" :label="item.tname" :value="item.id" />
  47. </el-select>
  48. </template>
  49. </el-table-column>
  50. <el-table-column label="生效" min-width="130px" align="center">
  51. <template slot-scope="scope">
  52. <el-switch v-model="scope.row.enable" :disabled="scope.row.NoEdit==true" active-color="#13ce66" inactive-color="#ff4949" :active-value="1" :inactive-value="0" @change="handleEnableChange(scope.$index, scope.row)" />
  53. </template>
  54. </el-table-column>
  55. <el-table-column label="班次" min-width="130px" align="center">
  56. <template slot-scope="scope">
  57. <span v-if="scope.row.NoEdit">{{ scope.row.times }}</span>
  58. <el-select v-if="scope.row.Edit" v-model="scope.row.times" filterable placeholder="" class="filter-item" style="width:95%;padding:10px 0;" @change="(value)=> {changeTimes(value, scope.row)}">
  59. <el-option v-for="item in frequencyList" :key="item.id" :label="item.name" :value="item.id" />
  60. </el-select>
  61. </template>
  62. </el-table-column>
  63. <el-table-column label="撒料计划车次跟随" min-width="130px" align="center">
  64. <template slot-scope="scope">
  65. <span v-if="scope.row.NoEdit">{{ scope.row.lppcode }}</span>
  66. <el-select v-if="scope.row.Edit" v-model="scope.row.lppid" filterable placeholder="" class="filter-item" style="width:95%;padding:10px 0;" @change="(value)=> {changeCarFollow(value, scope.row)}">
  67. <el-option v-for="item in carFollowList" :key="item.id" :label="item.lppcode" :value="item.id" />
  68. </el-select>
  69. </template>
  70. </el-table-column>
  71. <el-table-column label="时间" min-width="180px" align="center">
  72. <template slot-scope="scope">
  73. <span v-if="scope.row.NoEdit">{{ scope.row.rtime }}</span>
  74. <el-time-picker v-if="scope.row.Edit" v-model="scope.row.rtime" type="datetime" placeholder="选择时间" format="HH:mm" value-format="HH:mm" style="display: inline-block;width: 95%;" />
  75. </template>
  76. </el-table-column>
  77. <el-table-column label="剩料处理方式" min-width="130px" align="center">
  78. <template slot-scope="scope">
  79. <span v-if="scope.row.NoEdit">{{ scope.row.treatmethod }}</span>
  80. <el-select v-if="scope.row.Edit" v-model="scope.row.treatmethod" filterable placeholder="" class="filter-item" style="width:95%;padding:10px 0;" @change="(value)=> {changeResidueDisposal(value, scope.row)}">
  81. <el-option v-for="item in residueDisposalList" :key="item.value" :label="item.label" :value="item.label" />
  82. </el-select>
  83. </template>
  84. </el-table-column>
  85. <el-table-column label="转投栏舍" min-width="130px" align="center">
  86. <template slot-scope="scope">
  87. <span v-if="scope.row.NoEdit">{{ scope.row.hstr }}</span>
  88. <el-select v-if="scope.row.Edit" v-model="scope.row.useinbarid" :disabled="scope.row.treatmethod == '继续饲喂'" multiple filterable placeholder="" class="filter-item" style="width:95%;padding:10px 0;" @change="changeTransferbars">
  89. <el-option v-for="item in transferbarsList" :key="item.id" :label="item.bname" :value="item.id" />
  90. </el-select>
  91. </template>
  92. </el-table-column>
  93. <el-table-column label="操作" align="center" width="320" class-name="small-padding fixed-width" fixed="right">
  94. <template slot-scope="{row}">
  95. <!-- 新增 -->
  96. <el-button v-if="row.isCreate" class="miniSuccess" :disabled="isokDisable" @click="createData(row)">保存</el-button>
  97. <el-button v-if="row.isCreate" class="minCancel" @click="createCancel(row)">取消</el-button>
  98. <!-- 编辑 -->
  99. <el-button v-if="row.isUpdate" class="miniSuccess" @click="handleUpdate(row)">编辑</el-button>
  100. <el-button v-if="row.isUpdate" class="miniDanger" @click="handleRowDelete(row)">删除</el-button>
  101. <!-- 编辑保存 -->
  102. <el-button v-if="row.isUpdateSave" class="miniSuccess" :disabled="isokDisable" @click="updateData(row)">保存</el-button>
  103. <el-button v-if="row.isUpdateSave" class="minCancel" @click="updateCancel(row)">取消</el-button>
  104. </template>
  105. </el-table-column>
  106. </el-table>
  107. </div>
  108. <!-- 历史记录 -->
  109. <el-dialog :title="textMap[history.dialogStatus]" :destroy-on-close="true" :visible.sync="history.dialogFormVisible" :close-on-click-modal="false" width="90%">
  110. <div class="app-history">
  111. <div class="search">
  112. <el-date-picker v-model="history.getdataListParm.parammaps.date" type="date" placeholder="请选择历史记录时间" :clearable="false" style="width: 180px;" format="yyyy-MM-dd" value-format="yyyy-MM-dd" @change="changeDate" />
  113. <el-button class="successBorder" @click="handleApplication">应用</el-button>
  114. </div>
  115. <div class="table">
  116. <el-table
  117. :key="history.tableKey"
  118. v-loading="history.listLoading"
  119. element-loading-text="给我一点时间"
  120. :data="history.list"
  121. border
  122. fit
  123. highlight-current-row
  124. style="width: 100%;"
  125. :row-style="rowStyle"
  126. :cell-style="cellStyle"
  127. class="elTable table-fixed"
  128. >
  129. <el-table-column label="车次" min-width="130px" align="center">
  130. <template slot-scope="scope">
  131. <span>{{ scope.row.sort }}</span>
  132. </template>
  133. </el-table-column>
  134. <el-table-column label="栏舍" min-width="130px" align="center">
  135. <template slot-scope="scope">
  136. <span>{{ scope.row.bar }}</span>
  137. </template>
  138. </el-table-column>
  139. <el-table-column label="TMR编号" prop="weight" min-width="130px" align="center">
  140. <template slot-scope="scope">
  141. <span>{{ scope.row.tmrcode }}</span>
  142. </template>
  143. </el-table-column>
  144. <el-table-column label="生效" min-width="130px" align="center">
  145. <template slot-scope="scope">
  146. <el-switch v-model="scope.row.enable" :disabled="scope.row.NoEdit==true" active-color="#13ce66" inactive-color="#ff4949" :active-value="1" :inactive-value="0" @change="handleEnableChange(scope.$index, scope.row)" />
  147. </template>
  148. </el-table-column>
  149. <el-table-column label="班次" min-width="130px" align="center">
  150. <template slot-scope="scope">
  151. <span>{{ scope.row.times }}</span>
  152. </template>
  153. </el-table-column>
  154. <el-table-column label="发料计划车次跟随" min-width="130px" align="center">
  155. <template slot-scope="scope">
  156. <span>{{ scope.row.lppcode }}</span>
  157. </template>
  158. </el-table-column>
  159. <el-table-column label="时间" min-width="180px" align="center">
  160. <template slot-scope="scope">
  161. <span>{{ scope.row.rtime }}</span>
  162. </template>
  163. </el-table-column>
  164. <el-table-column label="剩料处理方式" min-width="130px" align="center">
  165. <template slot-scope="scope">
  166. <span>{{ scope.row.treatmethod }}</span>
  167. </template>
  168. </el-table-column>
  169. <el-table-column label="转投栏舍" min-width="130px" align="center">
  170. <template slot-scope="scope">
  171. <span>{{ scope.row.useinbar }}</span>
  172. </template>
  173. </el-table-column>
  174. </el-table>
  175. <pagination v-show="history.total>0" :total="history.total" :page.sync="history.getdataListParm.offset" :limit.sync="history.getdataListParm.pagecount" @pagination="getHistoryList" />
  176. </div>
  177. </div>
  178. <div slot="footer" class="dialog-footer" style="bottom: 10px;">
  179. <el-button class="cancelClose" @click="history.dialogFormVisible = false; ">关闭</el-button>
  180. </div>
  181. </el-dialog>
  182. <el-dialog :title="textMap[check.dialogStatus]" :destroy-on-close="true" :visible.sync="check.dialogFormVisible" :close-on-click-modal="false" width="30%">
  183. <div class="check">
  184. <p>当前有栏舍未分配,建议及时进行分配,未分配栏舍如下:</p>
  185. 1-6;1-7;1-8
  186. </div>
  187. <div slot="footer" class="dialog-footer" style="bottom: 10px;">
  188. <el-button class="miniSuccess" @click="check.dialogFormVisible=false;">确认</el-button>
  189. </div>
  190. </el-dialog>
  191. </div>
  192. </template>
  193. <script>
  194. import { GetDataByName, GetDataByNames, PostDataByName, failproccess, ExecDataByConfig } from '@/api/common'
  195. import Pagination from '@/components/Pagination'
  196. import Sortable from 'sortablejs'
  197. import Cookies from 'js-cookie'
  198. import { MessageBox } from 'element-ui'
  199. export default {
  200. name: 'SurplusMaterialPlan',
  201. components: { Pagination },
  202. data() {
  203. return {
  204. requestParams: [
  205. { name: 'getBarListEnable', offset: 0, pagecount: 0, parammaps: { pastureid: Cookies.get('pastureid') }},
  206. { name: 'getTMRYHList', offset: 0, pagecount: 0, parammaps: { pastureid: Cookies.get('pastureid') }}
  207. ],
  208. barsList: [], // 栏舍
  209. residueDisposalList: [{ value: '0', label: '转投剩料' }, { value: '1', label: '继续饲喂' }], // 剩料处理方式
  210. TMRNumberList: [], // TMR编号
  211. barsNamesIdTempArr: [],
  212. useinbarNamesIdTempArr: [],
  213. // 班次
  214. maxTime: {
  215. getMaxTimesParm: {
  216. name: 'getSysoptEnable',
  217. page: 1,
  218. offset: 1,
  219. pagecount: 1,
  220. returntype: 'Map',
  221. parammaps: {
  222. pastureid: Cookies.get('pastureid'),
  223. inforname: 'times'
  224. }
  225. }
  226. },
  227. frequencyList: [], // 班次
  228. getCarFollowParm: {
  229. name: 'getLPPCodeList',
  230. offset: 0,
  231. pagecount: 0,
  232. parammaps: {
  233. pastureid: Cookies.get('pastureid'),
  234. times: ''
  235. }
  236. },
  237. carFollowList: [], // 发料计划车次跟随
  238. getTransferbarsParm: {
  239. name: 'getBarListEnable',
  240. offset: 0,
  241. pagecount: 0,
  242. parammaps: {
  243. pastureid: Cookies.get('pastureid'),
  244. times: ''
  245. }
  246. },
  247. transferbarsList: [], // 转头栏舍
  248. table: {
  249. getdataListParm: {
  250. name: 'getRemainplanList',
  251. page: 1,
  252. offset: 1,
  253. pagecount: 10,
  254. returntype: 'Map',
  255. parammaps: {
  256. pastureid: Cookies.get('pastureid')
  257. }
  258. },
  259. tableKey: 0,
  260. list: [],
  261. total: 0,
  262. listLoading: true,
  263. temp: {},
  264. temp2: {}
  265. },
  266. history: {
  267. dialogFormVisible: false,
  268. dialogStatus: '',
  269. temp: {},
  270. rules: {},
  271. tableKey: 0,
  272. list: [],
  273. total: 0,
  274. listLoading: true,
  275. getdataDateParm: {
  276. name: 'getRPMaxDate',
  277. page: 1,
  278. offset: 1,
  279. pagecount: 10,
  280. returntype: 'Map',
  281. parammaps: {
  282. pastureid: Cookies.get('pastureid')
  283. }
  284. },
  285. getdataListParm: {
  286. name: 'getRemainplanListDate',
  287. page: 1,
  288. offset: 1,
  289. pagecount: 10,
  290. returntype: 'Map',
  291. parammaps: {
  292. pastureid: Cookies.get('pastureid'),
  293. date: ''
  294. }
  295. }
  296. },
  297. check: {
  298. dialogFormVisible: false,
  299. dialogStatus: ''
  300. },
  301. textMap: {
  302. history: '历史记录',
  303. check: '提示'
  304. },
  305. requestParam: {},
  306. selectList: [],
  307. isokDisable: false,
  308. rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' },
  309. cellStyle: { padding: 0 + 'px' },
  310. dropState: false
  311. }
  312. },
  313. created() {
  314. this.getList()
  315. this.getDownList()
  316. this.getIsDisplay()
  317. },
  318. methods: {
  319. getDownList() {
  320. GetDataByNames(this.requestParams).then(response => {
  321. this.barsList = response.data.getBarListEnable.list
  322. this.TMRNumberList = response.data.getTMRYHList.list
  323. })
  324. },
  325. getIsDisplay() {
  326. GetDataByName(this.maxTime.getMaxTimesParm).then(response => {
  327. if (response.data.list[0].inforvalue == 1) {
  328. this.frequencyList = [{ id: '1', name: '第一班' }]
  329. } else if (response.data.list[0].inforvalue == 2) {
  330. this.frequencyList = [{ id: '1', name: '第一班' }, { id: '2', name: '第二班' }]
  331. } else if (response.data.list[0].inforvalue == 3) {
  332. this.frequencyList = [{ id: '1', name: '第一班' }, { id: '2', name: '第二班' }, { id: '3', name: '第三班' }]
  333. } else if (response.data.list[0].inforvalue == 4) {
  334. this.frequencyList = [{ id: '1', name: '第一班' }, { id: '2', name: '第二班' }, { id: '3', name: '第三班' }, { id: '4', name: '第四班' }]
  335. }
  336. })
  337. },
  338. getList() {
  339. this.table.listLoading = true
  340. GetDataByName(this.table.getdataListParm).then(response => {
  341. console.log('table数据', response.data.list)
  342. if (response.data.list !== null) {
  343. for (let i = 0; i < response.data.list.length; i++) {
  344. this.$set(response.data.list[i], 'Edit', false) // 编辑
  345. this.$set(response.data.list[i], 'NoEdit', true) // 不可编辑/输入
  346. this.$set(response.data.list[i], 'groupEdit', false) // 饲料组编辑
  347. this.$set(response.data.list[i], 'groupNoEdit', true) // 饲料组不可编辑
  348. this.$set(response.data.list[i], 'isCreate', false) // 新增操作
  349. this.$set(response.data.list[i], 'isUpdate', true) // 编辑操作
  350. this.$set(response.data.list[i], 'isUpdateSave', false) // 编辑保存
  351. }
  352. var arr = response.data.list
  353. arr.map(function(i, j) {
  354. // console.log(i, '====')
  355. if (i.qstrids) {
  356. return i.barid = i.qstrids.split(',')
  357. } else {
  358. return i.barid = []
  359. }
  360. })
  361. arr.map(function(i, j) {
  362. if (i.hstrids) {
  363. return i.useinbarid = i.hstrids.split(',')
  364. } else {
  365. return i.useinbarid = []
  366. }
  367. })
  368. this.table.list = arr
  369. // this.table.list = response.data.list
  370. this.table.pageNum = response.data.pageNum
  371. this.table.pageSize = response.data.pageSize
  372. this.rowDrop()
  373. this.table.total = response.data.total
  374. } else {
  375. this.table.list = []
  376. }
  377. setTimeout(() => {
  378. this.table.listLoading = false
  379. }, 100)
  380. })
  381. },
  382. handleEnableChange() {
  383. console.log('点击了生效')
  384. },
  385. // 行拖拽
  386. rowDrop() {
  387. console.log(document.querySelector('#table .el-table__body-wrapper tbody'))
  388. const tbody = document.querySelector('#table .el-table__body-wrapper tbody')
  389. const that = this
  390. var sortable = Sortable.create(tbody, {
  391. disabled: that.dropState,
  392. onChoose({ newIndex, oldIndex }) {
  393. if (that.dropState == true) {
  394. sortable.destroy()
  395. }
  396. },
  397. onEnd({ newIndex, oldIndex }) {
  398. const currRow = that.table.list.splice(oldIndex, 1)[0]
  399. that.table.list.splice(newIndex, 0, currRow)
  400. console.log('索引', newIndex)
  401. console.log('拖动数据', currRow)
  402. console.log('上', that.table.list[newIndex - 1])
  403. console.log('下', that.table.list[newIndex + 1])
  404. }
  405. })
  406. },
  407. // 模板新增
  408. handleCreate() {
  409. console.log('点击了新增车次')
  410. // 编辑true/不可编辑false
  411. // 新增操true,编辑false,编辑保存false
  412. this.dropState = true
  413. for (let i = 0; i < this.table.list.length; i++) {
  414. if (this.table.list[i].Edit === true) {
  415. console.log(123)
  416. this.$message({ type: 'error', message: '当前内容未保存,请点击取消或保存继续进行操作', duration: 2000 })
  417. return false
  418. }
  419. }
  420. var sort = 0
  421. if (this.table.list.length > 0) {
  422. sort = parseInt(this.table.list[this.table.list.length - 1].sort) + 1
  423. } else {
  424. sort = '0'
  425. }
  426. this.table.list.unshift({ 'myId': (new Date()).valueOf(), 'Edit': true, 'NoEdit': false, 'isCreate': true, 'isUpdate': false, 'isUpdateSave': false, 'enable': 1, 'sort': sort, 'ftid': '', 'ftname': '', 'tmrcode': '', 'tmrid': '', 'times': '', 'lppcode': '', 'lppid': '', 'rtime': '', barid: '', 'treatmethod': '', 'useinbar': '', 'useinbarid': '' })
  427. console.log(this.table.list)
  428. },
  429. // 栏舍
  430. changeBars(val) {
  431. console.log('点击了栏舍', val)
  432. var arr = []
  433. this.barsList.forEach(function(i) {
  434. val.forEach(function(j) {
  435. if (i.id == j) { arr.push(i) }
  436. })
  437. })
  438. console.log('点击了栏舍', arr)
  439. this.table.temp.barid = arr
  440. this.barsNamesIdTempArr = arr
  441. this.$forceUpdate()
  442. },
  443. // TMR编号
  444. changeTMRNumber(item, row) {
  445. row.tmrcode = this.TMRNumberList.find(obj => obj.id == item).tname
  446. },
  447. // 撒料计划车次跟随列表
  448. changeCarFollow(item, row) {
  449. row.lppcode = this.carFollowList.find(obj => obj.id == item).lppcode
  450. },
  451. // 班次
  452. changeTimes(item, row) {
  453. console.log(item, row)
  454. this.getCarFollowParm.parammaps.times = item
  455. this.getCarFollowList(row)
  456. },
  457. // 撒料计划车次跟随列表
  458. getCarFollowList(row) {
  459. GetDataByName(this.getCarFollowParm).then(response => {
  460. console.log('撒料计划车次跟随列表数据', response.data.list)
  461. if (response.data.list !== null) {
  462. this.carFollowList = response.data.list
  463. row.lppid = this.carFollowList[0].id
  464. row.lppcode = this.carFollowList[0].lppcode
  465. }
  466. })
  467. },
  468. changeResidueDisposal(item, row) {
  469. console.log(item, row)
  470. this.getCarFollowParm.parammaps.times = item
  471. this.getTransferbarsList()
  472. },
  473. getTransferbarsList() {
  474. GetDataByName(this.getTransferbarsParm).then(response => {
  475. console.log('撒料计划车次跟随列表数据', response.data.list)
  476. if (response.data.list !== null) {
  477. this.transferbarsList = response.data.list
  478. }
  479. })
  480. },
  481. // 转头栏舍
  482. changeTransferbars(val) {
  483. console.log('点击了转头栏舍', val)
  484. var arr2 = []
  485. this.transferbarsList.forEach(function(i) {
  486. val.forEach(function(j) {
  487. if (i.id == j) { arr2.push(i) }
  488. })
  489. })
  490. this.table.temp2.useinbar = arr2
  491. this.useinbarNamesIdTempArr = arr2
  492. this.$forceUpdate()
  493. },
  494. createData(row) {
  495. console.log('点击了新增保存', row)
  496. if (row.sort == '' && row.barid == '' && row.tmrid == '' && row.times == '' && row.treatmethod == '') {
  497. this.$message({ type: 'error', message: '车次/栏舍/TMR编号/班次/剩料处理方式不能为空', duration: 2000 })
  498. return false
  499. } else if (row.barid == '' && row.tmrid == '' && row.times == '' && row.treatmethod == '') {
  500. this.$message({ type: 'error', message: '栏舍/TMR编号/班次/剩料处理方式不能为空', duration: 2000 })
  501. return false
  502. } else if (row.tmrid == '' && row.times == '' && row.treatmethod == '') {
  503. this.$message({ type: 'error', message: 'TMR编号/班次/剩料处理方式不能为空', duration: 2000 })
  504. return false
  505. } else if (row.times == '' && row.treatmethod == '') {
  506. this.$message({ type: 'error', message: '班次/剩料处理方式不能为空', duration: 2000 })
  507. return false
  508. } else if (row.sort == '') {
  509. console.log(row.sort, 0 == '')
  510. this.$message({ type: 'error', message: '车次不能为空', duration: 2000 })
  511. return false
  512. } else if (row.barid == '') {
  513. this.$message({ type: 'error', message: '栏舍不能为空', duration: 2000 })
  514. return false
  515. } else if (row.tmrid == '') {
  516. this.$message({ type: 'error', message: 'TMR编号不能为空', duration: 2000 })
  517. return false
  518. } else if (row.times == '') {
  519. this.$message({ type: 'error', message: '班次不能为空', duration: 2000 })
  520. return false
  521. } else if (row.treatmethod == '') {
  522. this.$message({ type: 'error', message: '剩料处理方式不能为空', duration: 2000 })
  523. return false
  524. }
  525. if (row.treatmethod !== '' && row.treatmethod == '转投剩料') {
  526. if (row.useinbarid == '') {
  527. this.$message({ type: 'error', message: '转投栏舍不能为空', duration: 2000 })
  528. return false
  529. }
  530. }
  531. if (row.treatmethod !== '' && row.treatmethod == '继续饲喂') {
  532. row.useinbarid = '0'
  533. }
  534. if (row.rtime == '' || row.rtime == null) {
  535. row.rtime = ''
  536. }
  537. for (let i = 0; i < this.table.list.length; i++) {
  538. if (row.sort == this.table.list[i].sort) {
  539. if (row.myId !== this.table.list[i].myId) {
  540. this.$message({ type: 'error', message: '车次不可重复', duration: 2000 })
  541. return false
  542. }
  543. }
  544. }
  545. var isInteger = /^\d+$/
  546. if (row.sort !== '') {
  547. if (!isInteger.test(parseFloat(row.sort))) {
  548. this.$message({ type: 'error', message: '车次请输入整数', duration: 2000 })
  549. return false
  550. }
  551. }
  552. this.isokDisable = true
  553. setTimeout(() => {
  554. this.isokDisable = false
  555. }, 1000)
  556. this.requestParam.common = { 'returnmap': '0' }
  557. this.requestParam.data = []
  558. this.requestParam.data[0] = { 'name': 'insertRemainplan', 'type': 'e', 'parammaps': {
  559. pastureid: Cookies.get('pastureid'),
  560. sort: row.sort,
  561. tmrid: row.tmrid,
  562. tmrcode: row.tmrcode,
  563. enable: row.enable,
  564. times: row.times,
  565. lppid: row.lppid,
  566. lppcode: row.lppcode,
  567. rtime: row.rtime,
  568. treatmethod: row.treatmethod
  569. }}
  570. this.requestParam.data[1] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.barsNamesIdTempArr }}
  571. this.requestParam.data[1].children = []
  572. this.requestParam.data[1].children[0] = { 'name': 'insertRpdetail', 'type': 'e', 'parammaps': {
  573. pastureid: Cookies.get('pastureid'),
  574. bigid: '@insertRemainplan.LastInsertId',
  575. barid: '@insertSpotList.id',
  576. bar: '@insertSpotList.bname',
  577. type: 0
  578. }}
  579. this.requestParam.data[2] = { 'name': 'insertSpotList2', 'resultmaps': { 'list': this.useinbarNamesIdTempArr }}
  580. this.requestParam.data[2].children = []
  581. this.requestParam.data[2].children[0] = { 'name': 'insertRpdetail', 'type': 'e', 'parammaps': {
  582. pastureid: Cookies.get('pastureid'),
  583. bigid: '@insertRemainplan.LastInsertId',
  584. barid: '@insertSpotList2.id',
  585. bar: '@insertSpotList2.bname',
  586. type: 1
  587. }}
  588. ExecDataByConfig(this.requestParam).then(response => {
  589. console.log('新增保存发送参数', this.requestParam)
  590. if (response.msg === 'fail') {
  591. failproccess(response, this.$notify)
  592. } else {
  593. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  594. this.getList()
  595. this.dropState = false
  596. }
  597. })
  598. },
  599. createCancel(row) {
  600. console.log('点击了新增取消')
  601. this.dropState = false
  602. for (let i = 0; i < this.table.list.length; i++) {
  603. if (row.myId === this.table.list[i].myId) {
  604. var listIndex = this.table.list.indexOf(this.table.list[i])
  605. }
  606. if (listIndex > -1) {
  607. this.table.list.splice(listIndex, 1)
  608. return
  609. }
  610. }
  611. },
  612. // 模板编辑
  613. handleUpdate(row) {
  614. for (let i = 0; i < this.table.list.length; i++) {
  615. if (this.table.list[i].Edit == true) {
  616. this.$message({ type: 'error', message: '当前内容未保存,请点击取消或保存继续进行操作', duration: 2000 })
  617. return false
  618. }
  619. }
  620. // 编辑true,不可编辑false
  621. row.Edit = true
  622. row.NoEdit = false
  623. // 新增false,编辑false,编辑保存true
  624. row.isCreate = false
  625. row.isUpdate = false
  626. row.isUpdateSave = true
  627. row.temp = {}
  628. row.temp2 = {}
  629. if (row.useinbarid == '0') { row.useinbarid = [] }
  630. if (row.barid == undefined) { row.barid = [] }
  631. if (row.tmrid == undefined) { row.tmrid = '' }
  632. if (row.times == undefined) { row.times = '' }
  633. if (row.treatmethod == undefined) { row.treatmethod = '' }
  634. // this.getCarFollowParm.parammaps.times = row.times
  635. if (row.times == '第一班') {
  636. this.getCarFollowParm.parammaps.times = 1
  637. } else if (row.times == '第二班') {
  638. this.getCarFollowParm.parammaps.times = 2
  639. } else if (row.times == '第三班') {
  640. this.getCarFollowParm.parammaps.times = 3
  641. } else if (row.times == '第四班') {
  642. this.getCarFollowParm.parammaps.times = 4
  643. } else if (row.times == '第五班') {
  644. this.getCarFollowParm.parammaps.times = 5
  645. }
  646. this.getCarFollowList(row)
  647. this.getTransferbarsList()
  648. // row.barid = row.qstrids.split(',')
  649. // row.useinbarid = row.hstrids.split(',')
  650. var arr3 = []
  651. for (let i = 0; i < row.barid.length; i++) {
  652. arr3.push(this.barsList.find(obj => obj.id == row.barid[i]))
  653. }
  654. this.barsNamesIdTempArr = arr3
  655. var arr4 = []
  656. setTimeout(() => {
  657. for (let i = 0; i < row.useinbarid.length; i++) {
  658. arr4.push(this.transferbarsList.find(obj => obj.id == row.useinbarid[i]))
  659. }
  660. }, 1000)
  661. this.useinbarNamesIdTempArr = arr4
  662. this.dropState = true
  663. },
  664. updateData(row) {
  665. console.log('点击了编辑保存', row)
  666. if (row.barid == '' && row.tmrid == '' && row.times == '' && row.treatmethod == '') {
  667. this.$message({ type: 'error', message: '栏舍/TMR编号/班次/剩料处理方式不能为空', duration: 2000 })
  668. return false
  669. } else if (row.tmrid == '' && row.times == '' && row.treatmethod == '') {
  670. this.$message({ type: 'error', message: 'TMR编号/班次/剩料处理方式不能为空', duration: 2000 })
  671. return false
  672. } else if (row.times == '' && row.treatmethod == '') {
  673. this.$message({ type: 'error', message: '班次/混剩料处理方式不能为空', duration: 2000 })
  674. return false
  675. } else if (row.barid == '') {
  676. this.$message({ type: 'error', message: '栏舍不能为空', duration: 2000 })
  677. return false
  678. } else if (row.tmrid == '') {
  679. this.$message({ type: 'error', message: 'TMR编号不能为空', duration: 2000 })
  680. return false
  681. } else if (row.times == '') {
  682. this.$message({ type: 'error', message: '班次不能为空', duration: 2000 })
  683. return false
  684. } else if (row.treatmethod == '') {
  685. this.$message({ type: 'error', message: '剩料处理方式不能为空', duration: 2000 })
  686. return false
  687. }
  688. if (row.treatmethod !== '' && row.treatmethod == '转投剩料') {
  689. if (row.useinbarid == '') {
  690. this.$message({ type: 'error', message: '转投栏舍不能为空', duration: 2000 })
  691. return false
  692. }
  693. }
  694. if (row.treatmethod !== '' && row.treatmethod == '继续饲喂') {
  695. row.useinbarid = '0'
  696. }
  697. if (row.rtime == '' || row.rtime == null) {
  698. row.rtime = ''
  699. }
  700. for (let i = 0; i < this.table.list.length; i++) {
  701. if (row.sort == this.table.list[i].sort) {
  702. if (row.id !== this.table.list[i].id) {
  703. this.$message({ type: 'error', message: '车次不可重复', duration: 2000 })
  704. return false
  705. }
  706. }
  707. }
  708. var isInteger = /^\d+$/
  709. if (row.sort !== '') {
  710. if (!isInteger.test(parseFloat(row.sort))) {
  711. this.$message({ type: 'error', message: '车次请输入整数', duration: 2000 })
  712. return false
  713. }
  714. }
  715. if (row.times == '第一班') {
  716. row.times = 1
  717. } else if (row.times == '第二班') {
  718. row.times = 2
  719. } else if (row.times == '第三班') {
  720. row.times = 3
  721. } else if (row.times == '第四班') {
  722. row.times = 4
  723. } else if (row.times == '第五班') {
  724. row.times = 5
  725. }
  726. this.isokDisable = true
  727. setTimeout(() => {
  728. this.isokDisable = false
  729. }, 1000)
  730. this.requestParam = {}
  731. this.requestParam.common = { 'returnmap': '0' }
  732. this.requestParam.data = []
  733. this.requestParam.data[0] = { 'name': 'updateRemainplan', 'type': 'e', 'parammaps': {
  734. pastureid: row.pastureid,
  735. id: row.id,
  736. sort: row.sort,
  737. tmrid: row.tmrid,
  738. tmrcode: row.tmrcode,
  739. enable: row.enable,
  740. times: row.times,
  741. lppid: row.lppid,
  742. lppcode: row.lppcode,
  743. rtime: row.rtime,
  744. treatmethod: row.treatmethod
  745. }}
  746. this.requestParam.data[1] = { 'name': 'deleteRpdetail', 'type': 'e', 'parammaps': {
  747. pastureid: row.pastureid,
  748. bigid: row.id
  749. }}
  750. this.requestParam.data[2] = { 'name': 'insertSpotList2', 'resultmaps': { 'list': this.barsNamesIdTempArr }}
  751. this.requestParam.data[2].children = []
  752. this.requestParam.data[2].children[0] = { 'name': 'insertRpdetail', 'type': 'e', 'parammaps': {
  753. pastureid: row.pastureid,
  754. bigid: row.id,
  755. barid: '@insertSpotList.id',
  756. bar: '@insertSpotList.bname',
  757. type: 0
  758. }}
  759. this.requestParam.data[3] = { 'name': 'insertSpotList2', 'resultmaps': { 'list': this.useinbarNamesIdTempArr }}
  760. this.requestParam.data[3].children = []
  761. this.requestParam.data[3].children[0] = { 'name': 'insertRpdetail', 'type': 'e', 'parammaps': {
  762. pastureid: row.pastureid,
  763. bigid: row.id,
  764. barid: '@insertSpotList.id',
  765. bar: '@insertSpotList.bname',
  766. type: 1
  767. }}
  768. ExecDataByConfig(this.requestParam).then(response => {
  769. console.log('新增保存发送参数', this.requestParam)
  770. if (response.msg === 'fail') {
  771. failproccess(response, this.$notify)
  772. } else {
  773. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  774. this.getList()
  775. this.dropState = false
  776. }
  777. })
  778. // this.requestParam.name = 'updateRemainplan'
  779. // this.requestParam.parammaps = row
  780. // this.requestParam.parammaps.pastureid = Cookies.get('pastureid')
  781. // PostDataByName(this.requestParam).then(response => {
  782. // console.log('新增保存发送参数', this.requestParam)
  783. // if (response.msg !== 'fail') {
  784. // this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  785. // this.getList()
  786. // this.dropState = false
  787. // } else {
  788. // failproccess(response, this.$notify)
  789. // }
  790. // })
  791. },
  792. updateCancel(row) {
  793. console.log('点击了编辑取消')
  794. // 编辑false,不可编辑true
  795. row.Edit = false
  796. row.NoEdit = true
  797. // 新增false,编辑true,编辑保存false
  798. row.isCreate = false
  799. row.isUpdate = true
  800. row.isUpdateSave = false
  801. this.getList()
  802. this.dropState = false
  803. },
  804. handleSelect(val) {
  805. console.log('勾选数据', val)
  806. this.selectList = val
  807. },
  808. // 行内删除
  809. handleRowDelete(row) {
  810. console.log(row, '点击了行删除')
  811. MessageBox.confirm('是否确认删除此信息?', {
  812. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  813. }).then(() => {
  814. this.selectList = []
  815. this.requestParam = {}
  816. this.requestParam.name = 'deleteRemainplan'
  817. this.requestParam.parammaps = {}
  818. this.requestParam.parammaps.pastureid = row.pastureid
  819. this.requestParam.parammaps.id = row.id
  820. PostDataByName(this.requestParam).then(response => {
  821. if (response.msg === 'fail') {
  822. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  823. } else {
  824. this.$notify({ title: '成功', message: '删除成功', type: 'success', duration: 2000 })
  825. this.getList()
  826. }
  827. })
  828. }).catch(() => {
  829. this.$message({ type: 'info', message: '已取消删除' })
  830. })
  831. },
  832. // 减少车次
  833. handleDelete() {
  834. if (this.selectList.length == 0) {
  835. this.$message({ type: 'error', message: '请选择车次信息', duration: 2000 })
  836. } else {
  837. MessageBox.confirm('当前选中' + this.selectList.length + '条信息,是否删除?', {
  838. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  839. }).then(() => {
  840. console.log(this.selectList)
  841. this.requestParam.common = { 'returnmap': '0' }
  842. this.requestParam.data = []
  843. this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.selectList }}
  844. this.requestParam.data[0].children = []
  845. this.requestParam.data[0].children[0] = { 'name': 'deleteRemainplan', 'type': 'e', 'parammaps': {
  846. id: '@insertSpotList.id',
  847. pastureid: '@insertSpotList.pastureid'
  848. }}
  849. ExecDataByConfig(this.requestParam).then(response => {
  850. console.log('删除保存发送参数', this.requestParam)
  851. if (response.msg === 'fail') {
  852. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  853. } else {
  854. this.$notify({ title: '', message: '删除成功', type: 'success', duration: 2000 })
  855. this.getList()
  856. }
  857. })
  858. })
  859. }
  860. },
  861. // 校验
  862. handleCheck() {
  863. console.log('点击了校验')
  864. this.check.dialogStatus = 'check'
  865. this.check.dialogFormVisible = true
  866. },
  867. // 历史记录
  868. handleHistoryRecords() {
  869. console.log('点击了历史记录')
  870. this.history.dialogStatus = 'history'
  871. this.history.dialogFormVisible = true
  872. this.getDateList()
  873. },
  874. // 历史时间
  875. getDateList() {
  876. GetDataByName(this.history.getdataDateParm).then(response => {
  877. console.log('table数据', response.data.list)
  878. if (response.data.list !== null) {
  879. this.history.getdataListParm.parammaps.date = response.data.list[0].maxdate
  880. this.getHistoryList()
  881. } else {
  882. this.history.getdataListParm.parammaps.date = ''
  883. }
  884. })
  885. },
  886. changeDate() {
  887. this.getHistoryList()
  888. },
  889. // 应用
  890. handleApplication() {
  891. console.log('点击了应用')
  892. MessageBox.confirm('是否确认将' + this.history.getdataListParm.parammaps.date + '的数据应用到当前?', {
  893. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  894. }).then(() => {
  895. this.requestParam.name = 'applyFPdate'
  896. this.requestParam.parammaps = {}
  897. this.requestParam.parammaps.pastureid = Cookies.get('pastureid')
  898. this.requestParam.parammaps.date = this.history.getdataListParm.parammaps.date
  899. PostDataByName(this.requestParam).then(response => {
  900. if (response.msg === 'fail') {
  901. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  902. } else {
  903. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  904. this.getHistoryIsDisplay()
  905. this.getList()
  906. }
  907. })
  908. }).catch(() => {
  909. this.$message({ type: 'info', message: '已取消应用' })
  910. })
  911. },
  912. getHistoryList() {
  913. this.history.listLoading = true
  914. GetDataByName(this.history.getdataListParm).then(response => {
  915. console.log('table数据', response.data.list)
  916. if (response.data.list !== null) {
  917. console.log('table数据', response.data.list)
  918. this.history.list = response.data.list
  919. this.history.pageNum = response.data.pageNum
  920. this.history.pageSize = response.data.pageSize
  921. this.history.total = response.data.total
  922. } else {
  923. this.history.list = []
  924. }
  925. setTimeout(() => {
  926. this.history.listLoading = false
  927. }, 100)
  928. })
  929. }
  930. }
  931. }
  932. </script>
  933. <style lang="scss" scoped>
  934. .search{clear: both;}
  935. .table{margin-top:10px;}
  936. </style>