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

stockOutDetail.vue 24KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851
  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. icon="el-icon-printer"
  15. @click="exportList"
  16. type="primary"
  17. >导出
  18. </el-button>
  19. <div class="cell clearfix">
  20. <el-input
  21. size="small"
  22. style="width: 400px;"
  23. class="filter-item"
  24. v-model.trim="searchKey"
  25. placeholder="单据编码/制单人/规格名称"
  26. />
  27. <el-button
  28. size="small"
  29. class="filter-item"
  30. type="primary"
  31. icon="el-icon-search"
  32. @click="search"
  33. >搜索</el-button
  34. >
  35. </div>
  36. <div class="cell clearfix">
  37. <label class="title"><span class="name">日期查询</span> : </label>
  38. <el-date-picker
  39. size="small"
  40. v-model="start_time"
  41. prefix-icon="el-icon-date"
  42. :editable="false"
  43. style="width: 196px;"
  44. type="date"
  45. placeholder="选择日期时间"
  46. align="right"
  47. format="yyyy-MM-dd"
  48. value-format="yyyy-MM-dd"
  49. @change="startTimeChange"
  50. ></el-date-picker>
  51. <span class="cellLine"> - </span>
  52. <el-date-picker
  53. size="small"
  54. v-model="end_time"
  55. prefix-icon="el-icon-date"
  56. :editable="false"
  57. style="width: 196px;"
  58. type="date"
  59. placeholder="选择日期时间"
  60. align="right"
  61. format="yyyy-MM-dd"
  62. value-format="yyyy-MM-dd"
  63. @change="endTimeChange"
  64. ></el-date-picker>
  65. </div>
  66. <div class="cell clearfix">
  67. <label class="title"><span class="name">单据类型</span> : </label>
  68. <el-select
  69. size="small"
  70. v-model="order_type"
  71. clearable
  72. placeholder="单据类型"
  73. @change="changeType"
  74. >
  75. <el-option
  76. v-for="item in orderTypeArr"
  77. :key="item.value"
  78. :label="item.label"
  79. :value="item.value"
  80. >
  81. </el-option>
  82. </el-select>
  83. </div>
  84. <div class="cell clearfix">
  85. <label class="title"><span class="name">其它</span> : </label>
  86. <el-select
  87. size="small"
  88. v-model="manufacturer_id"
  89. clearable
  90. placeholder="厂商"
  91. @change="changeManufacturer"
  92. >
  93. <el-option
  94. v-for="item in manufacturer"
  95. :key="item.id"
  96. :label="item.manufacturer_name"
  97. :value="item.id"
  98. >
  99. </el-option>
  100. </el-select>
  101. </div>
  102. <el-row :gutter="12" style="margin-top: 10px">
  103. <el-table
  104. :data="cancelStockDate"
  105. :class="signAndWeighBoxPatients"
  106. border
  107. highlight-current-row
  108. ref="multipleTable"
  109. @selection-change="select"
  110. :row-style="{ color: '#303133' }"
  111. :header-cell-style="{
  112. backgroundColor: 'rgb(245, 247, 250)',
  113. color: '#606266'
  114. }"
  115. >
  116. <el-table-column label="单据编号" align="center" width="200">
  117. <template slot-scope="scope">
  118. {{ scope.row.warehouse_out_order_number }}
  119. </template>
  120. </el-table-column>
  121. <el-table-column label="耗材类型" align="center">
  122. <template slot-scope="scope">
  123. {{ typeName(scope.row.good_type_id) }}
  124. </template>
  125. </el-table-column>
  126. <el-table-column label="耗材名称" align="center">
  127. <template slot-scope="scope">
  128. {{ typeNameOne(scope.row.good_id) }}
  129. </template>
  130. </el-table-column>
  131. <el-table-column label="规格型号" align="center">
  132. <template slot-scope="scope">
  133. {{ specificationName(scope.row.good_id) }}
  134. </template>
  135. </el-table-column>
  136. <el-table-column label="单据类型" align="center">
  137. <template slot-scope="scope">
  138. {{ getTypeName(scope.row) }}
  139. </template>
  140. </el-table-column>
  141. <el-table-column label="操作时间" align="center">
  142. <template slot-scope="scope">
  143. {{ getTime(scope.row.WarehouseOut.warehouse_out_time) }}
  144. </template>
  145. </el-table-column>
  146. <el-table-column label="制单人" align="center">
  147. <template slot-scope="scope">
  148. {{ getXuserName(scope.row.WarehouseOut.creater) }}
  149. </template>
  150. </el-table-column>
  151. <el-table-column label="出货价" align="center">
  152. <template slot-scope="scope">
  153. {{ scope.row.price }}
  154. </template>
  155. </el-table-column>
  156. <el-table-column label="数量" align="center">
  157. <template slot-scope="scope">
  158. {{ scope.row.count }}
  159. </template>
  160. </el-table-column>
  161. <el-table-column label="总价" align="center">
  162. <template slot-scope="scope">
  163. <span v-if="scope.row.is_total == 0">{{
  164. getTotal(scope.row.price, scope.row.count)
  165. }}</span>
  166. <span v-else>{{ scope.row.total }}</span>
  167. </template>
  168. </el-table-column>
  169. </el-table>
  170. <el-pagination
  171. @size-change="handleSizeChange"
  172. @current-change="handleCurrentChange"
  173. :page-sizes="[10, 50, 100,1000,1500]"
  174. :page-size="10"
  175. background
  176. style="margin-top:20px;float: right"
  177. layout="total, sizes, prev, pager, next, jumper"
  178. :total="total"
  179. >
  180. </el-pagination>
  181. </el-row>
  182. </div>
  183. </template>
  184. <script>
  185. import { uParseTime } from "@/utils/tools";
  186. import { fetchAllAdminUsers, fetchAllDoctorAndNurse } from "@/api/doctor";
  187. import { deleteCancelStock, GetAllConfig, getStockDetail,getPrintStockGood,getGoodInfoList } from "@/api/stock";
  188. export default {
  189. name: "stockOutDetail",
  190. created() {
  191. var nowDate = new Date();
  192. var nowYear = nowDate.getFullYear();
  193. var nowMonth = nowDate.getMonth() + 1;
  194. var nowDay = nowDate.getDate();
  195. this.end_time =
  196. nowYear +
  197. "-" +
  198. (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
  199. "-" +
  200. (nowDay < 10 ? "0" + nowDay : nowDay);
  201. nowDate.setMonth(nowDate.getMonth() - 1);
  202. nowYear = nowDate.getFullYear();
  203. nowMonth = nowDate.getMonth() + 1;
  204. nowDay = nowDate.getDate();
  205. this.start_time =
  206. nowYear +
  207. "-" +
  208. (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
  209. "-" +
  210. (nowDay < 10 ? "0" + nowDay : nowDay);
  211. this.GetCancelStock();
  212. this.GetConfigInfo();
  213. this.fetchAllAdminUsers();
  214. this.goodUnit = this.$store.getters.good_unit
  215. this.getPrintStockGood()
  216. this.getList()
  217. },
  218. data() {
  219. return {
  220. orderTypeArr: [
  221. { value: 1, label: "耗材入库单" },
  222. { value: 2, label: "其他入库单" }
  223. ],
  224. manufacturer_id: "",
  225. dealer_id: "",
  226. order_type: "",
  227. searchKey: "",
  228. type: 2,
  229. page: 1,
  230. limit: 10,
  231. checked: false,
  232. total: 0,
  233. pageTotal: 0,
  234. pageSelect: 0,
  235. adminUserOptions: [],
  236. multipleSelection: [],
  237. signAndWeighBoxPatients: "sign-and-weigh-box-patients",
  238. start_time: "",
  239. cancelStockDate: [],
  240. end_time: "",
  241. goodType: [],
  242. goodInfo: [],
  243. manufacturer: [],
  244. selectedTableData: [],
  245. dealer: [],
  246. goodUnit:[],
  247. tableList:[],
  248. stockTotal:[],
  249. goodInfoData:[]
  250. };
  251. },
  252. methods: {
  253. changeType: function(val) {
  254. this.order_type = val;
  255. this.GetCancelStock();
  256. this.getPrintStockGood()
  257. },
  258. changeManufacturer: function(val) {
  259. this.manufacturer_id = val;
  260. this.GetCancelStock();
  261. this.getPrintStockGood()
  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. specificationName: function(good_info_id) {
  274. let name = "";
  275. for (let i = 0; i < this.goodInfo.length; i++) {
  276. if (this.goodInfo[i].id == good_info_id) {
  277. name = this.goodInfo[i].specification_name;
  278. }
  279. }
  280. return name;
  281. },
  282. typeName: function(good_type_id) {
  283. let name = "";
  284. for (let i = 0; i < this.goodType.length; i++) {
  285. if (this.goodType[i].id == good_type_id) {
  286. name = this.goodType[i].type_name;
  287. }
  288. }
  289. return name;
  290. },
  291. typeNameOne:function(good_id){
  292. let name = "";
  293. for (let i = 0; i < this.goodInfo.length; i++) {
  294. if (this.goodInfo[i].id == good_id) {
  295. name = this.goodInfo[i].good_name;
  296. }
  297. }
  298. return name;
  299. },
  300. search: function() {
  301. const Params = {
  302. page: this.page,
  303. limit: this.limit,
  304. start_time: this.start_time,
  305. end_time: this.end_time,
  306. type: this.type,
  307. keywords: this.searchKey
  308. };
  309. this.cancelStockDate = [];
  310. getStockDetail(Params).then(response => {
  311. if (response.data.state == 0) {
  312. this.$message.error(response.data.msg);
  313. return false;
  314. } else {
  315. this.total = response.data.data.total;
  316. for (let i = 0; i < response.data.data.list.length; i++) {
  317. var obj = response.data.data.list[i];
  318. obj["is_total"] = 0;
  319. this.cancelStockDate.push(obj);
  320. }
  321. this.cancelStockDate.push({
  322. warehouse_out_order_number: "合计",
  323. is_total: 1,
  324. total: response.data.data.total_price,
  325. WarehouseOut: {
  326. warehouse_out_time: 0
  327. }
  328. });
  329. }
  330. });
  331. },
  332. AddNewOrder: function() {
  333. this.$router.push({
  334. name: "cancelStockOrderAdd",
  335. query: { type: this.type }
  336. });
  337. },
  338. GetCancelStock: function() {
  339. const Params = {
  340. page: this.page,
  341. limit: this.limit,
  342. start_time: this.start_time,
  343. end_time: this.end_time,
  344. type: this.type,
  345. manufacturer: this.manufacturer_id,
  346. order_type: this.order_type,
  347. dealer: this.dealer_id
  348. };
  349. console.log("parasm334444444",Params)
  350. this.cancelStockDate = [];
  351. getStockDetail(Params).then(response => {
  352. if (response.data.state == 0) {
  353. this.$message.error(response.data.msg);
  354. return false;
  355. } else {
  356. this.total = response.data.data.total;
  357. for (let i = 0; i < response.data.data.list.length; i++) {
  358. var obj = response.data.data.list[i];
  359. obj["is_total"] = 0;
  360. this.cancelStockDate.push(obj);
  361. }
  362. this.cancelStockDate.push({
  363. warehouse_out_order_number: "合计",
  364. is_total: 1,
  365. total: response.data.data.total_price,
  366. WarehouseOut: {
  367. warehouse_out_time: 0
  368. }
  369. });
  370. }
  371. });
  372. },
  373. getXuserName(id) {
  374. if (id <= 0) {
  375. return "";
  376. }
  377. var name = "";
  378. if (
  379. this.adminUserOptions == null ||
  380. typeof this.adminUserOptions.length === "undefined"
  381. ) {
  382. return name;
  383. }
  384. var leng = this.adminUserOptions.length;
  385. if (leng == 0) {
  386. return name;
  387. }
  388. for (let index = 0; index < leng; index++) {
  389. if (this.adminUserOptions[index].id == id) {
  390. name = this.adminUserOptions[index].name;
  391. break;
  392. }
  393. }
  394. return name;
  395. },
  396. fetchAllAdminUsers() {
  397. fetchAllAdminUsers().then(response => {
  398. console.log(response);
  399. if (response.data.state == 1) {
  400. this.adminUserOptions = response.data.data.users;
  401. var alen = this.adminUserOptions.length;
  402. for (let index = 0; index < alen; index++) {
  403. if (this.adminUserOptions[index].user_type == 2) {
  404. // this.doctorOptions.push(this.adminUserOptions[index]);
  405. }
  406. }
  407. }
  408. });
  409. },
  410. handleSelectionChange: function(val) {
  411. this.multipleSelection = val;
  412. },
  413. handleSizeChange(val) {
  414. this.limit = val;
  415. this.GetCancelStock();
  416. this.getPrintStockGood()
  417. },
  418. handleCurrentChange(val) {
  419. this.page = val;
  420. this.GetCancelStock();
  421. this.getPrintStockGood()
  422. },
  423. startTimeChange(val) {
  424. var time = this.getTimestamp(val) - this.getTimestamp(this.end_time);
  425. if (time > 0) {
  426. this.$message.error("结束时间不能小于开始时间");
  427. this.start_time = "";
  428. } else {
  429. this.GetCancelStock();
  430. this.getPrintStockGood()
  431. }
  432. },
  433. endTimeChange(val) {
  434. var time = this.getTimestamp(val) - this.getTimestamp(this.start_time);
  435. if (time < 0) {
  436. this.$message.error("结束时间不能小于开始时间");
  437. this.end_time = "";
  438. } else {
  439. this.GetCancelStock();
  440. this.getPrintStockGood()
  441. }
  442. },
  443. getTimestamp(time) {
  444. // 把时间日期转成时间戳
  445. return new Date(time).getTime() / 1000;
  446. },
  447. calculate: function(val) {
  448. return Math.round(parseFloat(val) * 100) / 100;
  449. },
  450. GetConfigInfo: function() {
  451. GetAllConfig().then(response => {
  452. if (response.data.state == 0) {
  453. this.$message.error(response.data.msg);
  454. return false;
  455. } else {
  456. this.manufacturer = response.data.data.manufacturer;
  457. this.dealer = response.data.data.dealer;
  458. this.goodInfo = response.data.data.goodInfo;
  459. this.goodType = response.data.data.goodType;
  460. }
  461. });
  462. },
  463. getManufactuerName: function(manufacturer_id) {
  464. for (let i = 0; i < this.manufacturer.length; i++) {
  465. if (this.manufacturer[i].id == manufacturer_id) {
  466. return this.manufacturer[i].manufacturer_name;
  467. }
  468. }
  469. },
  470. getDealerName: function(dealer_id) {
  471. for (let i = 0; i < this.dealer.length; i++) {
  472. if (this.dealer[i].id == dealer_id) {
  473. return this.dealer[i].dealer_name;
  474. }
  475. }
  476. },
  477. handleEdit: function(index, row) {
  478. this.$router.push({
  479. name: "cancelStockDetail",
  480. query: { id: row.id, type: this.type }
  481. });
  482. },
  483. handleDelete: function(index, row) {
  484. const ids = [];
  485. ids.push(row.id);
  486. const idStr = ids.join(",");
  487. const params = {
  488. ids: idStr
  489. };
  490. this.$confirm("确认删除出库退库单记录?", "删除出库退库单记录", {
  491. confirmButtonText: "确定",
  492. cancelButtonText: "取消",
  493. type: "warning"
  494. })
  495. .then(() => {
  496. deleteCancelStock(params).then(response => {
  497. if (response.data.state == 0) {
  498. this.$message.error(response.data.msg);
  499. return false;
  500. } else {
  501. this.$notify({
  502. title: "成功",
  503. message: "删除成功",
  504. type: "success",
  505. duration: 2000
  506. });
  507. for (let i = 0; i < ids.length; i++) {
  508. for (let y = 0; y < this.cancelStockDate.length; y++) {
  509. if (ids[i] == this.cancelStockDate[y].id) {
  510. this.cancelStockDate.splice(y, 1);
  511. }
  512. }
  513. }
  514. }
  515. });
  516. })
  517. .catch(() => {});
  518. },
  519. changeAllSelected: function(val) {
  520. if (val) {
  521. this.$refs.multipleTable.toggleAllSelection();
  522. } else {
  523. this.$refs.multipleTable.clearSelection();
  524. }
  525. },
  526. select(selection) {
  527. this.selectedTableData = selection;
  528. },
  529. batchDelete() {
  530. if (this.selectedTableData.length <= 0) {
  531. this.$message.error("请选择要删除的记录");
  532. return;
  533. }
  534. const ids = [];
  535. for (let i = 0; i < this.selectedTableData.length; i++) {
  536. ids.push(this.selectedTableData[i].id);
  537. }
  538. const idStr = ids.join(",");
  539. const params = {
  540. ids: idStr
  541. };
  542. this.$confirm("确认删除出库退库单记录?", "删除出库退库单记录", {
  543. confirmButtonText: "确定",
  544. cancelButtonText: "取消",
  545. type: "warning"
  546. })
  547. .then(() => {
  548. deleteCancelStock(params).then(response => {
  549. if (response.data.state == 0) {
  550. this.$message.error(response.data.msg);
  551. return false;
  552. } else {
  553. this.$notify({
  554. title: "成功",
  555. message: "删除成功",
  556. type: "success",
  557. duration: 2000
  558. });
  559. for (let i = 0; i < ids.length; i++) {
  560. for (let y = 0; y < this.cancelStockDate.length; y++) {
  561. if (ids[i] == this.cancelStockDate[y].id) {
  562. this.cancelStockDate.splice(y, 1);
  563. }
  564. }
  565. }
  566. }
  567. });
  568. })
  569. .catch(() => {});
  570. },
  571. getTotal: function(price, total) {
  572. var m = 0,
  573. r1,
  574. r2;
  575. var s1 = price.toString();
  576. var s2 = total.toString();
  577. try {
  578. m += s1.split(".")[1].length;
  579. } catch (e) {}
  580. try {
  581. } catch (e) {
  582. m += s2.split(".")[1].length;
  583. }
  584. r1 = Number(price.toString().replace(".", ""));
  585. r2 = Number(total.toString().replace(".", ""));
  586. return (r1 * r2) / Math.pow(10, m);
  587. },
  588. getTime: function(val) {
  589. if (val == 0) {
  590. return "";
  591. } else {
  592. return uParseTime(val, "{y}-{m}-{d}");
  593. }
  594. },
  595. PrintAction: function() {
  596. this.$router.push({
  597. path: "/stock/print",
  598. query: {
  599. type: 3,
  600. start_time: this.start_time,
  601. end_time: this.end_time
  602. }
  603. });
  604. },
  605. getPrintStockGood(){
  606. const params = {
  607. start_time:this.start_time,
  608. end_time:this.end_time,
  609. type:3,
  610. }
  611. console.log("params",params)
  612. getPrintStockGood(params).then(response=>{
  613. if(response.data.state == 1){
  614. var stockTotal = response.data.data.stockTotal
  615. console.log("stockTotal",stockTotal)
  616. this.stockTotal = stockTotal
  617. var list = response.data.data.list
  618. console.log("导出数据",list)
  619. this.tableList = []
  620. for(let i=0;i<list.length;i++){
  621. if (list[i].query_warehouseout_info.length > 0) {
  622. this.tableList.push(list[i])
  623. }
  624. }
  625. console.log("耗材出库表格数据",this.tableList)
  626. }
  627. })
  628. },
  629. calCount(stock) {
  630. let total = 0
  631. var array = []
  632. array = stock.query_warehousing_info
  633. for (let i = 0; i < array.length; i++) {
  634. total = total + array[i].warehousing_count
  635. }
  636. return total
  637. },
  638. calTotal(stock) {
  639. var array = []
  640. array = stock.query_warehousing_info
  641. let total_price = 0.0
  642. for (let i = 0; i < array.length; i++) {
  643. total_price = total_price + array[i].warehousing_count * array[i].price
  644. }
  645. return Math.floor(total_price * 100) / 100
  646. },
  647. calTotalPrice() {
  648. var amountPrice = 0
  649. for (let i = 0; i < this.tableList.length; i++) {
  650. var obj = this.tableList[i]
  651. var len = 0
  652. len = obj.query_warehouseout_info.length
  653. let total_price = 0.0
  654. for (let a = 0; a < len; a++) {
  655. total_price = total_price + obj.query_warehouseout_info[a].total_price
  656. }
  657. amountPrice = amountPrice + Math.floor(total_price* 100) / 100
  658. }
  659. return Math.floor(amountPrice* 100) / 100
  660. },
  661. getStockCount(id){
  662. var count = ""
  663. for(let i=0;i<this.stockTotal.length;i++){
  664. if(id == this.stockTotal[i].good_id){
  665. count = this.stockTotal[i].count
  666. }
  667. }
  668. return count
  669. },
  670. getTotal: function(price, total) {
  671. var m = 0, r1, r2
  672. var s1 = price.toString()
  673. var s2 = total.toString()
  674. try {
  675. m += s1.split('.')[1].length
  676. } catch (e) {
  677. }
  678. try {
  679. } catch (e) {
  680. m += s2.split('.')[1].length
  681. }
  682. r1 = Number(price.toString().replace('.', ''))
  683. r2 = Number(total.toString().replace('.', ''))
  684. return r1 * r2 / Math.pow(10, m)
  685. },
  686. unique(arr) {
  687. const res = new Map();
  688. return arr.filter((arr) => !res.has(arr.id) && res.set(arr.id, 1));
  689. },
  690. getList() {
  691. let params = {
  692. page: 1,
  693. limit: 1000,
  694. keyword: "",
  695. is_use:"",
  696. good_kind:"",
  697. is_charge: "",
  698. is_mark:"",
  699. manufacturer:"",
  700. }
  701. getGoodInfoList(params).then(response => {
  702. if (response.data.state == 0) {
  703. this.$message.error(response.data.msg)
  704. return false
  705. } else {
  706. this.goodInfoData = []
  707. for (let i = 0; i < response.data.data.list.length; i++) {
  708. this.goodInfoData.push(response.data.data.list[i])
  709. }
  710. }
  711. })
  712. },
  713. exportList(){
  714. for(let i=0;i<this.tableList.length;i++){
  715. for(let j=0;j<this.goodInfoData.length;j++){
  716. if(this.tableList[i].id === this.goodInfoData[j].id){
  717. this.tableList[i].buy_price = this.goodInfoData[j].buy_price
  718. }
  719. }
  720. }
  721. console.log('合并后',this.tableList)
  722. var obj = {index:"合计",total:0}
  723. obj.total = this.getTotalPrice()
  724. for(let i=0;i<this.tableList.length;i++){
  725. this.tableList[i].index = i+1
  726. this.tableList[i].min_unit = this.getUnit(this.tableList[i].good_unit)
  727. this.tableList[i].count = this.getStockCount(this.tableList[i].id)
  728. // this.tableList[i].price = this.tableList[i].query_warehouseout_info[0].buy_price
  729. this.tableList[i].total = (this.getStockCount(this.tableList[i].id) * this.tableList[i].buy_price).toFixed(2)
  730. this.tableList[i].remark = this.tableList[i].query_warehouseout_info[0].remark
  731. }
  732. var arr = this.unique(this.tableList)
  733. this.tableList = arr
  734. this.tableList.push(obj)
  735. import('@/vendor/Export2Excel').then(excel => {
  736. const tHeader = ['序号','耗材名称', '规格型号', '单位','数量','出货价','总价','备注']
  737. const filterVal = ['index','good_name', 'specification_name', 'min_unit','count','buy_price','total','remark']
  738. const data = this.formatJson(filterVal, this.tableList)
  739. console.log("data",data)
  740. excel.export_json_to_excel({
  741. header: tHeader,
  742. data,
  743. filename: '耗材出库明细'
  744. })
  745. this.downloadLoading = false
  746. })
  747. },
  748. formatJson(filterVal, jsonData) {
  749. return jsonData.map(v => filterVal.map(j => v[j]));
  750. },
  751. getUnit(id){
  752. var name = ""
  753. for(let i=0;i<this.goodUnit.length;i++){
  754. if(this.goodUnit[i].id == id){
  755. name = this.goodUnit[i].name
  756. }
  757. }
  758. return name
  759. },
  760. getTotalPrice(){
  761. var total_price = 0
  762. for(let i=0;i<this.tableList.length;i++){
  763. total_price += this.getStockCount(this.tableList[i].id) * this.tableList[i].retail_price
  764. }
  765. return total_price
  766. },
  767. }
  768. };
  769. </script>
  770. <style rel="stylesheet/css" lang="scss" scoped>
  771. .information {
  772. border: 1px #dcdfe6 solid;
  773. padding: 30px 20px 30px 20px;
  774. .border {
  775. border-bottom: 1px #dcdfe6 solid;
  776. margin: 0px 0 20px 0;
  777. }
  778. }
  779. .edit_separater {
  780. border-top: 1px solid rgb(233, 233, 233);
  781. margin-top: 15px;
  782. margin-bottom: 15px;
  783. }
  784. </style>
  785. <style>
  786. .sign-and-weigh-box .sign-and-weigh-box-patients .cell {
  787. font-size: 12px;
  788. }
  789. .sign-and-weigh-box .sign-and-weigh-box-patients .current-row > td {
  790. background: #6fb5fa;
  791. }
  792. .count {
  793. color: #bd2c00;
  794. }
  795. .el-table td,
  796. .el-table th.is-leaf,
  797. .el-table--border,
  798. .el-table--group {
  799. border-color: #d0d3da;
  800. }
  801. .el-table--border::after,
  802. .el-table--group::after,
  803. .el-table::before {
  804. background-color: #d0d3da;
  805. }
  806. </style>