index.vue 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965
  1. <template>
  2. <div class="app-container">
  3. <el-tabs v-model="activeName" @tab-click="handleTabClick">
  4. <el-tab-pane label="库存统计" name="first">
  5. <div class="search">
  6. <el-date-picker v-model="tab.table.getdataListParm.parammaps.inputDatetime" :clearable="false" class="inputDatetime filter-item" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" style="float: left;width: 250px;margin-bottom:10px;" :picker-options="pickerOptions" />
  7. <el-button class="el-icon-arrow-left elIconArrowLeft" :disabled="Beforedisabled" style="float: left;" @click="handleBefore" />
  8. <el-button class="el-icon-arrow-right elIconArrowRight" :disabled="Nextdisabled" style="float: left;" @click="handleNext" />
  9. <el-input v-model="tab.table.getdataListParm.parammaps.feedname" class="filter-item" style="float: left;width: 245px;margin-bottom:10px;" placeholder="饲料名称" />
  10. <el-button class="successBorder" style="float: left;margin-left: 10px;margin-bottom:10px;" @click="form_search('first')">查询</el-button>
  11. <el-button class="export" style="float: right;margin-right: 10px;margin-bottom:10px;" icon="el-icon-upload2" @click="handleExport('tab1')">导出</el-button>
  12. </div>
  13. <div class="table">
  14. <el-table
  15. :key="tab.table.tableKey"
  16. v-loading="tab.table.listLoading"
  17. element-loading-text="给我一点时间"
  18. :data="tab.table.list"
  19. border
  20. fit
  21. highlight-current-row
  22. style="width: 100%;"
  23. :row-style="rowStyle"
  24. :cell-style="cellStyle"
  25. class="elTable table-fixed"
  26. >
  27. <el-table-column sortable label="饲料名称" min-width="130px" align="center">
  28. <template slot-scope="scope">
  29. <span>{{ scope.row.feedname }}</span>
  30. </template>
  31. </el-table-column>
  32. <el-table-column label="期初" min-width="130px" align="center">
  33. <el-table-column sortable prop="startsum" align="center" label="期初库存(kg)" min-width="120" />
  34. <el-table-column sortable prop="startprice" align="center" label="期初金额(元)" min-width="120" />
  35. </el-table-column>
  36. <el-table-column label="用量" min-width="110px" align="center">
  37. <el-table-column sortable prop="laidsum" align="center" label="入库重量(kg)" min-width="120" />
  38. <el-table-column sortable prop="usesumXT" align="center" label="系统出库重量(kg)" min-width="120" />
  39. <el-table-column sortable prop="usesumRG" align="center" label="人工用料重量(kg)" min-width="120" />
  40. <el-table-column sortable prop="usesumXH" align="center" label="损耗重量(kg)" min-width="120" />
  41. </el-table-column>
  42. <el-table-column label="期末" min-width="130px" align="center">
  43. <el-table-column sortable prop="stopsum" align="center" label="期末库存(kg)" min-width="120" />
  44. <el-table-column sortable prop="stopprice" align="center" label="期末金额(元)" min-width="120" />
  45. </el-table-column>
  46. </el-table>
  47. <pagination v-show="tab.table.total>=0" :total="tab.table.total" :page.sync="tab.table.getdataListParm.offset" :limit.sync="tab.table.getdataListParm.pagecount" @pagination="getTabList" />
  48. </div>
  49. </el-tab-pane>
  50. <el-tab-pane label="用料分析" name="second">
  51. <div class="search">
  52. <el-date-picker v-model="tab2.table.getdataListParm.parammaps.inputDatetime" :clearable="false" class="inputDatetime filter-item" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" style="width: 245px;" :picker-options="pickerOptions" />
  53. <el-button class="el-icon-arrow-left elIconArrowLeft" :disabled="Beforedisabled2" @click="handleBefore2" />
  54. <el-button class="el-icon-arrow-right elIconArrowRight" :disabled="Nextdisabled2" @click="handleNext2" />
  55. <span style="margin-left: 10px;">统计类型:</span>
  56. <el-select v-model="tab2.radio" placeholder="统计类型" class="filter-item" style="width: 120px;" @change="changeRadio2">
  57. <el-option v-for="item in statisticalTypeList2" :key="item.id" :label="item.name" :value="item.id" />
  58. </el-select>
  59. <el-checkbox v-model="tab2.table.getdataListParm.checked" :true-label="1" :false-label="0" style="margin-right:10px;" @change="changeChecked">误差</el-checkbox>
  60. <el-select v-model="tab2.table.getdataListParm.parammaps.ftType" placeholder="是否拆分小料" class="filter-item" style="width: 130px;">
  61. <el-option v-for="item in isSplitsmallmaterialsList" :key="item.id" :label="item.name" :value="item.id" />
  62. </el-select>
  63. <el-input v-if="tab2.isRadio1" v-model="tab2.table.getdataListParm.parammaps.fname" class="filter-item filter-item1" style="width: 200px;" placeholder="牲畜类别" />
  64. <el-input v-if="tab2.isRadio2" v-model="tab2.table.getdataListParm.parammaps.fname" class="filter-item filter-item1" style="width: 200px;" placeholder="栏舍名称" />
  65. <el-input v-if="tab2.isRadio3" v-model="tab2.table.getdataListParm.parammaps.fname" class="filter-item filter-item1" style="width: 200px;" placeholder="日期" />
  66. <el-input v-if="tab2.isRadio4" v-model="tab2.table.getdataListParm.parammaps.fname" class="filter-item filter-item1" style="width: 200px;" placeholder="TMR设备编号" />
  67. <el-input v-if="tab2.isRadio5" v-model="tab2.table.getdataListParm.parammaps.fname" class="filter-item filter-item1" style="width: 200px;" placeholder="班次" />
  68. <el-input v-if="tab2.isRadio6" v-model="tab2.table.getdataListParm.parammaps.fname" class="filter-item filter-item1" style="width: 200px;" placeholder="车次" />
  69. <el-select v-model="tab2.table.getdataListParm.parammaps.typea" clearable placeholder="列表显示" class="filter-item" style="width: 120px;">
  70. <el-option v-for="item in displayList" :key="item.id" :label="item.name" :value="item.id" />
  71. </el-select>
  72. <el-select v-model="tab2.table.getdataListParm.parammaps.times" clearable filterable placeholder="班次" class="filter-item" style="width: 120px;">
  73. <el-option v-for="item in frequencyList" :key="item.id" :label="item.name" :value="item.id" />
  74. </el-select>
  75. <el-button class="successBorder" @click="form_search('second')">查询</el-button>
  76. <el-button class="export" style="float: right;margin-right: 5px;margin-top:10px;" icon="el-icon-upload2" @click="handleExport('tab2')">导出</el-button>
  77. </div>
  78. <div v-if="tab2.table.tableConfig.length > 8">
  79. <u-table v-if="isDispayTable2" ref="plTable2" v-loading="tab2.table.listLoading" :row-style="rowStyle" :cell-style="cellStyle" :max-height="myHeight2" use-virtual :row-height="rowHeight" border class="elTable table-fixed plTable2">
  80. <u-table-column v-for="(item,index) in tab2.table.tableConfig" :key="index" :label="item.label" :show-overflow-tooltip="item.showOverflow" :prop="item.prop" align="center" :fixed="index==0">
  81. <u-table-column v-for="(item1,key1) in item.children" v-if="item.children || item.children.length>0" :key="key1" :label="item1.label" :prop="item1.prop" align="center">
  82. <u-table-column v-for="(item2,key2) in item1.children" v-if="item1.children || item1.children.length>0" :key="key2" :label="item2.label" :prop="item2.prop" />
  83. </u-table-column>
  84. </u-table-column>
  85. </u-table>
  86. </div>
  87. <div v-else>
  88. <u-table v-if="isDispayTable2" ref="plTable2" v-loading="tab2.table.listLoading" :row-style="rowStyle" :cell-style="cellStyle" :max-height="myHeight2" use-virtual :row-height="rowHeight" border class="elTable table-fixed plTable2">
  89. <u-table-column v-for="(item,index) in tab2.table.tableConfig" :key="index" :label="item.label" :show-overflow-tooltip="item.showOverflow" :prop="item.prop" align="center">
  90. <u-table-column v-for="(item1,key1) in item.children" v-if="item.children || item.children.length>0" :key="key1" :label="item1.label" :prop="item1.prop" align="center">
  91. <u-table-column v-for="(item2,key2) in item1.children" v-if="item1.children || item1.children.length>0" :key="key2" :label="item2.label" :prop="item2.prop" />
  92. </u-table-column>
  93. </u-table-column>
  94. </u-table>
  95. </div>
  96. <span v-if="tab2.table.listLoading == false && tab2.table.list.length>0" style="margin-right: 30px;margin-top: 10px;font-size: 14px;">共{{ tab2.table.total }}条</span>
  97. </el-tab-pane>
  98. <el-tab-pane label="价格分析" name="third">
  99. <div class="search">
  100. <el-date-picker v-model="tab3.table.getdataListParm.parammaps.inputDatetime" class="inputDatetime filter-item" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" :clearable="false" style="width: 250px;" :picker-options="pickerOptions" />
  101. <el-button class="el-icon-arrow-left elIconArrowLeft" :disabled="Beforedisabled3" @click="handleBefore3" />
  102. <el-button class="el-icon-arrow-right elIconArrowRight" :disabled="Nextdisabled3" @click="handleNext3" />
  103. <span style="margin-left: 10px;">统计类型:</span>
  104. <el-select v-model="tab3.radio" placeholder="统计类型" class="filter-item" style="width: 120px;" @change="changeRadio3">
  105. <el-option v-for="item in statisticalTypeList3" :key="item.id" :label="item.name" :value="item.id" />
  106. </el-select>
  107. <!-- <el-radio v-model="tab3.radio" label="1" @change="changeRadio3">牲畜类别</el-radio>
  108. <el-radio v-model="tab3.radio" label="2" @change="changeRadio3">栏舍名称</el-radio>
  109. <el-radio v-model="tab3.radio" label="3" @change="changeRadio3">日期</el-radio>
  110. <el-radio v-model="tab3.radio" label="4" @change="changeRadio3">TMR设备编号</el-radio> -->
  111. <el-input v-if="tab3.isRadio1" v-model="tab3.table.getdataListParm.parammaps.fname" class="filter-item" style="width: 185px;" placeholder="牲畜类别" />
  112. <el-input v-if="tab3.isRadio2" v-model="tab3.table.getdataListParm.parammaps.fname" class="filter-item" style="width: 185px;" placeholder="栏舍名称" />
  113. <el-input v-if="tab3.isRadio3" v-model="tab3.table.getdataListParm.parammaps.fname" class="filter-item" style="width: 185px;" placeholder="日期" />
  114. <el-input v-if="tab3.isRadio4" v-model="tab3.table.getdataListParm.parammaps.fname" class="filter-item" style="width: 185px;" placeholder="TMR设备编号" />
  115. <el-button class="successBorder" @click="form_search('third')">查询</el-button>
  116. <el-button class="export filter-item1" style="float: right;margin-right: 5px;" icon="el-icon-upload2" @click="handleExport('tab3')">导出</el-button>
  117. </div>
  118. <div v-if="tab3.table.tableConfig.length>2">
  119. <u-table v-if="isDispayTable3" ref="plTable3" v-loading="tab3.table.listLoading" :row-style="rowStyle" :cell-style="cellStyle" :max-height="myHeight2" use-virtual :row-height="rowHeight" border class="elTable table-fixed plTable3">
  120. <u-table-column v-for="(item,key) in tab3.table.tableConfig" :key="key" :label="item.label" :show-overflow-tooltip="item.showOverflow" align="center" :prop="item.prop" :fixed="key==0">
  121. <u-table-column v-for="(item1,key1) in item.children" v-if="item.children || item.children.length>0" :key="key1" align="center" :label="item1.label" :prop="item1.prop" :min-width="item1.width">
  122. <u-table-column v-for="(item2,key2) in item1.children" v-if="item1.children || item1.children.length>0" :key="key2" :label="item2.label" :prop="item2.prop" />
  123. </u-table-column>
  124. </u-table-column>
  125. </u-table>
  126. </div>
  127. <div v-else>
  128. <u-table v-if="isDispayTable3" ref="plTable3" v-loading="tab3.table.listLoading" :row-style="rowStyle" :cell-style="cellStyle" :max-height="myHeight2" use-virtual :row-height="rowHeight" border class="elTable table-fixed plTable3">
  129. <u-table-column v-for="(item,key) in tab3.table.tableConfig" :key="key" :label="item.label" :show-overflow-tooltip="item.showOverflow" align="center" :prop="item.prop">
  130. <u-table-column v-for="(item1,key1) in item.children" v-if="item.children || item.children.length>0" :key="key1" align="center" :label="item1.label" :prop="item1.prop" :min-width="item1.width">
  131. <u-table-column v-for="(item2,key2) in item1.children" v-if="item1.children || item1.children.length>0" :key="key2" :label="item2.label" :prop="item2.prop" />
  132. </u-table-column>
  133. </u-table-column>
  134. </u-table>
  135. </div>
  136. <span v-if="tab3.table.listLoading == false && tab3.table.list.length>0" style="margin-right: 30px;margin-top: 10px;font-size: 14px;">共{{ tab3.table.total }}条</span>
  137. </el-tab-pane>
  138. </el-tabs>
  139. </div>
  140. </div>
  141. </template>
  142. <script>
  143. import { GetDataByName, GetReportform,postJson } from '@/api/common'
  144. import Cookies from 'js-cookie'
  145. import { parseTime } from '@/utils/index.js'
  146. import Pagination from '@/components/Pagination'
  147. import { json2excel, export_json_to_excel } from '@/utils/index.js'
  148. export default {
  149. name: 'PastureInventoryManagement',
  150. components: { Pagination },
  151. data() {
  152. return {
  153. Beforedisabled: false,
  154. Nextdisabled: false,
  155. Beforedisabled2: false,
  156. Nextdisabled2: false,
  157. Beforedisabled3: false,
  158. Nextdisabled3: false,
  159. pickerMinDate: '',
  160. pickerOptions: {
  161. onPick: ({ maxDate, minDate }) => {
  162. this.pickerMinDate = minDate.getTime()
  163. if (maxDate) {
  164. this.pickerMinDate = ''
  165. }
  166. },
  167. // 限制不能选择今天之后的日期
  168. disabledDate: (time) => {
  169. if (this.pickerMinDate !== '') {
  170. const one = 31 * 24 * 3600 * 1000
  171. const minTime = this.pickerMinDate - one
  172. let maxTime = this.pickerMinDate + one
  173. if (maxTime > new Date()) {
  174. maxTime = new Date()
  175. }
  176. return time.getTime() < minTime || time.getTime() > maxTime
  177. }
  178. return time.getTime() > Date.now()
  179. }
  180. },
  181. fileComment: [{ 'label': '商务文件评分', 'children': [{ 'label': '1' }, { 'label': '2' }, { 'label': '管理员' }] }],
  182. displayList:[{id:'1',name:'理论'},{id:'2',name:'实际'}],//列表显示
  183. isSplitsmallmaterialsList:[{id:'0',name:'拆分'},{id:'1',name:'不拆分'}],
  184. activeName: 'first',
  185. tab: {
  186. chartDate: [],
  187. table: {
  188. getdataListParm: {
  189. name: 'getfsStaticlist',
  190. page: 1,
  191. offset: 1,
  192. pagecount: parseInt(Cookies.get('pageCount')),
  193. returntype: 'Map',
  194. parammaps: {
  195. pastureid: Cookies.get('pastureid'),
  196. startTime: parseTime(new Date(), '{y}-{m}-{d}'),
  197. stopTime: parseTime(new Date(), '{y}-{m}-{d}'),
  198. inputDatetime: [new Date(), new Date()],
  199. feedname: ''
  200. }
  201. },
  202. tableKey: 1,
  203. list: [],
  204. total: 0,
  205. listLoading: false
  206. }
  207. },
  208. tab2: {
  209. chartDate: [],
  210. display:'',
  211. table: {
  212. getdataListParm: {
  213. name: 'getMaterialAnalysisSC',
  214. page: 1,
  215. offset: 1,
  216. pagecount: '',
  217. returntype: 'Map',
  218. checked: 0,
  219. parammaps: {
  220. pastureid: Cookies.get('pastureid'),
  221. startTime: parseTime(new Date(), '{y}-{m}-{d}'),
  222. stopTime: parseTime(new Date(), '{y}-{m}-{d}'),
  223. inputDatetime: [new Date(), new Date()],
  224. fname: '',
  225. typea:'',
  226. times:'',
  227. ftType:'1'
  228. }
  229. },
  230. tableKey: 1,
  231. list: [],
  232. tableConfig: [],
  233. data: [],
  234. total: 0,
  235. listLoading: false
  236. },
  237. radio: '1',
  238. isRadio1: true,
  239. isRadio2: false,
  240. isRadio3: false,
  241. isRadio4: false,
  242. isRadio5: false,
  243. isRadio6: false
  244. },
  245. tab3: {
  246. chartDate: [],
  247. table: {
  248. getdataListParm: {
  249. name: 'getPriceAnalysisSC',
  250. page: 1,
  251. offset: 1,
  252. pagecount: parseInt(Cookies.get('pageCount')),
  253. returntype: 'Map',
  254. parammaps: {
  255. pastureid: Cookies.get('pastureid'),
  256. startTime: parseTime(new Date(), '{y}-{m}-{d}'),
  257. stopTime: parseTime(new Date(), '{y}-{m}-{d}'),
  258. inputDatetime: [new Date(), new Date()],
  259. fname: ''
  260. }
  261. },
  262. tableKey: 1,
  263. list: [],
  264. tableConfig: [],
  265. total: 0,
  266. listLoading: false
  267. },
  268. radio: '1',
  269. isRadio1: true,
  270. isRadio2: false,
  271. isRadio3: false,
  272. isRadio4: false
  273. },
  274. downLoad: {},
  275. rowStyle: { maxHeight: 30 + 'px', height: 30 + 'px' },
  276. cellStyle: { padding: 0 + 'px' },
  277. myHeight2: document.documentElement.clientHeight - 95 - 150,
  278. rowHeight: 30,
  279. isDispayTable2:false,
  280. isDispayTable3:false,
  281. statisticalTypeList2: [{ id: '1', name: '牲畜类别' }, { id: '2', name: '栏舍名称' }, { id: '3', name: '日期' }, { id: '4', name: 'TMR设备编号' }, { id: '5', name: 'TMR班次' }, { id: '6', name: '车次' }],
  282. statisticalTypeList3: [{ id: '1', name: '牲畜类别' }, { id: '2', name: '栏舍名称' }, { id: '3', name: '日期' }, { id: '4', name: 'TMR设备编号' }],
  283. frequencyList: [], // 班次
  284. }
  285. },
  286. created() {
  287. this.getTimeFn()
  288. this.getIsDisplay()
  289. },
  290. methods: {
  291. getIsDisplay() {
  292. const url = 'authdata/GetDataByName'
  293. const data = {
  294. name: 'getSysoptEnable',
  295. page: 1,
  296. offset: 1,
  297. pagecount: 1,
  298. returntype: 'Map',
  299. parammaps: {
  300. pastureid: Cookies.get('pastureid'),
  301. inforname: 'times'
  302. }
  303. }
  304. postJson(url, data).then(response => {
  305. console.log(response.data.list[0].inforvalue)
  306. if (response.data.list[0].inforvalue == 1) {
  307. this.frequencyList = [{ id: 1, name: '第一班' }]
  308. } else if (response.data.list[0].inforvalue == 2) {
  309. this.frequencyList = [
  310. { id: 1, name: '第一班' }, { id: 2, name: '第二班' }
  311. ]
  312. } else if (response.data.list[0].inforvalue == 3) {
  313. this.frequencyList = [
  314. { id: 1, name: '第一班' }, { id: 2, name: '第二班' }, { id: 3, name: '第三班' }
  315. ]
  316. } else if (response.data.list[0].inforvalue == 4) {
  317. this.frequencyList = [
  318. { id: 1, name: '第一班' }, { id: 2, name: '第二班' }, { id: 3, name: '第三班' }, { id: 4, name: '第四班' }
  319. ]
  320. }else if (response.data.list[0].inforvalue == 5) {
  321. this.frequencyList = [
  322. { id: 1, name: '第一班' }, { id: 2, name: '第二班' }, { id: 3, name: '第三班' }, { id: 4, name: '第四班' }, { id: 5, name: '第五班' }
  323. ]
  324. }else if (response.data.list[0].inforvalue == 6) {
  325. this.frequencyList = [
  326. { id: 1, name: '第一班' }, { id: 2, name: '第二班' }, { id: 3, name: '第三班' }, { id: 4, name: '第四班' }, { id: 5, name: '第五班' }, { id: 6, name: '第六班' },
  327. ]
  328. }
  329. })
  330. },
  331. getTimeFn() {
  332. const that = this
  333. const start = new Date()
  334. const end = new Date()
  335. start.setTime(start.getTime() - 3600 * 1000 * 24 * 7)
  336. end.setTime(end.getTime() - 3600 * 1000 * 24 * 1)
  337. that.tab.table.getdataListParm.parammaps.startTime = parseTime(start, '{y}-{m}-{d}')
  338. that.tab.table.getdataListParm.parammaps.stopTime = parseTime(end, '{y}-{m}-{d}')
  339. that.tab.table.getdataListParm.parammaps.inputDatetime = [start, end]
  340. that.tab2.table.getdataListParm.parammaps.startTime = parseTime(end, '{y}-{m}-{d}')
  341. that.tab2.table.getdataListParm.parammaps.stopTime = parseTime(end, '{y}-{m}-{d}')
  342. that.tab2.table.getdataListParm.parammaps.inputDatetime = [end, end]
  343. that.tab3.table.getdataListParm.parammaps.startTime = parseTime(end, '{y}-{m}-{d}')
  344. that.tab3.table.getdataListParm.parammaps.stopTime = parseTime(end, '{y}-{m}-{d}')
  345. that.tab3.table.getdataListParm.parammaps.inputDatetime = [end, end]
  346. this.getTabList()
  347. },
  348. handleTabClick() {
  349. if (this.activeName == 'first') {
  350. const start = new Date()
  351. const end = new Date()
  352. start.setTime(start.getTime() - 3600 * 1000 * 24 * 7)
  353. end.setTime(end.getTime() - 3600 * 1000 * 24 * 1)
  354. this.tab.table.getdataListParm.parammaps.inputDatetime = [start, end]
  355. this.getTabList()
  356. } else if (this.activeName == 'second') {
  357. const start2 = new Date()
  358. const end2 = new Date()
  359. start2.setTime(start2.getTime() - 3600 * 1000 * 24 * 1)
  360. end2.setTime(end2.getTime() - 3600 * 1000 * 24 * 1)
  361. this.tab2.table.getdataListParm.parammaps.inputDatetime = [start2, end2]
  362. this.tab2.radio = '1'
  363. this.tab2.table.getdataListParm.parammaps.ftType = '1'
  364. this.tab2.table.getdataListParm.parammaps.startTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  365. this.tab2.table.getdataListParm.parammaps.stopTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  366. this.getTab2List()
  367. } else if (this.activeName == 'third') {
  368. const start3 = new Date()
  369. const end3 = new Date()
  370. start3.setTime(start3.getTime() - 3600 * 1000 * 24 * 1)
  371. end3.setTime(end3.getTime() - 3600 * 1000 * 24 * 1)
  372. this.tab3.table.getdataListParm.parammaps.inputDatetime = [start3, end3]
  373. this.tab3.radio = '1'
  374. this.tab3.table.getdataListParm.parammaps.startTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  375. this.tab3.table.getdataListParm.parammaps.stopTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  376. this.getTab3List()
  377. }
  378. },
  379. getTabList() {
  380. this.tab.table.listLoading = true
  381. GetDataByName(this.tab.table.getdataListParm).then(response => {
  382. if (response.data.list !== null) {
  383. console.log('库存统计table数据', response.data.list)
  384. this.tab.table.list = response.data.list
  385. this.tab.table.total = response.data.total
  386. } else {
  387. this.tab.table.list = []
  388. }
  389. setTimeout(() => {
  390. this.tab.table.listLoading = false
  391. }, 100)
  392. })
  393. },
  394. form_search(item) {
  395. if (item == 'first') {
  396. if (this.tab.table.getdataListParm.parammaps.inputDatetime !== '' && this.tab.table.getdataListParm.parammaps.inputDatetime !== null) {
  397. this.tab.table.getdataListParm.parammaps.startTime = parseTime(this.tab.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  398. this.tab.table.getdataListParm.parammaps.stopTime = parseTime(this.tab.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  399. } else {
  400. this.tab.table.getdataListParm.parammaps.inputDatetime = ''
  401. this.tab.table.getdataListParm.parammaps.startTime = ''
  402. this.tab.table.getdataListParm.parammaps.stopTime = ''
  403. }
  404. this.getTabList()
  405. } else if (item == 'second') {
  406. if (this.tab2.table.getdataListParm.parammaps.inputDatetime !== '' && this.tab2.table.getdataListParm.parammaps.inputDatetime !== null) {
  407. this.tab2.table.getdataListParm.parammaps.startTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  408. this.tab2.table.getdataListParm.parammaps.stopTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  409. } else {
  410. this.tab2.table.getdataListParm.parammaps.inputDatetime = ''
  411. this.tab2.table.getdataListParm.parammaps.startTime = ''
  412. this.tab2.table.getdataListParm.parammaps.stopTime = ''
  413. }
  414. this.getTab2List()
  415. } else if (item == 'third') {
  416. if (this.tab3.table.getdataListParm.parammaps.inputDatetime !== '' && this.tab3.table.getdataListParm.parammaps.inputDatetime !== null) {
  417. this.tab3.table.getdataListParm.parammaps.startTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  418. this.tab3.table.getdataListParm.parammaps.stopTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  419. } else {
  420. this.tab3.table.getdataListParm.parammaps.inputDatetime = ''
  421. this.tab3.table.getdataListParm.parammaps.startTime = ''
  422. this.tab3.table.getdataListParm.parammaps.stopTime = ''
  423. }
  424. this.getTab3List()
  425. }
  426. },
  427. // 用料分析
  428. getTab2List() {
  429. this.tab2.table.listLoading = true
  430. this.isDispayTable2 = false
  431. setTimeout(()=>{
  432. this.isDispayTable2 = true
  433. this.$nextTick(() => {
  434. let myList = []
  435. GetReportform(this.tab2.table.getdataListParm).then(response => {
  436. if (response.data !== null && response.data.data !== null && response.data.data1 !== null) {
  437. this.tab2.table.data = response.data.data
  438. for (let i = 0; i < response.data.list.data2.length; i++) {
  439. for (let j = 0; j < response.data.list.data1.length; j++) {
  440. for (let a = 0; a < response.data.list.data2[i].children.length; a++) {
  441. if (response.data.list.data1[j][response.data.list.data2[i].children[a].prop] == undefined || response.data.list.data1[j][response.data.list.data2[i].children[a].prop] == null || response.data.list.data1[j][response.data.list.data2[i].children[a].prop] == '') {
  442. response.data.list.data1[j][response.data.list.data2[i].children[a].prop] = 0
  443. }
  444. }
  445. }
  446. if (response.data.list.data2[i].children.length > 1) {
  447. for (let j = 0; j < response.data.list.data2[i].children.length; j++) {
  448. if (response.data.list.data2[i].children[j].label == '理论' || response.data.list.data2[i].children[j].label == '实际') {
  449. this.$set(response.data.list.data2[i].children[j], 'width', '80px')
  450. } else {
  451. this.$set(response.data.list.data2[i].children[j], 'width', '80px')
  452. }
  453. }
  454. } else {
  455. this.$set(response.data.list.data2[i].children[0], 'width', '80px')
  456. }
  457. }
  458. myList = response.data.list.data1
  459. this.tab2.table.list = response.data.list.data1
  460. this.tab2.table.tableConfig = response.data.list.data2
  461. this.tab2.table.total = response.data.list.data1.length
  462. console.log('库存统计-用料分析this.tab2.table.data', response.data.data)
  463. console.log('库存统计-用料分析this.tab2.table.list', response.data.list.data1)
  464. console.log('库存统计-用料分析this.tab2.table.tableConfig',response.data.list.data2)
  465. } else {
  466. myList = []
  467. this.tab2.table.list = []
  468. this.tab2.table.tableConfig = []
  469. }
  470. console.log(this.tab2.table.list.length)
  471. this.$refs.plTable2.reloadData(myList)
  472. setTimeout(() => {
  473. this.tab2.table.listLoading = false
  474. }, 100)
  475. })
  476. })
  477. })
  478. },
  479. changeRadio2() {
  480. console.log(this.tab2.radio)
  481. if (this.tab2.radio == '1') {
  482. this.tab2.isRadio1 = true,
  483. this.tab2.isRadio2 = false,
  484. this.tab2.isRadio3 = false,
  485. this.tab2.isRadio4 = false,
  486. this.tab2.isRadio5 = false,
  487. this.tab2.isRadio6 = false,
  488. this.tab2.table.getdataListParm.name = 'getMaterialAnalysisSC'
  489. this.tab2.table.getdataListParm.offset = 1
  490. this.tab2.table.getdataListParm.parammaps.startTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  491. this.tab2.table.getdataListParm.parammaps.stopTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  492. this.getTab2List()
  493. } else if (this.tab2.radio == '2') {
  494. this.tab2.isRadio1 = false,
  495. this.tab2.isRadio2 = true,
  496. this.tab2.isRadio3 = false,
  497. this.tab2.isRadio4 = false,
  498. this.tab2.isRadio5 = false,
  499. this.tab2.isRadio6 = false,
  500. this.tab2.table.getdataListParm.name = 'getMaterialAnalysisLS'
  501. this.tab2.table.getdataListParm.offset = 1
  502. this.tab2.table.getdataListParm.parammaps.startTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  503. this.tab2.table.getdataListParm.parammaps.stopTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  504. this.getTab2List()
  505. } else if (this.tab2.radio == '3') {
  506. this.tab2.isRadio1 = false,
  507. this.tab2.isRadio2 = false,
  508. this.tab2.isRadio3 = true,
  509. this.tab2.isRadio4 = false,
  510. this.tab2.isRadio5 = false,
  511. this.tab2.isRadio6 = false,
  512. this.tab2.table.getdataListParm.name = 'getMaterialAnalysisRQ'
  513. this.tab2.table.getdataListParm.offset = 1
  514. this.tab2.table.getdataListParm.parammaps.startTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  515. this.tab2.table.getdataListParm.parammaps.stopTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  516. this.getTab2List()
  517. } else if (this.tab2.radio == '4') {
  518. this.tab2.isRadio1 = false,
  519. this.tab2.isRadio2 = false,
  520. this.tab2.isRadio3 = false,
  521. this.tab2.isRadio4 = true,
  522. this.tab2.isRadio5 = false,
  523. this.tab2.isRadio6 = false,
  524. this.tab2.table.getdataListParm.name = 'getMaterialAnalysisTMR'
  525. this.tab2.table.getdataListParm.offset = 1
  526. this.tab2.table.getdataListParm.parammaps.startTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  527. this.tab2.table.getdataListParm.parammaps.stopTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  528. this.getTab2List()
  529. } else if (this.tab2.radio == '5') {
  530. this.tab2.isRadio1 = false,
  531. this.tab2.isRadio2 = false,
  532. this.tab2.isRadio3 = false,
  533. this.tab2.isRadio4 = false,
  534. this.tab2.isRadio5 = true,
  535. this.tab2.isRadio6 = false,
  536. this.tab2.table.getdataListParm.name = 'getMaterialAnalysisBC'
  537. this.tab2.table.getdataListParm.offset = 1
  538. this.tab2.table.getdataListParm.parammaps.startTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  539. this.tab2.table.getdataListParm.parammaps.stopTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  540. this.getTab2List()
  541. } else if (this.tab2.radio == '6') {
  542. this.tab2.isRadio1 = false,
  543. this.tab2.isRadio2 = false,
  544. this.tab2.isRadio3 = false,
  545. this.tab2.isRadio4 = false,
  546. this.tab2.isRadio5 = false,
  547. this.tab2.isRadio6 = true,
  548. this.tab2.table.getdataListParm.name = 'getMaterialAnalysisCC'
  549. this.tab2.table.getdataListParm.offset = 1
  550. this.tab2.table.getdataListParm.parammaps.startTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  551. this.tab2.table.getdataListParm.parammaps.stopTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  552. this.getTab2List()
  553. }
  554. },
  555. // 价格分析
  556. getTab3List() {
  557. this.tab3.table.listLoading = true
  558. this.isDispayTable3 = false
  559. setTimeout(()=>{
  560. this.isDispayTable3 = true
  561. this.$nextTick(() => {
  562. let myList = []
  563. GetReportform(this.tab3.table.getdataListParm).then(response => {
  564. if (response.data !== null && response.data.list.data1 !== null && response.data.list.data2 !== null) {
  565. console.log('库存统计-价格分析', response.data.list)
  566. for (let i = 0; i < response.data.list.data2.length; i++) {
  567. for (let j = 0; j < response.data.list.data1.length; j++) {
  568. for (let a = 0; a < response.data.list.data2[i].children.length; a++) {
  569. if (response.data.list.data1[j][response.data.list.data2[i].children[a].prop] == undefined || response.data.list.data1[j][response.data.list.data2[i].children[a].prop] == null || response.data.list.data1[j][response.data.list.data2[i].children[a].prop] == '') {
  570. response.data.list.data1[j][response.data.list.data2[i].children[a].prop] = 0
  571. }
  572. }
  573. }
  574. if (response.data.list.data2[i].children.length > 1) {
  575. for (let j = 0; j < response.data.list.data2[i].children.length; j++) {
  576. if (response.data.list.data2[i].children[j].label == '理论' || response.data.list.data2[i].children[j].label == '实际') {
  577. this.$set(response.data.list.data2[i].children[j], 'width', '80px')
  578. } else {
  579. this.$set(response.data.list.data2[i].children[j], 'width', '80px')
  580. }
  581. }
  582. } else {
  583. this.$set(response.data.list.data2[i].children[0], 'width', '80px')
  584. }
  585. }
  586. myList = response.data.list.data1
  587. this.tab3.table.list = response.data.list.data1
  588. this.tab3.table.tableConfig = response.data.list.data2
  589. this.tab3.table.total = response.data.list.data1.length
  590. } else {
  591. this.tab3.table.tableConfig = []
  592. this.tab3.table.list = []
  593. myList = []
  594. }
  595. setTimeout(() => {
  596. this.$refs.plTable3.reloadData(myList)
  597. this.tab3.table.listLoading = false
  598. }, 100)
  599. })
  600. })
  601. })
  602. },
  603. handleBefore() {
  604. if (this.tab.table.getdataListParm.parammaps.inputDatetime !== '' && this.tab.table.getdataListParm.parammaps.inputDatetime !== null) {
  605. var start = new Date(this.tab.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.tab.table.getdataListParm.parammaps.inputDatetime[0].getDate() - 1))
  606. var stop = new Date(this.tab.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.tab.table.getdataListParm.parammaps.inputDatetime[1].getDate() - 1))
  607. if (stop > Date.now() - 8.64e7) {
  608. this.Nextdisabled = true
  609. this.Beforedisabled = false
  610. } else {
  611. this.Nextdisabled = false
  612. this.Beforedisabled = false
  613. }
  614. this.tab.table.getdataListParm.parammaps.inputDatetime.length = 0
  615. this.tab.table.getdataListParm.parammaps.inputDatetime.push(start, stop)
  616. this.$forceUpdate()
  617. }
  618. this.tab.table.getdataListParm.parammaps.startTime = parseTime(this.tab.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  619. this.tab.table.getdataListParm.parammaps.stopTime = parseTime(this.tab.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  620. this.getTabList()
  621. },
  622. handleNext() {
  623. if (this.tab.table.getdataListParm.parammaps.inputDatetime !== '' && this.tab.table.getdataListParm.parammaps.inputDatetime !== null) {
  624. var start2 = new Date(this.tab.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.tab.table.getdataListParm.parammaps.inputDatetime[0].getDate() + 1))
  625. var stop2 = new Date(this.tab.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.tab.table.getdataListParm.parammaps.inputDatetime[1].getDate() + 1))
  626. if (stop2 > Date.now() - 8.64e7) {
  627. this.Nextdisabled = true
  628. this.Beforedisabled = false
  629. } else {
  630. this.Nextdisabled = false
  631. this.Beforedisabled = false
  632. }
  633. this.tab.table.getdataListParm.parammaps.inputDatetime.length = 0
  634. this.tab.table.getdataListParm.parammaps.inputDatetime.push(start2, stop2)
  635. this.$forceUpdate()
  636. }
  637. this.tab.table.getdataListParm.parammaps.startTime = parseTime(this.tab.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  638. this.tab.table.getdataListParm.parammaps.stopTime = parseTime(this.tab.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  639. this.getTabList()
  640. },
  641. handleBefore2() {
  642. if (this.tab2.table.getdataListParm.parammaps.inputDatetime !== '' && this.tab2.table.getdataListParm.parammaps.inputDatetime !== null) {
  643. var start3 = new Date(this.tab2.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.tab2.table.getdataListParm.parammaps.inputDatetime[0].getDate() - 1))
  644. var stop3 = new Date(this.tab2.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.tab2.table.getdataListParm.parammaps.inputDatetime[1].getDate() - 1))
  645. if (stop3 > Date.now() - 8.64e7) {
  646. this.Nextdisabled2 = true
  647. this.Beforedisabled2 = false
  648. } else {
  649. this.Nextdisabled2 = false
  650. this.Beforedisabled2 = false
  651. }
  652. this.tab2.table.getdataListParm.parammaps.inputDatetime.length = 0
  653. this.tab2.table.getdataListParm.parammaps.inputDatetime.push(start3, stop3)
  654. this.$forceUpdate()
  655. }
  656. this.tab2.table.getdataListParm.parammaps.startTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  657. this.tab2.table.getdataListParm.parammaps.stopTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  658. this.getTab2List()
  659. },
  660. handleNext2() {
  661. if (this.tab2.table.getdataListParm.parammaps.inputDatetime !== '' && this.tab2.table.getdataListParm.parammaps.inputDatetime !== null) {
  662. var start4 = new Date(this.tab2.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.tab2.table.getdataListParm.parammaps.inputDatetime[0].getDate() + 1))
  663. var stop4 = new Date(this.tab2.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.tab2.table.getdataListParm.parammaps.inputDatetime[1].getDate() + 1))
  664. if (stop4 > Date.now() - 8.64e7) {
  665. this.Nextdisabled2 = true
  666. this.Beforedisabled2 = false
  667. } else {
  668. this.Nextdisabled2 = false
  669. this.Beforedisabled2 = false
  670. }
  671. this.tab2.table.getdataListParm.parammaps.inputDatetime.length = 0
  672. this.tab2.table.getdataListParm.parammaps.inputDatetime.push(start4, stop4)
  673. this.$forceUpdate()
  674. }
  675. this.tab2.table.getdataListParm.parammaps.startTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  676. this.tab2.table.getdataListParm.parammaps.stopTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  677. this.getTab2List()
  678. },
  679. handleBefore3() {
  680. if (this.tab3.table.getdataListParm.parammaps.inputDatetime !== '' && this.tab3.table.getdataListParm.parammaps.inputDatetime !== null) {
  681. var start5 = new Date(this.tab3.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.tab3.table.getdataListParm.parammaps.inputDatetime[0].getDate() - 1))
  682. var stop5 = new Date(this.tab3.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.tab3.table.getdataListParm.parammaps.inputDatetime[1].getDate() - 1))
  683. if (stop5 > Date.now() - 8.64e7) {
  684. this.Nextdisabled3 = true
  685. this.Beforedisabled3 = false
  686. } else {
  687. this.Nextdisabled3 = false
  688. this.Beforedisabled3 = false
  689. }
  690. this.tab3.table.getdataListParm.parammaps.inputDatetime.length = 0
  691. this.tab3.table.getdataListParm.parammaps.inputDatetime.push(start5, stop5)
  692. this.$forceUpdate()
  693. }
  694. this.tab3.table.getdataListParm.parammaps.startTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  695. this.tab3.table.getdataListParm.parammaps.stopTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  696. this.getTab3List()
  697. },
  698. handleNext3() {
  699. if (this.tab3.table.getdataListParm.parammaps.inputDatetime !== '' && this.tab2.table.getdataListParm.parammaps.inputDatetime !== null) {
  700. var start6 = new Date(this.tab3.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.tab3.table.getdataListParm.parammaps.inputDatetime[0].getDate() + 1))
  701. var stop6 = new Date(this.tab3.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.tab3.table.getdataListParm.parammaps.inputDatetime[1].getDate() + 1))
  702. if (stop6 > Date.now() - 8.64e7) {
  703. this.Nextdisabled3 = true
  704. this.Beforedisabled3 = false
  705. } else {
  706. this.Nextdisabled3 = false
  707. this.Beforedisabled3 = false
  708. }
  709. this.tab3.table.getdataListParm.parammaps.inputDatetime.length = 0
  710. this.tab3.table.getdataListParm.parammaps.inputDatetime.push(start6, stop6)
  711. this.$forceUpdate()
  712. }
  713. this.tab3.table.getdataListParm.parammaps.startTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  714. this.tab3.table.getdataListParm.parammaps.stopTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  715. this.getTab3List()
  716. },
  717. changeRadio3() {
  718. console.log(this.tab3.radio)
  719. if (this.tab3.radio == '1') {
  720. this.tab3.isRadio1 = true,
  721. this.tab3.isRadio2 = false,
  722. this.tab3.isRadio3 = false,
  723. this.tab3.isRadio4 = false,
  724. this.tab3.table.getdataListParm.name = 'getPriceAnalysisSC'
  725. this.tab3.table.getdataListParm.offset = 1
  726. this.tab3.table.getdataListParm.parammaps.startTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  727. this.tab3.table.getdataListParm.parammaps.stopTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  728. this.getTab3List()
  729. } else if (this.tab3.radio == '2') {
  730. this.tab3.isRadio1 = false,
  731. this.tab3.isRadio2 = true,
  732. this.tab3.isRadio3 = false,
  733. this.tab3.isRadio4 = false,
  734. this.tab3.table.getdataListParm.name = 'getPriceAnalysisLS'
  735. this.tab3.table.getdataListParm.offset = 1
  736. this.tab3.table.getdataListParm.parammaps.startTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  737. this.tab3.table.getdataListParm.parammaps.stopTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  738. this.getTab3List()
  739. } else if (this.tab3.radio == '3') {
  740. this.tab3.isRadio1 = false,
  741. this.tab3.isRadio2 = false,
  742. this.tab3.isRadio3 = true,
  743. this.tab3.isRadio4 = false,
  744. this.tab3.table.getdataListParm.name = 'getPriceAnalysisRQ'
  745. this.tab3.table.getdataListParm.offset = 1
  746. this.tab3.table.getdataListParm.parammaps.startTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  747. this.tab3.table.getdataListParm.parammaps.stopTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  748. this.getTab3List()
  749. } else if (this.tab3.radio == '4') {
  750. this.tab3.isRadio1 = false,
  751. this.tab3.isRadio2 = false,
  752. this.tab3.isRadio3 = false,
  753. this.tab3.isRadio4 = true,
  754. this.tab3.table.getdataListParm.name = 'getPriceAnalysisTMR'
  755. this.tab3.table.getdataListParm.offset = 1
  756. this.tab3.table.getdataListParm.parammaps.startTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
  757. this.tab3.table.getdataListParm.parammaps.stopTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
  758. this.getTab3List()
  759. }
  760. },
  761. changeChecked(item) {
  762. this.form_search('second')
  763. },
  764. handleExport(item) {
  765. if (item == 'tab1') {
  766. console.log('库存统计导出')
  767. this.downLoad.getdataListParm = {}
  768. this.downLoad.getdataListParm.name = 'getfsStaticlist'
  769. this.downLoad.getdataListParm.pagecount = ''
  770. this.downLoad.getdataListParm.parammaps = this.tab.table.getdataListParm.parammaps
  771. GetDataByName(this.downLoad.getdataListParm).then(response => {
  772. if (response.data.list !== null) {
  773. this.$nextTick(() => {
  774. this.downLoad.list = response.data.list
  775. })
  776. } else {
  777. this.downLoad.list = []
  778. }
  779. import('@/vendor/Export5Excel').then(excel => {
  780. const multiHeader = [['饲料名称', '期初', '', '用量', '', '', '', '期末', '']]
  781. const multiHeader2 = [['', '期初库存(kg)', '期初金额(元)', '入库重量(kg)', '系统出库重量(kg)', '人工用料重量(kg)', '损耗重量', '期末库存(kg)', '期末金额(元)']]
  782. const filterVal = ['feedname', 'startsum', 'startprice', 'laidsum', 'usesumXT', 'usesumRG', 'usesumXH', 'stopsum', 'stopprice']
  783. const data = this.downLoad.list.map((v) => filterVal.map((j) => v[j]))
  784. const merges = ['A1:A2', 'B1:C1', 'D1:G1', 'H1:I1']
  785. excel.export_json_to_excel({ multiHeader, multiHeader2, data, filename: '库存统计', merges })
  786. })
  787. })
  788. } else if (item == 'tab2') {
  789. console.log('用料分析导出数据', this.tab2.table.list)
  790. console.log('用料分析导出表头', this.tab2.table.tableConfig)
  791. console.log(this.tab2.table.getdataListParm.checked, 'checked')
  792. console.log(this.tab2.table.getdataListParm)
  793. var startTime = this.tab2.table.getdataListParm.parammaps.startTime
  794. var stopTime = this.tab2.table.getdataListParm.parammaps.stopTime
  795. var exportData = []
  796. var exportTitle1 = [] // 一级标题
  797. var exportTitle2 = [] // 二级标题
  798. var filterValArr = []
  799. for (let i = 0; i < this.tab2.table.tableConfig.length; i++) {
  800. exportTitle1.push(this.tab2.table.tableConfig[i].label)
  801. for (let j = 0; j < this.tab2.table.tableConfig[i].children.length; j++) {
  802. exportTitle2.push(this.tab2.table.tableConfig[i].children[j].label)
  803. filterValArr.push(this.tab2.table.tableConfig[i].children[j].prop)
  804. }
  805. }
  806. console.log('一级标题exportTitle1', exportTitle1)
  807. console.log('二级标题exportTitle2', exportTitle2)
  808. console.log('对应字段filterValArr', filterValArr)
  809. var headerArr = []// 处理一级标题
  810. if (this.tab2.table.getdataListParm.checked == 1) {
  811. for (let i = 0; i < exportTitle1.length; i++) {
  812. if (i > 0) {
  813. headerArr.push(exportTitle1[i], '', '', '')
  814. } else {
  815. headerArr.push(exportTitle1[i])
  816. }
  817. }
  818. } else {
  819. if(this.tab2.table.getdataListParm.parammaps.typea == ''){
  820. for (let i = 0; i < exportTitle1.length; i++) {
  821. if (i > 0) {
  822. headerArr.push(exportTitle1[i], '')
  823. } else {
  824. headerArr.push(exportTitle1[i])
  825. }
  826. }
  827. }else{
  828. headerArr = exportTitle1
  829. }
  830. }
  831. console.log('headerArr', headerArr)
  832. console.log('exportTitle2', exportTitle2)
  833. console.log('filterValArr', filterValArr)
  834. if (headerArr.length > 0) {
  835. import('@/vendor/Export3Excel').then((excel) => {
  836. const multiHeader = [
  837. headerArr
  838. ]
  839. const multiHeader2 = []
  840. const tHeader = exportTitle2
  841. const filterVal = filterValArr
  842. const data = this.tab2.table.list.map(v => filterVal.map(j => v[j]))
  843. // const data = []
  844. const merges = ['A1:A1']
  845. excel.export_json_to_excel({ multiHeader, multiHeader2, header: tHeader, data, filename: '用料分析-'+startTime+'-' +stopTime , merges })
  846. })
  847. }else{
  848. import('@/vendor/Export3Excel').then((excel) => {
  849. const multiHeader = [
  850. headerArr
  851. ]
  852. const multiHeader2 = []
  853. const tHeader = exportTitle2
  854. const filterVal = filterValArr
  855. const data = this.tab2.table.list.map(v => filterVal.map(j => v[j]))
  856. // const data = []
  857. // const merges = ['A1:A1']
  858. const merges = []
  859. excel.export_json_to_excel({ multiHeader, multiHeader2, header: tHeader, data, filename: '用料分析', merges })
  860. })
  861. }
  862. } else if (item == 'tab3') {
  863. console.log('价格分析导出')
  864. console.log('价格分析导出数据', this.tab3.table.list)
  865. console.log('价格分析导出表头', this.tab3.table.tableConfig)
  866. var exportData = []
  867. var exportTitle1 = [] // 一级标题
  868. var exportTitle2 = [] // 二级标题
  869. for (let i = 0; i < this.tab3.table.tableConfig.length; i++) {
  870. exportTitle1.push(this.tab3.table.tableConfig[i].label)
  871. for (let j = 0; j < this.tab3.table.tableConfig[i].children.length; j++) {
  872. exportTitle2.push(this.tab3.table.tableConfig[i].children[j].label)
  873. }
  874. }
  875. console.log('一级标题exportTitle1', exportTitle1)
  876. console.log('二级标题exportTitle2', exportTitle2)
  877. var headerArr = []// 处理一级标题
  878. for (let i = 0; i < exportTitle1.length; i++) {
  879. if (i > 0) {
  880. headerArr.push(exportTitle1[i], '')
  881. } else {
  882. headerArr.push(exportTitle1[i])
  883. }
  884. }
  885. console.log('一级表头处理后', headerArr)
  886. var valueArr = [] // 对应字段
  887. for (let i = 0; i < exportTitle2.length; i++) {
  888. if (i == 0) {
  889. valueArr.push('A')
  890. } else {
  891. valueArr.push('a' + [i - 1])
  892. }
  893. }
  894. console.log('对应字段valueArr', valueArr)
  895. if (headerArr.length > 0) {
  896. import('@/vendor/Export3Excel').then((excel) => {
  897. const multiHeader = [
  898. headerArr
  899. ]
  900. const multiHeader2 = []
  901. const tHeader = exportTitle2
  902. const filterVal = valueArr// 表头所对应的字段,这里未填写
  903. const data = this.tab3.table.list.map(v => filterVal.map(j => v[j]))
  904. // const data = [];
  905. // 进行所有表头的单元格合并
  906. // const merges = ['A1:A1', 'B1:E1','F1:J1' ];
  907. const merges = ['A1:A1']
  908. excel.export_json_to_excel({ multiHeader, multiHeader2, header: tHeader, data, filename: '价格分析', merges })
  909. })
  910. }
  911. }
  912. },
  913. format(jsonData) { // 数据处理
  914. const dataList = []
  915. for (let i = 0; i < jsonData.length; i++) {
  916. const list = []
  917. list.push(jsonData[i].index)
  918. list.push(jsonData[i].Personel)
  919. list.push(jsonData[i].address)
  920. for (let j = 0; j < jsonData[0]['time'].length; j++) {
  921. list.push(jsonData[i]['time'][j].morning)
  922. list.push(jsonData[i]['time'][j].afternoon)
  923. }
  924. dataList.push(list)
  925. }
  926. return dataList
  927. }
  928. }
  929. }
  930. </script>
  931. <style lang="scss" scoped>
  932. .search{
  933. margin-bottom:10px;
  934. .el-radio{margin-right: 10px;}
  935. .filter-item1{margin-top: 10px;}
  936. }
  937. /deep/ .el-table th>.cell{
  938. padding-left: 0 !important;;
  939. padding-right: 0 !important;;
  940. }
  941. /deep/ .el-table td>.cell{
  942. padding-left: 0 !important;;
  943. padding-right: 0 !important;;
  944. }
  945. // .el-radio{margin-right: 20px;}
  946. </style>
  947. <style lang="css">
  948. .el-tooltip__popper{
  949. max-width: 60% !important;
  950. }
  951. .plTableBox .el-table td.is-hidden>*, .plTableBox .el-table th.is-hidden>*{
  952. visibility:inherit;
  953. }
  954. </style>