drugCancelDetail.vue 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610
  1. <template>
  2. <div>
  3. <el-button
  4. style="float: right"
  5. size="small"
  6. icon="el-icon-printer"
  7. @click="PrintAction"
  8. type="primary"
  9. >打印
  10. </el-button>
  11. <el-button
  12. style="float: right;margin-right:10px"
  13. size="small"
  14. @click="exportListOne"
  15. type="primary"
  16. >明细导出
  17. </el-button>
  18. <el-button
  19. style="float: right;margin-right:10px"
  20. size="small"
  21. @click="exportList"
  22. type="primary"
  23. >汇总导出
  24. </el-button>
  25. <div class="cell clearfix">
  26. <el-input
  27. size="small"
  28. style="width: 400px;"
  29. class="filter-item"
  30. v-model.trim="searchKey"
  31. placeholder="单据编码/制单人/药品名称"
  32. />
  33. <el-button
  34. size="small"
  35. class="filter-item"
  36. type="primary"
  37. icon="el-icon-search"
  38. @click="search"
  39. >搜索</el-button
  40. >
  41. <div style="margin-left:10px;">
  42. <label class="title"><span class="name">日期查询</span> : </label>
  43. <el-date-picker
  44. size="small"
  45. v-model="start_time"
  46. prefix-icon="el-icon-date"
  47. :editable="false"
  48. style="width: 150px;"
  49. type="date"
  50. placeholder="选择日期时间"
  51. align="right"
  52. format="yyyy-MM-dd"
  53. value-format="yyyy-MM-dd"
  54. ></el-date-picker>
  55. <span class="cellLine"> - </span>
  56. <el-date-picker
  57. size="small"
  58. v-model="end_time"
  59. prefix-icon="el-icon-date"
  60. :editable="false"
  61. style="width: 150px;"
  62. type="date"
  63. placeholder="选择日期时间"
  64. align="right"
  65. format="yyyy-MM-dd"
  66. value-format="yyyy-MM-dd"
  67. ></el-date-picker>
  68. <el-button
  69. size="small"
  70. class="filter-item"
  71. type="primary"
  72. icon="el-icon-search"
  73. @click="getAllQuery"
  74. >查询</el-button
  75. >
  76. </div>
  77. </div>
  78. <!-- <el-row :gutter="12" style="margin-top: 10px"> -->
  79. <el-table class="eltable"
  80. :data="tableData"
  81. :class="signAndWeighBoxPatients"
  82. border
  83. highlight-current-row
  84. ref="multipleTable"
  85. @selection-change="select"
  86. :row-style="{ color: '#303133' }"
  87. :header-cell-style="{
  88. backgroundColor: 'rgb(245, 247, 250)',
  89. color: '#606266'
  90. }"
  91. height="calc(100vh - 300px)"
  92. >
  93. <el-table-column label="单据编号" align="center" width="200">
  94. <template slot-scope="scope">
  95. {{scope.row.order_number}}
  96. </template>
  97. </el-table-column>
  98. <el-table-column label="药品类型" align="center">
  99. <template slot-scope="scope">
  100. <span v-if="scope.row.drug_type == 1">西药</span>
  101. <span v-if="scope.row.drug_type == 2">草药</span>
  102. <span v-if="scope.row.drug_type == 3">成药</span>
  103. <!-- {{getTypeList(scope.row.drug_type)}} -->
  104. </template>
  105. </el-table-column>
  106. <el-table-column label="药品名称" align="center">
  107. <template slot-scope="scope">
  108. <span>{{scope.row.drug_name}}</span>
  109. </template>
  110. </el-table-column>
  111. <el-table-column label="规格型号" align="center">
  112. <template slot-scope="scope">
  113. <span>{{scope.row.specification_name}}</span>
  114. </template>
  115. </el-table-column>
  116. <!-- <el-table-column label="单据类型" align="center">
  117. <template slot-scope="scope">
  118. <span v-if="scope.row.type == 1">药品退库单</span>
  119. <span v-if="scope.row.type == 2">其他</span>
  120. </template>
  121. </el-table-column> -->
  122. <el-table-column label="操作时间" align="center">
  123. <template slot-scope="scope">
  124. <span>{{getTime(scope.row.ctime)}}</span>
  125. </template>
  126. </el-table-column>
  127. <el-table-column label="制单人" align="center">
  128. <template slot-scope="scope">
  129. {{getAdminUser(scope.row.creater)}}
  130. </template>
  131. </el-table-column>
  132. <el-table-column label="退货价" align="center">
  133. <template slot-scope="scope">
  134. {{scope.row.price}}
  135. </template>
  136. </el-table-column>
  137. <el-table-column label="使用人" align="center">
  138. <template slot-scope="scope">
  139. {{getPatientName(scope.row.patient_id) }}
  140. </template>
  141. </el-table-column>
  142. <el-table-column label="数量" align="center">
  143. <template slot-scope="scope">
  144. {{scope.row.count}}
  145. </template>
  146. </el-table-column>
  147. <el-table-column label="单位" align="center">
  148. <template slot-scope="scope">
  149. {{scope.row.unit}}
  150. </template>
  151. </el-table-column>
  152. <el-table-column label="总价" align="center">
  153. <template slot-scope="scope">
  154. {{scope.row.total_price}}
  155. </template>
  156. </el-table-column>
  157. </el-table>
  158. <el-pagination
  159. @size-change="handleSizeChange"
  160. @current-change="handleCurrentChange"
  161. :page-sizes="[10, 50, 100]"
  162. :page-size="10"
  163. background
  164. style="margin-top:20px;float: right"
  165. layout="total, sizes, prev, pager, next, jumper"
  166. :total="total"
  167. >
  168. </el-pagination>
  169. <!-- </el-row> -->
  170. </div>
  171. </template>
  172. <script>
  173. import { uParseTime } from "@/utils/tools";
  174. import { fetchAllAdminUsers} from "@/api/doctor";
  175. import { GetAllConfig} from "@/api/stock";
  176. import { getDrugCancelDetail } from "@/api/drug/drug_stock";
  177. export default {
  178. name: "cancelStockDetail",
  179. created() {
  180. var nowDate = new Date();
  181. var nowYear = nowDate.getFullYear();
  182. var nowMonth = nowDate.getMonth() + 1;
  183. var nowDay = nowDate.getDate();
  184. this.end_time =
  185. nowYear +
  186. "-" +
  187. (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
  188. "-" +
  189. (nowDay < 10 ? "0" + nowDay : nowDay);
  190. nowDate.setMonth(nowDate.getMonth() - 1);
  191. nowYear = nowDate.getFullYear();
  192. nowMonth = nowDate.getMonth() + 1;
  193. nowDay = nowDate.getDate();
  194. this.start_time =
  195. nowYear +
  196. "-" +
  197. (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
  198. "-" +
  199. (nowDay < 10 ? "0" + nowDay : nowDay);
  200. var start = window.sessionStorage.getItem('start_cancel_time')
  201. if(start!=null){
  202. this.start_time = start
  203. }
  204. if(end!=null){
  205. var end = window.sessionStorage.getItem('end_cancel_time')
  206. this.end_time = end
  207. }
  208. this.GetConfigInfo();
  209. this.fetchAllAdminUsers();
  210. this.getlist()
  211. },
  212. data() {
  213. return {
  214. orderTypeArr: [
  215. { value: 1, label: "药品退库单" },
  216. { value: 2, label: "其他入库单" }
  217. ],
  218. manufacturer_id: "",
  219. dealer_id: "",
  220. order_type: "",
  221. searchKey: "",
  222. type: 4,
  223. page: 1,
  224. limit: 10,
  225. checked: false,
  226. total: 0,
  227. pageTotal: 0,
  228. pageSelect: 0,
  229. adminUserOptions: [],
  230. multipleSelection: [],
  231. signAndWeighBoxPatients: "sign-and-weigh-box-patients",
  232. start_time: "",
  233. cancelStockDate: [],
  234. end_time: "",
  235. goodType: [],
  236. goodInfo: [],
  237. manufacturer: [],
  238. selectedTableData: [],
  239. dealer: [],
  240. tableData:[],
  241. tableList:[],
  242. tableDataList:[],
  243. drugTypeList:[],
  244. dealerList:[],
  245. manufacturerList:[],
  246. patientsList:[]
  247. };
  248. },
  249. methods: {
  250. PrintAction() {
  251. window.sessionStorage.setItem('start_cancel_time',this.start_time)
  252. window.sessionStorage.setItem('end_cancel_time',this.end_time)
  253. this.$router.push("/stock/drugcanceldetaiprint?start_time="+this.start_time+"&end_time="+this.end_time+"&order_type="+this.order_type+"&manufacturer_id="+this.manufacturer_id+"&keyword="+this.keyword+"&limit="+this.limit+"&page="+this.page)
  254. },
  255. changeType: function(val) {
  256. this.order_type = val;
  257. this.getlist()
  258. },
  259. changeManufacturer: function(val) {
  260. this.manufacturer_id = val;
  261. this.getlist()
  262. },
  263. getTypeName: function(row) {
  264. let name = "";
  265. const name2 = "";
  266. if (row.type == 1) {
  267. name = "药品退库单";
  268. } else if (row.type == 2) {
  269. name = "其他退库单";
  270. }
  271. return name;
  272. },
  273. search() {
  274. this.getlist()
  275. },
  276. fetchAllAdminUsers() {
  277. fetchAllAdminUsers().then(response => {
  278. console.log(response);
  279. if (response.data.state == 1) {
  280. this.adminUserOptions = response.data.data.users;
  281. }
  282. });
  283. },
  284. handleSelectionChange: function(val) {
  285. this.multipleSelection = val;
  286. this.getlist()
  287. },
  288. handleSizeChange(val) {
  289. this.limit = val;
  290. this.getlist()
  291. },
  292. handleCurrentChange(val) {
  293. this.page = val;
  294. this.getlist()
  295. },
  296. startTimeChange(val) {
  297. var time = this.getTimestamp(val) - this.getTimestamp(this.end_time);
  298. if (time > 0) {
  299. this.$message.error("结束时间不能小于开始时间");
  300. this.start_time = "";
  301. } else {
  302. this.getlist()
  303. }
  304. },
  305. endTimeChange(val) {
  306. var time = this.getTimestamp(val) - this.getTimestamp(this.start_time);
  307. if (time < 0) {
  308. this.$message.error("结束时间不能小于开始时间");
  309. this.end_time = "";
  310. } else {
  311. this.getlist()
  312. }
  313. },
  314. getAllQuery(){
  315. this.getlist()
  316. },
  317. getTimestamp(time) {
  318. // 把时间日期转成时间戳
  319. return new Date(time).getTime() / 1000;
  320. },
  321. calculate: function(val) {
  322. return Math.round(parseFloat(val) * 100) / 100;
  323. },
  324. GetConfigInfo: function() {
  325. GetAllConfig().then(response => {
  326. if (response.data.state == 0) {
  327. this.$message.error(response.data.msg);
  328. return false;
  329. } else {
  330. this.manufacturer = response.data.data.manufacturer;
  331. this.dealer = response.data.data.dealer;
  332. this.goodInfo = response.data.data.goodInfo;
  333. this.goodType = response.data.data.goodType;
  334. }
  335. });
  336. },
  337. select(selection) {
  338. },
  339. getlist(){
  340. var params = {
  341. start_time:this.start_time,
  342. end_time:this.end_time,
  343. order_type:this.order_type,
  344. manufacturer_id:this.manufacturer_id,
  345. keyword:this.searchKey,
  346. limit:this.limit,
  347. page:this.page,
  348. }
  349. const loading = this.$loading({
  350. lock: true,
  351. text: 'Loading',
  352. spinner: 'el-icon-loading',
  353. background: 'rgba(0, 0, 0, 0.7)'
  354. })
  355. getDrugCancelDetail(params).then(response=>{
  356. if(response.data.state == 1){
  357. loading.close()
  358. var order = response.data.data.order
  359. var list = response.data.data.orderPrint
  360. this.dealerList = response.data.data.dealerList
  361. this.manufacturerList = response.data.data.manufacturerList
  362. this.patientsList =response.data.data.patientsList
  363. //this.drugTypeList = response.data.data.drugTypeList
  364. for(let i=0;i<list.length;i++){
  365. list[i].child = []
  366. for(let j=0;j<order.length;j++){
  367. if(list[i].drug_id == order[j].drug_id){
  368. list[i].child.push(order[j])
  369. }
  370. }
  371. list[i].manufacturer_name = this.getManufacturerName(list[i].manufacturer)
  372. list[i].dealer_name = this.getDealerName(list[i].dealer)
  373. }
  374. this.tableDataList = list
  375. console.log("数据我我我",this.tableDataList)
  376. var total_price = 0
  377. for(let i=0;i<order.length;i++){
  378. order[i].specification_name = order[i].dose + order[i].dose_unit + "*" + order[i].min_number + order[i].min_unit + "/" + order[i].max_unit
  379. order[i].is_total = 0
  380. order[i].total_price = order[i].count * order[i].price
  381. total_price += order[i].count * order[i].price
  382. order[i].manufacturer_name = this.getManufacturerName(order[i].manufacturer)
  383. order[i].dealer_name = this.getDealerName(order[i].dealer)
  384. }
  385. order.push({
  386. order_number: "合计",
  387. is_total: 1,
  388. specification_name:"",
  389. unit:"",
  390. ctime:"",
  391. total_price:total_price.toFixed(2),
  392. });
  393. this.tableData = order
  394. this.tableList = order
  395. var total = response.data.data.total
  396. this.total = total
  397. }else{
  398. loading.close()
  399. }
  400. })
  401. },
  402. getManufacturerName(id){
  403. var manufacturer_name = ""
  404. for(let i=0;i<this.manufacturerList.length;i++){
  405. if(id == this.manufacturerList[i].id){
  406. manufacturer_name = this.manufacturerList[i].manufacturer_name
  407. }
  408. }
  409. return manufacturer_name
  410. },
  411. getDealerName(id){
  412. var dealer_name = ""
  413. for(let i=0;i<this.dealerList.length;i++){
  414. if(id == this.dealerList[i].id){
  415. dealer_name = this.dealerList[i].dealer_name
  416. }
  417. }
  418. return dealer_name
  419. },
  420. getAdminUser(id){
  421. var name = ""
  422. for(let i=0;i<this.adminUserOptions.length;i++){
  423. if(id == this.adminUserOptions[i].id){
  424. name = this.adminUserOptions[i].name
  425. }
  426. }
  427. return name
  428. },
  429. getTime: function(val) {
  430. if (val == 0) {
  431. return "";
  432. } else {
  433. return uParseTime(val, "{y}-{m}-{d}");
  434. }
  435. },
  436. exportList(){
  437. for(let i=0;i<this.tableDataList.length;i++){
  438. // if(this.tableDataList[i].drug_type == 1){
  439. // this.tableDataList[i].drug_type == "西药"
  440. // }
  441. // if(this.tableDataList[i].drug_type == 2){
  442. // this.tableDataList[i].drug_type == "草药"
  443. // }
  444. // if(this.tableDataList[i].drug_type == 3){
  445. // this.tableDataList[i].drug_type == "成药"
  446. // }
  447. this.tableDataList[i].drug_type = this.getTypeList(this.tableDataList[i].drug_type)
  448. this.tableDataList[i].index = i+1
  449. this.tableDataList[i].unit = this.tableDataList[i].dose + this.tableDataList[i].dose_unit + "*"+this.tableDataList[i].min_number + this.tableDataList[i].min_unit+"/"+this.tableDataList[i].max_unit
  450. this.tableDataList[i].user_name = this.getAdminUser(this.tableDataList[i].creater)
  451. this.tableDataList[i].total_count = this.getTotalCount(this.tableDataList[i].child)
  452. this.tableDataList[i].total_price = this.tableDataList[i].total_count * this.tableDataList[i].price
  453. this.tableDataList[i].ctime = this.getTime(this.tableDataList[i].ctime)
  454. }
  455. import('@/vendor/Export2Excel').then(excel => {
  456. const tHeader = ['序号','单据编号', '药品名称', '规格型号','生产厂商','进销商','单据类型','操作时间','制单人','数量','退库价','总价']
  457. const filterVal = ['index','order_number','drug_name', 'specification_name','manufacturer_name','dealer_name', 'drug_type','ctime','user_name','total_count','price','total_price']
  458. const data = this.formatJson(filterVal, this.tableDataList)
  459. excel.export_json_to_excel({
  460. header: tHeader,
  461. data,
  462. filename: '药品退库明细'
  463. })
  464. this.downloadLoading = false
  465. })
  466. },
  467. formatJson(filterVal, jsonData) {
  468. return jsonData.map(v => filterVal.map(j => v[j]));
  469. },
  470. exportListOne(){
  471. // let obj = {'index':'合计','total_price':0}
  472. console.log("@332322323232332",this.tableList)
  473. for(let i=0;i<this.tableList.length;i++){
  474. this.tableList[i].index = i+1
  475. this.tableList[i].unit_one = this.tableList[i].dose + this.tableList[i].dose_unit + "*"+this.tableList[i].min_number + this.tableList[i].min_unit+"/"+this.tableList[i].max_unit
  476. if(this.tableList[i].drug_type == 1){
  477. this.tableList[i].drugtype = "西药"
  478. }
  479. if(this.tableList[i].drug_type == 2){
  480. this.tableList[i].drugtype = "草药"
  481. }
  482. if(this.tableList[i].drug_type == 3){
  483. this.tableList[i].drugtype = "成药"
  484. }
  485. this.tableList[i].time = this.getTime(this.tableList[i].ctime)
  486. this.tableList[i].user_name = this.getAdminUser(this.tableList[i].creater)
  487. }
  488. import('@/vendor/Export2Excel').then(excel => {
  489. const tHeader = ['序号','单据编号', '药品类型','药品名称', '规格型号','生产厂商','进销商','操作时间','制单人','退货价','数量','单位','总价']
  490. const filterVal = ['index','order_number','drugtype','drug_name', 'specification_name','manufacturer_name','dealer_name', 'time','user_name','price','count','unit','total_price']
  491. const data = this.formatJson(filterVal, this.tableList)
  492. excel.export_json_to_excel({
  493. header: tHeader,
  494. data,
  495. filename: '药品退库明细'
  496. })
  497. this.downloadLoading = false
  498. })
  499. },
  500. getTotalCount(val){
  501. var total = 0
  502. if(val.length > 0){
  503. for(let i=0;i<val.length;i++){
  504. total +=val[i].count
  505. }
  506. }
  507. return total
  508. },
  509. getTypeList(id){
  510. var name = ""
  511. for(let i=0;i<this.drugTypeList.length;i++){
  512. if(id == this.drugTypeList[i].value){
  513. name = this.drugTypeList[i].name
  514. }
  515. }
  516. return name
  517. },
  518. getPatientName(id){
  519. var name =""
  520. for(let i=0;i<this.patientsList.length;i++){
  521. if(id == this.patientsList[i].id){
  522. name = this.patientsList[i].name
  523. }
  524. }
  525. return name
  526. },
  527. }
  528. };
  529. </script>
  530. <style rel="stylesheet/css" lang="scss" scoped>
  531. .information {
  532. border: 1px #dcdfe6 solid;
  533. padding: 30px 20px 30px 20px;
  534. .border {
  535. border-bottom: 1px #dcdfe6 solid;
  536. margin: 0px 0 20px 0;
  537. }
  538. }
  539. .edit_separater {
  540. border-top: 1px solid rgb(233, 233, 233);
  541. margin-top: 15px;
  542. margin-bottom: 15px;
  543. }
  544. </style>
  545. <style>
  546. .sign-and-weigh-box .sign-and-weigh-box-patients .cell {
  547. font-size: 12px;
  548. }
  549. .sign-and-weigh-box .sign-and-weigh-box-patients .current-row > td {
  550. background: #6fb5fa;
  551. }
  552. .count {
  553. color: #bd2c00;
  554. }
  555. .el-table td,
  556. .el-table th.is-leaf,
  557. .el-table--border,
  558. .el-table--group {
  559. border-color: #d0d3da;
  560. }
  561. .el-table--border::after,
  562. .el-table--group::after,
  563. .el-table::before {
  564. background-color: #d0d3da;
  565. }
  566. </style>