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

drugCancelOrder.vue 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  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. <div class="cell clearfix">
  12. <el-input
  13. size="small"
  14. style="width: 400px;"
  15. class="filter-item"
  16. v-model="searchKey"
  17. placeholder="单据编码/制单人/规格名称"
  18. />
  19. <el-button
  20. size="small"
  21. class="filter-item"
  22. type="primary"
  23. icon="el-icon-search"
  24. @click="search"
  25. >搜索</el-button
  26. >
  27. </div>
  28. <div class="cell clearfix">
  29. <label class="title"><span class="name">日期查询</span> : </label>
  30. <el-date-picker
  31. size="small"
  32. v-model="start_time"
  33. prefix-icon="el-icon-date"
  34. :editable="false"
  35. style="width: 196px;"
  36. type="date"
  37. placeholder="选择日期时间"
  38. align="right"
  39. format="yyyy-MM-dd"
  40. value-format="yyyy-MM-dd"
  41. @change="startTimeChange"
  42. ></el-date-picker>
  43. <span class="cellLine"> - </span>
  44. <el-date-picker
  45. size="small"
  46. v-model="end_time"
  47. prefix-icon="el-icon-date"
  48. :editable="false"
  49. style="width: 196px;"
  50. type="date"
  51. placeholder="选择日期时间"
  52. align="right"
  53. format="yyyy-MM-dd"
  54. value-format="yyyy-MM-dd"
  55. @change="endTimeChange"
  56. ></el-date-picker>
  57. </div>
  58. <div class="cell clearfix">
  59. <label class="title"><span class="name">单据类型</span> : </label>
  60. <el-select
  61. size="small"
  62. v-model="order_type"
  63. clearable
  64. placeholder="单据类型"
  65. @change="changeType"
  66. >
  67. <el-option
  68. v-for="item in orderTypeArr"
  69. :key="item.value"
  70. :label="item.label"
  71. :value="item.value"
  72. >
  73. </el-option>
  74. </el-select>
  75. </div>
  76. <div class="cell clearfix">
  77. <label class="title"><span class="name">其它</span> : </label>
  78. <el-select
  79. size="small"
  80. v-model="manufacturer_id"
  81. clearable
  82. placeholder="厂商"
  83. @change="changeManufacturer"
  84. >
  85. <el-option
  86. v-for="item in manufacturer"
  87. :key="item.id"
  88. :label="item.manufacturer_name"
  89. :value="item.id"
  90. >
  91. </el-option>
  92. </el-select>
  93. </div>
  94. <el-row :gutter="12" style="margin-top: 10px">
  95. <el-table
  96. :data="tableData"
  97. :class="signAndWeighBoxPatients"
  98. border
  99. highlight-current-row
  100. ref="multipleTable"
  101. @selection-change="select"
  102. :row-style="{ color: '#303133' }"
  103. :header-cell-style="{
  104. backgroundColor: 'rgb(245, 247, 250)',
  105. color: '#606266'
  106. }"
  107. >
  108. <el-table-column label="单据编号" align="center" width="200">
  109. <template slot-scope="scope">
  110. {{scope.row.order_number}}
  111. </template>
  112. </el-table-column>
  113. <el-table-column label="药品类型" align="center">
  114. <template slot-scope="scope">
  115. <span v-if="scope.row.drug_type == 1">西药</span>
  116. <span v-if="scope.row.drug_type == 2">草药</span>
  117. <span v-if="scope.row.drug_type == 3">成药</span>
  118. </template>
  119. </el-table-column>
  120. <el-table-column label="药品名称" align="center">
  121. <template slot-scope="scope">
  122. <span>{{scope.row.drug_name}}</span>
  123. </template>
  124. </el-table-column>
  125. <el-table-column label="规格型号" align="center">
  126. <template slot-scope="scope">
  127. <span>{{scope.row.drug_spec}}</span>
  128. </template>
  129. </el-table-column>
  130. <el-table-column label="单据类型" align="center">
  131. <template slot-scope="scope">
  132. <span v-if="scope.row.type == 1">药品退货单</span>
  133. <span v-if="scope.row.type == 2">其他</span>
  134. </template>
  135. </el-table-column>
  136. <el-table-column label="操作时间" align="center">
  137. <template slot-scope="scope">
  138. <span>{{getTime(scope.row.ctime)}}</span>
  139. </template>
  140. </el-table-column>
  141. <el-table-column label="制单人" align="center">
  142. <template slot-scope="scope">
  143. <span>{{getAdminUser(scope.row.creater)}}</span>
  144. </template>
  145. </el-table-column>
  146. <el-table-column label="数量" align="center">
  147. <template slot-scope="scope">
  148. <span>{{scope.row.count}}</span>
  149. </template>
  150. </el-table-column>
  151. </el-table>
  152. <el-pagination
  153. @size-change="handleSizeChange"
  154. @current-change="handleCurrentChange"
  155. :page-sizes="[10, 50, 100]"
  156. :page-size="10"
  157. background
  158. style="margin-top:20px;float: right"
  159. layout="total, sizes, prev, pager, next, jumper"
  160. :total="total"
  161. >
  162. </el-pagination>
  163. </el-row>
  164. </div>
  165. </template>
  166. <script>
  167. import { uParseTime } from "@/utils/tools";
  168. import { fetchAllAdminUsers, fetchAllDoctorAndNurse } from "@/api/doctor";
  169. import { getDrugCancelOrder } from "@/api/drug/drug_stock"
  170. import { GetAllConfig } from "@/api/stock";
  171. export default {
  172. name: "salesReturnDetail",
  173. created() {
  174. var nowDate = new Date();
  175. var nowYear = nowDate.getFullYear();
  176. var nowMonth = nowDate.getMonth() + 1;
  177. var nowDay = nowDate.getDate();
  178. this.end_time =
  179. nowYear +
  180. "-" +
  181. (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
  182. "-" +
  183. (nowDay < 10 ? "0" + nowDay : nowDay);
  184. nowDate.setMonth(nowDate.getMonth() - 1);
  185. nowYear = nowDate.getFullYear();
  186. nowMonth = nowDate.getMonth() + 1;
  187. nowDay = nowDate.getDate();
  188. this.start_time =
  189. nowYear +
  190. "-" +
  191. (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
  192. "-" +
  193. (nowDay < 10 ? "0" + nowDay : nowDay);
  194. this.GetConfigInfo();
  195. this.fetchAllAdminUsers();
  196. this.getlist()
  197. },
  198. data() {
  199. return {
  200. orderTypeArr: [
  201. { value: 1, label: "药品退货单" },
  202. { value: 2, label: "其他入库单" }
  203. ],
  204. manufacturer_id: "",
  205. dealer_id: "",
  206. order_type: "",
  207. searchKey: "",
  208. type: 3,
  209. page: 1,
  210. limit: 10,
  211. checked: false,
  212. total: 0,
  213. pageTotal: 0,
  214. pageSelect: 0,
  215. adminUserOptions: [],
  216. multipleSelection: [],
  217. signAndWeighBoxPatients: "sign-and-weigh-box-patients",
  218. start_time: "",
  219. cancelStockDate: [],
  220. end_time: "",
  221. goodType: [],
  222. goodInfo: [],
  223. manufacturer: [],
  224. selectedTableData: [],
  225. dealer: [],
  226. tableData:[]
  227. };
  228. },
  229. methods: {
  230. changeType: function(val) {
  231. this.order_type = val;
  232. this.getlist()
  233. },
  234. changeManufacturer: function(val) {
  235. this.manufacturer_id = val;
  236. this.getlist()
  237. },
  238. getTypeName: function(row) {
  239. let name = "";
  240. if (row.type == 1) {
  241. name = "耗材退货单";
  242. } else if (row.type == 2) {
  243. name = "其他退货单";
  244. }
  245. return name;
  246. },
  247. typeName: function(good_type_id) {
  248. let name = "";
  249. for (let i = 0; i < this.goodType.length; i++) {
  250. if (this.goodType[i].id == good_type_id) {
  251. name = this.goodType[i].type_name;
  252. }
  253. }
  254. return name;
  255. },
  256. typeNameOne:function(good_id){
  257. let name = "";
  258. for (let i = 0; i < this.goodInfo.length; i++) {
  259. if (this.goodInfo[i].id == good_id) {
  260. name = this.goodInfo[i].good_name;
  261. }
  262. }
  263. return name
  264. },
  265. specificationName: function(good_info_id) {
  266. let name = "";
  267. for (let i = 0; i < this.goodInfo.length; i++) {
  268. if (this.goodInfo[i].id == good_info_id) {
  269. name = this.goodInfo[i].specification_name;
  270. }
  271. }
  272. return name;
  273. },
  274. search(){
  275. this.getlist()
  276. },
  277. PrintAction: function() {
  278. },
  279. getXuserName(id) {
  280. if (id <= 0) {
  281. return "";
  282. }
  283. var name = "";
  284. if (
  285. this.adminUserOptions == null ||
  286. typeof this.adminUserOptions.length === "undefined"
  287. ) {
  288. return name;
  289. }
  290. var leng = this.adminUserOptions.length;
  291. if (leng == 0) {
  292. return name;
  293. }
  294. for (let index = 0; index < leng; index++) {
  295. if (this.adminUserOptions[index].id == id) {
  296. name = this.adminUserOptions[index].name;
  297. break;
  298. }
  299. }
  300. return name;
  301. },
  302. fetchAllAdminUsers() {
  303. fetchAllAdminUsers().then(response => {
  304. if (response.data.state == 1) {
  305. this.adminUserOptions = response.data.data.users;
  306. }
  307. });
  308. },
  309. handleSelectionChange: function(val) {
  310. this.multipleSelection = val;
  311. },
  312. handleSizeChange(val) {
  313. this.limit = val;
  314. this.getlist()
  315. },
  316. handleCurrentChange(val) {
  317. this.page = val;
  318. this.getlist()
  319. },
  320. startTimeChange(val) {
  321. var time = this.getTimestamp(val) - this.getTimestamp(this.end_time);
  322. if (time > 0) {
  323. this.$message.error("结束时间不能小于开始时间");
  324. this.start_time = "";
  325. } else {
  326. this.getlist()
  327. }
  328. },
  329. endTimeChange(val) {
  330. var time = this.getTimestamp(val) - this.getTimestamp(this.start_time);
  331. if (time < 0) {
  332. this.$message.error("结束时间不能小于开始时间");
  333. this.end_time = "";
  334. } else {
  335. this.getlist()
  336. }
  337. },
  338. getTimestamp(time) {
  339. // 把时间日期转成时间戳
  340. return new Date(time).getTime() / 1000;
  341. },
  342. calculate: function(val) {
  343. return Math.round(parseFloat(val) * 100) / 100;
  344. },
  345. GetConfigInfo() {
  346. GetAllConfig().then(response => {
  347. if (response.data.state == 0) {
  348. this.$message.error(response.data.msg);
  349. return false;
  350. } else {
  351. this.manufacturer = response.data.data.manufacturer;
  352. this.dealer = response.data.data.dealer;
  353. this.goodInfo = response.data.data.goodInfo;
  354. this.goodType = response.data.data.goodType;
  355. }
  356. });
  357. },
  358. select(selection) {
  359. this.selectedTableData = selection;
  360. },
  361. getlist(){
  362. const params = {
  363. start_time:this.start_time,
  364. end_time:this.end_time,
  365. order_type:this.order_type,
  366. manufacturer_id:this.manufacturer_id,
  367. keyword:this.searchKey,
  368. limit:this.limit,
  369. page:this.page,
  370. }
  371. getDrugCancelOrder(params).then(response=>{
  372. if(response.data.state == 1){
  373. var order = response.data.data.order
  374. console.log("order",order)
  375. this.tableData = order
  376. var total = response.data.data.total
  377. this.total = total
  378. }
  379. })
  380. },
  381. getAdminUser(id){
  382. var name = ""
  383. for(let i=0;i<this.adminUserOptions.length;i++){
  384. if(id == this.adminUserOptions[i].id){
  385. name = this.adminUserOptions[i].name
  386. }
  387. }
  388. return name
  389. },
  390. getTime: function(val) {
  391. if (val == 0) {
  392. return "";
  393. } else {
  394. return uParseTime(val, "{y}-{m}-{d}");
  395. }
  396. },
  397. }
  398. };
  399. </script>
  400. <style rel="stylesheet/css" lang="scss" scoped>
  401. .information {
  402. border: 1px #dcdfe6 solid;
  403. padding: 30px 20px 30px 20px;
  404. .border {
  405. border-bottom: 1px #dcdfe6 solid;
  406. margin: 0px 0 20px 0;
  407. }
  408. }
  409. .edit_separater {
  410. border-top: 1px solid rgb(233, 233, 233);
  411. margin-top: 15px;
  412. margin-bottom: 15px;
  413. }
  414. </style>
  415. <style>
  416. .sign-and-weigh-box .sign-and-weigh-box-patients .cell {
  417. font-size: 12px;
  418. }
  419. .sign-and-weigh-box .sign-and-weigh-box-patients .current-row > td {
  420. background: #6fb5fa;
  421. }
  422. .count {
  423. color: #bd2c00;
  424. }
  425. .el-table td,
  426. .el-table th.is-leaf,
  427. .el-table--border,
  428. .el-table--group {
  429. border-color: #d0d3da;
  430. }
  431. .el-table--border::after,
  432. .el-table--group::after,
  433. .el-table::before {
  434. background-color: #d0d3da;
  435. }
  436. </style>