12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292 |
- <template>
- <div class="main-contain">
- <div class="position">
- <bread-crumb :crumbs="crumbs"></bread-crumb>
- <el-button
- size="small"
- @click="AddNewOrder"
- class="filter-item"
- style="float:right;"
- type="primary"
- icon="el-icon-circle-plus-outline"
- >新增</el-button>
- </div>
- <div class="app-container">
- <div class="cell clearfix">
- <el-input
- size="small"
- style="width: 400px;"
- class="filter-item"
- v-model.trim="searchKey"
- placeholder="单据编码/制单人/厂商"
- />
- <el-button
- size="small"
- class="filter-item"
- type="primary"
- icon="el-icon-search"
- @click="search"
- >搜索</el-button
- >
- <div style="margin-left:10px;">
- <label class="title"><span class="name">出库时间</span> : </label>
- <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>
- <span class="cellLine"> - </span>
- <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>
- </div>
- </div>
-
-
-
- <div class="cell clearfix">
- <el-checkbox
- style="width: 70px"
- v-model="checked"
- @change="changeAllSelected"
- >全选</el-checkbox
- >
- <el-button size="small" icon="el-icon-delete" @click="batchDelete">删除</el-button>
- <el-button size="small" type="primary" @click="toPrint">打印</el-button>
- <el-button size="small" type="primary" @click="toExport">导出</el-button>
- </div>
-
- <el-table
- @current-change="handleSearch"
- :data="warehouseOutDate"
- :class="signAndWeighBoxPatients"
- style="width: 100%"
- border
- highlight-current-row
- ref="multipleTable"
- @selection-change="select"
- :row-style="{ color: '#303133' }"
- :header-cell-style="{
- backgroundColor: 'rgb(245, 247, 250)',
- color: '#606266'
- }"
- >
- <el-table-column type="selection" width="55" align="center"> </el-table-column>
-
- <el-table-column label="单据日期" align="center">
- <template slot-scope="scope">
- {{ scope.row.warehouse_out_time | parseTime("{y}-{m}-{d}") }}
- </template>
- </el-table-column>
-
- <el-table-column label="单据编号" align="center">
- <template slot-scope="scope">
- {{ scope.row.warehouse_out_order_number }}
- </template>
- </el-table-column>
-
- <el-table-column label="制单人" align="center">
- <template slot-scope="scope">
- {{ getXuserName(scope.row.creater) }}
- </template>
- </el-table-column>
-
- <el-table-column min-width="35" align="center">
- <template slot="header" slot-scope="scope">
- <span>出库方式</span>
- </template>
- <template slot-scope="scope">
- <span v-if="scope.row.is_sys == 1">{{"自动出库"}}</span>
- <span v-if="scope.row.is_sys != 1">{{"手动出库"}}</span>
-
- </template>
- </el-table-column>
-
- <!-- <el-table-column label="厂家" align="center">
- <template slot-scope="scope">
- {{scope.row.manufacturers ? scope.row.manufacturers.manufacturer_name:''}}
- </template>
- </el-table-column>
-
- <el-table-column label="经销商" align="center">
- <template slot-scope="scope">
- {{scope.row.dealers ? scope.row.dealers.dealer_name:''}}
- </template>
- </el-table-column> -->
-
-
- <el-table-column label="操作" align="center" width="240">
- <template slot-scope="scope">
-
-
- <el-tooltip
- class="item"
- effect="dark"
- content="编辑"
- placement="top"
- >
- <el-button
- size="mini"
- type="primary"
- icon="el-icon-edit-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"
- :disabled="scope.row.is_sys == 1"
- icon="el-icon-delete"
- @click="handleDelete(scope.$index, scope.row)"
- >
- </el-button>
- </el-tooltip>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :page-sizes="[5, 10, 50, 100]"
- :page-size="5"
- background
- style="margin-top:20px;text-align: right"
- layout="total, sizes, prev, pager, next, jumper"
- :total="total"
- >
- </el-pagination>
- <!-- 使用详情 -->
- <div v-show="tableShow" style="margin-top:10px">
- <el-table
- :data="tableList"
- :class="signAndWeighBoxPatients"
- style="width: 100%"
- border
- highlight-current-row
- ref="multipleTableOne"
- @selection-change="select"
- :row-style="{ color: '#303133' }"
- :header-cell-style="{
- backgroundColor: 'rgb(245, 247, 250)',
- color: '#606266'
- }"
- >
- <el-table-column label="药品名称" align="center">
- <template slot-scope="scope">
- {{scope.row.drug_name}}
- </template>
- </el-table-column>
- <el-table-column label="药品类型" align="center">
- <template slot-scope="scope">
- {{getDrugType(scope.row.drug_type)}}
- </template>
- </el-table-column>
- <el-table-column label="规格&单位" align="center">
- <template slot-scope="scope">
- {{scope.row.dose}} {{scope.row.dose_unit}}*{{scope.row.min_number}}{{scope.row.min_unit}}/{{scope.row.max_unit}}
- </template>
- </el-table-column>
- <el-table-column label="国家编码" align="center">
- <template slot-scope="scope">
- {{scope.row.medical_insurance_number}}
- </template>
- </el-table-column>
- <el-table-column label="出库数量" align="center">
- <template slot-scope="scope">
- <!-- <span v-if="scope.row.is_sys == 0">{{getTotalCount(scope.row.drug_id,scope.row.min_number,scope.row.max_unit,scope.row.min_unit)}}</span> -->
- <span> {{getTotalCountOne(scope.row.drug_id,scope.row.min_number,scope.row.max_unit,scope.row.min_unit)}}</span>
- </template>
- </el-table-column>
- <el-table-column label="出货单价" align="center">
- <template slot-scope="scope">
- {{scope.row.price}}
- </template>
- </el-table-column>
- <!-- <el-table-column label="拆零零售价" align="center">
- <template slot-scope="scope">
- {{scope.row.retail_price}}
- </template>
- </el-table-column> -->
- <el-table-column label="总价" align="center">
- <template slot-scope="scope">
- <span>{{getAllPriceOne(scope.row.drug_id,scope.row.price,scope.row.min_price).toFixed(2)}}</span>
- </template>
- </el-table-column>
- <el-table-column label="生产厂家" align="center">
- <template slot-scope="scope">
- {{getManufacturerName(scope.row.manufacturer)}}
- </template>
- </el-table-column>
- <el-table-column label="生产日期" align="center">
- <template slot-scope="scope">
- {{getTime(scope.row.product_date)}}
- </template>
- </el-table-column>
- <el-table-column label="有效日期" align="center">
- <template slot-scope="scope">
- {{getTime(scope.row.expiry_date)}}
- </template>
- </el-table-column>
- <el-table-column label="经销商" align="center">
- <template slot-scope="scope">
- {{getDealerName(scope.row.dealer)}}
- </template>
- </el-table-column>
- <el-table-column label="批准文号" align="center">
- <template slot-scope="scope">
- <span v-if="scope.row.number!=''">{{scope.row.number}}</span>
- <span v-if="scope.row.number == '0'"></span>
- </template>
- </el-table-column>
- <el-table-column label="备注" align="center">
- <template slot-scope="scope">
- {{scope.row.remark}}
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center">
- <template slot-scope="scope">
- <span style="color: #589ff8" @click="toDetail(scope.row)">使用明细</span>
- </template>
- </el-table-column>
- </el-table>
-
- </div>
- </div>
-
-
- <el-dialog
- title="提示"
- :visible.sync="drugDialogVisible"
- width="90%">
- <span>
- <el-table :data="userList" :class="signAndWeighBoxPatients" style="width: 50%"
- border :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)'}"
- >
- <el-table-column min-width="35" align="center">
- <template slot="header" slot-scope="scope">
- <span>序号</span>
- </template>
- <template slot-scope="scope">
- {{scope.$index+1}}
- </template>
- </el-table-column>
-
- <el-table-column min-width="35" align="center">
- <template slot="header" slot-scope="scope">
- <span>使用人</span>
- </template>
- <template slot-scope="scope">
- {{scope.row.user.name}}
- </template>
- </el-table-column>
- <el-table-column min-width="35" align="center">
- <template slot="header" slot-scope="scope">
- <span>使用数量</span>
- </template>
- <template slot-scope="scope">
- <span >{{scope.row.count}}{{scope.row.count_unit}}</span>
- </template>
- </el-table-column>
-
- <el-table-column min-width="35" align="center">
- <template slot="header" slot-scope="scope">
- <span>使用时间</span>
- </template>
- <template slot-scope="scope">
- <span>{{scope.row.ctime | parseTime('{y}-{m}-{d} {h}:{i}')}} </span>
- </template>
- </el-table-column>
-
- </el-table>
- </span>
- <span slot="footer" class="dialog-footer">
- <el-button @click="drugDialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="drugDialogVisible = false">确 定</el-button>
- </span>
- </el-dialog>
-
-
-
- <el-dialog
- title="提示"
- :visible.sync="drugDialogVisibleTwo"
- width="90%">
- <span>
- <el-table :data="userListOne" :class="signAndWeighBoxPatients" style="width: 50%"
- border :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)'}"
- >
- <el-table-column min-width="35" align="center">
- <template slot="header" slot-scope="scope">
- <span>序号</span>
- </template>
- <template slot-scope="scope">
- {{scope.$index+1}}
- </template>
- </el-table-column>
-
- <el-table-column min-width="35" align="center">
- <template slot="header" slot-scope="scope">
- <span>使用人</span>
- </template>
- <template slot-scope="scope">
- <span>系统</span>
- </template>
- </el-table-column>
- <el-table-column min-width="35" align="center">
- <template slot="header" slot-scope="scope">
- <span>使用数量</span>
- </template>
- <template slot-scope="scope">
- {{scope.row.count}}{{scope.row.count_unit}}
- </template>
- </el-table-column>
-
- <el-table-column min-width="35" align="center">
- <template slot="header" slot-scope="scope">
- <span>使用时间</span>
- </template>
- <template slot-scope="scope">
- <span>{{scope.row.ctime | parseTime('{y}-{m}-{d} {h}:{i}')}} </span>
- </template>
- </el-table-column>
- </el-table>
- </span>
- <span slot="footer" class="dialog-footer">
- <el-button @click="drugDialogVisibleTwo = false">取 消</el-button>
- <el-button type="primary" @click="drugDialogVisibleTwo = false">确 定</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
-
- <script>
- import { uParseTime } from "@/utils/tools";
- import { fetchAllAdminUsers, fetchAllDoctorAndNurse } from "@/api/doctor";
-
- import {
- deleteDrugWarehouseOut,
- GetAllConfig,
- getDrugWarehouseOutList,
- getDrugWarehouseOutUser,
- getDrugAutoMaticList,
- getSinleOrderDetail,
- getAutoDrugDetail,
- getDrugCountList,
- getExportOutOrderDrugList
- } from "@/api/drug/drug_stock";
- import BreadCrumb from "../../components/bread-crumb";
- import { getInitializtion } from '@/api/stock'
- export default {
- name: "salesReturnOrder",
- components: { BreadCrumb },
- created() {
- var nowDate = new Date();
- var nowYear = nowDate.getFullYear();
- var nowMonth = nowDate.getMonth() + 1;
- var nowDay = nowDate.getDate();
- this.end_time =
- nowYear +
- "-" +
- (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
- "-" +
- (nowDay < 10 ? "0" + nowDay : nowDay);
- nowDate.setMonth(nowDate.getMonth() - 1);
- nowYear = nowDate.getFullYear();
- nowMonth = nowDate.getMonth() + 1;
- nowDay = nowDate.getDate();
- this.start_time =
- nowYear +
- "-" +
- (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
- "-" +
- (nowDay < 10 ? "0" + nowDay : nowDay);
- this.GetWarehouseOut();
- this.fetchAllAdminUsers();
- this.getDrugCountList()
- this.getInitializtion()
- },
- data() {
- return {
- searchKey: "",
- crumbs: [
- { path: false, name: "库存管理" },
- { path: false, name: "出库单" }
- ],
- page: 1,
- limit: 5,
- checked: false,
- total: 0,
- pageTotal: 0,
- pageSelect: 0,
- adminUserOptions: [],
- multipleSelection: [],
- signAndWeighBoxPatients: "sign-and-weigh-box-patients",
- start_time: "",
- warehouseOutDate: [],
- end_time: "",
- goodType: [],
- goodInfo: [],
- manufacturer: [],
- selectedTableData: [],
- dealer: [],
- type: 1,
- dialogVisible:false,
- dialogVisibleTwo:false,
- warehousingOutInfo: {
- loading: false,
- warehousingOutData: [],
- info: {}
- },
- userList:[],
- list:[],
- drugConfig:{},
- drugList:[],
- tableList:[],
- drugTypeList:[],
- tableShow:false,
- manufacturerList:[],
- drugDialogVisible:false,
- drugDialogVisibleTwo:false,
- order_id:0,
- dealerList:[],
- countList:[],
- outCountList:[],
- autoCountList:[],
- keyword:"",
- drug_type:0,
- minCount:[],
- drugOutList:[],
- outList:[],
- userListOne:[],
- exportList:[],
- batchNumberList:[],
- drugFlowList:[],
- };
- },
- methods: {
- search: function() {
- const Params = {
- page: this.page,
- limit: this.limit,
- start_time: this.start_time,
- end_time: this.end_time,
- type: this.type,
- keywords: this.searchKey
- };
- this.warehouseOutDate = [];
- getDrugWarehouseOutList(Params).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false;
- } else {
- this.total = response.data.data.total;
- for (let i = 0; i < response.data.data.list.length; i++) {
- this.warehouseOutDate.push(response.data.data.list[i]);
- }
- }
- });
- },
- AddNewOrder: function() {
- this.$router.push({
- name: "drugStockOutOrderAdd",
- query: { type: this.type }
- });
- },
- GetWarehouseOut: function() {
- const Params = {
- page: this.page,
- limit: this.limit,
- start_time: this.start_time,
- end_time: this.end_time,
- type: this.type,
- keywords: this.searchKey
- };
- this.warehouseOutDate = [];
- getDrugWarehouseOutList(Params).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false;
- } else {
- this.total = response.data.data.total;
- for (let i = 0; i < response.data.data.list.length; i++) {
- this.warehouseOutDate.push(response.data.data.list[i]);
- }
-
- }
- });
- },
- getXuserName(id) {
- if (id <= 0) {
- return "";
- }
- var name = "";
- if (
- this.adminUserOptions == null ||
- typeof this.adminUserOptions.length === "undefined"
- ) {
- return name;
- }
- var leng = this.adminUserOptions.length;
- if (leng == 0) {
- return name;
- }
- for (let index = 0; index < leng; index++) {
- if (this.adminUserOptions[index].id == id) {
- name = this.adminUserOptions[index].name;
- break;
- }
- }
- return name;
- },
- fetchAllAdminUsers() {
- fetchAllAdminUsers().then(response => {
- if (response.data.state == 1) {
- this.adminUserOptions = response.data.data.users;
- var alen = this.adminUserOptions.length;
- for (let index = 0; index < alen; index++) {
- if (this.adminUserOptions[index].user_type == 2) {
- // this.doctorOptions.push(this.adminUserOptions[index]);
- }
- }
- }
- });
- },
- handleSelectionChange: function(val) {
- this.multipleSelection = val;
- },
- handleSizeChange(val) {
- this.limit = val;
- this.GetWarehouseOut();
- },
- handleCurrentChange(val) {
- this.page = val;
- this.GetWarehouseOut();
- },
- startTimeChange(val) {
- var time = this.getTimestamp(val) - this.getTimestamp(this.end_time);
- if (time > 0) {
- this.$message.error("结束时间不能小于开始时间");
- this.start_time = "";
- } else {
- this.GetWarehouseOut();
- }
- },
- endTimeChange(val) {
- var time = this.getTimestamp(val) - this.getTimestamp(this.start_time);
- if (time < 0) {
- this.$message.error("结束时间不能小于开始时间");
- this.end_time = "";
- } else {
- this.GetWarehouseOut();
- }
- },
- getTimestamp(time) {
- // 把时间日期转成时间戳
- return new Date(time).getTime() / 1000;
- },
- calculate: function(val) {
- return Math.round(parseFloat(val) * 100) / 100;
- },
- GetConfigInfo: function() {
- 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;
- }
- });
- },
-
- handleEdit: function(index, row) {
-
- this.$router.push({path:"/drug/out/drugstockoutorderedit?id="+row.id+"&type="+this.type+"&is_sys="+row.is_sys})
- },
- handleSearch(val){
-
- this.getInitializtion()
- this.getSinleOrderDetail(val.id,val.warehouse_out_time,val.is_sys)
- this.list = []
-
- },
-
- handleDelete: function(index, row) {
- const ids = [];
- ids.push(row.id);
- const idStr = ids.join(",");
-
- const params = {
- ids: idStr
- };
-
- this.$confirm("确认删除出库单记录?", "删除出库单记录", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- .then(() => {
- deleteDrugWarehouseOut(params).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false;
- } else {
- this.$notify({
- title: "成功",
- message: "删除成功",
- type: "success",
- duration: 2000
- });
- for (let i = 0; i < ids.length; i++) {
- for (let y = 0; y < this.warehouseOutDate.length; y++) {
- if (ids[i] == this.warehouseOutDate[y].id) {
- this.warehouseOutDate.splice(y, 1);
- }
- }
- }
- }
- });
- })
- .catch(() => {});
- },
- changeAllSelected: function(val) {
- if (val) {
- this.$refs.multipleTable.toggleAllSelection();
- } else {
- this.$refs.multipleTable.clearSelection();
- }
- },
- select(selection) {
-
- var ids= []
- for(let i=0;i<selection.length;i++){
- ids.push(selection[i].id)
- }
- this.order_id = ids.join(",")
- this.selectedTableData = selection;
- this.getExportOutOrderDrugList()
- },
- batchDelete() {
- if (this.selectedTableData.length <= 0) {
- this.$message.error("请选择要删除的记录");
- return;
- }
- const ids = [];
- for (let i = 0; i < this.selectedTableData.length; i++) {
- if(this.selectedTableData[i].is_sys == 1){
- this.$message.error("自动出库数据不能删除!")
- return false
- }
- if(this.selectedTableData[i].is_sys == 0){
- ids.push(this.selectedTableData[i].id);
- }
- }
- const idStr = ids.join(",");
- const params = {
- ids: idStr
- };
- this.$confirm("确认删除出库单记录?", "删除出库单记录", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- deleteDrugWarehouseOut(params).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false;
- } else {
- this.$notify({
- title: "成功",
- message: "删除成功",
- type: "success",
- duration: 2000
- });
-
- for (let i = 0; i < ids.length; i++) {
- for (let y = 0; y < this.warehouseOutDate.length; y++) {
- if (ids[i] == this.warehouseOutDate[y].id) {
- this.warehouseOutDate.splice(y, 1);
- }
- }
- }
- }
- });
- })
- .catch(() => {});
- },
-
- jump(id){
-
- this.GetOrderDetailTwo(id)
- this.userList=[]
- this.dialogVisibleTwo = true
- },
-
- GetOrderDetailTwo(order_id) {
- const params = {
- 'id': order_id
- }
- getDrugWarehouseOutUser(params).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg)
- return false
- } else {
- this.userList=[]
- var total = 0
-
- for (let i = 0; i < response.data.data.list.length; i++) {
- var obj = response.data.data.list[i]
- obj['is_total'] = 0
- this.userList.push(obj)
- total = total + response.data.data.list[i].count
- }
-
- this.userList.push({
- is_total: 1,
- total: total,
- })
-
-
- }
- })
- },
- merge({ row, column, rowIndex, columnIndex }) {
- if (columnIndex === 0) {
- const _row = this.tempArr[rowIndex]
- const _col = _row > 0 ? 1 : 0
- return {
- rowspan: _row,
- colspan: _col
- }
- }
- },
- handleSpanTempArr(){
- this.tempArr = []
-
- for (let i = 0; i < this.warehousingOutInfo.warehousingOutData.length; i++) {
- if (i === 0) {
- this.tempArr.push(1)
- this.pos = 0
- } else {
- // 判断当前元素与上一个元素是否相同
- if (this.warehousingOutInfo.warehousingOutData[i].drug_id === this.warehousingOutInfo.warehousingOutData[i - 1].drug_id) {
- this.tempArr[this.pos] += 1
- this.tempArr.push(0)
- } else {
- this.tempArr.push(1)
- this.pos = i
- }
- }
- }
-
- let sameRowArr = [], sIdx = 0
- this.warehousingOutInfo.warehousingOutData.forEach((item, index) => {
- item.index = index
- if (index === 0) {
- sameRowArr.push([index])
- } else {
- if (item.drug_id === this.warehousingOutInfo.warehousingOutData[index - 1].drug_id) {
- sameRowArr[sIdx].push(index)
- } else {
- sIdx = sIdx + 1
- sameRowArr.push([index])
- }
- }
- })
- this.sameRowArr = sameRowArr
- },
- getDrugAutoMaticList(id,recordTime,warehouse_out_order_number){
- var params = {
- warehous_out_id:id,
- record_time:recordTime,
- warehouse_out_order_number:warehouse_out_order_number,
- }
- getDrugAutoMaticList(params).then(response=>{
- if(response.data.state ==1){
- var list = response.data.data.list
- this.list = list
- var drugConfig = response.data.data.drugConfig
-
- this.drugConfig = drugConfig
- var drugList = response.data.data.drugList
- this.drugList = drugList
- var manulist = response.data.data.manufacturerList
- this.manufacturerList = manulist
- }
- })
- },
- getDrugCount(id){
-
- var count = 0
- for(let i=0;i<this.list.length;i++){
- if(this.list[i].drug_id == id){
- count = this.list[i].Total
- }
- }
- return count
- },
- getRetailPrice(id){
- var price = 0
- for(let i=0;i<this.drugList.length;i++){
- if(id == this.drugList[i].id){
- price = this.drugList[i].retail_price
- }
- }
- return price
- },
- getTime(val) {
- if(val < 0){
- return ""
- }
- if(val == ""){
- return ""
- }else {
- return uParseTime(val, '{y}-{m}-{d}')
- }
- },
- getInitializtion(){
- getInitializtion().then(response=>{
- if(response.data.state ==1){
- var drugTypeList = response.data.data.drugTypeList
-
- this.drugTypeList = drugTypeList
- }
- })
- },
- getDrugType(id){
- var name = ""
- for(let i=0;i<this.drugTypeList.length;i++){
- if(id == this.drugTypeList[i].value){
- name = this.drugTypeList[i].name
- }
- }
- return name
- },
- getManufacturerName(id){
- var name = ""
- for(let i=0;i<this.manufacturerList.length;i++){
- if(id == this.manufacturerList[i].id){
- name = this.manufacturerList[i].manufacturer_name
- }
- }
- return name
- },
- getDealerName(id){
- var name = ""
- for(let i=0;i<this.dealerList.length;i++){
- if(id == this.dealerList[i].id){
- name = this.dealerList[i].dealer_name
- }
- }
- return name
- },
- getSinleOrderDetail(id,start_time,is_sys){
- var params = {
- id:id,
- start_time:start_time,
- }
- console.log("is_sys22222",is_sys)
- getSinleOrderDetail(params).then(response=>{
- if(response.data.state == 1){
- this.tableShow = true
- this.tableList = []
- var list = response.data.data.list
-
- this.manufacturerList = response.data.data.manufacturerList
- this.dealerList = response.data.data.dealerList
- var drugFlowList = response.data.data.drugFlowList
- if (is_sys == 1){
- for(let i=0;i<drugFlowList.length;i++){
- if(drugFlowList[i].count_unit == drugFlowList[i].XtBaseDrug.max_unit){
- drugFlowList[i].count = drugFlowList[i].count * drugFlowList[i].XtBaseDrug.min_number
- }
- if(drugFlowList[i].count_unit == drugFlowList[i].XtBaseDrug.min_unit){
- drugFlowList[i].count = drugFlowList[i].count
- }
-
- }
- this.drugFlowList = drugFlowList
- }
- if(is_sys == 0){
- var flowlist = response.data.data.flowlist
- this.drugFlowList = []
- for(let i=0;i<flowlist.length;i++){
- if(flowlist[i].count_unit == flowlist[i].max_unit){
- flowlist[i].count = flowlist[i].count * list[i].min_number
- }
- if(flowlist[i].count_unit == flowlist[i].min_unit){
- flowlist[i].count = flowlist[i].count
- }
- }
- this.drugFlowList = flowlist
- }
-
- for(let i=0;i<list.length;i++){
- if(list[i].batch_number == "0" || list[i].batch_number == 0){
- list[i].batch_number = ""
- }
-
- if(list[i].number == "0" || list[i].number == 0){
- list[i].number = ""
- }
- }
- console.log("list233223323233223",list)
- this.tableList = list
- }
- })
- },
- toDetail(val){
- this.userList = []
- this.userListOne = []
- var params = {
- warehouse_out_id:val.warehouse_out_id,
- drug_id:val.drug_id,
- record_time:val.sys_record_time,
- }
- // console.log("使用明细",params)
- getAutoDrugDetail(params).then(response=>{
- if(response.data.state == 1){
-
- this.userList = response.data.data.list
- console.log("自动出库数据",this.userList)
- if(val.is_sys == 1){
-
- this.drugDialogVisible = true
- }
- if(val.is_sys == 0){
-
- this.drugDialogVisibleTwo = true
- }
- var userListOne = response.data.data.outList
- // console.log("手动出库2232332",userListOne)
- this.userListOne = userListOne
- var batchNumber = response.data.data.batchNumber
- // console.log("出库详情",batchNumber)
- this.batchNumberList = batchNumber
- }
- })
- },
- toPrint(){
- if(this.order_id == 0){
- this.$message.error("请选择出库单")
- }else{
- this.$router.push({path:"/stock/drugStockOutOrderDetailPrint?id="+this.order_id})
- }
- },
-
- getDrugCountList(){
- var params = {
- keyword: this.keywords,
- start_time:this.start_time,
- end_time:this.end_time,
- }
-
- getDrugCountList(params).then(response=>{
- if(response.data.state == 1){
- var countlist = response.data.data.countList
- // console.log("入库数据",countlist)
- this.countList = countlist
- var outcountlist = response.data.data.outCountList
- // console.log("出库数据",outcountlist)
- this.outCountList = outcountlist
- var aucountlist = response.data.data.auCountList
- // console.log("自动数据",aucountlist)
- this.autoCountList = aucountlist
- var minCount = response.data.data.minCount
- // console.log("minCount",minCount)
- this.minCount = minCount
- var info = response.data.data.info
- for(let i=0;i<info.length;i++){
- if(info[i].count_unit == info[i].max_unit){
- info[i].count = info[i].count * info[i].min_number
- }
- }
- // console.log("info2222222",info)
- this.drugOutList = info
- }
- })
- },
-
- getCount(drug_id,min_number,max_unit,min_unit){
- var count= 0
- var str = ""
- var min_str = ""
- for(let i=0;i<this.drugOutList.length;i++){
- if(drug_id == this.drugOutList[i].drug_id){
- count += parseInt(this.drugOutList[i].count)
- }
- }
- if(parseInt(count/min_number)!=0){
- str = parseInt(count/min_number)+ max_unit
- }
- if((count%min_number)!=0){
- min_str = count%min_number + min_unit
- }
- return str + min_str
- },
- getTotalCount(drug_id,min_number,max_unit,min_unit){
- var str = ""
- var min_str = ""
- var arr = []
- var total = 0
- for(let i=0;i<this.outList.length;i++){
- if(this.outList[i].drug_id == drug_id){
- total += this.outList[i].count
- }
- }
-
- if (total >=min_number){
- if(parseInt(total/min_number)!=0){
- str = parseInt(total/min_number)+ max_unit
- }
- if((total%min_number)!=0){
- min_str = total%min_number + min_unit
- }
- }
-
- if (total < min_number){
- str = ""
- min_str = total + min_unit
- }
-
- return str + min_str
- },
- getTotalCountOne(id,min_number,max_unit,min_unit){
- console.log("hhhahdhhff",this.drugFlowList)
- var arr = []
- for(let i=0;i<this.drugFlowList.length;i++){
- if(id == this.drugFlowList[i].drug_id){
- arr.push(this.drugFlowList[i])
- }
- }
- var str = ""
- var min_str = ""
- var total = 0
- if(arr.length > 0){
- for(let i=0;i<arr.length;i++){
- total +=arr[i].count
- }
- if(parseInt(total/min_number)!=0){
- str = parseInt(total/min_number)+ max_unit
- }
- if(total%min_number !=0){
- min_str = total%min_number + min_unit
- }
- }
- return str + min_str
- },
-
- getAllPrice(drug_id,price,min_price){
- var strprice = 0
- var minstrprice = 0
- var str = ""
- var min_str = ""
- var total_price = 0
- for(let i=0;i<this.outList.length;i++){
- if(this.outList[i].drug_id == drug_id){
- if(parseInt(this.outList[i].count/this.outList[i].min_number)!=0){
- str = parseInt(this.outList[i].count/this.outList[i].min_number)
- }
- if((this.outList[i].count%this.outList[i].min_number)!=0){
- min_str = this.outList[i].count%this.outList[i].min_number
- }
- }
- }
- strprice = str * price
- minstrprice = min_str * min_price
-
- total_price = strprice + minstrprice
- return total_price
- },
- getDrugBatchNumber(drugid,count){
- console.log("drug_id2323",drugid)
- console.log("count",count)
- console.log("hhhhhhhhhhh",this.batchNumberList)
- var arr = []
- for(let i=0;i<this.batchNumberList.length;i++){
- if(drugid == this.batchNumberList[i].drug_id && count == this.batchNumberList[i].count){
- arr.push(this.batchNumberList[i].batch_number)
- }
- }
- return arr.join(",")
- },
-
- getExportOutOrderDrugList(){
-
- var params = {
- order_id:this.order_id
- }
- getExportOutOrderDrugList(params).then(response=>{
- if(response.data.state == 1){
- var list = response.data.data.list
- console.log("list22222",list)
- this.exportList = list
- this.manufacturerList = response.data.data.manufacturerList
- this.dealerList = response.data.data.dealerList
- }
- })
- },
- toExport(){
- if(this.order_id == ""){
- this.$message.error("请勾选出库单")
- return
- }
- console.log("hh2323232322323",this.exportList)
- for(let i=0;i<this.exportList.length;i++){
- if(this.exportList[i].dealer == 0){
- this.exportList[i].dealer = ""
- }
- if(this.exportList[i].manufacturer == 0){
- this.exportList[i].manufacturer = ""
- }
- this.exportList[i].unit = this.exportList[i].dose + this.exportList[i].dose_unit + "*" + this.exportList[i].min_number + this.exportList[i].min_unit + "/"+this.exportList[i].max_unit
-
- this.exportList[i].total_price = (this.exportList[i].count * this.exportList[i].price).toFixed(2)
- this.exportList[i].expiry_date = this.getTime(this.exportList[i].expire_date)
- this.exportList[i].product_date = this.getTime(this.exportList[i].product_date)
- for(let j=0;j<this.manufacturerList.length;j++){
- if(this.exportList[i].manufacturer == this.manufacturerList[j].id){
- this.exportList[i].manufacturer = this.manufacturerList[j].manufacturer_name
- }
- }
-
- for(let z=0;z<this.dealerList.length;z++){
- if(this.exportList[i].dealer == this.dealerList[z].id){
- this.exportList[i].dealer = this.dealerList[z].dealer_name
- }
- }
-
- }
-
- import('@/vendor/Export2Excel').then(excel => {
- for(let i=0;i<this.exportList.length;i++){
- for(let j=0;j<this.drugTypeList.length;j++){
- if(this.exportList[i].drug_type == this.drugTypeList[j].value){
- this.exportList[i].drug_type = this.drugTypeList[j].name
- }
- }
- }
- const tHeader = ['药品名称','药品类型','规格&单位', '批号','出库数量','出货单价','拆零零售价','总价','生产厂家','生产日期','有效日期','经销商','批准文号','备注']
- const filterVal = ['drug_name','drug_type','unit','batch_number', 'count','price','retail_price','total_price','manufacturer','product_date','expiry_date','dealer','number','remark']
-
- // console.log("table",this.exportList)
-
- const data = this.formatJson(filterVal, this.exportList)
- excel.export_json_to_excel({
- header: tHeader,
- data,
- filename: '药品出库单详情'
- })
- this.downloadLoading = false
- })
- },
- formatJson(filterVal, jsonData) {
- return jsonData.map(v => filterVal.map(j => v[j]));
- },
- getAllPriceOne(drug_id,price,min_price){
- var total = 0
- var all_price = 0
- for(let i=0;i<this.drugFlowList.length;i++){
- if(drug_id == this.drugFlowList[i].drug_id){
- total += this.drugFlowList[i].count
- }
- }
- all_price = total * price
-
- return all_price
- },
- }
- };
- </script>
-
- <style rel="stylesheet/scss" lang="scss">
- .app-container {
- // margin: 20px;
- font-size: 15px;
- .filter-container {
- padding-bottom: 5px;
- }
- .search-component {
- width: 500px;
- .searchBox {
- width: 300px;
- height: 36px;
- line-height: 36px;
- padding-left: 15px;
- border: 1px #dcdfe6 solid;
- border-right: none;
- outline: none;
- float: left;
- border-radius: 6px 0 0 6px;
- font-size: 14px;
- color: #333;
- background: #fff;
- box-shadow: 3px 3px 4px rgba(135, 135, 135, 0.05);
- }
- .searchBtn {
- background-color: #409eff;
- color: #fff;
- font-size: 15px;
- text-align: center;
- height: 36px;
- line-height: 36px;
- float: left;
- outline: none;
- width: 70px;
- border: none;
- border-radius: 0 6px 6px 0;
- font-family: "Microsoft Yahei";
- cursor: pointer;
- }
- }
-
- .amount {
- font-weight: normal;
- padding: 10px 0 0 0;
- color: #606266;
- font-size: 14px;
- span {
- color: #ef2525;
- font-family: "Arial";
- padding: 0 2px;
- }
- }
- }
- .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>
|