123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110 |
- <template>
- <div class="main-contain">
- <div class="position">
- <bread-crumb v-if="this.$route.query.type == 1" :crumbs='crumbs'></bread-crumb>
- <bread-crumb v-if="this.$route.query.type == 2" :crumbs='crumbs2'></bread-crumb>
-
-
- <div style="float:right;">
- <el-button size="small" @click="back()" class="filter-item">取 消</el-button>
- <el-button size="small" type="primary" v-loading="loading" @click="submit()" class="filter-item" v-if="is_check == 2 && parseInt(this.$route.query.is_sys) == 0">保 存</el-button>
- <el-button size="small" type="primary" @click="toCheck()" v-if="is_check == 2 && parseInt(this.$route.query.is_sys) == 0" class="filter-item">审 核</el-button>
- <el-button size="small" type="primary" @click="toReturnCheck()" v-if="is_check == 1 && parseInt(this.$route.query.is_sys) == 0" class="filter-item">反 审 核</el-button>
- </div>
- </div>
-
- <div class="app-container">
-
-
- <stock-in-dialog
- ref="dialog"
- :propForm="propForm"
- :visibility="isVisibility"
- v-on:dialog-comfirm="comfirm"
- v-on:dialog-cancle="cancle"
- >
- </stock-in-dialog>
-
- <div class="cell clearfix">
- <label class="title"><span class="name"><span style="color:red">*</span>仓库</span> :</label>
- <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" :disabled="true">
- <el-option
- v-for="(option, index) in storelist"
- :key="index"
- :label="option.storehouse_name"
- :value="option.id">
- </el-option>
- </el-select>
- <label class="title"><span class="name">出库时间</span> : </label>
- <el-date-picker size="small" v-model="warehouse_out_time" prefix-icon="el-icon-date" :disabled="stockShow"
- style="width: 200px;"
- type="date" placeholder="选择日期时间" align="right" format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"></el-date-picker>
- </div>
-
-
-
-
-
-
- <el-form :rules="tableRules" :model="recordInfo" ref="tableForm">
- <el-table :data="recordInfo.recordData" :class="signAndWeighBoxPatients" style="width: 100%" border
- max-height="450" :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)'}"
- >
-
-
- <el-table-column width="200" align="center">
- <template slot="header" slot-scope="scope">
- <span>耗材名称</span>
- </template>
-
- <template slot-scope="scope">
- <el-form-item style="padding-top: 20px">
- <el-autocomplete
- class="checkSearch"
- popper-class="my-autocomplete"
- v-model="scope.row.good_name"
- :fetch-suggestions="querySearchAsync"
- :trigger-on-focus="true"
- placeholder="请输入耗材名称"
- @select="handleSelect"
- @input="changeGoodName(scope.$index)"
- style="width:150px;"
- :disabled="stockShow"
-
- >
- <i class="el-icon-search el-input__icon" slot="suffix"></i>
- <template slot-scope="{ item }">
- <div class="name">{{item.good_name +" " +item.specification_name + " "+ item.manufacturer}}</div>
- </template>
- </el-autocomplete>
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column width="140" align="center">
- <template slot="header" slot-scope="scope">
- <span>耗材类型<span style="color: red">*</span></span>
- </template>
-
- <template slot-scope="scope">
- <el-form-item style="padding-top: 20px">
- <el-input
- :disabled="stockShow"
- placeholder="请输入商品类型"
- v-model="scope.row.good_type_id"
- :value="typeName(scope.row.good_type_id)"
- ></el-input>
- </el-form-item>
- </template>
- </el-table-column>
-
-
- <el-table-column width="140" align="center">
- <template slot="header" slot-scope="scope">
- <span>规格&单位<span style="color: red">*</span></span>
- </template>
- <template slot-scope="scope">
- <el-form-item style="padding-top: 20px">
- <el-input v-model="scope.row.name" :disabled="stockShow"></el-input>
- </el-form-item>
- </template>
- </el-table-column>
-
- <!-- <el-table-column width="140" align="center">
- <template slot="header" slot-scope="scope">
- <span>批号<span style="color: red"></span></span>
- </template>
- <template slot-scope="scope">
- <el-form-item style="padding-top: 20px">
- <el-select v-model="scope.row.number" filterable placeholder="请选择" :disabled="stockTrue" @change="changeNumberList(scope.row,scope.$index)">
- <el-option
- v-for="(item,index) in numberList"
- :key="index"
- :label="item.number"
- :value="item.id">
- </el-option>
- </el-select>
- </el-form-item>
- </template>
- </el-table-column> -->
-
- <!-- <el-table-column width="150" align="center">
- <template slot="header" slot-scope="scope">
- <span>进货价</span>
- </template>
- <template slot-scope="scope">
- <el-form-item
- :prop="'recordData.' + scope.$index + '.buy_price'"
- :rules="tableRules.buy_price"
- style="padding-top: 20px"
- >
- <el-input
- :disabled="true"
- placeholder="进货价"
- type="number"
- v-model="scope.row.buy_price"
- ></el-input>
- </el-form-item>
- </template>
- </el-table-column> -->
-
- <el-table-column width="150" align="center">
- <template slot="header" slot-scope="scope">
- <span>单价<span style="color: red">*</span></span>
- </template>
- <template slot-scope="scope">
-
- <el-form-item :prop="'recordData.' + scope.$index + '.price'" :rules='tableRules.price'
- style="padding-top: 17px">
- <el-input type="number" v-model="scope.row.price" :disabled="stockShow"></el-input>
- </el-form-item>
-
-
- </template>
- </el-table-column>
-
- <el-table-column width="150" align="center">
- <template slot="header" slot-scope="scope">
- <span>剩余库存</span>
- </template>
- <template slot-scope="scope">
- <el-form-item
- :rules="tableRules.count"
- style="padding-top: 17px"
- >
- <el-input
- :disabled="true"
- placeholder="剩余库存"
- type="number"
- v-model="scope.row.stock_count"
- ></el-input>
- </el-form-item>
- </template>
- </el-table-column>
-
- <el-table-column width="150" align="center">
- <template slot="header" slot-scope="scope">
- <span>出库数量<span style="color: red">*</span></span>
- </template>
- <template slot-scope="scope">
- <el-form-item :prop="'recordData.' + scope.$index + '.count'" :rules='tableRules.count'
- style="padding-top: 17px">
- <el-input type="number" v-model="scope.row.count" :disabled="stockShow" oninput="value=value.replace(/\D|^0/g,'')" @input="getSupplyCount(scope.row.count,scope.row.stock_count,scope.$index)"></el-input>
- </el-form-item>
- </template>
- </el-table-column>
-
- <el-table-column label="出库对象" width="150" align="center">
- <template slot-scope="scope">
- <el-select size="small" v-model="scope.row.admin_user_id" filterable placeholder="请选择厂商" :disabled="stockShow">
- <el-option
- v-for="(option, index) in doctorList"
- :key="index"
- :label="option.user_name"
- :value="option.admin_user_id">
- </el-option>
- </el-select>
- </template>
- </el-table-column>
-
-
- <el-table-column label="使用患者" width="150" align="center">
- <template slot-scope="scope">
- <el-select size="small" v-model="scope.row.patient_id" filterable placeholder="请选择使用患者">
- <el-option
- v-for="(option, index) in patients"
- :key="index"
- :label="option.name"
- :value="option.id">
- </el-option>
- </el-select>
- </template>
- </el-table-column>
-
- <el-table-column label="总价" width="150" align="center">
- <template slot-scope="scope">
- {{calculate(scope.row.price*scope.row.count)}}
- </template>
- </el-table-column>
- <el-table-column label="生产厂商" width="150" align="center">
- <template slot-scope="scope">
- <el-select size="small" v-model="scope.row.manufacturer" filterable placeholder="请选择厂商" :disabled="stockShow">
- <el-option
- v-for="(option, index) in manufacturerList"
- :key="index"
- :label="option.manufacturer_name"
- :value="option.id">
- </el-option>
- </el-select>
- </template>
- </el-table-column>
- <el-table-column label="生产日期" width="150" align="center">
- <template slot-scope="scope">
- <el-date-picker
- :disabled="stockShow"
- prefix-icon="el-icon-date"
- style="width: 145px"
- v-model="scope.row.product_date"
- type="date"
- placeholder="选择日期时间"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- ></el-date-picker>
- </template>
- </el-table-column>
-
- <el-table-column label="有效期" width="150" align="center">
- <template slot-scope="scope">
- <el-date-picker
- :disabled="stockShow"
- prefix-icon="el-icon-date"
- style="width: 145px"
- v-model="scope.row.expiry_date"
- type="date"
- placeholder="选择日期时间"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- ></el-date-picker>
- </template>
- </el-table-column>
-
- <el-table-column width="150" align="center">
- <template slot="header" slot-scope="scope">
- <span>批准文号<span style="color: red"></span></span>
- </template>
- <template slot-scope="scope">
- <el-input placeholder="请输入批准文号" v-model="scope.row.license_number" :disabled="stockShow"></el-input>
- </template>
- </el-table-column>
-
- <el-table-column align="center" width="150">
- <template slot="header" slot-scope="scope">
- <span>注册编码</span>
- </template>
- <template slot-scope="scope">
- <el-form-item style="padding-top: 20px">
- <el-input placeholder="请输入注册编码" v-model="scope.row.register_number" ></el-input>
- </el-form-item>
- </template>
- </el-table-column>
-
- <el-table-column label="经销商" width="150" align="center">
- <template slot-scope="scope">
- <el-select size="small" v-model="scope.row.dealer" filterable placeholder="请选择厂商" :disabled="stockShow">
- <el-option
- v-for="(option, index) in dealerList"
- :key="index"
- :label="option.dealer_name"
- :value="option.id">
- </el-option>
- </el-select>
- </template>
- </el-table-column>
-
- <el-table-column label="备注" width="150" align="center">
- <template slot-scope="scope">
- <el-input v-model="scope.row.remark" :disabled="stockShow"></el-input>
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center" width="150" fixed="right">
- <template slot-scope="scope">
- <el-tooltip class="item" effect="dark" content="新增" placement="top">
-
- <el-button
- size="mini"
- type="primary"
- icon="el-icon-circle-plus-outline"
- @click="handleEdit(scope.$index, scope.row)">
- </el-button>
- </el-tooltip>
- <el-tooltip class="item" effect="dark" content="删除" placement="top">
-
- <el-button
- size="mini"
- type="danger"
- icon="el-icon-delete"
- @click="handleDelete(scope.$index, scope.row)">
- </el-button>
- </el-tooltip>
-
- </template>
- </el-table-column>
- </el-table>
- </el-form>
-
- </div>
- </div>
-
- </template>
-
- <script>
- import { uParseTime } from '@/utils/tools'
-
- import { deleteWarehouseOutInfo, editWarehouseoutInfo,GetAllConfig,GetAllGoodInfoByID,postSearchGoodList,getSingleOutOrderDetail,getStockBatchNumber,checkWarehouseOut,returnCheckWarehouseOut } from '@/api/stock'
- import BreadCrumb from '../components/bread-crumb'
- import StockInDialog from './Dialog/stockInDialog'
-
- export default {
- components: { StockInDialog, BreadCrumb},
- name: 'stockOutOrderEdit',
-
- data() {
- return {
- crumbs: [
- { path: false, name: '库存管理' },
- { path: false, name: '耗材出库单' },
- { path: false, name: '编辑出库单' }
- ],
- crumbs2: [
- { path: false, name: '库存管理' },
- { path: false, name: '其他出库单' },
- { path: false, name: '编辑出库单' }
- ],
- signAndWeighBoxPatients: 'sign-and-weigh-box-patients',
-
- adminUserOptions: null,
- currentIndex: 0,
- warehouse_out_time: '',
- recordInfo: {
- recordData: [],
- stock_in_code: '',
- current_index: ''
-
- },
- tableRules: {
- count: [
- { required: true, message: '数量不能为空', trigge: 'blur' }
- ],
- price: [
- { required: true, message: '单价不能为空', trigger: 'blur' }
- ]
-
- },
- ruleForm: {
- manufacturer: [
- { required: true, message: '请选择厂商', trigger: 'change' }
- ]
- },
- // prop
- isVisibility: false,
- propForm: {
- goods:[],
- goodType: [],
- goodInfo: [],
- goodUnit: [],
- title: '入库',
- manufacturer: 0,
- dealer: 0
- },
-
- form: {
- manufacturer: 0,
- dealer: 0
- },
- warehouseInfoList: [],
- warehouseOut: {},
- manufacturer: [],
- dealer: [],
- goodType: [],
- goodInfo:[],
- numberList:[],
- stockShow:false,
- stockTrue:true,
- storelist:[],
- storehouse_id:"",
- doctorList:[],
- showCheck:false,
- showReturnCheck:false,
- loading:false,
- patients:[],
- }
- },
- methods: {
- comfirm: function(val) {
- this.$refs.dialog.hide();
- this.propForm.goodType = [];
- this.propForm.goods = [];
-
- if (val.selectedGoodInfo.length > 0) {
- for (let i = val.selectedGoodInfo.length - 1; ; i--) {
- if (i == 0) {
- this.recordInfo.recordData[this.currentIndex].good_type_id =
- val.selectedGoodInfo[i].good_type_id;
- this.recordInfo.recordData[this.currentIndex].good_id =
- val.selectedGoodInfo[i].id;
- this.recordInfo.recordData[
- this.currentIndex
- ].price = val.selectedGoodInfo[i].buy_price.toString();
- } else {
- const tempForm = {};
- tempForm["id"] = 0;
- tempForm["good_type_id"] = val.selectedGoodInfo[i].good_type_id;
- tempForm["good_id"] = val.selectedGoodInfo[i].id;
- tempForm["count"] = "";
- tempForm["price"] = val.selectedGoodInfo[i].buy_price.toString();
- tempForm["remark"] = "";
- this.recordInfo.recordData.splice(
- this.currentIndex + 1,
- 0,
- tempForm
- );
- }
- }
- }
- this.currentIndex = -1;
- },
- cancle: function() {
- this.$refs.dialog.hide()
- this.propForm.goods = [];
-
- this.propForm.goodType = [];
- },
- GetConfigInfo: function() {
- const loading = this.$loading({
- lock: true,
- text: "Loading",
- spinner: "el-icon-loading",
- background: "rgba(0, 0, 0, 0.7)"
- });
- GetAllConfig().then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false;
- } else {
- this.manufacturerList = response.data.data.manufacturer;
- this.dealer = response.data.data.dealer;
- this.goodType = response.data.data.goodType;
- this.goodInfo = response.data.data.goodInfo;
- }
- loading.close();
- });
- }, typeName: function(good_type_id) {
- let name = "";
- for (let i = 0; i < this.goodType.length; i++) {
- if (this.goodType[i].id == good_type_id) {
- name = this.goodType[i].type_name;
- }
- }
- return name;
- }, specificationName: function(good_info_id) {
- let name = "";
- for (let i = 0; i < this.goodInfo.length; i++) {
- if (this.goodInfo[i].id == good_info_id) {
- name = this.goodInfo[i].specification_name;
- }
- }
- return name;
- },
- handleEdit: function(index, row) {
- if(parseInt(this.$route.query.is_sys) == 5){
- this.$message.error("结算出库数据不能新增!")
- return
- }
- if(parseInt(this.$route.query.is_sys) == 12){
- this.$message.error("调拨出库数据不能新增!")
- return
- }
- if(row.supply_cancel_out_id >0){
- this.$message.error("采购出库数据不能新增!")
- return
- }
- if(this.is_check == 1){
- this.$message.error("已审核的数据不能新增")
- return
- }
- this.stockTrue = false
- if(this.stockShow == true){
- this.$message.error("自动出库数据无法编辑")
- return
- }
- const tempObj = {}
- tempObj['id'] = 0
- tempObj['good_type_id'] = 0
- tempObj['good_id'] = 0
- tempObj['count'] = ''
- tempObj['price'] = ''
- tempObj['remark'] = ''
- tempObj['number'] = ""
- tempObj['license_number'] = ""
- tempObj['dealer'] = ""
- tempObj['manufacturer'] = ""
- tempObj["admin_user_id"] = this.$store.getters.xt_user.user.user_name
- tempObj["buy_price"]= ""
- tempObj["stock_count"] = ""
- tempObj['register_number'] = ''
- tempObj['patient_id'] =0
- this.recordInfo.recordData.push(tempObj)
- },
- handleDelete: function(index, row) {
- if(parseInt(this.$route.query.is_sys) == 12){
- this.$message.error("调拨出库数据不能删除!")
- return
- }
- if(parseInt(this.$route.query.is_sys) == 5){
- this.$message.error("结算出库数据不能删除!")
- return
- }
- if(row.supply_cancel_out_id >0){
- this.$message.error("采购出库数据不能删除!")
- return
- }
-
- if(this.is_check == 1){
- this.$message.error("已审核的数据不能删除!")
- return
- }
-
- if(this.stockShow == true){
- this.$message.error("自动出库数据无法删除")
- return
- }
- if (row.id == 0) {
- this.recordInfo.recordData.splice(index, 1)
- } else {
- const params = {
- id: row.id
- }
- this.$confirm('确认删除该出库耗材信息记录?', '删除出库耗材信息记录', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- deleteWarehouseOutInfo(params).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg)
- return false
- } else {
- this.$message.success('删除成功')
-
- this.recordInfo.recordData.splice(index, 1)
- }
- })
- }).catch(() => {
- })
- }
- }, getTime(val, temp) {
- if (val != 0) {
- return uParseTime(val, temp)
- } else {
- return ''
- }
- },
- showDialog(index, row) {
- this.currentIndex = index;
- const loading = this.$loading({
- lock: true,
- text: "Loading",
- spinner: "el-icon-loading",
- background: "rgba(0, 0, 0, 0.7)"
- });
-
- const params = {
- manufacturer_id: this.form.manufacturer,
- dealer_id: this.form.dealer
- };
- this.propForm.goods = []
-
- GetAllGoodInfoByID(params).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false;
- } else {
- if (response.data.data.goodInfo.length <= 0) {
- this.$message.error("该厂商或经销商没有物品信息");
- return;
- }
- this.$refs.dialog.show();
- for (let i = 0; i < response.data.data.goodInfo.length; i++) {
- this.propForm.goodType.push(
- response.data.data.goodInfo[i].type
- );
- }
- const obj = {};
- this.propForm.goodType = this.propForm.goodType.reduce(
- (cur, next) => {
- obj[next.id] ? "" : (obj[next.id] = true && cur.push(next));
- return cur;
- },
- []
- ); // 设置cur默认类型为数组,并且初始值为空的数组
- }
-
- for (let i = 0; i < this.propForm.goodType.length; i++) {
- let goodInfo = [];
- let goodObj = {};
-
- for (let a = 0; a < response.data.data.goodInfo.length; a++) {
- var respObj = response.data.data.goodInfo[a];
- respObj["isSelected"] = false;
- if (respObj.type.id == this.propForm.goodType[i].id) {
- goodInfo.push(respObj);
- }
- }
- const obj = {};
- goodInfo = goodInfo.reduce((cur, next) => {
- obj[next.id] ? "" : (obj[next.id] = true && cur.push(next));
- return cur;
- }, []); // 设置cur默认类型为数组,并且初始值为空的数组
-
- this.$set(goodObj, this.propForm.goodType[i].id, goodInfo);
- this.propForm.goods.push(goodObj);
- }
- loading.close();
- });
- },
-
- back() {
- this.$router.go(-1)
- },
- submit() {
- this.loading = true
- this.$refs['tableForm'].validate((valid) => {
- if (valid) {
- const array = this.recordInfo.recordData
- for (let i = 0; i < array.length; i++) {
- if (array[i].good_type_id == 0) {
- this.$message.error('商品类型不能为空')
- this.loading = false
- return
- }
- if (array[i].good_id == 0) {
- this.$message.error('规格名称不能为空')
- this.loading = false
- return
- }
- }
- for(let i=0;i<this.recordInfo.recordData.length;i++){
-
- if(parseInt(this.recordInfo.recordData[i].count) > parseInt(this.recordInfo.recordData[i].stock_count) ){
- this.$message.error(this.recordInfo.recordData[i].good_name+"/"+this.recordInfo.recordData[i].specification_name+"库存不足!")
- this.loading = false
- return
- }
- if(this.recordInfo.recordData[i].dealer == ""){
- this.recordInfo.recordData[i].dealer = 0
- }
- if(this.recordInfo.recordData[i].expiry_date == "" || this.recordInfo.recordData[i].expiry_date == undefined){
- this.recordInfo.recordData[i].expiry_date = ""
- }
- if(this.recordInfo.recordData[i].product_date == "" || this.recordInfo.recordData[i].product_date == undefined){
- this.recordInfo.recordData[i].product_date = ""
- }
- this.recordInfo.recordData[i].price = this.recordInfo.recordData[i].price.toString()
-
- this.recordInfo.recordData[i].buy_price = this.recordInfo.recordData[i].buy_price.toString()
- this.recordInfo.recordData[i].stock_count = this.recordInfo.recordData[i].stock_count.toString()
-
- for(let j=0;j<this.manufacturerList.length;j++){
- if(this.recordInfo.recordData[i].manufacturer == this.manufacturerList[j].manufacturer_name){
- this.recordInfo.recordData[i].manufacturer = this.manufacturerList[j].id
- }
- }
- for(let z=0;z<this.dealerList.length;z++){
- if(this.recordInfo.recordData[i].dealer == this.dealerList[z].dealer_name){
- this.recordInfo.recordData[i].dealer = this.dealerList[z].id
- }
- }
-
- for(let y=0;y<this.numberList.length;y++){
- if(this.recordInfo.recordData[i].number == this.numberList[y].id){
- this.recordInfo.recordData[i].number = this.numberList[y].number
- }
- }
-
-
- for(let s=0;s<this.doctorList.length;s++){
-
- if(this.recordInfo.recordData[i].admin_user_id == this.doctorList[s].user_name){
- this.recordInfo.recordData[i].admin_user_id = this.doctorList[s].admin_user_id
- }
-
- }
- }
- const loading = this.$loading({
- lock: true,
- text: 'Loading',
- spinner: 'el-icon-loading',
- background: 'rgba(0, 0, 0, 0.7)'
- })
- const params = {
- 'warehouse_out_time':this.warehouse_out_time,
- 'stockOut': this.recordInfo.recordData,
- "warehout_id":parseInt(this.$route.query.id),
- "storehouse_id":parseInt(this.storehouse_id),
- }
-
- console.log("paramswowowoowow",params)
- var warehout_id = parseInt(this.$route.query.id)
-
- editWarehouseoutInfo(params, this.warehouse_out_time, warehout_id, this.$route.query.type, this.form.manufacturer, this.form.dealer,this.storehouse_id).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg)
- loading.close()
- return false
- } else {
- this.loading = false
- if(response.data.data.msg == 1){
- this.$message.success('保存成功')
- // this.$router.back(-1)
- loading.close()
- const order_id = this.$route.query.id
- this.getSingleOutOrderDetail(order_id)
- }
-
- if(response.data.data.msg == 5){
- this.$message.error("该耗材无库存,请入库")
- }
-
- var msg = response.data.data.msg
- var good_name = response.data.data.good_name
- var specification_name = response.data.data.specification_name
- var str = good_name +"*" + specification_name +"无库存,请入库"
-
- if(msg == 7){
- this.$message.error(str)
- }
-
- if(response.data.data.msg == 6){
- this.$message.error("该耗材的出库数量大于入库数量,无法出库")
- }
- loading.close()
- }
- })
- } else {
- return false
- }
- })
- },
- calculate: function(val) {
- if (val == 0) {
- return ''
- }
- return Math.round(parseFloat(val) * 100) / 100
- }, changeManufacturer(val) {
- this.propForm.manufacturer = val
- }, changeDealer(val) {
- this.propForm.dealer = val
- },
- querySearchAsync(keyword, cb) {
- let key = '';
- if (keyword != undefined) {
- key = keyword
- }
-
- postSearchGoodList(key,this.storehouse_id).then(response => {
- if (response.data.state == 1) {
-
- var list = response.data.data.list
- this.goodList = list
- var manufacturerList = response.data.data.manufacturerList
- this.manufacturerList = manufacturerList
- for(let i=0;i<this.goodList.length;i++){
- for(let j=0;j<this.manufacturerList.length;j++){
- if(this.goodList[i].manufacturer == this.manufacturerList[j].id){
- this.goodList[i].manufacturer = this.manufacturerList[j].manufacturer_name
- }
- }
- for(let z=0;z<this.dealerList.length;z++){
- if(this.goodList[i].dealer == this.dealerList[z].id){
- this.goodList[i].dealer = this.dealerList[z].dealer_name
- }
- }
- }
-
- cb(this.goodList)
- } else {
- cb([])
- }
- })
- },
- changeGoodName(val){
- this.currentIndex = val
- },
- handleSelect(val){
- var arr = []
- for(let i=0;i<this.recordInfo.recordData.length;i++){
- arr.push(this.recordInfo.recordData[i].good_id)
- }
- var str = arr.join(",")
-
- if(str.indexOf(val.id)!=-1){
- this.$message.error("该耗材已存在列表中")
- return
- }
- this.getStockBatchNumber(val.id)
- var total_count = 0
- for(let i=0;i<val.xt_warehouse_info.length;i++){
- total_count += val.xt_warehouse_info[i].stock_count
- }
- for(let i=0;i<this.recordInfo.recordData.length;i++){
- if(this.currentIndex == i){
- this.recordInfo.recordData[i].good_type_id = val.id
- this.recordInfo.recordData[i].good_name = val.good_name
- this.recordInfo.recordData[i].good_type_id = val.good_type_id
- this.recordInfo.recordData[i].name = val.specification_name +"/"+val.packing_unit
- this.recordInfo.recordData[i].manufacturer = val.manufacturer
- this.recordInfo.recordData[i].remark = val.remark
- this.recordInfo.recordData[i].license_number = val.number
- this.recordInfo.recordData[i].warehouse_info_id = 0
- this.recordInfo.recordData[i].buy_price = val.buy_price
- this.recordInfo.recordData[i].stock_count = total_count
-
-
- if( val.first_xt_warehouse_info!=null&&val.first_xt_warehouse_info.expiry_date >0){
- this.recordInfo.recordData[i].expiry_date = this.getTime(val.first_xt_warehouse_info.expiry_date,"{y}-{m}-{d}")
- }else{
- this.recordInfo.recordData[i].expiry_date = ""
- }
-
- if( val.first_xt_warehouse_info!=null&&val.first_xt_warehouse_info.product_date >0){
- this.recordInfo.recordData[i].product_date = this.getTime(val.first_xt_warehouse_info.product_date,"{y}-{m}-{d}")
- }else{
- this.recordInfo.recordData[i].product_date = ""
- }
-
- if(val.packing_price == 0){
- this.recordInfo.recordData[i].price = "0"
- }else{
- this.recordInfo.recordData[i].price = val.packing_price
- }
-
- this.recordInfo.recordData[i].specification_name = val.specification_name
- this.recordInfo.recordData[i].good_id = val.id
- if(val.dealer == 0){
- this.recordInfo.recordData[i].dealer = ""
- }else{
- this.recordInfo.recordData[i].dealer = val.dealer
- }
-
- }
- }
- },
- getSingleOutOrderDetail(order_id){
- this.recordInfo.recordData = []
- const loading = this.$loading({
- lock: true,
- text: "Loading",
- spinner: "el-icon-loading",
- background: "rgba(0, 0, 0, 0.7)"
- });
- const params = {
- 'id': order_id
- }
- getSingleOutOrderDetail(params).then(response=>{
- if(response.data.state == 1){
-
- var dealerList = response.data.data.dealerList
- this.dealerList = dealerList
- var manufacturerList = response.data.data.manufacturerList
-
- this.manufacturerList = manufacturerList
- this.goodType = response.data.data.goodType
- this.doctorList = response.data.data.doctorlist
-
- for (let i = 0; i < response.data.data.list.length; i++) {
-
- response.data.data.list[i].price = response.data.data.list[i].price.toString()
- response.data.data.list[i].count = response.data.data.list[i].count.toString()
- response.data.data.list[i].good_name = response.data.data.list[i].good_name
- response.data.data.list[i].name = response.data.data.list[i].specification_name + "/" + response.data.data.list[i].packing_unit
- response.data.data.list[i].good_type_id = response.data.data.list[i].good_type_id
- response.data.data.list[i].expiry_date = this.getTime(response.data.data.list[i].expiry_date,"{y}-{m}-{d}")
- response.data.data.list[i].product_date = this.getTime(response.data.data.list[i].product_date,"{y}-{m}-{d}")
- response.data.data.list[i].remark = response.data.data.list[i].remark
- response.data.data.list[i].buy_price = response.data.data.list[i].buy_price.toString()
- response.data.data.list[i].stock_count = response.data.data.list[i].stock_count.toString()
- response.data.data.list[i].patient_id = response.data.data.list[i].patient_id
- if(response.data.data.list[i].dealer == 0){
- response.data.data.list[i].dealer = ""
- }
- if(response.data.data.list[i].manufacturer ==0 ){
- response.data.data.list[i].manufacturer = ""
- }
- response.data.data.list[i].patient_id = response.data.data.list[i].patient_id
- this.recordInfo.recordData.push(response.data.data.list[i])
- }
- this.storelist = response.data.data.storelist
- this.warehouse_out_time = this.getTime(response.data.data.out.warehouse_out_time,"{y}-{m}-{d}")
- this.storehouse_id = response.data.data.out.storehouse_id
- var obj ={id:0,name:"系统"}
- this.patients =[]
- this.patients.push(obj)
- if(response.data.data.patients!=null){
- for(let i=0;i<response.data.data.patients.length;i++){
- this.patients.push(response.data.data.patients[i])
- }
- }
- loading.close();
- }
- })
- },
- getStockBatchNumber(id){
- var params = {
- id:id
- }
- getStockBatchNumber(params).then(response=>{
- if(response.data.state == 1){
- var list = response.data.data.list
-
-
- this.numberList = list
- }
- })
- },
- changeNumberList(val,index){
-
-
- for(let i=0;i<this.recordInfo.recordData.length;i++){
- if(index == i){
- this.recordInfo.recordData[i].warehouse_info_id = val.number
- }
- }
-
- },
- getSupplyCount(count,sum_count,index){
- if(sum_count < count){
- this.$message.error("出库数量不能大于剩余库存")
- for(let i=0;i<this.recordInfo.recordData.length;i++){
- if(index == i){
- this.recordInfo.recordData[i].count = ""
- }
- return
- }
- }else{
- for(let i=0;i<this.recordInfo.recordData.length;i++){
- if(index == i){
- this.recordInfo.recordData[i].count = count
- }
- return
- }
- }
- },
- toCheck(){
- const loading = this.$loading({
- lock: true,
- text: "Loading",
- spinner: "el-icon-loading",
- background: "rgba(0, 0, 0, 0.7)"
- });
- var params = {
- id:parseInt(this.$route.query.id)
- }
- checkWarehouseOut(params).then(response=>{
- if(response.data.state == 1){
- var msg = response.data.data.msg
- var good_name = response.data.data.good_name
- var specification_name = response.data.data.specification_name
- var storehose_name = response.data.data.storehose_name
- var str = storehose_name + " " + good_name +"*" + specification_name +"库存不足,请入库"
- if(msg == 1){
- this.$message.error(str)
- loading.close()
- }
- if(msg == 2){
- this.$message.success("审核成功!")
- this.recordInfo.recordData = [];
- this.is_check = 1
- this.$router.back(-1);
- loading.close()
- }
- }else{
- this.$message.error("审核失败!")
- loading.close()
- }
- })
- },
- toReturnCheck(){
- const loading = this.$loading({
- lock: true,
- text: "Loading",
- spinner: "el-icon-loading",
- background: "rgba(0, 0, 0, 0.7)"
- });
- var params = {
- id:parseInt(this.$route.query.id),
- }
- returnCheckWarehouseOut(params).then(response=>{
- if(response.data.state == 1){
- var list = response.data.data.list
- this.$message.success("反审核成功")
- this.is_check = 2
- this.$router.back(-1);
- loading.close()
- }else{
- this.$message.error("反审核失败!")
- loading.close()
- }
- })
- }
-
- },
- created() {
- // var nowDate = new Date();
- // var nowYear = nowDate.getFullYear();
- // var nowMonth = nowDate.getMonth() + 1;
- // var nowDay = nowDate.getDate();
- // this.warehouse_out_time =
- // nowYear +
- // "-" +
- // (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
- // "-" +
- // (nowDay < 10 ? "0" + nowDay : nowDay);
- this.is_check = parseInt(this.$route.query.is_check)
- this.propForm.goodUnit = this.$store.getters.good_unit
- const order_id = this.$route.query.id
-
- this.getSingleOutOrderDetail(order_id)
- var is_sys = this.$route.query.is_sys
- if(is_sys == 0){
- this.stockShow = false
- }
- if(is_sys == 1 || this.is_check == 1){
- this.stockShow = true
- }
- if(is_sys == 12){
- this.stockShow = true
- }
- if(parseInt(this.$route.query.supply_cancel_out_id) >0){
- this.stockShow = true
- }
-
- }
-
- }
- </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;
- }
-
- }
-
- .edit_separater {
- border-top: 1px solid rgb(233, 233, 233);
- margin-top: 15px;
- margin-bottom: 15px;
- }
-
- </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;
- }
- .el-autocomplete-suggestion{
- width: 400px !important;
- }
-
-
- </style>
|