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

stockOutOrderDetailPrint.vue 17KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482
  1. <template>
  2. <div class="main-contain">
  3. <div class="position">
  4. <bread-crumb :crumbs="crumbs"></bread-crumb>
  5. <el-row style="float:right;">
  6. <el-col :span="24">
  7. <el-button size="small" icon="el-icon-printer" type="primary" @click="printAction">打印</el-button>
  8. </el-col>
  9. </el-row>
  10. </div>
  11. <div class="app-container" style="background-color: white;">
  12. <div id="print_content">
  13. <div class="print_main_content" v-for="(it,index) in tableList" :key="index">
  14. <div class="order_title_panl">
  15. <div style="font-size:22px;font-weight:bold;">{{ orgName }}</div>
  16. <span class="main_title">耗材出库登记单</span>
  17. </div>
  18. <div style="display:flex;justify-content: space-between;">
  19. <div style="text-align:left;margin-bottom:1px;font-size: 18px;">
  20. 单据编号: {{it.warehouse_out_order_number}}
  21. </div>
  22. <div style="text-align:right;margin-bottom:1px;font-size: 18px;">
  23. 打印日期:{{time_now}}
  24. </div>
  25. </div>
  26. <div class="table_panel">
  27. <table class="table">
  28. <thead>
  29. <tr>
  30. <td width="80">耗材名称</td>
  31. <td width="80">规格型号</td>
  32. <td width="80">单位</td>
  33. <td width="80">出库数量</td>
  34. <td width="80">出库价格</td>
  35. <td width="80">总价</td>
  36. <td width="80">批号</td>
  37. <td width="80">生产日期</td>
  38. <td width="80">有效日期</td>
  39. </tr>
  40. </thead>
  41. <tbody>
  42. <tr v-for='(item,index) in it.child' :key="index">
  43. <td><span v-if="item.good_id != 0">{{item.good_name}}</span></td>
  44. <td><span v-if="item.good_id != 0">{{item.specification_name}}</span></td>
  45. <td><span v-if="item.good_id!=0">{{item.packing_unit}}</span></td>
  46. <td>{{getOutStockCount(item.good_id) + getWarehouseOutInfoCount(item.warehouse_out_id,item.good_id)}}</td>
  47. <td>{{item.price}}</td>
  48. <td>{{((getOutStockCount(item.good_id) +getWarehouseOutInfoCount(item.warehouse_out_id,item.good_id))*item.price).toFixed(2)}}</td>
  49. <td>{{item.number}}</td>
  50. <td>{{getTime(item.product_date)}}</td>
  51. <td>{{getTime(item.expiry_date)}}</td>
  52. </tr>
  53. <tr>
  54. <td>合计</td>
  55. <td colspan="7"></td>
  56. <td>{{getAllPice(it.id).toFixed(4)}}</td>
  57. </tr>
  58. </tbody>
  59. </table>
  60. <div v-if="orgId != 10024" style="display:flex;margin-top:1px;float:right;">
  61. <div style="width:50px;">审批:</div><div style="width:100px;"></div>
  62. <div style="width:80px;">药材主任:</div><div style="width:100px;"></div>
  63. <div style="width:50px;">会计:</div><div style="width:100px;"></div>
  64. <div style="width:50px;">审核:</div><div style="width:100px;"></div>
  65. <div style="width:70px;">制单人:</div><div style="width:100px;"></div>
  66. </div>
  67. <div v-if="orgId == 10024" style="display:flex;margin-top:1px;float:right;">
  68. <div style="width:50px;">科室:</div><div style="width:60px;"></div>
  69. <div style="width:70px;">领料人:</div><div style="width:60px;"></div>
  70. <div style="width:80px;">审批:</div><div style="width:100px;">肖庆娥</div>
  71. <div style="width:50px;">会计:</div><div style="width:100px;">徐立琼</div>
  72. <div style="width:50px;">审核:</div><div style="width:100px;">徐立琼</div>
  73. <div style="width:70px;">制单人:</div><div style="width:100px;">徐立琼</div>
  74. </div>
  75. </div>
  76. </div>
  77. </div>
  78. </div>
  79. </div>
  80. </template>
  81. <script>
  82. import BreadCrumb from '@/xt_pages/components/bread-crumb'
  83. import { GetAllConfig,getWarehouseOutInfo,GetOutStockTotalCount,getGoodInfoList,getWarehouseOrderInfoList,getOrderDetailByOrderId,getStockDrugCount } from "@/api/stock";
  84. import print from 'print-js'
  85. const moment = require('moment');
  86. import { uParseTime } from '@/utils/tools'
  87. export default {
  88. components:{
  89. BreadCrumb
  90. },
  91. data(){
  92. return{
  93. crumbs: [
  94. { path: false, name: '库存管理' },
  95. { path: false, name: '耗材管理' },
  96. { path: false, name: '出库单打印' },
  97. ],
  98. isEdit: 0,
  99. checked: false,
  100. signAndWeighBoxPatients: 'sign-and-weigh-box-patients',
  101. goodType: [],
  102. goodInfo: [],
  103. manufacturer: [],
  104. dealer: [],
  105. warehousingOutInfo: {
  106. loading: false,
  107. warehousingOutData: [],
  108. info: {}
  109. },
  110. stockCount:[],
  111. time_now:moment(new Date()).add('year',0).format("YYYY-MM-DD"),
  112. allPrice:0,
  113. page: 1,
  114. limit: 10000,
  115. keyword: "",
  116. is_use:"",
  117. good_kind:"",
  118. is_charge:"",
  119. list:[],
  120. wareoutList:[],
  121. orgId:'',
  122. orgName:'',
  123. orderInList:[],
  124. tableList:[],
  125. orderList:[],
  126. countList:[],
  127. outCountList:[],
  128. autoCountList:[],
  129. cancelCountList:[]
  130. }
  131. },
  132. methods:{
  133. printAction: function() {
  134. const style = '@media print { .print_main_content { background-color: white; width:960px; margin:0 auto; padding: 0 0 20px 0; } .order_title_panl { text-align: center; } .main_title { font-size: 18px; line-height: 40px; font-weight: 500; } .table_panel { } .table { width: 100%; border: 1px solid; border-collapse: collapse; padding: 2px; } thead tr td { border: 1px solid; text-align: center; font-size: 16px; padding: 15px 5px; } tbody tr td { border: 1px solid; text-align: center; font-size: 16px; padding: 10px 5px; white-space: pre-line;} .proj { padding: 5px 0; text-align: left; } .proj_title { font-size: 16px; font-weight: 500; line-height: 25px; } .proj_item { font-size: 15px; line-height: 20px; } .zone_name { font-weight: 500; } }';
  135. printJS({
  136. printable: 'print_content',
  137. type: 'html',
  138. documentTitle: ' ',
  139. style: style,
  140. scanStyles: false
  141. })
  142. },
  143. GetConfigInfo() {
  144. GetAllConfig().then(response => {
  145. if (response.data.state == 0) {
  146. this.$message.error(response.data.msg);
  147. return false
  148. } else {
  149. this.manufacturer = response.data.data.manufacturer;
  150. this.dealer = response.data.data.dealer;
  151. this.goodInfo = response.data.data.goodInfo;
  152. this.goodType = response.data.data.goodType
  153. }
  154. })
  155. },
  156. GetTotalCount(time){
  157. var params = {
  158. warehouse_out_time:time
  159. };
  160. GetOutStockTotalCount(params).then(response=>{
  161. if(response.data.state == 1){
  162. var stockCount = response.data.data.stockCount;
  163. console.log("stockCount",stockCount);
  164. this.stockCount = stockCount
  165. }
  166. })
  167. },
  168. getSpecificationName: function(id) {
  169. let name = '';
  170. for (let i = 0; i < this.goodInfo.length; i++) {
  171. if (this.goodInfo[i].id == id) {
  172. name = this.goodInfo[i].specification_name
  173. }
  174. }
  175. return name
  176. },
  177. getTypeName: function(id) {
  178. let name = '';
  179. for (let i = 0; i < this.goodType.length; i++) {
  180. if (this.goodType[i].id == id) {
  181. name = this.goodType[i].type_name
  182. }
  183. }
  184. return name
  185. },
  186. getTypeNameOne: function(id) {
  187. let name = '';
  188. for (let i = 0; i < this.goodInfo.length; i++) {
  189. if (this.goodInfo[i].id == id) {
  190. name = this.goodInfo[i].good_name
  191. }
  192. }
  193. return name
  194. },
  195. getOutStockCount(id){
  196. var count = 0;
  197. for(let i=0;i<this.stockCount.length;i++){
  198. if(id == this.stockCount[i].good_id){
  199. count = this.stockCount[i].count
  200. }
  201. }
  202. return count
  203. },
  204. getList() {
  205. this.goodInfo.loading = true;
  206. let params = {
  207. page: this.page,
  208. limit: this.limit,
  209. keyword: this.keywords,
  210. is_use:this.is_use,
  211. good_kind:this.good_kind,
  212. is_charge: this.is_charge,
  213. };
  214. getGoodInfoList(params).then(response => {
  215. if (response.data.state == 0) {
  216. this.$message.error(response.data.msg);
  217. return false
  218. } else {
  219. this.list = [];
  220. for (let i = 0; i < response.data.data.list.length; i++) {
  221. this.list.push(response.data.data.list[i])
  222. }
  223. }
  224. })
  225. },
  226. getUnit(id){
  227. var name = "";
  228. for(let i=0;i<this.list.length;i++){
  229. if(id == this.list[i].id){
  230. name = this.list[i].good_unit
  231. }
  232. }
  233. return this.getGoodUnit(name)
  234. },
  235. getGoodUnit(id){
  236. for (let i = 0; i <this.$store.getters.good_unit.length; i++ ){
  237. if(id == this.$store.getters.good_unit[i].id){
  238. return this.$store.getters.good_unit[i].name
  239. }
  240. }
  241. return ""
  242. },
  243. getWarehouseOutInfoCount(warehouse_out_id,good_id){
  244. var count = 0
  245. for(let i=0;i<this.orderList.length;i++){
  246. if(this.orderList[i].warehouse_out_id == warehouse_out_id && this.orderList[i].good_id == good_id){
  247. count += this.orderList[i].count
  248. }
  249. }
  250. return count
  251. },
  252. getWarehouseOrderInfoList(){
  253. getWarehouseOrderInfoList().then(response=>{
  254. if(response.data.state == 1){
  255. var list = response.data.data.list
  256. console.log("入库单详情",list)
  257. this.orderInList = list
  258. }
  259. })
  260. },
  261. getNumber(id){
  262. var name = ""
  263. for(let i=0;i<this.orderInList.length;i++){
  264. if(id == this.orderInList[i].good_id){
  265. name = this.orderInList[i].number
  266. }
  267. }
  268. return name
  269. },
  270. getProductDate(id){
  271. var product_date = ""
  272. for(let i=0;i<this.orderInList.length;i++){
  273. if(id == this.orderInList[i].good_id){
  274. product_date = this.orderInList[i].product_date
  275. }
  276. }
  277. return this.getTime(product_date)
  278. },
  279. getExpiryDate(id){
  280. var expiry_date = ""
  281. for(let i=0;i<this.orderInList.length;i++){
  282. if(id == this.orderInList[i].good_id){
  283. expiry_date = this.orderInList[i].expiry_date
  284. }
  285. }
  286. return this.getTime(expiry_date)
  287. },
  288. getTime(val) {
  289. if(val < 0){
  290. return ""
  291. }
  292. if(val == ""){
  293. return ""
  294. }else {
  295. return uParseTime(val, '{y}-{m}-{d}')
  296. }
  297. },
  298. GetOrderDetailOne(id){
  299. const params = {
  300. 'id': id
  301. }
  302. console.log("paramsssss",params)
  303. getOrderDetailByOrderId(params).then(response=>{
  304. if(response.data.state == 1){
  305. var order = response.data.data.order
  306. console.log("order22222",order)
  307. var list = response.data.data.list
  308. this.orderList = list
  309. for(let i=0;i<order.length;i++){
  310. order[i].child =[]
  311. for(let j=0;j<list.length;j++){
  312. if(order[i].id == list[j].warehouse_out_id){
  313. order[i].child.push(list[j])
  314. }
  315. }
  316. }
  317. console.log("详情打印222222",list)
  318. this.tableList = order
  319. }
  320. })
  321. },
  322. getAllPice(id){
  323. var total_price = 0
  324. for(let i=0;i<this.orderList.length;i++){
  325. if(id == this.orderList[i].warehouse_out_id){
  326. total_price += this.orderList[i].count * this.orderList[i].price
  327. }
  328. }
  329. return total_price
  330. },
  331. getStockDrugCount(){
  332. var params ={
  333. keywords: this.keywords,
  334. start_time:this.start_time,
  335. end_time:this.end_time,
  336. }
  337. getStockDrugCount(params).then(response=>{
  338. if(response.data.state == 1){
  339. var count = response.data.data.count
  340. console.log("入库统计",count)
  341. this.countList = count
  342. var outlist = response.data.data.outList
  343. console.log("出库数量",outlist)
  344. this.outCountList = outlist
  345. var autoCount = response.data.data.autoCount
  346. console.log("autoCount",autoCount)
  347. this.autoCountList = autoCount
  348. var totalCount = response.data.data.totalCount
  349. console.log("totalcount",totalCount)
  350. this.cancelCountList = totalCount
  351. }
  352. })
  353. },
  354. stockInCount: function(row) {
  355. let total = 0;
  356. for (let i = 0; i < row.query_warehousing_info.length; i++) {
  357. total = total + row.query_warehousing_info[i].warehousing_count;
  358. }
  359. return total;
  360. },
  361. salesReturnCount: function(row) {
  362. let total = 0;
  363. for (let i = 0; i < row.query_sales_return_info.length; i++) {
  364. total = total + row.query_sales_return_info[i].count;
  365. }
  366. return total;
  367. },
  368. stockOutCount: function(row) {
  369. let total = 0;
  370. for (let i = 0; i < row.query_warehouseout_info.length; i++) {
  371. total = total + row.query_warehouseout_info[i].count;
  372. }
  373. return total;
  374. },
  375. cancelStockCount: function(row) {
  376. let total = 0;
  377. for (let i = 0; i < row.query_cancel_stock_info.length; i++) {
  378. total = total + row.query_cancel_stock_info[i].count;
  379. }
  380. return total;
  381. },
  382. },
  383. created(){
  384. this.orgName = this.$store.getters.xt_user.org.org_name;
  385. this.orgId = this.$store.getters.xt_user.org.id;
  386. const order_id = this.$route.query.id;
  387. const warehouse_out_time = this.$route.query.warehouse_out_time;
  388. this.GetConfigInfo();
  389. // this.GetTotalCount(warehouse_out_time);
  390. this.GetOrderDetailOne(order_id)
  391. this.getList()
  392. this.getStockDrugCount()
  393. }
  394. }
  395. </script>
  396. <style rel="stylesheet/scss" lang="scss" scoped>
  397. .print_main_content {
  398. background-color: white;
  399. max-width: 1500px;
  400. margin: 0 auto;
  401. padding: 0 0 20px 0;
  402. .order_title_panl {
  403. text-align: center;
  404. .main_title {
  405. font-size: 18px;
  406. line-height: 40px;
  407. font-weight: 500;
  408. }
  409. }
  410. .table_panel {
  411. .table {
  412. width: 100%;
  413. border: 1px solid;
  414. border-collapse: collapse;
  415. padding: 2px;
  416. thead {
  417. tr {
  418. td {
  419. border: 1px solid;
  420. text-align: center;
  421. font-size: 18px;
  422. padding: 15px 5px;
  423. }
  424. }
  425. }
  426. tbody {
  427. tr {
  428. td {
  429. border: 1px solid;
  430. text-align: center;
  431. font-size: 18px;
  432. padding: 10px 5px;
  433. white-space: pre-line;
  434. .proj {
  435. padding: 5px 0;
  436. text-align: left;
  437. .proj_title {
  438. font-size: 16px;
  439. font-weight: 500;
  440. line-height: 25px;
  441. }
  442. .proj_item {
  443. font-size: 15px;
  444. line-height: 20px;
  445. .zone_name {
  446. font-weight: 500;
  447. }
  448. }
  449. }
  450. }
  451. }
  452. }
  453. }
  454. }
  455. }
  456. </style>