drugStockInOrderEdit.vue 38KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144
  1. <template>
  2. <div class="main-contain">
  3. <div class="position">
  4. <bread-crumb
  5. v-if="this.$route.query.type == 1"
  6. :crumbs="crumbs"
  7. ></bread-crumb>
  8. <bread-crumb
  9. v-if="this.$route.query.type == 2"
  10. :crumbs="crumbs2"
  11. ></bread-crumb>
  12. <div style="float:right;">
  13. <el-button size="small" @click="back()" class="filter-item"
  14. >取 消</el-button
  15. >
  16. <el-button
  17. size="small"
  18. type="primary"
  19. @click="submit()"
  20. v-loading="loading"
  21. v-if="is_check == 2"
  22. class="filter-item"
  23. >保 存</el-button
  24. >
  25. <el-button
  26. size="small"
  27. type="primary"
  28. v-if="is_check == 2"
  29. @click="toCheck()"
  30. class="filter-item"
  31. >审核</el-button
  32. >
  33. <el-button
  34. size="small"
  35. type="primary"
  36. v-if="is_check == 1"
  37. @click="toReturnCheck()"
  38. class="filter-item"
  39. >反审核</el-button
  40. >
  41. </div>
  42. </div>
  43. <div class="app-container" v-loading="loading">
  44. <drugs-stock-dialog
  45. ref="dialog"
  46. :propForm="propForm"
  47. :visibility="isVisibility"
  48. v-on:dialog-comfirm="comfirm"
  49. v-on:dialog-cancle="cancle"
  50. >
  51. </drugs-stock-dialog>
  52. <div class="cell clearfix">
  53. <label class="title"><span class="name"><span style="color:red">*</span>仓库</span> :</label>
  54. <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" :disabled="true">
  55. <el-option
  56. v-for="(option, index) in list"
  57. :key="index"
  58. :label="option.storehouse_name"
  59. :value="option.id">
  60. </el-option>
  61. </el-select>
  62. <label class="title"><span class="name">入库时间</span> : </label>
  63. <el-date-picker
  64. size="small"
  65. v-model="warehousing_time"
  66. prefix-icon="el-icon-date"
  67. :editable="false"
  68. style="width: 196px;"
  69. type="date"
  70. placeholder="选择日期时间"
  71. align="right"
  72. format="yyyy-MM-dd"
  73. value-format="yyyy-MM-dd"
  74. :disabled="disabled"
  75. >
  76. </el-date-picker>
  77. </div>
  78. <!-- 编辑入库单详情 -->
  79. <el-form :rules="tableRules" :model="recordInfo" ref="tableForm">
  80. <el-table
  81. id="oictable"
  82. :data="recordInfo.recordData"
  83. :class="signAndWeighBoxPatients"
  84. style="width: 100%"
  85. border
  86. max-height="450"
  87. v-loading="listLoading"
  88. :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }"
  89. >
  90. <el-table-column align="center" width="200px">
  91. <template slot="header" slot-scope="scope">
  92. <span>药品名称<span style="color: red">*</span></span>
  93. </template>
  94. <template slot-scope="scope">
  95. <el-form-item style="padding-top: 15px">
  96. <el-autocomplete
  97. class="checkSearch"
  98. popper-class="my-autocomplete"
  99. v-model="scope.row.drug_name"
  100. :fetch-suggestions="querySearchAsync"
  101. :trigger-on-focus="true"
  102. placeholder="请输入药品名称"
  103. @select="handleSelect"
  104. @input="changeDrugName(scope.$index)"
  105. style="width:160px;"
  106. :disabled="disabled"
  107. >
  108. <i class="el-icon-search el-input__icon" slot="suffix"></i>
  109. <template slot-scope="{ item }">
  110. <div class="name">{{ item.drug_name + item.dose + item.dose_unit + "*" +item.min_number + item.min_unit +"/" + item.max_unit + " "+item.manufacturer}}</div>
  111. </template>
  112. </el-autocomplete>
  113. </el-form-item>
  114. </template>
  115. </el-table-column>
  116. <el-table-column align="center" width="140">
  117. <template slot="header" slot-scope="scope">
  118. <span>药品类型</span>
  119. </template>
  120. <template slot-scope="scope">
  121. <el-select v-model="scope.row.drug_type" filterable placeholder="请选择厂商" :disabled="disabled">
  122. <el-option
  123. v-for="(option, index) in drugTypeList"
  124. :key="index"
  125. :label="option.name"
  126. :value="option.id"
  127. >
  128. </el-option>
  129. </el-select>
  130. </template>
  131. </el-table-column>
  132. <el-table-column align="center" width="140">
  133. <template slot="header" slot-scope="scope">
  134. <span>规格&单位</span>
  135. </template>
  136. <template slot-scope="scope">
  137. <el-form-item style="padding-top: 20px">
  138. <el-input
  139. :disabled="true"
  140. placeholder="请输入规格&单位"
  141. v-model="scope.row.name"
  142. ></el-input>
  143. </el-form-item>
  144. </template>
  145. </el-table-column>
  146. <el-table-column align="center" width="150">
  147. <template slot="header" slot-scope="scope" >
  148. <span >批号<span style="color: red">*</span></span>
  149. </template>
  150. <template slot-scope="scope">
  151. <el-form-item style="padding-top: 20px" :rules="tableRules.batch_number" :prop="'recordData.' + scope.$index + '.batch_number'">
  152. <el-input
  153. :disabled="disabled"
  154. placeholder="请输入批号"
  155. v-model="scope.row.batch_number"
  156. ></el-input>
  157. </el-form-item>
  158. </template>
  159. </el-table-column>
  160. <el-table-column align="center" width="200">
  161. <template slot="header" slot-scope="scope">
  162. <span>入库数量<span style="color: red">*</span></span>
  163. </template>
  164. <template slot-scope="scope">
  165. <el-form-item
  166. :prop="'recordData.' + scope.$index + '.warehousing_count'"
  167. :rules="tableRules.warehousing_count"
  168. style="padding-top: 10px;"
  169. >
  170. <div style="display:flex;">
  171. <el-input
  172. :disabled="disabled"
  173. oninput="value=value.replace(/\D|^0/g,'')"
  174. placeholder="请输入入库数量"
  175. type="number"
  176. v-model="scope.row.warehousing_count"
  177. style="width:80px"
  178. ></el-input>
  179. <!-- <el-input
  180. :disabled="disabled"
  181. placeholder="请输入入库数量"
  182. v-model="scope.row.warehousing_count"
  183. style="width:80px"
  184. ></el-input> -->
  185. <!-- {{scope.row.max_unit}} -->
  186. <el-select v-model="scope.row.max_unit" filterable placeholder="请选择单位" style="width:80px" :disabled="disabled">
  187. <el-option
  188. v-for="(option, index) in scope.row.unitList"
  189. :key="index"
  190. :label="option.name"
  191. :value="option.name"
  192. >
  193. </el-option>
  194. </el-select>
  195. </div>
  196. </el-form-item>
  197. </template>
  198. </el-table-column>
  199. <el-table-column align="center" width="140">
  200. <template slot="header" slot-scope="scope">
  201. <span>拆零零售价(元)<span style="color: red">*</span></span>
  202. </template>
  203. <template slot-scope="scope">
  204. <el-form-item
  205. :prop="'recordData.' + scope.$index + '.retail_price'"
  206. :rules="tableRules.retail_price"
  207. style="padding-top: 20px"
  208. >
  209. <el-input
  210. style="width:100px"
  211. placeholder="请输入拆零零售价"
  212. type="number"
  213. v-model="scope.row.retail_price"
  214. :disabled="disabled"
  215. ></el-input>
  216. </el-form-item>
  217. </template>
  218. </el-table-column>
  219. <el-table-column width="120">
  220. <template slot="header" slot-scope="scope">
  221. <span>进货单价(元)<span style="color: red">*</span></span>
  222. </template>
  223. <template slot-scope="scope">
  224. <el-form-item
  225. :prop="'recordData.' + scope.$index + '.price'"
  226. :rules="tableRules.last_price"
  227. style="padding-top: 20px"
  228. >
  229. <el-input
  230. style="width:100px"
  231. placeholder="请输入单价"
  232. type="number"
  233. v-model="scope.row.last_price"
  234. :disabled="disabled"
  235. ></el-input>
  236. </el-form-item>
  237. </template>
  238. </el-table-column>
  239. <el-table-column label="总价(元)" align="center" width="80">
  240. <template slot-scope="scope">
  241. {{ calculate(scope.row.last_price * scope.row.warehousing_count) }}
  242. </template>
  243. </el-table-column>
  244. <el-table-column width="180" align="center">
  245. <template slot="header" slot-scope="scope">
  246. <span>有效日期<span style="color: red">*</span></span>
  247. </template>
  248. <template slot-scope="scope">
  249. <el-form-item :prop="'recordData.' + scope.$index + '.expiry_date'"
  250. :rules="tableRules.expiry_date"
  251. style="padding-top: 20px">
  252. <el-date-picker
  253. :disabled="disabled"
  254. prefix-icon="el-icon-date"
  255. style="width: 145px"
  256. v-model="scope.row.expiry_date"
  257. type="date"
  258. placeholder="选择日期时间"
  259. format="yyyy-MM-dd"
  260. value-format="yyyy-MM-dd"
  261. ></el-date-picker>
  262. </el-form-item>
  263. </template>
  264. </el-table-column>
  265. <el-table-column label="生产日期" width="180" align="center">
  266. <template slot-scope="scope">
  267. <el-date-picker
  268. :disabled="disabled"
  269. prefix-icon="el-icon-date"
  270. style="width: 145px"
  271. v-model="scope.row.product_date"
  272. type="date"
  273. placeholder="选择日期时间"
  274. format="yyyy-MM-dd"
  275. value-format="yyyy-MM-dd"
  276. ></el-date-picker>
  277. </template>
  278. </el-table-column>
  279. <el-table-column label="生产厂家" width="140" align="center">
  280. <template slot-scope="scope">
  281. <el-select v-model="scope.row.manufacturer" filterable placeholder="请选择厂商" :disabled="disabled">
  282. <el-option
  283. v-for="(option, index) in manufacturerList"
  284. :key="index"
  285. :label="option.manufacturer_name"
  286. :value="option.id"
  287. >
  288. </el-option>
  289. </el-select>
  290. </template>
  291. </el-table-column>
  292. <el-table-column label="经销商" width="140" align="center">
  293. <template slot-scope="scope">
  294. <el-select v-model="scope.row.dealer" filterable placeholder="请选择厂商">
  295. <el-option
  296. v-for="(option, index) in dealerList"
  297. :key="index"
  298. :label="option.dealer_name"
  299. :value="option.id"
  300. :disabled="disabled">
  301. </el-option>
  302. </el-select>
  303. </template>
  304. </el-table-column>
  305. <el-table-column align="center" width="150" label="批准文号">
  306. <template slot-scope="scope">
  307. <el-form-item style="padding-top: 20px">
  308. <el-input
  309. :disabled="disabled"
  310. placeholder="请输入批准文号"
  311. v-model="scope.row.number"
  312. ></el-input>
  313. </el-form-item>
  314. </template>
  315. </el-table-column>
  316. <el-table-column label="药品追溯码" width="150" align="center">
  317. <template slot-scope="scope">
  318. <!-- <el-input v-model="scope.row.drug_code" placeholder="请输入药品追溯码" :disabled="disabled"></el-input> -->
  319. <div @click="changeDrugCode(scope.row,scope.$index)">
  320. <el-input v-model="scope.row.drug_code" placeholder="请输入药品追溯码" :disabled="disabled"></el-input>
  321. </div>
  322. </template>
  323. </el-table-column>
  324. <el-table-column label="备注" width="150" align="center">
  325. <template slot-scope="scope">
  326. <el-input v-model="scope.row.remark" placeholder="请输入备注" :disabled="disabled"></el-input>
  327. </template>
  328. </el-table-column>
  329. <el-table-column
  330. label="操作"
  331. fixed="right"
  332. align="center"
  333. width="150"
  334. >
  335. <template slot-scope="scope">
  336. <el-tooltip
  337. class="item"
  338. effect="dark"
  339. content="新增"
  340. placement="top"
  341. >
  342. <el-button
  343. size="mini"
  344. type="primary"
  345. icon="el-icon-circle-plus-outline"
  346. @click="handleEdit(scope.$index, scope.row)"
  347. >
  348. </el-button>
  349. </el-tooltip>
  350. <el-tooltip
  351. class="item"
  352. effect="dark"
  353. content="删除"
  354. placement="top"
  355. >
  356. <el-button
  357. size="mini"
  358. type="danger"
  359. icon="el-icon-delete"
  360. @click="handleDelete(scope.$index, scope.row)"
  361. >
  362. </el-button>
  363. </el-tooltip>
  364. </template>
  365. </el-table-column>
  366. </el-table>
  367. <div style="margin-top: 20px;">合计金额: {{getTotalPirce() }} </div>
  368. </el-form>
  369. </div>
  370. <el-dialog
  371. title="药品追溯码"
  372. :visible.sync="dialogVisible"
  373. width="40%">
  374. <span>
  375. <el-input
  376. type="textarea"
  377. placeholder="请输入内容"
  378. v-model="textarea"
  379. :rows="10"
  380. >
  381. </el-input>
  382. </span>
  383. <span slot="footer" class="dialog-footer">
  384. <el-button @click="dialogVisible = false">取 消</el-button>
  385. <el-button type="primary" @click="saveTextArea()">确 定</el-button>
  386. </span>
  387. </el-dialog>
  388. </div>
  389. </template>
  390. <script>
  391. // import stockInDialog from "./Dialog/stockInDialog";
  392. import { uParseTime } from "@/utils/tools";
  393. import {
  394. GetAllConfig,
  395. GetAllDrugInfoByID,
  396. getDrugWarehouseInfoList,
  397. DeleteDrugWarehouseInfoItem,
  398. EditDrugWarehouse,
  399. toCheckWarehousingInfo,
  400. toReturnCheckWarehousing
  401. } from "@/api/drug/drug_stock";
  402. import BreadCrumb from "../../components/bread-crumb";
  403. import DrugsStockDialog from './drugsStockDialog/index'
  404. import {postSearchDrugList} from "@/api/data"
  405. import {getDataConfig, getDictionaryDataConfig } from "@/utils/data";
  406. export default {
  407. components: { DrugsStockDialog, BreadCrumb },
  408. name: "stockIn",
  409. data() {
  410. var checkGoodId = (rule, value, callback) => {
  411. setTimeout(() => {
  412. if (value == "" || value == 0) {
  413. return callback(new Error("规格名称不能为空"));
  414. }
  415. }, 2000);
  416. };
  417. return {
  418. crumbs: [
  419. { path: false, name: "库存管理" },
  420. { path: false, name: "药品入库单" },
  421. { path: false, name: "药品入库单" }
  422. ],
  423. crumbs2: [
  424. { path: false, name: "库存管理" },
  425. { path: false, name: "其他入库单" },
  426. { path: false, name: "编辑入库单" }
  427. ],
  428. signAndWeighBoxPatients: "sign-and-weigh-box-patients",
  429. warehousing_time: "",
  430. adminUserOptions: null,
  431. currentIndex: 0,
  432. recordInfo: {
  433. recordData: [],
  434. stock_in_code: "",
  435. current_index: ""
  436. },
  437. tableRules: {
  438. price: [{ required: true, message: "单价不能为空", trigger: "blur" }],
  439. warehousing_count: [
  440. { required: true, message: "数量不能为空", trigge: "blur" }
  441. ],
  442. good_id: [{ validator: checkGoodId, trigger: "blur" }],
  443. expiry_date:[
  444. {required:true,message:'有效日期不能为空',trigger:'blur'}
  445. ],
  446. batch_number:[
  447. {required:true,message:'批号不能为空',trigger:'blur'}
  448. ],
  449. retail_price:[
  450. {required:true,message:'请输入包装零售价',trigger:'blur'}
  451. ]
  452. },
  453. total: "",
  454. product_date: "",
  455. expiry_date: "",
  456. numbers: "",
  457. // prop
  458. isVisibility: false,
  459. propForm: {
  460. goods: [],
  461. goodType: [],
  462. goodInfo: [],
  463. goodUnit: [],
  464. title: "入库",
  465. isCreated: 1
  466. },
  467. form: {
  468. manufacturer: "",
  469. dealer: ""
  470. },
  471. warehouse: {},
  472. manufacturer: [],
  473. dealer: [],
  474. goodType: [],
  475. goodInfo:[],
  476. drugList:[],
  477. manufacturerList:[],
  478. dealerList:[],
  479. org_id:0,
  480. listLoading:false,
  481. unitList:[],
  482. drug_show:false,
  483. loading:false,
  484. disabled:false,
  485. storehouse_id:"",
  486. list:[],
  487. is_check:0,
  488. drug_waresing_id:0,
  489. dialogVisible:false,
  490. currentRow:{},
  491. currentIndex:0,
  492. textarea:""
  493. };
  494. },
  495. methods: {
  496. changeDrugCode(row,index){
  497. this.textarea=""
  498. this.textarea = row.drug_code
  499. this.currentRow = row
  500. this.currentIndex =index
  501. this.dialogVisible = true
  502. },
  503. saveTextArea(){
  504. for(let i=0;i<this.recordInfo.recordData.length;i++){
  505. if(this.currentIndex == i){
  506. this.recordInfo.recordData[i].drug_code = this.textarea
  507. }
  508. }
  509. this.dialogVisible = false
  510. },
  511. comfirm: function(val) {
  512. this.$refs.dialog.hide();
  513. if (val.selectedGoodInfo.length > 0) {
  514. for (let i = val.selectedGoodInfo.length - 1; i >= 0 ; i--) {
  515. if (i == 0) {
  516. this.recordInfo.recordData[this.currentIndex].drug_id =
  517. val.selectedGoodInfo[i].id;
  518. this.recordInfo.recordData[this.currentIndex].price = val.selectedGoodInfo[i].last_price.toString()
  519. this.recordInfo.recordData[this.currentIndex].retail_price = val.selectedGoodInfo[i].retail_price.toString()
  520. } else {
  521. const tempForm = {};
  522. tempForm["id"] = 0;
  523. tempForm["drug_id"] = val.selectedGoodInfo[i].id;
  524. tempForm["number"] = "";
  525. tempForm["product_date"] = "";
  526. tempForm["expiry_date"] = "";
  527. tempForm["warehousing_count"] = "";
  528. tempForm["price"] = val.selectedGoodInfo[i].last_price.toString();
  529. tempForm["remark"] = "";
  530. tempForm["dealer"] = "";
  531. tempForm["manufacturer"] = "";
  532. tempForm["retail_price"] = val.selectedGoodInfo[i].retail_price.toString();
  533. this.recordInfo.recordData.splice(
  534. this.currentIndex + 1,
  535. 0,
  536. tempForm
  537. );
  538. }
  539. }
  540. }
  541. this.currentIndex = -1;
  542. },
  543. cancle: function() {
  544. this.$refs.dialog.hide();
  545. this.propForm.goods = [];
  546. this.propForm.goodType = [];
  547. },
  548. GetConfigInfo: function() {
  549. const loading = this.$loading({
  550. lock: true,
  551. text: "Loading",
  552. spinner: "el-icon-loading",
  553. background: "rgba(0, 0, 0, 0.7)"
  554. });
  555. GetAllConfig().then(response => {
  556. if (response.data.state == 0) {
  557. this.$message.error(response.data.msg);
  558. return false;
  559. } else {
  560. this.manufacturer = response.data.data.manufacturer;
  561. this.dealer = response.data.data.dealer;
  562. for(let i = 0; i< response.data.data.drugs.length;i++){
  563. this.goodType.push(response.data.data.drugs[i])
  564. if(response.data.data.drugs[i].drug_specs != null) {
  565. for (let b = 0; b < response.data.data.drugs[i].drug_specs.length; b++) {
  566. this.goodInfo.push(response.data.data.drugs[i].drug_specs[b])
  567. }
  568. }
  569. }
  570. this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: "全部" });
  571. this.dealer.splice(0, 0, { id: 0, dealer_name: "全部" });
  572. }
  573. loading.close();
  574. });
  575. },
  576. typeName: function(drug_id) {
  577. let name = "";
  578. for (let i = 0; i < this.goodInfo.length; i++) {
  579. if (this.goodInfo[i].id == drug_id) {
  580. name = this.goodInfo[i].drug_name;
  581. }
  582. }
  583. return name;
  584. },
  585. specificationName: function(drug_id) {
  586. let name = "";
  587. for (let i = 0; i < this.goodInfo.length; i++) {
  588. if (this.goodInfo[i].id == drug_id) {
  589. name = this.goodInfo[i].drug_spec;
  590. }
  591. }
  592. return name;
  593. },
  594. handleEdit: function(index, row) {
  595. if(parseInt(this.$route.query.is_check) == 1){
  596. this.$message.error("已审核的单据不能新增!")
  597. return false
  598. }
  599. if(parseInt(this.$route.query.is_sys)==13){
  600. this.$message.error("调拨入库数据不能新增!")
  601. return false
  602. }
  603. if(row.supply_warehouse_id > 0){
  604. this.$message.error("自动入库数据不能新增!")
  605. return false
  606. }
  607. const tempObj = {};
  608. tempObj["id"] = 0;
  609. tempObj["drug_id"] = 0;
  610. tempObj["number"] = "";
  611. tempObj["product_date"] = "";
  612. tempObj["expiry_date"] = "";
  613. tempObj["warehousing_count"] = "";
  614. tempObj["last_price"] = "";
  615. tempObj["price"] = "";
  616. tempObj["remark"] = "";
  617. tempObj["dealer"] = "";
  618. tempObj["manufacturer"] = "";
  619. tempObj['retail_price'] = ""
  620. tempObj['drug_name'] = ""
  621. tempObj['manufacturer'] = ""
  622. tempObj["drug_code"] = ""
  623. this.recordInfo.recordData.push(tempObj);
  624. },
  625. handleDelete: function(index, row) {
  626. if(parseInt(this.$route.query.is_check) == 1){
  627. this.$message.error("已审核的单据不能删除!")
  628. return false
  629. }
  630. if(parseInt(this.$route.query.is_sys)==13){
  631. this.$message.error("调拨入库数据不能删除!")
  632. return false
  633. }
  634. if(row.supply_warehouse_id > 0){
  635. this.$message.error("自动入库数据不能删除!")
  636. return false
  637. }
  638. if (row.id == 0) {
  639. this.recordInfo.recordData.splice(index, 1);
  640. } else {
  641. const params = {
  642. id: row.id
  643. };
  644. this.$confirm("确认删除该入库商品信息记录?", "删除入库商品信息记录", {
  645. confirmButtonText: "确定",
  646. cancelButtonText: "取消",
  647. type: "warning"
  648. }).then(() => {
  649. DeleteDrugWarehouseInfoItem(params).then(response => {
  650. if (response.data.state == 0) {
  651. this.$message.error(response.data.msg);
  652. return false;
  653. } else {
  654. this.$message.success("删除成功");
  655. this.recordInfo.recordData.splice(index, 1);
  656. }
  657. });
  658. })
  659. .catch(() => {});
  660. }
  661. },
  662. calculate: function(val) {
  663. if (val == 0) {
  664. return "";
  665. }
  666. return Math.round(parseFloat(val) * 100) / 100;
  667. },
  668. getTime(val, temp) {
  669. if (val != 0) {
  670. return uParseTime(val, temp);
  671. } else {
  672. return "";
  673. }
  674. },
  675. back() {
  676. this.$router.go(-1);
  677. },
  678. submit() {
  679. this.$refs["tableForm"].validate(valid => {
  680. if (valid) {
  681. this.loading = true
  682. const array = this.recordInfo.recordData;
  683. if(this.storehouse_id == 0){
  684. this.$message.error("仓库不能为空!")
  685. return false
  686. }
  687. for (let i = 0; i < array.length; i++) {
  688. if (array[i].drug_id == 0) {
  689. this.$message.error("药品名称或者药品规格名称不能为空");
  690. return;
  691. }
  692. }
  693. for(let i=0;i<this.recordInfo.recordData.length;i++){
  694. if(this.recordInfo.recordData[i].dealer == ""){
  695. this.recordInfo.recordData[i].dealer = 0
  696. }
  697. if(this.recordInfo.recordData[i].manufacturer == ""){
  698. this.recordInfo.recordData[i].manufacturer = 0
  699. }
  700. this.recordInfo.recordData[i].last_price = this.recordInfo.recordData[i].last_price.toString()
  701. this.recordInfo.recordData[i].price = this.recordInfo.recordData[i].last_price.toString()
  702. this.recordInfo.recordData[i].retail_price = this.recordInfo.recordData[i].retail_price.toString()
  703. for(let j=0;j<this.manufacturerList.length;j++){
  704. if(this.recordInfo.recordData[i].manufacturer == this.manufacturerList[j].manufacturer_name){
  705. this.recordInfo.recordData[i].manufacturer = this.manufacturerList[j].id
  706. }
  707. }
  708. for(let z=0;z<this.dealerList.length;z++){
  709. if(this.recordInfo.recordData[i].dealer == this.dealerList[z].dealer_name){
  710. this.recordInfo.recordData[i].dealer = this.dealerList[z].id
  711. }
  712. }
  713. }
  714. const params = {
  715. stockIn: this.recordInfo.recordData
  716. };
  717. EditDrugWarehouse(
  718. params,
  719. this.warehousing_time,
  720. this.$route.query.id,
  721. this.$route.query.type,
  722. this.form.manufacturer,
  723. this.form.dealer,
  724. this.storehouse_id,
  725. ).then(response => {
  726. if (response.data.state == 0) {
  727. this.$message.error(response.data.msg);
  728. this.listLoading = false
  729. this.loading = false
  730. return false;
  731. } else {
  732. this.loading = false
  733. this.$message.success("保存成功");
  734. var list = response.data.data.list
  735. var manufacturerList = response.data.data.manufacturerList
  736. var dealerList = response.data.data.dealerList
  737. var drugTypeList = response.data.data.drugTypeList
  738. for(let i=0;i<list.length;i++){
  739. for(let j=0;j<manufacturerList.length;j++){
  740. if(list[i].manufacturer_id == manufacturerList[j].id){
  741. list[i].manufacturer_id = manufacturerList[j].manufacturer_name
  742. }
  743. }
  744. for(let s=0;s<dealerList.length;s++){
  745. if(list[i].dealer_id == dealerList[s].id){
  746. list[i].dealer_id = dealerList[s].manufacturer_name
  747. }
  748. }
  749. list[i].expiry_date = this.getTimeOne(list[i].expiry_date)
  750. list[i].product_date = this.getTimeOne(list[i].product_date)
  751. list[i].drug_name = list[i].drug.drug_name
  752. 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
  753. for(let z=0;z<drugTypeList.length;z++){
  754. if(list[i].drug.drug_type == drugTypeList[z].value){
  755. list[i].drug_type = drugTypeList[z].name
  756. }
  757. }
  758. list[i].last_price = list[i].price
  759. list[i].warehousing_count = list[i].warehousing_count.toString()
  760. list[i].drug_code = list[i].drug_code
  761. list[i].unitList = []
  762. var obj = {id:1,name:""}
  763. obj.name = list[i].drug.max_unit
  764. var objOne = {id:2,name:""}
  765. objOne.name = list[i].drug.min_unit
  766. list[i].unitList.push(obj)
  767. list[i].unitList.push(objOne)
  768. }
  769. this.recordInfo.recordData = []
  770. this.recordInfo.recordData = list
  771. this.listLoading = false
  772. }
  773. });
  774. } else {
  775. return false;
  776. }
  777. });
  778. },
  779. GetOrderDetail: function(order_id) {
  780. this.listLoading = true
  781. const params = {
  782. id: order_id
  783. };
  784. getDrugWarehouseInfoList(params).then(response => {
  785. if (response.data.state == 0) {
  786. this.$message.error(response.data.msg);
  787. return false;
  788. } else {
  789. var manufacturerList = response.data.data.manufacturerList
  790. this.manufacturerList = manufacturerList
  791. var dealerList = response.data.data.dealerList
  792. this.dealerList = dealerList
  793. for (let i = 0; i < response.data.data.info.length; i++) {
  794. response.data.data.info[i].product_date = this.getTime(
  795. response.data.data.info[i].product_date,
  796. "{y}-{m}-{d}"
  797. );
  798. response.data.data.info[i].expiry_date = this.getTime(
  799. response.data.data.info[i].expiry_date,
  800. "{y}-{m}-{d}"
  801. );
  802. response.data.data.info[i].price = response.data.data.info[i].price.toString();
  803. response.data.data.info[i].retail_price = response.data.data.info[i].retail_price.toString();
  804. response.data.data.info[i].warehousing_count = response.data.data.info[i].warehousing_count.toString();
  805. response.data.data.info[i].name = response.data.data.info[i].drug.dose + response.data.data.info[i].drug.dose_unit+"*"+response.data.data.info[i].drug.min_number+ response.data.data.info[i].drug.min_unit+"/"+response.data.data.info[i].drug.max_unit
  806. response.data.data.info[i].lot_number = response.data.data.info[i].number
  807. response.data.data.info[i].drug_name = response.data.data.info[i].drug.drug_name
  808. response.data.data.info[i].last_price = response.data.data.info[i].price
  809. response.data.data.info[i].max_unit = response.data.data.info[i].max_unit
  810. response.data.data.info[i].min_unit = response.data.data.info[i].min_unit
  811. response.data.data.info[i].drug_type = response.data.data.info[i].drug.drug_type
  812. response.data.data.info[i].drug_code = response.data.data.info[i].drug_code
  813. if(response.data.data.info[i].manufacturer == 0){
  814. response.data.data.info[i].manufacturer = ""
  815. }
  816. if(response.data.data.info[i].dealer == 0){
  817. response.data.data.info[i].dealer = ""
  818. }
  819. response.data.data.info[i].unitList = []
  820. var obj = {id:1,name:""}
  821. var objOne = {id:2,name:""}
  822. obj.name = response.data.data.info[i].drug.max_unit
  823. objOne.name = response.data.data.info[i].drug.min_unit
  824. response.data.data.info[i].unitList.push(obj)
  825. response.data.data.info[i].unitList.push(objOne)
  826. this.recordInfo.recordData.push(response.data.data.info[i]);
  827. for(let j=0;j<manufacturerList.length;j++){
  828. if(response.data.data.info[i].manufacturer == manufacturerList[j].id){
  829. response.data.data.info[i].manufacturer = manufacturerList[j].manufacturer_name
  830. }
  831. }
  832. for(let z=0;z<dealerList.length;z++){
  833. if(response.data.data.info[i].dealer == dealerList[z].id){
  834. response.data.data.info[i].dealer = dealerList[z].dealer_name
  835. }
  836. }
  837. }
  838. this.warehouse = response.data.data.warehousing;
  839. this.storehouse_id = response.data.data.warehousing.storehouse_id
  840. this.list = response.data.data.list
  841. this.warehousing_time = this.getTime(
  842. this.warehouse.warehousing_time,
  843. "{y}-{m}-{d}"
  844. );
  845. this.listLoading = false
  846. }
  847. });
  848. },
  849. getDictionaryDataConfig(module, filed_name) {
  850. return getDictionaryDataConfig(module, filed_name)
  851. },
  852. querySearchAsync(keyword, cb) {
  853. let key = '';
  854. if (keyword != undefined) {
  855. key = keyword
  856. }
  857. let searchArray = [];
  858. postSearchDrugList(key,this.storehouse_id).then(response => {
  859. if (response.data.state == 1) {
  860. searchArray = response.data.data.list;
  861. var list = response.data.data.list
  862. this.drugList = list
  863. var manufacturerList = response.data.data.manufacturerList
  864. this.manufacturerList = manufacturerList
  865. var dealerList = response.data.data.dealerList
  866. this.dealerList = dealerList
  867. for(let i=0;i<this.drugList.length;i++){
  868. for(let j=0;j<this.manufacturerList.length;j++){
  869. if(this.drugList[i].manufacturer == this.manufacturerList[j].id){
  870. this.drugList[i].manufacturer = this.manufacturerList[j].manufacturer_name
  871. }
  872. }
  873. for(let z=0;z<dealerList.length;z++){
  874. if(this.drugList[i].dealer == this.dealerList[z].id){
  875. this.drugList[i].dealer = this.dealerList[z].dealer_name
  876. }
  877. }
  878. }
  879. cb(this.drugList)
  880. } else {
  881. cb([])
  882. }
  883. })
  884. },
  885. changeDrugName(val){
  886. this.currentIndex = val
  887. },
  888. handleSelect(val){
  889. for(let i=0;i<this.recordInfo.recordData.length;i++){
  890. if(i == this.currentIndex){
  891. this.recordInfo.recordData[i].drug_id = val.id
  892. this.recordInfo.recordData[i].lot_number = ""
  893. this.recordInfo.recordData[i].drug_name = val.drug_name
  894. this.recordInfo.recordData[i].drug_type = val.drug_type
  895. this.recordInfo.recordData[i].name = val.dose +val.dose_unit+"*"+val.min_number+ val.min_unit+"/"+val.max_unit
  896. if(val.last_price == 0){
  897. this.recordInfo.recordData[i].last_price =""
  898. }else{
  899. this.recordInfo.recordData[i].last_price = val.last_price
  900. }
  901. if(val.min_price == 0){
  902. this.recordInfo.recordData[i].retail_price = ""
  903. }else{
  904. this.recordInfo.recordData[i].retail_price = val.min_price
  905. }
  906. this.recordInfo.recordData[i].manufacturer = val.manufacturer
  907. this.recordInfo.recordData[i].number = val.number
  908. this.recordInfo.recordData[i].max_unit = val.max_unit
  909. this.recordInfo.recordData[i].min_unit = val.min_unit
  910. if(val.dealer == 0){
  911. this.recordInfo.recordData[i].dealer = ""
  912. }else{
  913. this.recordInfo.recordData[i].dealer = val.dealer
  914. }
  915. this.recordInfo.recordData[i].unitList = []
  916. var obj = {id:1,name:""}
  917. var objOne= {id:2,name:""}
  918. obj.name = val.max_unit
  919. objOne.name = val.min_unit
  920. this.recordInfo.recordData[i].unitList.push(obj)
  921. this.recordInfo.recordData[i].unitList.push(objOne)
  922. }
  923. }
  924. },
  925. toCheck(){
  926. const loading = this.$loading({
  927. lock: true,
  928. text: "Loading",
  929. spinner: "el-icon-loading",
  930. background: "rgba(0, 0, 0, 0.7)",
  931. });
  932. var params = {
  933. warehousing_id:parseInt(this.$route.query.id),
  934. }
  935. toCheckWarehousingInfo(params).then(response=>{
  936. if(response.data.state == 1){
  937. var list = response.data.data.list
  938. this.$message.success("审核成功!")
  939. this.$router.back(-1);
  940. loading.close()
  941. }else{
  942. this.$message.error("审核失败!")
  943. loading.close()
  944. }
  945. })
  946. },
  947. toReturnCheck(){
  948. const loading = this.$loading({
  949. lock: true,
  950. text: "Loading",
  951. spinner: "el-icon-loading",
  952. background: "rgba(0, 0, 0, 0.7)",
  953. });
  954. var params = {
  955. warehousing_id:parseInt(this.$route.query.id),
  956. }
  957. toReturnCheckWarehousing(params).then(response=>{
  958. if(response.data.state == 1){
  959. this.$message.success(response.data.data.msg)
  960. this.$router.back(-1);
  961. loading.close()
  962. }else{
  963. this.$message.error(response.data.msg)
  964. loading.close()
  965. this.$router.back(-1);
  966. }
  967. })
  968. },
  969. getTimeOne(val) {
  970. if(val < 0){
  971. return ""
  972. }
  973. if(val == ""){
  974. return ""
  975. }else {
  976. return uParseTime(val, '{y}-{m}-{d}')
  977. }
  978. },
  979. getTotalPirce(){
  980. var total_price = 0
  981. if(this.recordInfo.recordData!=null && this.recordInfo.recordData.length>0){
  982. for(let i=0;i<this.recordInfo.recordData.length;i++){
  983. total_price += this.recordInfo.recordData[i].last_price * parseInt(this.recordInfo.recordData[i].warehousing_count)
  984. }
  985. if(total_price>0){
  986. return total_price.toFixed(4)
  987. }else{
  988. return ""
  989. }
  990. }
  991. }
  992. },
  993. created() {
  994. this.drugTypeList = getDictionaryDataConfig('system','drug_type')
  995. this.propForm.goodUnit = this.$store.getters.good_unit;
  996. const order_id = this.$route.query.id;
  997. this.GetOrderDetail(order_id);
  998. this.is_check = parseInt(this.$route.query.is_check)
  999. // this.unitList = getDataConfig('hemodialysis','units')
  1000. if( parseInt(this.$route.query.supply_warehouse_id)>0){
  1001. this.disabled = true
  1002. }
  1003. if(parseInt(this.$route.query.is_sys) == 13 || this.is_check == 1 ){
  1004. this.disabled = true
  1005. }
  1006. }
  1007. };
  1008. </script>
  1009. <style>
  1010. #oictable ::-webkit-scrollbar {
  1011. height: 15px;
  1012. }
  1013. </style>
  1014. <style rel="stylesheet/css" lang="scss" scoped>
  1015. .information {
  1016. border: 1px #dcdfe6 solid;
  1017. padding: 30px 20px 30px 20px;
  1018. .border {
  1019. border-bottom: 1px #dcdfe6 solid;
  1020. margin: 0px 0 20px 0;
  1021. }
  1022. }
  1023. .edit_separater {
  1024. border-top: 1px solid rgb(233, 233, 233);
  1025. margin-top: 15px;
  1026. margin-bottom: 15px;
  1027. }
  1028. </style>
  1029. <style>
  1030. .sign-and-weigh-box .sign-and-weigh-box-patients .cell {
  1031. font-size: 12px;
  1032. }
  1033. .sign-and-weigh-box .sign-and-weigh-box-patients .current-row > td {
  1034. background: #6fb5fa;
  1035. }
  1036. .el-autocomplete-suggestion{
  1037. width: 400px !important;
  1038. }
  1039. </style>