123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442 |
- <template>
- <div class="main-contain">
- <div class="position">
- <bread-crumb :crumbs="crumbs"></bread-crumb>
- </div>
- <div class="app-container ">
- <div style="justify-content: space-between;margin: 0px 0 12px 0;display: flex;align-items: center;">
- <div>
-
- <el-date-picker
- size="small"
- v-model="start_time"
- prefix-icon="el-icon-date"
- :editable="false"
- style="width: 196px;"
- type="date"
- placeholder="选择日期时间"
- align="right"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- @change="startTimeChange"
- ></el-date-picker>-
- <el-date-picker
- size="small"
- v-model="end_time"
- prefix-icon="el-icon-date"
- :editable="false"
- style="width: 196px;"
- type="date"
- placeholder="选择日期时间"
- align="right"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- @change="endTimeChange"
- ></el-date-picker>
- <span>审核状态:</span>
- <el-select v-model="check_id" style="width:140px;margin-right:10px;" placeholder="请选择"
- @change="changeTypeName">
- <el-option
- v-for="item in checkList"
- :key="item.id"
- :label="item.name"
- :value="item.id">
- </el-option>
- </el-select>
- <el-input
- size="small"
- style="width: 200px;margin-left:10px;"
- class="filter-item"
- v-model.trim="keywords"
- placeholder="订单编号或供应商名称"
- />
- <el-button
- size="small"
- class="filter-item"
- type="primary"
- icon="el-icon-search"
- @click="search"
- >搜索</el-button
- >
- </div>
- <div>
- <el-button size="small" type="primary" @click="toAdd">新增</el-button>
- </div>
- </div>
-
-
- <el-table
- :row-style="{ color: '#303133' }"
- :header-cell-style="{
- backgroundColor: 'rgb(245, 247, 250)',
- color: '#606266'
- }"
- :data="tableList"
- :class="signAndWeighBoxPatients"
- border
- >
- <el-table-column label="单据日期" align="center">
- <template slot-scope="scope">
- <span>{{getTimes(scope.row.document_date)}}</span>
- </template>
- </el-table-column>
- <el-table-column label="单据编号" align="center">
- <template slot-scope="scope">
- <span>{{scope.row.good_number}}</span>
- </template>
- </el-table-column>
- <el-table-column label="供应商" align="center">
- <template slot-scope="scope">
- <span>{{getName(scope.row.supplier_id)}}</span>
- </template>
- </el-table-column>
- <el-table-column label="关联采购订单号" align="center" width="200">
- <template slot-scope="scope">
- <span>{{scope.row.number}}</span>
- </template>
- </el-table-column>
- <el-table-column label="采购金额" align="center">
- <template slot-scope="scope">
- <span v-if="getAllBuyPrice(scope.row.orderOut)>0">{{getAllBuyPrice(scope.row.orderOut)}}</span>
- </template>
- </el-table-column>
- <el-table-column label="优惠后金额" align="center">
- <template slot-scope="scope">
- {{getAllMoney(scope.row.discount_amount,scope.row.orderOut)}}
- </template>
- </el-table-column>
- <el-table-column label="已付款" align="center">
- <template slot-scope="scope">
- <span v-if="scope.row.payment >0">{{scope.row.payment}}</span>
- </template>
- </el-table-column>
- <el-table-column label="数量" align="center">
- <template slot-scope="scope">
- {{getAllCount(scope.row.orderOut)}}
- </template>
- </el-table-column>
-
- <el-table-column label="订单状态" align="center">
- <template slot-scope="scope">
- <span v-if="scope.row.is_check == 2">未审核</span>
- <span v-if="scope.row.is_check == 1">已审核</span>
- </template>
- </el-table-column>
-
-
- <el-table-column label="制单人" align="center">
- <template slot-scope="scope">
- {{getDocName(scope.row.creater)}}
- </template>
- </el-table-column>
-
- <el-table-column label="审核人" align="center">
- <template slot-scope="scope">
- {{getDocName(scope.row.checker)}}
- </template>
- </el-table-column>
-
- <el-table-column label="操作" align="center" width="260px">
- <template slot-scope="scope">
- <el-button
- icon="el-icon-edit-outline"
- size="small"
- type="primary"
- @click="toClick(scope.row)"
- >编辑
- </el-button>
- <el-button
- icon="el-icon-delete"
- size="small"
- type="danger"
- @click="toDelete(scope.row,scope.row.$index)"
- >删除
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :page-sizes="[10, 50, 100,200,500,1000]"
- :page-size="10"
- background
- align="right"
- style="margin-top:20px;"
- layout="total, sizes, prev, pager, next, jumper"
- :total="total"
- >
- </el-pagination>
-
- </div>
- </div>
- </template>
-
- <script>
- import BreadCrumb from "@/xt_pages/components/bread-crumb";
-
- import {getAllSupply,getAllGoodOrderList,deleteGoodOrder} from "@/api/supply"
- import {uParseTime } from '@/utils/tools'
- export default {
- name: "stockIn",
- components: {
-
- },
- components: {
- BreadCrumb
- },
- data() {
- return {
- crumbs: [
- { path: false, name: "采购管理" },
- { path: "/supply/good/order/query", name: "采购单" }
- ],
- keywords: "",
- total: 0,
- multipleSelection: [],
- signAndWeighBoxPatients: "sign-and-weigh-box-patients",
- start_time: "",
- end_time:"",
- page: 1,
- limit: 10,
- goodType: [],
- goodInfo: [],
- org_id:0,
- types:[],
- tableList:[],
- type_name:"",
- checkList:[
- {id:0,name:"请选择"},
- {id:1,name:"已审核"},
- {id:2,name:"未审核"},
- ],
- supplyList:[],
- check_id:0,
- doctorList:[],
- };
- },
- methods:{
- toAdd(){
- var id = 0
- this.$router.push({path:"/good/order/add?id="+id})
- },
- changeTypeName(){
- this.getlist()
- },
- startTimeChange(){
- this.getlist()
- },
- endTimeChange(){
- this.getlist()
- },
- search(){
- this.getlist()
- },
- handleSizeChange(val){
- this.limit = val
- this.getlist()
- },
- handleCurrentChange(val){
- this.page = val
- this.getlist()
- },
- getAllSupply(){
- getAllSupply().then(response=>{
- if(response.data.state == 1){
- var supplyList = response.data.data.supplyList
- this.doctorList = response.data.data.doctorList
- for(let i=0;i<supplyList.length;i++){
- this.supplyList.push(supplyList[i])
- }
- }
- })
- },
-
- getTimes(time) {
- if (time === '') {
- return ''
- }
- return uParseTime(time, '{y}-{m}-{d}')
- },
- getlist(){
- var params = {
- check_id:this.check_id,
- start_time:this.start_time,
- end_time:this.end_time,
- keyword:this.keywords,
- page:this.page,
- limit:this.limit,
- }
- getAllGoodOrderList(params).then(response=>{
- if(response.data.state == 1){
- var list = response.data.data.list
- this.tableList = list
- var total = response.data.data.total
- this.total = total
- }
- })
- },
- getName(id){
- var name = ""
- for(let i=0;i<this.supplyList.length;i++){
- if(id == this.supplyList[i].id){
- name = this.supplyList[i].supplier_name
- }
- }
- return name
- },
- getDocName(id){
- var user_name = ""
- for(let i=0;i<this.doctorList.length;i++){
- if(id == this.doctorList[i].admin_user_id){
- user_name = this.doctorList[i].user_name
- }
- }
- return user_name
- },
- getAllBuyPrice(arr){
- var buy_price = 0
- if(arr!=undefined && arr.length > 0){
- for(let i=0;i<arr.length;i++){
- buy_price += (arr[i].count * arr[i].price)
- }
- }
- return buy_price.toFixed(2)
- },
- getAllCount(arr){
- var count = 0
- if(arr!=undefined && arr.length > 0){
- for(let i=0;i<arr.length;i++){
- count += parseInt(arr[i].count)
- }
- }
- if(count == 0){
- return ""
- }
- if(count >0){
- return count
- }
-
- },
- getAllMoney(paycount,arr){
- var all_price= 0
- if(arr!=undefined && arr.length > 0){
- for(let i=0;i<arr.length;i++){
- all_price += arr[i].count * arr[i].price
- }
- }
- if(all_price == 0){
- return ""
- }
- if(all_price >0){
-
- return (all_price - paycount).toFixed(2)
- }
-
- },
- toClick(val){
-
- this.$router.push({path:"/good/order/edit?id="+val.id+"&warehousing_id="+val.warehousing_id})
- },
- toDelete(val,index){
- if(val.is_check == 1){
- this.$message.error("已审核单据,不能删除!")
- return false
- }
- if(val.cancelOut.length >0 ){
- this.$message.error("已关联单据,不能删除!")
- return false
- }
- this.$confirm('确认删除吗?', '删除', {
- confirmButtonText: '确 定',
- cancelButtonText: '取 消',
- type: 'warning'
- }).then(() => {
- deleteGoodOrder(val.id).then(response => {
- if (response.data.state == 1) {
- var msg = response.data.data.msg
- this.tableList.splice(index, 1);
- this.$message.success("删除成功")
- this.getlist()
- } else {
- this.$message.error("删除失败")
- }
- })
- })
- .catch(() => {
- })
- }
- },
- created() {
- var now = new Date(); //当前日期
- var nowMonth = now.getMonth(); //当前月
- var nowYear = now.getFullYear(); //当前年
- //本月的开始时间
- var monthStartDate = new Date(nowYear, nowMonth, 1);
- this.start_time = this.getTimes(monthStartDate)
- this.end_time = this.getTimes(new Date())
- this.org_id = this.$store.getters.xt_user.org_id
- this.getAllSupply()
- this.getlist()
- },
-
- };
- </script>
-
- <style rel="stylesheet/css" lang="scss" scoped>
- .information {
- border: 1px #dcdfe6 solid;
- padding: 30px 20px 30px 20px;
-
- .border {
- border-bottom: 1px #dcdfe6 solid;
- margin: 0px 0 20px 0;
- }
- }
-
- .title {
- background: #409eff;
- height: 44px;
- line-height: 44px;
- padding: 0 0 0 10px;
- color: #fff;
- margin: 0 0 10px 0;
- }
-
- .edit_separater {
- border-top: 1px solid rgb(233, 233, 233);
- margin-top: 15px;
- margin-bottom: 15px;
- }
- /deep/ .el-table__body-wrapper::-webkit-scrollbar {
- width: 10px;
- height: 10px;
- }
- </style>
-
- <style>
- .sign-and-weigh-box .sign-and-weigh-box-patients .cell {
- font-size: 12px;
- }
-
- .sign-and-weigh-box .sign-and-weigh-box-patients .current-row > td {
- background: #6fb5fa;
- }
-
- .count {
- color: #bd2c00;
- }
- .el-table td,
- .el-table th.is-leaf,
- .el-table--border,
- .el-table--group {
- border-color: #d0d3da;
- }
- .el-table--border::after,
- .el-table--group::after,
- .el-table::before {
- background-color: #d0d3da;
- }
-
- </style>
|