Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

inventoryDetails.vue 8.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. <template>
  2. <div>
  3. <div style="display: flex;align-items: center;justify-content: space-between;margin-bottom:10px;">
  4. <div>
  5. <label class="title"><span class="name">仓库</span> :</label>
  6. <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" @change="changeHouseList">
  7. <el-option
  8. v-for="(option, index) in houseList"
  9. :key="index"
  10. :label="option.storehouse_name"
  11. :value="option.id">
  12. </el-option>
  13. </el-select>
  14. <el-input
  15. size="small"
  16. style="width: 200px;margin-left:10px;"
  17. class="filter-item"
  18. v-model.trim="searchKey"
  19. placeholder="请输入耗材名称"
  20. />
  21. <el-button
  22. size="small"
  23. class="filter-item"
  24. type="primary"
  25. icon="el-icon-search"
  26. @click="search">搜索</el-button>
  27. </div>
  28. <div>
  29. <el-button type="primary" @click="toprint">打印</el-button>
  30. <el-button type="primary" @click="inventoryExportList">盘点模版打印</el-button>
  31. </div>
  32. <!-- <div>
  33. <el-button size="small" type="primary" @click="print">打印</el-button>
  34. <el-button size="small" type="primary" @click="exportList">导出</el-button>
  35. </div> -->
  36. </div>
  37. <el-table :data="tableData" border :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }" @selection-change="changePrice" >
  38. <el-table-column type="selection" width="55" align="center"> </el-table-column>
  39. <el-table-column prop="date" label="耗材名称" align="center">
  40. <template slot-scope="scope">
  41. {{scope.row.good_name}}
  42. </template>
  43. </el-table-column>
  44. <el-table-column prop="name" label="规格" width="200" align="center">
  45. <template slot-scope="scope">
  46. {{scope.row.specification_name}}
  47. </template>
  48. </el-table-column>
  49. <el-table-column prop="name" label="有效日期" width="200" align="center">
  50. <template slot-scope="scope">
  51. {{getTime(scope.row.expire_date)}}
  52. </template>
  53. </el-table-column>
  54. <el-table-column prop="name" label="仓库名称" width="200" align="center">
  55. <template slot-scope="scope">
  56. {{getStorehouseName(scope.row.storehouse_id)}}
  57. </template>
  58. </el-table-column>
  59. <el-table-column prop="name" label="盘点前数量" width="100" align="center">
  60. <template slot-scope="scope">
  61. <span>{{scope.row.stock_count?scope.row.stock_count:0}}</span>
  62. </template>
  63. </el-table-column>
  64. <el-table-column prop="name" label="盘点后数量" width="100" align="center">
  65. <template slot-scope="scope">
  66. <span>{{scope.row.last_stock_count?scope.row.last_stock_count:0}}</span>
  67. </template>
  68. </el-table-column>
  69. <el-table-column prop="name" label="盘盈类型" width="100" align="center">
  70. <template slot-scope="scope">
  71. <span v-if="scope.row.stock_count > scope.row.last_stock_count">盘亏</span>
  72. <span v-if="scope.row.stock_count < scope.row.last_stock_count">盘盈</span>
  73. </template>
  74. </el-table-column>
  75. <el-table-column prop="name" label="盘点原因" width="230" align="center">
  76. <template slot-scope="scope">
  77. <span v-if="scope.row.inventory_type ==6">默认</span>
  78. <span v-if="scope.row.inventory_type ==1">到期退货</span>
  79. <span v-if="scope.row.inventory_type ==2">异常退货</span>
  80. <span v-if="scope.row.inventory_type ==3">退货</span>
  81. <span v-if="scope.row.inventory_type ==4">损坏</span>
  82. <span v-if="scope.row.inventory_type ==5">不计入报损分析</span>
  83. <span v-if="scope.row.inventory_type ==7">有效期到期</span>
  84. </template>
  85. </el-table-column>
  86. </el-table>
  87. <el-pagination
  88. @size-change="handleSizeChange"
  89. @current-change="handleCurrentChange"
  90. :page-sizes="[10, 20, 40, 100]"
  91. :page-size="10"
  92. background
  93. style="margin-top:20px;text-align: right"
  94. layout="total, sizes, prev, pager, next, jumper"
  95. :total="total"
  96. >
  97. </el-pagination>
  98. </div>
  99. </template>
  100. <script>
  101. import { uParseTime } from '@/utils/tools'
  102. import { getInventoryDetailList } from "@/api/stock"
  103. export default {
  104. name: "inventory",
  105. data() {
  106. return{
  107. searchKey:'',
  108. value1:'',
  109. value2:'',
  110. tableData: [],
  111. dialogVisible:false,
  112. form: {
  113. name: '',
  114. },
  115. total: 0,
  116. limit:10,
  117. page:1,
  118. ids:"",
  119. damageList:[],
  120. storehouse_id:0,
  121. houseList:[],
  122. }
  123. },
  124. methods:{
  125. toprint(){
  126. this.$router.push({path:'/stock/print_all?storehouse_id='+this.storehouse_id+"&good_name="+this.searchKey+"&limit="+this.limit+"&page="+this.page+"&ids="+this.ids})
  127. },
  128. search(){
  129. this.getlist()
  130. },
  131. print(){
  132. if(this.ids == ""){
  133. this.$message.error("请勾选打印数据")
  134. return false
  135. }
  136. this.$router.push({path:'/stock/inventoryDetailPrint?ids='+this.ids})
  137. },
  138. handleSizeChange(val){
  139. this.limit = val
  140. this.getlist()
  141. },
  142. handleCurrentChange(val){
  143. this.page = val
  144. this.getlist()
  145. },
  146. getlist(){
  147. var params = {
  148. keyword:this.searchKey,
  149. limit:this.limit,
  150. page:this.page,
  151. storehouse_id:this.storehouse_id,
  152. }
  153. this.tableData = []
  154. getInventoryDetailList(params).then(response=>{
  155. if(response.data.state == 1){
  156. var list = response.data.data.list
  157. console.log("盘点列表23223232323",list)
  158. this.tableData = list
  159. this.total = response.data.data.total
  160. var obj = {id:0,storehouse_name:"全部"}
  161. this.houseList = []
  162. this.houseList.push(obj)
  163. for(let i=0;i<response.data.data.houseList.length;i++){
  164. this.houseList.push(response.data.data.houseList[i])
  165. }
  166. }
  167. })
  168. },
  169. changePrice(val){
  170. var arr = []
  171. for(let i=0;i<val.length;i++){
  172. arr.push(val[i].id)
  173. }
  174. var str = arr.join(",")
  175. console.log("str",str)
  176. this.ids = str
  177. },
  178. exportList(){
  179. import('@/vendor/Export2Excel').then(excel => {
  180. const tHeader = ['耗材名称', '规格', '单位','零售价','当前库存','盘点数','亏损金额']
  181. const filterVal = ['good_name', 'specification_name', 'warehousing_unit','packing_price','total','count','']
  182. const data = this.formatJson(filterVal, this.tableData)
  183. excel.export_json_to_excel({
  184. header: tHeader,
  185. data,
  186. filename: '耗材盘点明细'
  187. })
  188. this.downloadLoading = false
  189. })
  190. },
  191. formatJson(filterVal, jsonData) {
  192. return jsonData.map(v => filterVal.map(j => v[j]));
  193. },
  194. getTime(val) {
  195. if(val < 0){
  196. return ""
  197. }
  198. if(val == ""){
  199. return ""
  200. }else {
  201. return uParseTime(val, '{y}-{m}-{d}')
  202. }
  203. },
  204. inventoryExportList(){
  205. this.$router.push({path:'/stock/inventoryPrint'})
  206. },
  207. getStorehouseName(id){
  208. var storehouse_name = ""
  209. for(let i=0;i<this.houseList.length;i++){
  210. if(id == this.houseList[i].id){
  211. storehouse_name = this.houseList[i].storehouse_name
  212. }
  213. }
  214. if(storehouse_name == "全部"){
  215. return ""
  216. }else{
  217. return storehouse_name
  218. }
  219. },
  220. changeHouseList(){
  221. this.houseList = []
  222. this.getlist()
  223. }
  224. },
  225. created(){
  226. this.getlist()
  227. },
  228. };
  229. </script>