123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598 |
- <template>
- <div class="main-contain">
- <div class="position">
- <bread-crumb :crumbs='crumbs'></bread-crumb>
- <el-button :loading="loading" size="small" icon="el-icon-printer" @click="printThisPage" type="primary">打印
- </el-button>
- </div>
- <div class="app-container ">
- <div id="dialysis-print-box">
- <div class="dialysis-print-order">
- <div class="order-yy-name">{{orgname}}</div>
- <div class="order-title" v-if="type == 1">入库单</div>
-
- <div class="order-title" v-if="type == 2">出库单</div>
- <div class="order-title" v-if="type == 4">退库单</div>
-
- <div style="float: left;margin-bottom: 10px;">{{getDateOne()}}</div>
- <div style="float: right;margin-bottom: 10px;">{{getDateTwo()}}</div>
-
-
-
- <table class="print-table" border="1">
- <tbody>
- <tr>
- <td style="line-height: 50px" width="50">序号</td>
- <td style="line-height: 50px" width="200">耗材名称</td>
- <td style="line-height: 50px" width="200">规格型号</td>
- <td style="line-height: 50px" width="80">数量</td>
- <td style="line-height: 50px" width="50">单位</td>
-
- <td style="line-height:50px" width="80">
- <span v-if="type == 1">进货价</span>
- <span v-if="type == 2">出货价</span>
- <span v-if="type == 4">退库价</span>
- </td>
- <td style="line-height: 50px" width="80">总价</td>
- <td style="line-height: 50px" width="80">备 注</td>
- </tr>
-
- <tr v-for="(item,index) in stockDatas" :key="item.id">
- <td style="line-height: 50px">
- {{index+1}}
- </td>
- <td style="line-height: 50px">
- {{item.good_name}}
- </td>
- <td style="line-height: 50px">
- {{item.specification_name}}
- </td>
-
- <td style="line-height: 50px">
- <span v-if="type == 1"> {{ item.warehousing_count }}</span>
- <span v-if="type == 2">
- <span v-if="org_id == 3907 || org_id == 9919 || org_id == 9583">{{getStockCount(item.good_id) }}</span>
- <span v-if="org_id == 10265">{{getMySelfCount(item.good_id) }}</span>
- <span v-if="org_id!=3907&&org_id!=10265&&org_id!=10285&&org_id!=9583">{{getStockCount(item.good_id) }}</span>
- </span>
-
- <span v-if="type == 4"> {{ item.count }}</span>
- </td>
- <td style="line-height: 50px">
- {{item.packing_unit}}
- </td>
- <td style="line-height:50px">
- <span v-if="type == 1"> {{ item.price }}</span>
- <span v-if="type == 2">
- <span v-if="org_id == 9919">{{ item.buy_price }}</span>
- <span v-else>
- {{ item.packing_price }}
- </span>
- </span>
- <span v-if="type == 4"> {{ item.price }}</span>
- </td>
- <td style="line-height:50px">
- <span v-if="type == 1">{{(item.warehousing_count * item.price).toFixed(2)}}</span>
- <span v-if="type == 2">
- <span v-if="org_id == 3907 || org_id ==9919">
- {{(getStockCount(item.good_id) * item.buy_price).toFixed(2)}}
- </span>
- <span v-if="org_id == 10265">{{(getMySelfCount(item.good_id)*item.packing_price).toFixed(2)}}</span>
- <span v-if="org_id!=3907&&org_id!=10265&&org_id!=9919">{{(getStockCount(item.good_id) * item.packing_price).toFixed(2)}}</span>
- </span>
- <span v-if="type == 4">{{(item.count * item.price).toFixed(2)}}</span>
- </td>
- <td style="line-height: 50px">
- <span v-if="type == 1">{{item.remark}}</span>
- </td>
- </tr>
- </tbody>
- </table>
- <table class="print-table" border="1">
- <tr>
- <td style="line-height: 50px" width="50">合计</td>
- <td style="line-height: 50px" width="200"></td>
- <td style="line-height: 50px" width="200"></td>
- <td style="line-height: 50px" width="80"></td>
- <td style="line-height: 50px" width="50"></td>
- <td style="line-height: 50px" width="80"></td>
- <td style="line-height: 50px" width="80">
- <span v-if="type == 1">{{getWareInfoTotal().toFixed(2)}}</span>
- <span v-if="type == 2">
- <span v-if="org_id == 3907 || org_id == 9919">{{getWareOutTotalOne().toFixed(2)}}</span>
- <span v-if="org_id == 10265">{{getWareOutTotalSix().toFixed(2)}}</span>
- <span v-if="org_id!=3907 && org_id!=9919 && org_id!=10265"> {{getWareOutTotal().toFixed(2)}}</span>
- </span>
- <span v-if="type == 4">{{getWareOutTotal().toFixed(2)}}</span>
- </td>
- <td style="line-height: 50px" width="80">
-
- </td>
- </tr>
- </table>
-
- <div style="display:flex;margin-top:20px;float:right;">
- <div style="width:50px;">审批:</div><div style="width:100px;"></div>
- <div style="width:80px;">药材主任:</div><div style="width:100px;"></div>
- <div style="width:50px;">会计:</div><div style="width:100px;"></div>
- <div style="width:50px;">审核:</div><div style="width:100px;"></div>
- <div style="width:70px;">制单人:</div><div style="width:100px;"></div>
- </div>
-
- </div>
-
- </div>
-
- </div>
- </div>
-
- </template>
-
- <script>
- import { getPrintStockGood,getGoodDetailPrintList,getStockDetail } from '@/api/stock'
- import { getDataConfig } from '@/utils/data'
- import { jsGetAge, uParseTime } from '@/utils/tools'
- import BreadCrumb from '@/xt_pages/components/bread-crumb'
- import print from 'print-js'
-
- export default {
- name: 'dialysisPrintOrder',
- components: {
- BreadCrumb
-
- },
- data() {
- return {
- crumbs: [
- { path: false, name: '出入库明细' },
- { path: false, name: '打印单' }
- ],
- loading: false,
- orgname: '',
- queryParams: {
- start_time: this.$route.query.start_time,
- end_time: this.$route.query.end_time,
- type: this.$route.query.type,
- limit:this.$route.query.limit,
- page:this.$route.query.page,
- },
- totalPrice: 0,
- stockDatas: [],
- goodUnit: [],
- type: this.$route.query.type,
- start_time: this.$route.query.start_time,
- end_time: this.$route.query.end_time,
- stockTotal:[],
- wareOutInfo:[],
- org_id:this.$store.getters.xt_user.org.id,
- informationList:[]
- }
- },
- methods: {
- getDateOne(){
- if (this.type == 1){
- return "入库日期: "+this.start_time +"~"+this.end_time
- }else if(this.type == 2){
- return "出库日期: "+this.start_time +"~"+this.end_time
- }else if(this.type == 3){
- return "出库日期: "+this.start_time +"~"+this.end_time
- }else if(this.type == 4){
- return "退库日期: "+this.start_time +"~"+this.end_time
- }
-
- },
- getDateTwo(){
- var ptime = Math.round(new Date().getTime() / 1000)
- return "印单日期:"+uParseTime(ptime, '{y}-{m}-{d}')
- },
- getTime(value, temp) {
- if (value == 0) {
- return ''
- }
- if (value != undefined) {
- return uParseTime(value, temp)
- }
- return ''
- },
- printThisPage() {
- var ptime = Math.round(new Date().getTime() / 1000)
- this.print_time = uParseTime(ptime, '{y}-{m}-{d} {h}:{i}')
- const style = '@media print {.dialysis-print-order{width:960px;margin:0 auto}.dialysis-print-order .order-yy-name{margin:auto;text-align:center;font-size:20px;letter-spacing:5px}.dialysis-print-order .order-title{margin:auto;font-weight:600;text-align:center;font-size:22px;padding:10px 20px 20px 20px}.dialysis-print-order .table-box{width:100%;line-height:23px;font-size:14px}.dialysis-print-order .print-table{width:100%;text-align:center;border-collapse:collapse;line-height:25px;font-size:14px}.dialysis-print-order .print-table-no{width:100%;text-align:center;border-collapse:collapse;font-size:14px}.dialysis-print-order .under-line{border-bottom:1px solid #999;width:95%;text-align:center;margin-left:2px}.dialysis-print-order .title-box{text-align:center;font-size:16px;border:1px solid #666}.dialysis-print-order .radio-lebel-box{font-weight:400;cursor:pointer}.dialysis-print-order .radio-no{opacity:0;outline:0;position:absolute;margin:0;width:0;height:0;z-index:-1}.dialysis-print-order .radio-inner{white-space:nowrap;cursor:pointer;outline:0;display:inline-block;line-height:1;position:relative;vertical-align:middle}.dialysis-print-order .radio-fang{display:inline-block;position:relative;border:1px solid #000;box-sizing:border-box;width:14px;height:14px;background-color:#fff;z-index:1;transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)}.dialysis-print-order .is-checked-radio::after{content:"√";font-size:15px}}.dialysis-print-order .print-table-no tr td { padding: 8px 5px; line-height: 25px; }.es-img{height: 20px; }.advice-name{text-align: left;}.advice-children{display:flex;} .dialysis-print-order .print-table tr td{padding: 0px 0px;} .print-template-two tr {line-height: 30px;} .title-box-pro{border: 0 #fff;line-height: 40px;height: 40px;text-align: left;padding-left: 10px !important;} .text-align-left{text-align: left !important;padding-left:10px !important;font-size: 14px !important;line-height: 25px;}'
- printJS({
- printable: 'dialysis-print-box',
- type: 'html',
- style: style,
- scanStyles: false
- })
- },
- calCount(stock) {
-
- let total = 0
- var array = []
- if (this.type == 1) {
- array = stock.query_warehousing_info
- } else if (this.type == 2) {
- array = stock.query_sales_return_info
- } else if (this.type == 3) {
- array = stock.query_warehouseout_info
- } else if (this.type == 4) {
- array = stock.query_cancel_stock_info
- }
-
- for (let i = 0; i < array.length; i++) {
- if (this.type == 1) {
- total = total + array[i].warehousing_count
- } else if (this.type == 2) {
- total = total + array[i].count
- } else if (this.type == 3) {
- total = total + array[i].count
-
- } else if (this.type == 4) {
- total = total + array[i].count
- }
- }
- return total
-
- }, calTotal(stock) {
-
- console.log(stock)
-
- var array = []
- if (this.type == 1) {
- array = stock.query_warehousing_info
- } else if (this.type == 3) {
- array = stock.query_warehouseout_info
- }
-
- let total_price = 0.0
- for (let i = 0; i < array.length; i++) {
- if(this.type == 1) {
- total_price = total_price + array[i].warehousing_count * array[i].price
- }else if(this.type == 3){
- total_price = total_price + array[i].count * array[i].price
-
- }
- }
- return Math.floor(total_price * 100) / 100
- },
- calTotalPrice() {
-
- var amountPrice = 0
- for (let i = 0; i < this.stockDatas.length; i++) {
- var obj = this.stockDatas[i]
- var len = 0
- if (this.type == 1) {
- len = obj.query_warehousing_info.length
- } else if (this.type == 3) {
- len = obj.query_warehouseout_info.length
- }
- let total_price = 0.0
- for (let a = 0; a < len; a++) {
- if (this.type == 1) {
- total_price = total_price + obj.query_warehousing_info[a].total_price
- } else if (this.type == 3) {
- total_price = total_price + obj.query_warehouseout_info[a].total_price
- }
- }
-
- amountPrice = amountPrice + Math.floor(total_price* 100) / 100
- }
- return Math.floor(amountPrice* 100) / 100
- }, getTotal: function(price, total) {
- var m = 0, r1, r2
- var s1 = price.toString()
- var s2 = total.toString()
- try {
- m += s1.split('.')[1].length
- } catch (e) {
-
- }
- try {
- } catch (e) {
- m += s2.split('.')[1].length
- }
- r1 = Number(price.toString().replace('.', ''))
- r2 = Number(total.toString().replace('.', ''))
- return r1 * r2 / Math.pow(10, m)
- },
- getUnit(id){
- var name = ""
- for(let i=0;i<this.goodUnit.length;i++){
- if(this.goodUnit[i].id == id){
- name = this.goodUnit[i].name
- }
- }
- return name
- },
-
- getStockCount(id){
-
- var count = ""
- for(let i=0;i<this.stockTotal.length;i++){
- if(id == this.stockTotal[i].good_id){
- count = this.stockTotal[i].count
- }
- }
- return count
- },
- getWareOut(id){
- var count = ""
- for(let i=0;i<this.wareOutInfo.length;i++){
- if(id == this.wareOutInfo[i].good_id){
- count = this.wareOutInfo[i].count
- }
- }
- return count
- },
- getPrice(id){
- var sum = ""
- for(let i=0;i<this.informationList.length;i++){
- for(let j=0;j<this.wareOutInfo.length;j++){
- if(this.informationList[i].id == this.wareOutInfo[j].good_id){
- this.wareOutInfo[j].buy_price = this.informationList[i].buy_price
- }
- }
- }
-
- for(let j=0;j<this.wareOutInfo.length;j++){
- if(id == this.wareOutInfo[j].good_id){
- sum += (this.wareOutInfo[j].buy_price * this.wareOutInfo[j].count).toFixed(2)
- }
- }
-
- return sum
-
- },
- getReailPrice(id){
- var price = 0
- for(let i=0;i<this.informationList.length;i++){
- if(id == this.informationList[i].id){
- price = this.informationList[i].buy_price
- }
- }
- return price
- },
- getTotalPrice(){
- var total_price = 0
- for(let i=0;i<this.stockDatas.length;i++){
- total_price += (this.getStockCount(this.stockDatas[i].id) * this.getReailPrice(this.stockDatas[i].id))
- }
- return total_price
- },
- getTotalPriceOne(){
- var total_price = 0
- for(let i=0;i<this.stockDatas.length;i++){
- total_price +=(this.getWareOut(this.stockDatas[i].id) * this.getReailPrice(this.stockDatas[i].id))
- }
- return total_price
- },
- unique(arr) {
- const res = new Map();
- return arr.filter((arr) => !res.has(arr.id) && res.set(arr.id, 1));
- },
- getGoodDetailPrintList(){
- console.log("param232323232322332",this.queryParams)
- getGoodDetailPrintList(this.queryParams).then(response=>{
- if(response.data.state == 1){
- var list = response.data.data.list
- console.log("新的",list)
- this.stockDatas = list
- var stockTotal = response.data.data.stockTotal
- this.stockTotal = stockTotal
-
-
- }
- })
- },
-
- getStockDetail(){
- getStockDetail(this.queryParams).then(response=>{
- if(response.data.state == 1){
- var total = response.data.data.total
- var list = response.data.data.list
- this.stockDatas = list
- }
- })
- },
- getWareInfoTotal(){
- var total = 0
- for(let i=0;i<this.stockDatas.length;i++){
- total+= this.stockDatas[i].warehousing_count * this.stockDatas[i].price
- }
- return total
- },
- getWareOutTotal(){
- var total = 0
- for(let i=0;i<this.stockDatas.length;i++){
- total+= this.stockDatas[i].count * this.stockDatas[i].packing_price
- }
- return total
- },
- getWareOutTotalOne(){
- var total = 0
- for(let i=0;i<this.stockDatas.length;i++){
- total+= this.getStockCount(this.stockDatas[i].good_id) * this.stockDatas[i].buy_price
- }
- return total
- },
- getMySelfCount(good_id){
- var total = 0
- for(let i=0;i<this.stockDatas.length;i++){
- if(good_id == this.stockDatas[i].good_id){
- total+= this.stockDatas[i].count
- }
- }
- return total
- },
- getWareOutTotalSix(){
- var total = 0
- for(let i=0;i<this.stockDatas.length;i++){
- total+= this.getMySelfCount(this.stockDatas[i].good_id) * this.stockDatas[i].packing_price
- }
- return total
- },
- },
- created() {
- var xtuser = this.$store.getters.xt_user
- this.orgname = xtuser.org.org_name
- this.goodUnit = this.$store.getters.good_unit
- this.getGoodDetailPrintList()
- }
-
- }
- </script>
-
- <style>
- .dialysis-print-order {
- width: 960px;
- margin: 0 auto
- }
-
- .dialysis-print-order .order-yy-name {
- margin: auto;
- text-align: center;
- font-size: 20px;
- letter-spacing: 5px;
- }
-
- .dialysis-print-order .order-title {
- margin: auto;
- font-weight: 600;
- text-align: center;
- font-size: 22px;
- padding: 10px 20px 20px 20px;
- }
-
- .dialysis-print-order .table-box {
-
- width: 100%;
- line-height: 23px;
- font-size: 14px;
- }
-
- .dialysis-print-order .print-table {
- width: 100%;
- text-align: center;
- border-collapse: collapse;
- line-height: 40px;
- font-size: 14px;
- }
-
- .dialysis-print-order .print-table-no {
- width: 100%;
- text-align: center;
- border-collapse: collapse;
- font-size: 14px;
- }
-
- .dialysis-print-order .under-line {
- border-bottom: 1px solid #999;
- width: 95%;
- text-align: center;
- margin-left: 2px;
-
-
- }
-
- .dialysis-print-order .title-box {
- text-align: center;
- font-size: 16px;
- }
-
- .dialysis-print-order .radio-lebel-box {
- font-weight: 400;
- cursor: pointer;
- }
-
- .dialysis-print-order .radio-no {
- opacity: 0;
- outline: none;
- position: absolute;
- margin: 0;
- width: 0;
- height: 0;
- z-index: -1;
- }
-
- .dialysis-print-order .radio-inner {
- white-space: nowrap;
- cursor: pointer;
- outline: none;
- display: inline-block;
- line-height: 1;
- position: relative;
- vertical-align: middle;
- }
-
- .dialysis-print-order .radio-fang {
- display: inline-block;
- position: relative;
- border: 1px solid #000;
- box-sizing: border-box;
- width: 14px;
- height: 14px;
- background-color: #fff;
- z-index: 1;
- transition: border-color .25s cubic-bezier(.71, -.46, .29, 1.46), background-color .25s cubic-bezier(.71, -.46, .29, 1.46);
- }
-
- .dialysis-print-order .is-checked-radio::after {
- content: "√";
- font-size: 15px;
- }
-
-
- .dialysis-print-order .print-table-no tr td {
- padding: 8px 5px;
- line-height: 25px;
- }
-
- .dialysis-print-order .print-table tr td {
- padding: 1px 1px;
- /*line-height: 25px;*/
- }
-
- .es-img {
- height: 25px;
- }
-
- .advice-name {
- text-align: left;
- }
-
- .advice-children {
- display: flex;
- }
-
- .title-box-pro {
- border: 0 #fff;
- line-height: 25px;
- height: 25px;
- text-align: left;
- padding-left: 10px !important;
- }
-
- .title-box-pro-tr {
- border: 0 #fff;
- }
-
- .text-align-left {
- text-align: left !important;
- padding-left: 10px !important;
- font-size: 14px !important;
- line-height: 25px;
- }
-
- .print-table-tr-new td {
- line-height: 20px !important;
- }
-
- .border-top-solid {
- border: solid 1px #000;
- }
-
- .print-template-two tr {
- line-height: 30px;
- }
- </style>
|