drugStockInOrderAdd.vue 41KB

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