123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287 |
- <template>
- <div class="main-contain">
- <div class="position">
- <bread-crumb v-if="type == 1" :crumbs="crumbs"></bread-crumb>
- <bread-crumb v-if="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"
- @click="submit()"
- class="filter-item"
- >保 存</el-button
- >
- <el-button
- size="small"
- type="primary"
- @click="toCheck()"
- v-show ="showCheck"
- class="filter-item"
- >审核</el-button
- >
- <!-- <el-button
- size="small"
- type="primary"
- @click="toReturnCheck()"
- v-show ="showReturnCheck"
- class="filter-item"
- >反审核</el-button
- > -->
- </div>
- </div>
- <div class="app-container" v-loading="loading">
- <drugs-stock-dialog
- ref="dialog"
- :propForm="propForm"
- :visibility="isVisibility"
- v-on:dialog-comfirm="comfirm"
- v-on:dialog-cancle="cancle"
- ></drugs-stock-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"
- >
- <el-option
- v-for="(option, index) in list"
- :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="warehousing_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"
- ></el-date-picker>
- <div class="titleOne">
- 制单人:{{ this.$store.getters.xt_user.user.user_name }}
- </div>
- </div>
-
- <el-form :rules="tableRules" :model="recordInfo" ref="tableForm">
- <el-table
- id="oictable"
- :data="recordInfo.recordData"
- :class="signAndWeighBoxPatients"
- style="width: 100%"
- border
- max-height="450"
- v-loading="listLoading"
- :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }"
- >
- <el-table-column align="center" width="200" fixed="left">
- <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-autocomplete
- class="checkSearch"
- popper-class="my-autocomplete"
- v-model="scope.row.drug_name"
- :fetch-suggestions="querySearchAsync"
- :trigger-on-focus="true"
- placeholder="请输入药品名称"
- @select="handleSelect"
- @input="changeDrugName(scope.$index)"
- style="width: 160px"
- >
- <i class="el-icon-search el-input__icon" slot="suffix"></i>
- <template slot-scope="{ item }">
- <div class="name">
- {{
- item.drug_name +
- item.dose +
- item.dose_unit +
- "*" +
- item.min_number +
- item.min_unit +
- "/" +
- item.max_unit +
- " " +
- item.manufacturer
- }}
- </div>
- </template>
- </el-autocomplete>
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column align="center" width="140">
- <template slot="header" slot-scope="scope">
- <span>药品类型</span>
- </template>
- <template slot-scope="scope">
- <el-select
- v-model="scope.row.drug_type"
- filterable
- placeholder="请选择药品类型"
- >
- <el-option
- v-for="(option, index) in drugTypeList"
- :key="index"
- :label="option.name"
- :value="option.id"
- >
- </el-option>
- </el-select>
- </template>
- </el-table-column>
- <el-table-column align="center" width="140">
- <template slot="header" slot-scope="scope">
- <span>规格&单位</span>
- </template>
- <template slot-scope="scope">
- <el-form-item style="padding-top: 20px">
- <el-input
- :disabled="true"
- placeholder="请输入规格&单位"
- v-model="scope.row.name"
- ></el-input>
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column align="center" width="150">
- <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"
- :rules="tableRules.batch_number"
- :prop="'recordData.' + scope.$index + '.batch_number'"
- >
- <el-input
- placeholder="请输入批号"
- v-model="scope.row.batch_number"
- ></el-input>
- </el-form-item>
- </template>
- </el-table-column>
-
- <el-table-column align="center" width="200">
- <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 + '.warehousing_count'"
- :rules="tableRules.warehousing_count"
- style="padding-top: 10px"
- >
- <div style="display: flex">
- <!-- <el-input
- oninput="value=value.replace(/\D|^0/g,'')"
- placeholder="请输入入库数量"
- type="number"
- v-model="scope.row.warehousing_count"
- style="width:120px"
- ></el-input> -->
- <el-input
- placeholder="请输入入库数量"
- v-model="scope.row.warehousing_count"
- style="width: 120px"
- ></el-input>
- <!-- {{scope.row.max_unit}} -->
- <el-select
- v-model="scope.row.max_unit"
- filterable
- placeholder="请选择单位"
- style="width: 80px"
- @change="changeUnit(scope.row,scope.$index)"
- >
- <el-option
- v-for="(option, index) in scope.row.unitList"
- :key="index"
- :label="option.name"
- :value="option.name"
- >
- </el-option>
- </el-select>
- </div>
- </el-form-item>
- </template>
- </el-table-column>
-
- <el-table-column align="center" width="140">
- <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 + '.retail_price'"
- :rules="tableRules.retail_price"
- style="padding-top: 20px"
- >
- <el-input
- style="width: 100px"
- placeholder="请输入拆零零售价"
- type="number"
- v-model="scope.row.retail_price"
- ></el-input>
- </el-form-item>
- </template>
- </el-table-column>
-
- <el-table-column align="center" width="120">
- <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.last_price"
- style="padding-top: 20px"
- >
- <el-input
- style="width: 100px"
- placeholder="请输入单价"
- type="number"
- v-model="scope.row.last_price"
- ></el-input>
- </el-form-item>
- </template>
- </el-table-column>
-
- <el-table-column label="总价(元)" align="center" width="80">
- <template slot-scope="scope">
- {{ calculate(scope.row.last_price * scope.row.warehousing_count) }}
- </template>
- </el-table-column>
-
- <el-table-column width="180" 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 + '.expiry_date'"
- :rules="tableRules.expiry_date"
- style="padding-top: 20px"
- >
- <el-date-picker
- 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>
- </el-form-item>
- </template>
- </el-table-column>
-
- <el-table-column label="生产日期" width="180" align="center">
- <template slot-scope="scope">
- <el-date-picker
- 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="140" align="center">
- <template slot-scope="scope">
- <el-select
- v-model="scope.row.manufacturer"
- filterable
- placeholder="请选择厂商"
- >
- <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="140" align="center">
- <template slot-scope="scope">
- <el-select
- v-model="scope.row.dealer"
- filterable
- placeholder="请选择厂商"
- >
- <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 align="center" width="150" label="批准文号">
- <template slot-scope="scope">
- <el-form-item style="padding-top: 20px">
- <el-input
- placeholder="请输入批准文号"
- v-model="scope.row.number"
- ></el-input>
- </el-form-item>
- </template>
- </el-table-column>
-
- <el-table-column label="药品追溯码" width="150" align="center">
- <template slot-scope="scope">
- <div @click="changeDrugCode(scope.row,scope.$index)">
- <el-input v-model="scope.row.drug_code" placeholder="请输入药品追溯码"></el-input>
- </div>
- </template>
- </el-table-column>
-
- <el-table-column label="备注" width="150" align="center">
- <template slot-scope="scope">
- <el-input v-model="scope.row.remark" placeholder="请输入备注"></el-input>
- </template>
- </el-table-column>
-
- <el-table-column
- label="操作"
- fixed="right"
- align="center"
- width="150"
- >
- <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>
-
- <div style="margin-top: 20px;">合计金额: {{getTotalPirce() }} </div>
- </el-form>
- </div>
-
- <el-dialog
- title="药品追溯码"
- :visible.sync="dialogVisible"
- width="40%">
- <span>
- <el-input
- type="textarea"
- placeholder="请输入内容"
- v-model="textarea"
- :rows="10"
- >
- </el-input>
- </span>
- <span slot="footer" class="dialog-footer">
- <el-button @click="dialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="saveTextArea()">确 定</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
-
- <script>
- import { uParseTime } from "@/utils/tools";
- import {
- GetAllConfig,
- GetAllDrugInfoByID,
- postDrugWarehouse,
- toCheckWarehousingInfo,
- toReturnCheckWarehousing
- } from "@/api/drug/drug_stock";
- import BreadCrumb from "../../components/bread-crumb";
- import DrugsStockDialog from "./drugsStockDialog/index";
- import { getDataConfig, getDictionaryDataConfig } from "@/utils/data";
- import { getAllDrugList, postSearchDrugList } from "@/api/data";
- export default {
- components: { DrugsStockDialog, BreadCrumb },
- name: "stockIn",
-
- data() {
- var checkGoodId = (rule, value, callback) => {
- setTimeout(() => {
- if (value == "" || value == 0) {
- return callback(new Error("规格名称不能为空"));
- }
- }, 2000);
- };
-
- 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",
- warehousing_time: "",
- adminUserOptions: null,
- currentIndex: 0,
- listLoading: false,
- recordInfo: {
- recordData: [],
- stock_in_code: "",
- current_index: "",
- },
- tableRules: {
- price: [{ required: true, message: "单价不能为空", trigger: "blur" }],
- warehousing_count: [
- { required: true, message: "数量不能为空", trigger: "blur" },
- ],
-
- good_id: [{ validator: checkGoodId, trigger: "blur" }],
-
- min_unit: [
- { required: true, message: "单位不能为空", trigger: "blur" },
- ],
- batch_number: [
- { required: true, message: "批号不能为空", trigger: "blur" },
- ],
- expiry_date: [
- { required: true, message: "有效日期不能为空", trigger: "blur" },
- ],
- retail_price: [
- { required: true, message: "请输入包装零售价", trigger: "blur" },
- ],
- },
- type: this.$route.query.type,
- total: "",
- product_date: "",
- expiry_date: "",
- numbers: "",
-
- // prop
- isVisibility: false,
- propForm: {
- goods: [],
- goodType: [],
- goodInfo: [],
- goodUnit: [],
- title: "入库",
- formValue: {
- good_type_id: "",
- good_id: "",
- number: "",
- product_date: "",
- expiry_date: "",
- warehousing_count: "",
- price: "",
- remark: "",
- dealer: "",
- manufacturer: "",
- },
- isCreated: 1,
- },
- form: {
- manufacturer: "",
- dealer: "",
- },
-
- formValue: {
- good_type_id: "",
- good_id: "",
- number: "",
- product_date: "",
- expiry_date: "",
- warehousing_count: "",
- price: "",
- remark: "",
- dealer: "",
- manufacturer: "",
- },
-
- manufacturer: [],
- dealer: [],
- goodType: [],
- goodInfo: [],
- drugList: [],
- manufacturerList: [],
- dealerList: [],
- showOne: true,
- showTwo: false,
- drugTypeList: [],
- totalPrice: 0,
- unitList: [],
- loading: false,
- list: [],
- storehouse_id: "",
- warehousing_id:0,
- showCheck:false,
- showReturnCheck:false,
- dialogVisible:false,
- currentRow:{},
- currentIndex:0,
- textarea:""
- };
- },
- methods: {
- changeDrugCode(row,index){
- this.textarea=""
- this.textarea = row.drug_code
- this.currentRow = row
- this.currentIndex =index
- this.dialogVisible = true
- },
- saveTextArea(){
-
- for(let i=0;i<this.recordInfo.recordData.length;i++){
- if(this.currentIndex == i){
- this.recordInfo.recordData[i].drug_code = this.textarea
- }
- }
- this.dialogVisible = false
- },
- handleSave: function () {
- if (this.recordInfo.recordData.length <= 0) {
- this.$message.error("请添加入库信息");
- return;
- }
- sessionStorage.removeItem("warehousing_orders");
- this.$router.back(-1);
- },
- handleCancle: function () {
- this.$confirm("是否放弃编辑返回上一页?", "放弃编辑", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- sessionStorage.removeItem("warehousing_orders");
- this.$router.back(-1);
- })
- .catch(() => {});
- },
- handleCreate: function () {
- this.propForm.formValue = {};
- this.propForm.isCreated = 1;
- this.isVisibility = true;
- },
- comfirm: function (val) {
- this.$refs.dialog.hide();
- if (val.selectedGoodInfo.length > 0) {
- for (let i = val.selectedGoodInfo.length - 1; i >= 0; i--) {
- if (i == 0) {
- this.recordInfo.recordData[this.currentIndex].drug_id =
- val.selectedGoodInfo[i].id;
- this.recordInfo.recordData[this.currentIndex].price =
- val.selectedGoodInfo[i].last_price.toString();
- this.recordInfo.recordData[this.currentIndex].retail_price =
- val.selectedGoodInfo[i].retail_price.toString();
- this.recordInfo.recordData[this.currentIndex].min_unit =
- val.selectedGoodInfo[i].min_unit;
- } else {
- const tempForm = {};
- tempForm["id"] = 0;
- tempForm["drug_id"] = val.selectedGoodInfo[i].id;
- tempForm["number"] = "";
- tempForm["product_date"] = "";
- tempForm["expiry_date"] = "";
- tempForm["warehousing_count"] = "";
- tempForm["retail_price"] =
- val.selectedGoodInfo[i].retail_price.toString();
- tempForm["price"] = val.selectedGoodInfo[i].last_price.toString();
- tempForm["remark"] = "";
- tempForm["dealer"] = "";
- tempForm["manufacturer"] = "";
- tempForm["min_unit"] = val.selectedGoodInfo[i].min_unit;
- this.recordInfo.recordData.splice(
- this.currentIndex + 1,
- 0,
- tempForm
- );
- }
- }
- }
-
- this.currentIndex = -1;
- },
- cancle: function () {
- this.$refs.dialog.hide();
- },
- 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.manufacturer = response.data.data.manufacturer;
- this.dealer = response.data.data.dealer;
-
- for (let i = 0; i < response.data.data.drugs.length; i++) {
- this.goodType.push(response.data.data.drugs[i]);
- if (response.data.data.drugs[i].drug_specs != null) {
- for (
- let b = 0;
- b < response.data.data.drugs[i].drug_specs.length;
- b++
- ) {
- this.goodInfo.push(response.data.data.drugs[i].drug_specs[b]);
- }
- }
- }
- this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: "全部" });
- this.dealer.splice(0, 0, { id: 0, dealer_name: "全部" });
-
- this.form.manufacturer = 0;
- this.form.dealer = 0;
- this.list = response.data.data.list;
- this.storehouse_id =response.data.data.configlist.drug_storehouse_info;
- }
- loading.close();
- });
- },
- typeName: function (drug_id) {
- let name = "";
- for (let i = 0; i < this.goodInfo.length; i++) {
- if (this.goodInfo[i].id == drug_id) {
- name = this.goodInfo[i].drug_name;
- }
- }
- return name;
- },
- specificationName: function (drug_id) {
- let name = "";
- for (let i = 0; i < this.goodInfo.length; i++) {
- if (this.goodInfo[i].id == drug_id) {
- name = this.goodInfo[i].drug_spec;
- }
- }
- return name;
- },
- getDrugName: function (drug_id) {
- let name = "";
- for (let i = 0; i < this.recordInfo.recordData.length; i++) {
- if (drug_id == this.recordInfo.recordData[i].id) {
- name =
- this.recordInfo.recordData[i].dose +
- this.recordInfo.recordData[i].dose_unit +
- "*" +
- this.recordInfo.recordData[i].min_number +
- this.recordInfo.recordData[i].min_unit +
- "/" +
- this.recordInfo.recordData[i].max_unit;
- }
- }
- return name;
- },
- handleEdit: function (index, row) {
- const tempObj = {};
- tempObj["id"] = 0;
- tempObj["drug_name"] = "";
- tempObj["drug_id"] = 0;
- tempObj["number"] = "";
- tempObj["product_date"] = "";
- tempObj["expiry_date"] = "";
- tempObj["warehousing_count"] = "";
- tempObj["retail_price"] = "";
- tempObj["price"] = "";
- tempObj["remark"] = "";
- tempObj["dealer"] = "";
- tempObj["manufacturer"] = "";
- tempObj["min_unit"] = "";
- tempObj["max_unit"] = "";
- tempObj["drug_type"] = "";
- tempObj["batch_number"] = "";
- tempObj["dose"] = "";
- tempObj["dose_unit"] = "";
- tempObj["dealer"] = "";
- tempObj["last_price"] = "";
- tempObj["count_unit"] = "";
- tempObj["min_number"] = "";
- tempObj["drug_code"] = ""
- this.recordInfo.recordData.push(tempObj);
- },
- handleDelete: function (index, row) {
- if (this.recordInfo.recordData.length <= 1) {
- this.$message.error("只有一条记录的时候无法删除");
- return;
- } else {
- this.recordInfo.recordData.splice(index, 1);
- }
- },
- calculate: function (val) {
- if (val == 0) {
- return "";
- }
- return Math.round(parseFloat(val) * 100) / 100;
- },
-
- getTime(val, temp) {
- if (val != 0) {
- return uParseTime(val, temp);
- } else {
- return "";
- }
- },
- getTimeOne(val) {
- if(val < 0){
- return ""
- }
- if(val == ""){
- return ""
- }else {
- return uParseTime(val, '{y}-{m}-{d}')
- }
- },
- showDialog(index, row) {
- const loading = this.$loading({
- lock: true,
- text: "Loading",
- spinner: "el-icon-loading",
- background: "rgba(0, 0, 0, 0.7)",
- });
- this.currentIndex = index;
- this.isVisibility = true;
- const params = {
- manufacturer_id: this.form.manufacturer,
- dealer_id: this.form.dealer,
- };
-
- GetAllDrugInfoByID(params).then((response) => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false;
- loading.close();
- } else {
- loading.close();
-
- if (response.data.data.drugs.length <= 0) {
- this.$message.error("该厂商或经销商没有药品信息");
- return;
- }
- for (let i = 0; i < response.data.data.drugs.length; i++) {
- this.propForm.goods.push(response.data.data.drugs[i]);
- }
- this.$refs.dialog.show();
- const obj = {};
- this.propForm.goods = this.propForm.goods.reduce((cur, next) => {
- obj[next.id] ? "" : (obj[next.id] = true && cur.push(next));
- return cur;
- }, []); // 设置cur默认类型为数组,并且初始值为空的数组
- }
-
- for (let i = 0; i < this.propForm.goods.length; i++) {
- for (let a = 0; a < this.propForm.goods[i].drug_specs.length; a++) {
- var respObj = this.propForm.goods[i].drug_specs[a];
- respObj["isSelected"] = false;
- }
- }
- });
- },
- getSummaries(param) {
- const { columns, data } = param;
- const sums = [];
- columns.forEach((column, index) => {
- if (index === 0) {
- sums[index] = "总价";
- return;
- }
- const values = data.map((item) => Number(item[column.property]));
- if (!values.every((value) => isNaN(value))) {
- sums[index] = values.reduce((prev, curr) => {
- const value = Number(curr);
- if (!isNaN(value)) {
- return prev + curr;
- } else {
- return prev;
- }
- }, 0);
- sums[index] += " 元";
- } else {
- sums[index] = "N/A";
- }
- });
-
- return sums;
- },
- back() {
- this.$router.go(-1);
- },
- submit() {
- this.$refs["tableForm"].validate((valid) => {
- if (valid) {
- this.loading = true;
- const array = this.recordInfo.recordData;
- if (this.storehouse_id == 0) {
- this.$message.error("仓库不能为空!");
- this.loading = false;
- return false;
- }
- for (let i = 0; i < array.length; i++) {
- if (array[i].drug_id == 0) {
- this.$message.error("药品名称或者药品规格名称不能为空");
- this.loading = false;
- return;
- }
- }
-
- if (this.recordInfo.recordData.length <= 0) {
- this.$message.success("请添加入库商品");
- this.loading = false;
- return;
- }
-
- for (let i = 0; i < this.recordInfo.recordData.length; i++) {
- if (this.recordInfo.recordData[i].dealer == "") {
- this.recordInfo.recordData[i].dealer = 0;
- }
- this.recordInfo.recordData[i].last_price =
- this.recordInfo.recordData[i].last_price.toString();
- this.recordInfo.recordData[i].retail_price =
- this.recordInfo.recordData[i].retail_price.toString();
- if (this.recordInfo.recordData[i].dealer == "") {
- this.recordInfo.recordData[i].dealer = 0;
- }
- 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;
- }
- }
- }
- const params = {
- stockIn: this.recordInfo.recordData,
- };
-
- postDrugWarehouse(
- params,
- this.warehousing_time,
- this.form.manufacturer,
- this.form.dealer,
- this.type,
- this.storehouse_id,
- this.warehousing_id,
- ).then((response) => {
- if (response.data.state == 0) {
- this.loading = false;
- this.$message.error(response.data.msg);
- return false;
- } else {
- this.loading = false;
- this.$message.success("保存成功");
- this.listLoading = false;
- var info = response.data.data.info
- this.warehousing_id = info.id
- var list = response.data.data.list
- var manufacturerList = response.data.data.manufacturerList
- var dealerList = response.data.data.dealerList
- var drugTypeList = response.data.data.drugTypeList
- for(let i=0;i<list.length;i++){
- for(let j=0;j<manufacturerList.length;j++){
- if(list[i].manufacturer_id == manufacturerList[j].id){
- list[i].manufacturer_id = manufacturerList[j].manufacturer_name
- }
- }
- for(let s=0;s<dealerList.length;s++){
- if(list[i].dealer_id == dealerList[s].id){
- list[i].dealer_id = dealerList[s].manufacturer_name
- }
- }
-
- list[i].expiry_date = this.getTimeOne(list[i].expiry_date)
- list[i].product_date = this.getTimeOne(list[i].product_date)
- list[i].drug_name = list[i].drug.drug_name
- list[i].name = list[i].drug.dose + list[i].drug.dose_unit +"*"+list[i].drug.min_number +list[i].drug.min_unit+"/"+list[i].drug.max_unit
- for(let z=0;z<drugTypeList.length;z++){
- if(list[i].drug.drug_type == drugTypeList[z].value){
- list[i].drug_type = drugTypeList[z].name
- }
- }
- list[i].last_price = list[i].price
- list[i].warehousing_count = list[i].warehousing_count.toString()
- list[i].unitList = []
- list[i].drug_code = list[i].drug_code
- var obj = {id:1,name:""}
- obj.name = list[i].drug.max_unit
- var objOne = {id:2,name:""}
- objOne.name = list[i].drug.min_unit
- list[i].unitList.push(obj)
- list[i].unitList.push(objOne)
- }
- this.recordInfo.recordData = []
- this.recordInfo.recordData = list
- this.showCheck = true
- this.showReturnCheck = false
- // this.$router.back(-1);
- }
- });
- } else {
- return false;
- }
- });
- },
- changeManufacturer(val) {},
- changeDealer(val) {
- this.form.dealer = val;
- this.propForm.goods = [];
- },
- getDataConfig(module, filed_name) {
- return getDataConfig(module, filed_name);
- },
-
- getDictionaryDataConfig(module, filed_name) {
- return getDictionaryDataConfig(module, filed_name);
- },
-
- // 改版后的JS
- getlist() {
- getAllDrugList().then((response) => {
- if (response.data.state == 1) {
- var list = response.data.data.list;
- this.drugList = list;
- var manufacturerList = response.data.data.manufacturerList;
- this.manufacturerList = manufacturerList;
- for (let i = 0; i < this.drugList.length; i++) {
- for (let j = 0; j < this.manufacturerList.length; j++) {
- if (
- this.drugList[i].manufacturer == this.manufacturerList[j].id
- ) {
- this.drugList[i].manufacturer =
- this.manufacturerList[j].manufacturer_name;
- }
- }
- }
- }
- });
- },
-
- changeDrugName(val) {
- this.showOne = false;
- this.showTwo = true;
- },
- querySearchAsync(keyword, cb) {
- let key = "";
- if (keyword != undefined) {
- key = keyword;
- }
- let searchArray = [];
- postSearchDrugList(key, this.storehouse_id).then((response) => {
- if (response.data.state == 1) {
- searchArray = response.data.data.list;
-
- var list = response.data.data.list;
-
- this.drugList = list;
- var manufacturerList = response.data.data.manufacturerList;
- this.manufacturerList = manufacturerList;
- var dealerList = response.data.data.dealerList;
- this.dealerList = dealerList;
- for (let i = 0; i < this.drugList.length; i++) {
- for (let j = 0; j < this.manufacturerList.length; j++) {
- if (
- this.drugList[i].manufacturer == this.manufacturerList[j].id
- ) {
- this.drugList[i].manufacturer =
- this.manufacturerList[j].manufacturer_name;
- }
- }
-
- for (let z = 0; z < dealerList.length; z++) {
- if (this.drugList[i].dealer == this.dealerList[z].id) {
- this.drugList[i].dealer = this.dealerList[z].dealer_name;
- }
- }
- }
-
- cb(this.drugList);
- } else {
- cb([]);
- }
- });
- },
- changeDrugName(val) {
- this.currentIndex = val;
- },
- handleSelect(val) {
- for (let i = 0; i < this.recordInfo.recordData.length; i++) {
- if (i == this.currentIndex) {
- this.recordInfo.recordData[i].drug_id = val.id;
- this.recordInfo.recordData[i].drug_name = val.drug_name;
- this.recordInfo.recordData[i].drug_type = val.drug_type;
- this.recordInfo.recordData[i].name =
- val.dose +
- val.dose_unit +
- "*" +
- val.min_number +
- val.min_unit +
- "/" +
- val.max_unit;
- this.recordInfo.recordData[i].last_price = val.last_price;
-
- this.recordInfo.recordData[i].retail_price = val.min_price;
- this.recordInfo.recordData[i].manufacturer = val.manufacturer;
- this.recordInfo.recordData[i].number = val.number;
- this.recordInfo.recordData[i].max_unit = val.max_unit;
- this.recordInfo.recordData[i].min_unit = val.min_unit;
- this.recordInfo.recordData[i].count_unit = val.max_unit;
- this.recordInfo.recordData[i].min_number = val.min_number
- if (val.dealer == 0) {
- this.recordInfo.recordData[i].dealer = "";
- } else {
- this.recordInfo.recordData[i].dealer = val.dealer;
- }
- this.recordInfo.recordData[i].unitList = []
- var obj = {id:1,name:""}
- var objOne= {id:2,name:""}
- obj.name = val.max_unit
- objOne.name = val.min_unit
- this.recordInfo.recordData[i].unitList.push(obj)
- this.recordInfo.recordData[i].unitList.push(objOne)
- }
-
- }
- },
- toCheck(){
- const loading = this.$loading({
- lock: true,
- text: "Loading",
- spinner: "el-icon-loading",
- background: "rgba(0, 0, 0, 0.7)",
- });
- var params = {
- warehousing_id:this.warehousing_id,
- }
- toCheckWarehousingInfo(params).then(response=>{
- if(response.data.state == 1){
- var list = response.data.data.list
- this.$message.success("审核成功!")
- this.$router.back(-1);
- this.showCheck = false
- this.showReturnCheck = true
- 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 = {
- warehousing_id:this.warehousing_id,
- }
- toReturnCheckWarehousing(params).then(response=>{
- if(response.data.state == 1){
- var list = response.data.data.list
- this.$message.success("反审核成功!")
- this.showCheck = true
- this.showReturnCheck = false
- loading.close()
- }else{
- this.$message.error("反审核失败!")
- loading.close()
- }
- })
- },
- changeUnit(val,index){
- // console.log("val3232323232",val)
- // for(let i=0;i<this.recordInfo.recordData.length;i++){
- // if(i == index){
- // if(this.recordInfo.recordData[i].max_unit == this.recordInfo.recordData[i].count_unit){
-
- // }
- // if(this.recordInfo.recordData[i].min_unit == this.recordInfo.recordData[i].count_unit){
-
- // }
- // }
- // }
- },
- getTotalPirce(){
-
- var total_price = 0
- if(this.recordInfo.recordData!=null && this.recordInfo.recordData.length>0){
-
- for(let i=0;i<this.recordInfo.recordData.length;i++){
- total_price += this.recordInfo.recordData[i].last_price * parseInt(this.recordInfo.recordData[i].warehousing_count)
- }
-
- if(total_price>0){
- return total_price.toFixed(4)
- }else{
- return ""
- }
- }
- }
- },
- created() {
- if (this.$route.path == "/Pharmacy/in/add") {
- this.crumbs = [
- { path: false, name: "药品管理" },
- { path: false, name: "药品入库单" },
- { path: false, name: "新增入库单" },
- ];
- }
- this.drugTypeList = getDictionaryDataConfig("system", "drug_type");
-
- var nowDate = new Date();
- var nowYear = nowDate.getFullYear();
- var nowMonth = nowDate.getMonth() + 1;
- var nowDay = nowDate.getDate();
- this.warehousing_time =
- nowYear +
- "-" +
- (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
- "-" +
- (nowDay < 10 ? "0" + nowDay : nowDay);
- const tempObj = {};
- tempObj["id"] = 0;
- tempObj["drug_id"] = 0;
- tempObj["drug_name"] = "";
- tempObj["dosage"] = "";
- tempObj["max_unit"] = "";
- tempObj["min_unit"] = "",
- tempObj["lot_number"] = "";
- tempObj["product_date"] = "";
- tempObj["expiry_date"] = "";
- tempObj["warehousing_count"] = "";
- tempObj["retail_price"] = "";
- tempObj["last_price"] = "";
- tempObj["remark"] = "";
- tempObj["dealer"] = "";
- tempObj["manufacturer"] = "";
- tempObj["batch_number"] = "";
- tempObj["drug_type"] = "";
- tempObj["dealer"] = "";
- tempObj["number"] = "";
- tempObj["count_unit"] = "";
- tempObj["min_number"] = "";
- tempObj["drug_code"] = ""
- this.recordInfo.recordData.push(tempObj);
-
- this.GetConfigInfo();
- this.propForm.goodUnit = this.$store.getters.good_unit;
-
- // this.unitList = getDataConfig("hemodialysis", "units");
- // console.log("hhahdhhafd",this.unitList)
- },
- };
- </script>
-
- <style>
- #oictable ::-webkit-scrollbar {
- height: 15px;
- }
- </style>
-
- <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;
- }
-
- .titleOne {
- width: 120px;
- display: inline-block;
- font-weight: normal;
- color: #909399;
- padding: 6px 0;
- margin-left: 20px;
- }
- </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>
|