stockInDetail.vue 29KB

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