Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

consumables.vue 52KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495
  1. <template>
  2. <div class="page_consumables">
  3. <div style="display:flex;justify-content: space-between;width:100%;margin-bottom:20px;">
  4. <div class="cell clearfix" style="margin-bottom:0;">
  5. <el-input style="width: 180px;margin-right:10px;" @keyup.enter.native='searchAction' v-model="keywords"
  6. class="filter-item"/>
  7. <el-button style="margin-right:10px;" class="filter-item" type="primary" icon="el-icon-search"
  8. @click="searchAction">搜索
  9. </el-button>
  10. <label class="title"><span class="name">是否启用</span> : </label>
  11. <el-select v-model="is_use" style="width:140px;margin-right:10px;" placeholder="请选择" @change="changeUser">
  12. <el-option
  13. v-for="(item,z) in options"
  14. :key="z"
  15. :label="item.label"
  16. :value="item.value">
  17. </el-option>
  18. </el-select>
  19. <label class="title"><span class="name">生产厂商</span> : </label>
  20. <el-select v-model="manufacturer" style="width:140px;margin-right:10px;" placeholder="请选择" @change="changeManufacture">
  21. <el-option
  22. v-for="(item,y) in manufacturers"
  23. :key="y"
  24. :label="item.manufacturer_name"
  25. :value="item.id">
  26. </el-option>
  27. </el-select>
  28. <span style="color: #909399;font-size:14px;">备案 : &nbsp;</span>
  29. <el-select v-model="is_record" style="width:140px;margin-right:10px;" placeholder="请选择" @change="changeRecord">
  30. <el-option
  31. v-for="(item,index) in optionOne"
  32. :key="index"
  33. :label="item.label"
  34. :value="item.value">
  35. </el-option>
  36. </el-select>
  37. </div>
  38. <div>
  39. <el-button type="primary" @click="openForm()">新增</el-button>
  40. </div>
  41. </div>
  42. <div style="display:flex; align-items:center;margin-bottom:10px;">
  43. <!--<el-button type="primary" size="mini" @click="BatchDelete()" v-if="$store.getters.xt_user.org_id == 9504 || $store.getters.xt_user.org_id == 10028 || $store.getters.xt_user.org_id == 10138">批量备案</el-button>-->
  44. <!--<el-button type="primary" size="mini">批量备案</el-button>-->
  45. <el-link target="_blank" href="https://kuyi.shengws.com/stockTemplate.xlsx" :underline="false"
  46. style="margin-left:15px">
  47. <el-button
  48. class="filter-item"
  49. type="primary"
  50. size="small"
  51. >下载模版
  52. </el-button>
  53. </el-link>
  54. <good-excel :on-success='handleSuccess'></good-excel>
  55. <el-button
  56. style="margin-left:10px;"
  57. @click="generateLog()"
  58. class="filter-item"
  59. type="primary"
  60. size="small"
  61. >下载日志
  62. </el-button>
  63. </div>
  64. <el-table
  65. border style="width: 100%" :row-style="{ color: '#303133' }"
  66. :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)', color: '#606266'}"
  67. :data="goodInfo.goodInfoData"
  68. v-loading="goodInfo.loading"
  69. @selection-change="handleSelectionChange"
  70. >
  71. <el-table-column
  72. align="center"
  73. type="selection"
  74. width="55">
  75. </el-table-column>
  76. <el-table-column type="index" label="序号" width="60px" align="center"></el-table-column>
  77. <el-table-column label="耗材名称" align="center">
  78. <template slot-scope="scope">
  79. {{ scope.row.good_name }}
  80. </template>
  81. </el-table-column>
  82. <el-table-column prop="date" label="规格型号" align="center">
  83. <template slot-scope="scope">
  84. {{ scope.row.specification_name }}
  85. </template>
  86. </el-table-column>
  87. <el-table-column prop="date" label="耗材类型" width="140" align="center">
  88. <template slot-scope="scope">
  89. {{ getGoodTypeByID(scope.row.good_type_id) }}
  90. </template>
  91. </el-table-column>
  92. <el-table-column label="耗材编号" width="140" align="center">
  93. <template slot-scope="scope">
  94. {{ scope.row.good_number }}
  95. </template>
  96. </el-table-column>
  97. <!-- <el-table-column label="最小单位" width="60" align="center">
  98. <template slot-scope="scope">
  99. {{ getGoodUnit(scope.row.good_unit) }}
  100. </template>
  101. </el-table-column> -->
  102. <el-table-column label="零售价" width="100" align="center">
  103. <template slot-scope="scope">
  104. {{ scope.row.packing_price }}
  105. </template>
  106. </el-table-column>
  107. <el-table-column label="社保目录编码" width="110" align="center">
  108. <template slot-scope="scope">
  109. {{ scope.row.social_security_directory_code }}
  110. </template>
  111. </el-table-column>
  112. <el-table-column label="状态" width="60" align="center">
  113. <template slot-scope="scope">
  114. <!--{{ scope.row.good_status}}-->
  115. <div>{{scope.row.good_status.indexOf('停用') == -1 ? '启用':'停用' }}</div>
  116. </template>
  117. </el-table-column>
  118. <el-table-column prop="date" label="操作" width="320" align="center">
  119. <template slot-scope="scope">
  120. <el-button @click="handleGoodInfoEdit(scope.$index, scope.row)" type="primary" size="small">编辑</el-button>
  121. <!--<el-button type="primary" size="small" @click="clickSelfPayment(scope.row.id)">自付比例</el-button>-->
  122. <el-button type="danger" size="small" @click="handleGoodInfoDelete(scope.$index, scope.row)">删除</el-button>
  123. <!--<el-button type="primary" size="small" @click="toReturn(scope.row.id,scope.row.is_mark)" v-if="$store.getters.xt_user.org_id == 9504 || $store.getters.xt_user.org_id == 10028 || $store.getters.xt_user.org_id == 10138">-->
  124. <!--<span v-if="scope.row.is_mark == 0">备案</span>-->
  125. <!--<span v-if="scope.row.is_mark == 1">撤销</span>-->
  126. <!--</el-button>-->
  127. <el-button type="primary" size="small" >
  128. <span v-if="scope.row.is_mark == 0 || scope.row.is_mark == 2" @click="putOnRecord(scope.row.id)" >目录对照</span>
  129. <span v-if="scope.row.is_mark == 1" @click="putOnUnRecord(scope.row.id)" >撤消对照</span>
  130. </el-button>
  131. </template>
  132. </el-table-column>
  133. </el-table>
  134. <el-pagination
  135. @size-change="handleSizeChange"
  136. @current-change="handleCurrentChange"
  137. :page-sizes="[10, 50, 100]"
  138. :page-size="10"
  139. background
  140. align="right"
  141. style="margin-top:20px;"
  142. layout="total, sizes, prev, pager, next, jumper"
  143. :total="total"
  144. >
  145. </el-pagination>
  146. <good-info-dailog ref="addConsumable"
  147. :titles="goodInfo.goodInfoDialog.goodInfoTitle"
  148. :formValue="goodInfo.goodInfoDialog.formValue"
  149. :visibility="goodInfo.goodInfoDialog.isVisibility"
  150. :isCreated="goodInfo.goodInfoDialog.isCreated"
  151. v-on:dialog-comfirm="goodInfoDialogComfirm"
  152. v-on:dialog-cancle="goodInfoDialogCancle"
  153. ></good-info-dailog>
  154. <self-payment ref='selfPayment'></self-payment>
  155. <el-dialog
  156. title="提示"
  157. :visible.sync="dialogVisible"
  158. width="40%"
  159. >
  160. <span>您提交的文档不是系统标准导入模板,请检查您的文档或重新 </span>
  161. <span slot="footer" class="dialog-footer">
  162. <el-button @click="dialogVisible = false">取 消</el-button>
  163. <el-button type="primary" @click="dialogVisible = false">确 定</el-button>
  164. </span>
  165. </el-dialog>
  166. <el-dialog
  167. title="提示"
  168. :visible.sync="exportLogVisible"
  169. width="40%"
  170. >
  171. <div v-for="(item,i) in logs" :key="i">
  172. <span> {{ item.export_time | parseTime('{y}-{m}-{d} {h}:{i}:{s}')}}</span>
  173. <br/>
  174. <br/>
  175. <span>{{getContent(item)}}</span>
  176. <span >点击</span>
  177. <span style="color:blue" @click="generateTxt(item)">查看详情</span>
  178. <br/>
  179. <br/>
  180. </div>
  181. <span slot="footer" class="dialog-footer">
  182. <el-button @click="exportLogVisible = false">取 消</el-button>
  183. <el-button type="primary" @click="exportLogVisible = false">确 定</el-button>
  184. </span>
  185. </el-dialog>
  186. </div>
  187. </template>
  188. <script>
  189. import GoodInfoDailog from '../../stock/Dialog/goodInfoDailog'
  190. import { getDictionaryDataConfig } from "@/utils/data";
  191. import selfPayment from './selfPayment'
  192. import axios from 'axios'
  193. import {
  194. createGoodInfo,
  195. deleteGoodInfo,
  196. GetAllDeals,
  197. GetAllGoodType,
  198. GetAllManufacturer,
  199. GetGoodInfo,
  200. GetGoodInfoByGoodId,
  201. getGoodInfoList,
  202. modifyGoodInfo,
  203. postGoodInformation,
  204. getInitializtion
  205. } from '@/api/stock'
  206. import UploadExcel from '@/xt_pages/components/UploadExcel'
  207. import GoodExcel from '@/xt_pages/components/GoodExcel'
  208. import { generateLog } from '@/api/config'
  209. export default {
  210. components: {
  211. GoodInfoDailog,
  212. selfPayment,
  213. UploadExcel,
  214. GoodExcel
  215. },
  216. data() {
  217. return {
  218. good_kind:'',
  219. is_use:'',
  220. is_charge:'',
  221. search_input: '',
  222. options: [{
  223. value: '0',
  224. label: '全部'
  225. },{
  226. value: '1',
  227. label: '是'
  228. }, {
  229. value: '2',
  230. label: '否'
  231. }],
  232. value: '',
  233. total: 0,
  234. pageTotal: 0,
  235. pageSelect: 0,
  236. page: 1,
  237. limit: 10,
  238. keywords: '',
  239. goodInfo: {
  240. loading: false,
  241. goodInfoData: [],
  242. good_code: '',
  243. editGoodId: '',
  244. editGoodIndex: '',
  245. goodInfoDialog: {
  246. goodInfoTitle: '新增商品信息',
  247. isCreated: 1, //1.创建 2.编辑 3.查看详情
  248. formValue: {
  249. good_id: '',
  250. specification_name: '',
  251. buy_price: '',
  252. sell_price: '',
  253. remark: '',
  254. manufacturer: '',
  255. good_type_id: '',
  256. dealer: '',
  257. expiry_date_warn_day_count: '',
  258. stock_warn_count: '',
  259. is_reuse: '2',
  260. dealers: [],
  261. manufacturers: [],
  262. goodType: [],
  263. goodUnit: [],
  264. good_name:'',
  265. pinyin:"",
  266. wubi:"",
  267. good_kind:'',
  268. medical_insurance_level:'',
  269. good_unit:'',
  270. retail_price:'',
  271. medical_insurance_number:'',
  272. is_special_diseases:'',
  273. is_record:'',
  274. statistics_category:'',
  275. agent:'',
  276. good_status:'',
  277. default_count:'',
  278. sign:'',
  279. is_default:'',
  280. is_charge_use:'',
  281. is_charge_predict:'',
  282. is_statistics_work:'',
  283. sort:'',
  284. is_doctor_use:'',
  285. good_number:'',
  286. social_security_directory_code:"",
  287. special_medical:"",
  288. production_type:"",
  289. min_number:"",
  290. packing_unit:"",
  291. packing_price:'',
  292. default_count_unit:"",
  293. min_unit:"",
  294. total:"",
  295. register_number:"",
  296. },
  297. isVisibility: false,
  298. }
  299. },
  300. selectDrug:[],
  301. manufacturers:[],
  302. optionOne: [
  303. {
  304. value: '0',
  305. label: '全部'
  306. }, {
  307. value: '1',
  308. label: '已备案'
  309. }, {
  310. value: '2',
  311. label: '未备案'
  312. }],
  313. is_record:"",
  314. manufacturer:"",
  315. dialogVisible:false,
  316. goodType:[],
  317. dealers:[],
  318. exportLogVisible:false,
  319. logs: [],
  320. goodKindList:[]
  321. }
  322. },
  323. methods: {
  324. putOnUnRecord(id){
  325. var that = this;
  326. let params = {
  327. ids:id.toString(),
  328. record_type: 2,
  329. admin_user_id:this.$store.getters.xt_user.user.id
  330. };
  331. axios.get('http://127.0.0.1:9532/api/uncheckcode/get',{params:params}).then(function(response) {
  332. if (response.data.state == 0) {
  333. that.$message.error(response.data.data.msg);
  334. return false
  335. } else {
  336. if(response.data.data.failed_code == -10){
  337. // that.$message.error(response.data.data.msg)
  338. that.$confirm(response.data.data.msg, '医保错误信息', {
  339. confirmButtonText: '确 定',
  340. type: 'warning'
  341. }).then(() => {
  342. }).catch(() => {
  343. })
  344. }else{
  345. // for (let i = 0; i < that.tableData.length; i++) {
  346. // if (that.tableData[i].id == that.currentObject.id) {
  347. // that.tableData[i].record.is_cancel == 1
  348. // }
  349. // }
  350. }
  351. }
  352. }).catch(function(error) {
  353. })
  354. },
  355. putOnRecord(id){
  356. var that = this;
  357. let params = {
  358. ids:id.toString(),
  359. record_type: 2,
  360. admin_user_id:this.$store.getters.xt_user.user.id
  361. };
  362. axios.get('http://127.0.0.1:9532/api/checkcode/get',{params:params}).then(function(response) {
  363. if (response.data.state == 0) {
  364. that.$message.error(response.data.data.msg);
  365. return false
  366. } else {
  367. if(response.data.data.failed_code == -10){
  368. // that.$message.error(response.data.data.msg)
  369. that.$confirm(response.data.data.msg, '医保错误信息', {
  370. confirmButtonText: '确 定',
  371. type: 'warning'
  372. }).then(() => {
  373. }).catch(() => {
  374. })
  375. }else{
  376. }
  377. }
  378. }).catch(function(error) {
  379. })
  380. },
  381. GDYBBatchPutOnRecord(){
  382. var that = this;
  383. var ids = [];
  384. var idMap = {};
  385. for (const index in this.selectDrug) {
  386. ids.push(this.selectDrug[index].id);
  387. idMap[this.selectDrug[index].id] = this.selectDrug[index].id;
  388. }
  389. let params = {
  390. ids:ids.join(','),
  391. record_type: 2,
  392. admin_user_id:this.$store.getters.xt_user.user.id
  393. };
  394. axios.get('http://127.0.0.1:9532/api/checkcode/get',{params:params}).then(function(response) {
  395. if (response.data.state == 0) {
  396. that.$message.error(response.data.data.msg);
  397. return false
  398. } else {
  399. if(response.data.data.failed_code == -10){
  400. // that.$message.error(response.data.data.msg)
  401. that.$confirm(response.data.data.msg, '医保错误信息', {
  402. confirmButtonText: '确 定',
  403. type: 'warning'
  404. }).then(() => {
  405. }).catch(() => {
  406. })
  407. }else{
  408. }
  409. }
  410. }).catch(function(error) {
  411. })
  412. },
  413. changeKind(val){
  414. this.getList()
  415. },
  416. changeCharge(val){
  417. this.getList()
  418. },
  419. changeUser(val){
  420. this.getList()
  421. },
  422. getGoodUnit(id){
  423. for (let i = 0; i <this.$store.getters.good_unit.length; i++ ){
  424. if(id == this.$store.getters.good_unit[i].id){
  425. return this.$store.getters.good_unit[i].name
  426. }
  427. }
  428. return ""
  429. },
  430. getGoodKind(id){
  431. // var data = this.getDictionaryDataConfig('system','good_kind')
  432. var data = this.goodKindList;
  433. var name = "";
  434. for(let i = 0; i < data.length; i++){
  435. if(id == data[i].value){
  436. name = data[i].name
  437. }
  438. }
  439. return name
  440. },
  441. getDictionaryDataConfig(module,filed_name){
  442. return getDictionaryDataConfig(module,filed_name)
  443. },
  444. search: function() {
  445. this.getList()
  446. },
  447. handleGoodInfoEdit: function(index, row) {
  448. this.getAllDealer();
  449. this.getAllManufacturer();
  450. this.getAllGoodType();
  451. this.goodInfo.editGoodId = row.id;
  452. this.goodInfo.editGoodIndex = index;
  453. let params = {
  454. id: row.id
  455. };
  456. GetGoodInfo(params).then(response => {
  457. if (response.data.state == 0) {
  458. this.$message.error(response.data.msg);
  459. return false
  460. } else {
  461. if (response.data.data.goodInfo.good_unit <= 0) {
  462. this.goodInfo.goodInfoDialog.formValue.good_unit = ''
  463. } else {
  464. this.goodInfo.goodInfoDialog.formValue.good_unit =
  465. response.data.data.goodInfo.good_unit
  466. }
  467. if (response.data.data.goodInfo.manufacturer <= 0) {
  468. this.goodInfo.goodInfoDialog.formValue.manufacturer = ''
  469. } else {
  470. this.goodInfo.goodInfoDialog.formValue.manufacturer = response.data.data.goodInfo.manufacturer
  471. }
  472. if (response.data.data.goodInfo.dealer <= 0) {
  473. this.goodInfo.goodInfoDialog.formValue.dealer = ''
  474. } else {
  475. this.goodInfo.goodInfoDialog.formValue.dealer =
  476. response.data.data.goodInfo.dealer
  477. }
  478. this.goodInfo.goodInfoDialog.formValue.specification_name =
  479. response.data.data.goodInfo.specification_name;
  480. this.goodInfo.goodInfoDialog.formValue.buy_price =
  481. response.data.data.goodInfo.buy_price;
  482. this.goodInfo.goodInfoDialog.formValue.sell_price =
  483. response.data.data.goodInfo.sell_price;
  484. this.goodInfo.goodInfoDialog.formValue.expiry_date_warn_day_count =
  485. response.data.data.goodInfo.expiry_date_warn_day_count;
  486. this.goodInfo.goodInfoDialog.formValue.stock_warn_count =
  487. response.data.data.goodInfo.stock_warn_count;
  488. this.goodInfo.goodInfoDialog.formValue.is_reuse = response.data.data.goodInfo.is_reuse.toString();
  489. this.goodInfo.goodInfoDialog.formValue.remark =
  490. response.data.data.goodInfo.remark;
  491. this.goodInfo.goodInfoDialog.isCreated = 2;
  492. this.goodInfo.good_code = response.data.data.goodInfo.good_code;
  493. this.goodInfo.goodInfoDialog.formValue.good_type_id =
  494. response.data.data.goodInfo.good_type_id;
  495. this.goodInfo.goodInfoDialog.formValue.good_name =
  496. response.data.data.goodInfo.good_name;
  497. this.goodInfo.goodInfoDialog.formValue.pinyin =
  498. response.data.data.goodInfo.pinyin;
  499. this.goodInfo.goodInfoDialog.formValue.wubi =
  500. response.data.data.goodInfo.wubi;
  501. if (response.data.data.goodInfo.good_kind <= 0) {
  502. this.goodInfo.goodInfoDialog.formValue.good_kind = ''
  503. } else {
  504. this.goodInfo.goodInfoDialog.formValue.good_kind =
  505. response.data.data.goodInfo.good_kind
  506. }
  507. if (response.data.data.goodInfo.medical_insurance_level <= 0) {
  508. this.goodInfo.goodInfoDialog.formValue.medical_insurance_level = ''
  509. } else {
  510. this.goodInfo.goodInfoDialog.formValue.medical_insurance_level =
  511. response.data.data.goodInfo.medical_insurance_level
  512. }
  513. this.goodInfo.goodInfoDialog.formValue.retail_price =
  514. response.data.data.goodInfo.retail_price;
  515. this.goodInfo.goodInfoDialog.formValue.medical_insurance_number =
  516. response.data.data.goodInfo.medical_insurance_number;
  517. if (response.data.data.goodInfo.is_special_diseases <= 0) {
  518. this.goodInfo.goodInfoDialog.formValue.is_special_diseases = ''
  519. } else {
  520. this.goodInfo.goodInfoDialog.formValue.is_special_diseases =
  521. response.data.data.goodInfo.is_special_diseases.toString()
  522. }
  523. if (response.data.data.goodInfo.is_record <= 0) {
  524. this.goodInfo.goodInfoDialog.formValue.is_record = ''
  525. } else {
  526. this.goodInfo.goodInfoDialog.formValue.is_record =
  527. response.data.data.goodInfo.is_record.toString()
  528. }
  529. if (response.data.data.goodInfo.statistics_category <= 0) {
  530. this.goodInfo.goodInfoDialog.formValue.statistics_category = ''
  531. } else {
  532. this.goodInfo.goodInfoDialog.formValue.statistics_category =
  533. response.data.data.goodInfo.statistics_category
  534. }
  535. if (response.data.data.goodInfo.good_status <= 0) {
  536. this.goodInfo.goodInfoDialog.formValue.good_status = ''
  537. } else {
  538. this.goodInfo.goodInfoDialog.formValue.good_status =
  539. response.data.data.goodInfo.good_status
  540. }
  541. if (response.data.data.goodInfo.default_count <= 0) {
  542. this.goodInfo.goodInfoDialog.formValue.default_count = ''
  543. } else {
  544. this.goodInfo.goodInfoDialog.formValue.default_count =
  545. response.data.data.goodInfo.default_count
  546. }
  547. if (response.data.data.goodInfo.sign <= 0) {
  548. this.goodInfo.goodInfoDialog.formValue.sign = ''
  549. } else {
  550. this.goodInfo.goodInfoDialog.formValue.sign =
  551. response.data.data.goodInfo.sign
  552. }
  553. if (response.data.data.goodInfo.is_default <= 0) {
  554. this.goodInfo.goodInfoDialog.formValue.is_default = ''
  555. } else {
  556. this.goodInfo.goodInfoDialog.formValue.is_default =
  557. response.data.data.goodInfo.is_default.toString()
  558. }
  559. if (response.data.data.goodInfo.is_charge_use <= 0) {
  560. this.goodInfo.goodInfoDialog.formValue.is_charge_use = ''
  561. } else {
  562. this.goodInfo.goodInfoDialog.formValue.is_charge_use =
  563. response.data.data.goodInfo.is_charge_use.toString()
  564. }
  565. if (response.data.data.goodInfo.is_charge_predict <= 0) {
  566. this.goodInfo.goodInfoDialog.formValue.is_charge_predict = ''
  567. } else {
  568. this.goodInfo.goodInfoDialog.formValue.is_charge_predict =
  569. response.data.data.goodInfo.is_charge_predict.toString()
  570. }
  571. if (response.data.data.goodInfo.is_statistics_work <= 0) {
  572. this.goodInfo.goodInfoDialog.formValue.is_statistics_work = ''
  573. } else {
  574. this.goodInfo.goodInfoDialog.formValue.is_statistics_work =
  575. response.data.data.goodInfo.is_statistics_work.toString()
  576. }
  577. if (response.data.data.goodInfo.sort <= 0) {
  578. this.goodInfo.goodInfoDialog.formValue.sort = ''
  579. } else {
  580. this.goodInfo.goodInfoDialog.formValue.sort =
  581. response.data.data.goodInfo.sort.toString()
  582. }
  583. if (response.data.data.goodInfo.total <= 0) {
  584. this.goodInfo.goodInfoDialog.formValue.total = ''
  585. } else {
  586. this.goodInfo.goodInfoDialog.formValue.total =
  587. response.data.data.goodInfo.total
  588. }
  589. if (response.data.data.goodInfo.is_doctor_use <= 0) {
  590. this.goodInfo.goodInfoDialog.formValue.is_doctor_use = ''
  591. } else {
  592. this.goodInfo.goodInfoDialog.formValue.is_doctor_use =
  593. response.data.data.goodInfo.is_doctor_use.toString()
  594. }
  595. this.goodInfo.goodInfoDialog.formValue.agent =response.data.data.goodInfo.agent;
  596. this.goodInfo.goodInfoDialog.formValue.good_number = response.data.data.goodInfo.good_number;
  597. this.goodInfo.goodInfoDialog.formValue.social_security_directory_code = response.data.data.goodInfo.social_security_directory_code;
  598. if(response.data.data.production_type<=0){
  599. this.goodInfo.goodInfoDialog.production_type = ''
  600. }else{
  601. this.goodInfo.goodInfoDialog.formValue.production_type = response.data.data.goodInfo.production_type.toString()
  602. }
  603. if(response.data.data.special_medical<=0){
  604. this.goodInfo.goodInfoDialog.special_medical = ''
  605. }else{
  606. this.goodInfo.goodInfoDialog.formValue.special_medical = response.data.data.goodInfo.special_medical.toString()
  607. }
  608. this.goodInfo.goodInfoDialog.formValue.min_unit = response.data.data.goodInfo.min_unit
  609. this.goodInfo.goodInfoDialog.formValue.min_number = response.data.data.goodInfo.min_number
  610. this.goodInfo.goodInfoDialog.formValue.packing_unit = response.data.data.goodInfo.packing_unit
  611. this.goodInfo.goodInfoDialog.formValue.packing_price = response.data.data.goodInfo.packing_price
  612. this.goodInfo.goodInfoDialog.formValue.default_count_unit = response.data.data.goodInfo.default_count_unit
  613. this.goodInfo.goodInfoDialog.formValue.register_number = response.data.data.goodInfo.register_number
  614. this.$refs.addConsumable.show(row.id, this.goodInfo.goodInfoDialog.formValue)
  615. }
  616. })
  617. },
  618. handleGoodInfoDelete: function(index, row) {
  619. this.$confirm('确认删除这条商品信息?', '删除商品信息', {
  620. confirmButtonText: '确定',
  621. cancelButtonText: '取消',
  622. type: 'warning'
  623. })
  624. .then(() => {
  625. let params = {
  626. id: row.id
  627. };
  628. deleteGoodInfo(params).then(response => {
  629. if (response.data.state == 0) {
  630. this.$message.error(response.data.msg);
  631. return false
  632. } else {
  633. this.goodInfo.goodInfoData.splice(index, 1);
  634. this.$message.success('删除成功')
  635. }
  636. })
  637. })
  638. .catch(() => {
  639. })
  640. },
  641. getList() {
  642. this.goodInfo.loading = true;
  643. let params = {
  644. page: this.page,
  645. limit: this.limit,
  646. keyword: this.keywords,
  647. is_use:this.is_use,
  648. good_kind:this.good_kind,
  649. is_charge: this.is_charge,
  650. is_mark:this.is_record,
  651. manufacturer:this.manufacturer,
  652. };
  653. getGoodInfoList(params).then(response => {
  654. if (response.data.state == 0) {
  655. this.goodInfo.loading = false;
  656. this.$message.error(response.data.msg);
  657. return false
  658. } else {
  659. this.goodInfo.loading = false;
  660. this.total = response.data.data.total;
  661. this.goodInfo.goodInfoData = [];
  662. for (let i = 0; i < response.data.data.list.length; i++) {
  663. this.goodInfo.goodInfoData.push(response.data.data.list[i])
  664. }
  665. }
  666. })
  667. },
  668. tableRowClassName({ row, rowIndex }) {
  669. //把每一行的索引放进row
  670. row.index = rowIndex
  671. },
  672. onRowClick(row, event, column) {
  673. this.goodInfo.goodInfoData = [];
  674. this.goodType.tableCurrentIndex = row.index;
  675. this.goodInfo.goodInfoDialog.formValue.good_id = row.id;
  676. let params = {
  677. id: row.id
  678. };
  679. this.goodInfo.loading = true;
  680. GetGoodInfoByGoodId(params).then(response => {
  681. if (response.data.state == 0) {
  682. this.goodInfo.loading = false;
  683. this.$message.error(response.data.msg);
  684. return false
  685. } else {
  686. this.goodInfo.loading = false;
  687. this.getList()
  688. // for (let i = 0; i < response.data.data.list.length; i++) {
  689. // this.goodInfo.goodInfoData.push(response.data.data.list[i])
  690. // }
  691. }
  692. })
  693. },
  694. goodInfoDialogComfirm: function(val) {
  695. console.log("val22222",val)
  696. if (val.isCreated == 2) {
  697. //修改
  698. val['id'] = this.goodInfo.editGoodId;
  699. val['good_code'] = this.goodInfo.good_code;
  700. modifyGoodInfo(val).then(response => {
  701. if (response.data.state == 0) {
  702. // this.$message.error(response.data.msg)
  703. this.$message.error("同一耗材类型同一规格名称不能重复录入!");
  704. return false
  705. } else {
  706. this.$refs.addConsumable.hide();
  707. this.getList();
  708. // this.goodInfo.goodInfoData[
  709. // this.goodInfo.editGoodIndex
  710. // ].specification_name =
  711. // response.data.data.goodInfo.specification_name
  712. // this.goodInfo.goodInfoData[this.goodInfo.editGoodIndex].good_unit =
  713. // response.data.data.goodInfo.good_unit
  714. // this.goodInfo.goodInfoData[
  715. // this.goodInfo.editGoodIndex
  716. // ].buy_price = response.data.data.goodInfo.buy_price.toString()
  717. // this.goodInfo.goodInfoData[
  718. // this.goodInfo.editGoodIndex
  719. // ].sell_price = response.data.data.goodInfo.sell_price.toString()
  720. // this.goodInfo.goodInfoData[
  721. // this.goodInfo.editGoodIndex
  722. // ].expiry_date_warn_day_count = response.data.data.goodInfo.expiry_date_warn_day_count.toString()
  723. // this.goodInfo.goodInfoData[
  724. // this.goodInfo.editGoodIndex
  725. // ].stock_warn_count = response.data.data.goodInfo.stock_warn_count.toString()
  726. this.$message.success('修改成功')
  727. }
  728. })
  729. } else if (val.isCreated == 1) {
  730. if(val.is_reuse == ""){
  731. val.is_reuse = 0
  732. }else{
  733. val.is_reuse = parseInt(val.is_reuse)
  734. }
  735. if(val.stock_warn_count == ""){
  736. val.stock_warn_count = 0
  737. }else{
  738. val.stock_warn_count = parseInt(val.stock_warn_count)
  739. }
  740. //新增
  741. createGoodInfo(val).then(response => {
  742. if (response.data.state == 0) {
  743. // this.$message.error(response.data.msg)
  744. // return false
  745. this.$message.error("同一耗材类型同一规格名称不能重复录入!")
  746. } else {
  747. this.$refs.addConsumable.hide();
  748. this.getList();
  749. // this.goodInfo.goodInfoData.unshift(response.data.data.goodInfo)
  750. this.$message.success('新增成功')
  751. }
  752. })
  753. }
  754. },
  755. goodInfoDialogCancle: function() {
  756. this.$refs.addConsumable.hide()
  757. },getGoodTypeByID(id){
  758. console.log( id)
  759. let name = ""
  760. for(let i = 0; i < this.goodInfo.goodInfoDialog.formValue.goodType.length;i++){
  761. if(this.goodInfo.goodInfoDialog.formValue.goodType[i].id == id){
  762. name = this.goodType[i].type_name
  763. }
  764. }
  765. return name
  766. },
  767. showInfoDialog: function() {
  768. this.getAllDealer();
  769. this.getAllManufacturer();
  770. this.goodInfo.goodInfoDialog.formValue.goodType = [];
  771. GetAllGoodType().then(response => {
  772. if (response.data.state == 0) {
  773. this.$message.error(response.data.msg);
  774. return false
  775. } else {
  776. for (let i = 0; i < response.data.data.goodType.length; i++) {
  777. if (response.data.data.goodType[i].type == 1) {
  778. response.data.data.goodType[i].type_name = response.data.data.goodType[i].type_name + '(系统设定)'
  779. }
  780. this.goodInfo.goodInfoDialog.formValue.goodType.push(
  781. response.data.data.goodType[i]
  782. )
  783. }
  784. if (this.goodInfo.goodInfoDialog.formValue.goodType.length <= 0) {
  785. this.$message.error('请先新增商品类型');
  786. } else {
  787. this.goodInfo.goodInfoDialog.isVisibility = true;
  788. this.goodInfo.goodInfoDialog.isCreated = 1
  789. }
  790. }
  791. });
  792. this.$refs.addConsumable.show()
  793. },
  794. getAllDealer: function() {
  795. this.goodInfo.goodInfoDialog.formValue.dealers = [];
  796. GetAllDeals().then(response => {
  797. if (response.data.state == 0) {
  798. this.$message.error(response.data.msg);
  799. return false
  800. } else {
  801. for (let i = 0; i < response.data.data.dealer.length; i++) {
  802. this.goodInfo.goodInfoDialog.formValue.dealers.push(
  803. response.data.data.dealer[i]
  804. );
  805. this.dealers.push(response.data.data.dealer[i])
  806. }
  807. }
  808. })
  809. },
  810. getAllManufacturer: function() {
  811. this.goodInfo.goodInfoDialog.formValue.manufacturers = [];
  812. GetAllManufacturer().then(response => {
  813. if (response.data.state == 0) {
  814. this.$message.error(response.data.msg);
  815. return false
  816. } else {
  817. var obj = {id:0,manufacturer_name:"全部"};
  818. this.manufacturers.push(obj);
  819. for (let i = 0; i < response.data.data.manufacturer.length; i++) {
  820. this.goodInfo.goodInfoDialog.formValue.manufacturers.push(
  821. response.data.data.manufacturer[i]
  822. );
  823. this.manufacturers.push(response.data.data.manufacturer[i])
  824. }
  825. }
  826. })
  827. },
  828. getAllGoodType: function() {
  829. this.goodInfo.goodInfoDialog.formValue.goodType = [];
  830. GetAllGoodType().then(response => {
  831. if (response.data.state == 0) {
  832. this.$message.error(response.data.msg);
  833. return false
  834. } else {
  835. for (let i = 0; i < response.data.data.goodType.length; i++) {
  836. if (response.data.data.goodType[i].type == 1) {
  837. response.data.data.goodType[i].type_name = response.data.data.goodType[i].type_name + '(系统设定)'
  838. }
  839. this.goodInfo.goodInfoDialog.formValue.goodType.push(response.data.data.goodType[i]);
  840. this.goodType.push(response.data.data.goodType[i])
  841. }
  842. this.getList();
  843. }
  844. })
  845. },
  846. handleSizeChange(val) {
  847. this.limit = val;
  848. this.getList()
  849. },
  850. handleCurrentChange(val) {
  851. this.page = val;
  852. this.getList()
  853. },
  854. searchAction() {
  855. this.is_use = "";
  856. this.is_charge = "";
  857. this.good_kind = "";
  858. this.getList()
  859. },clickSelfPayment(id){
  860. this.$refs.selfPayment.show(id,2)
  861. },
  862. openForm() {
  863. this.getAllDealer();
  864. this.getAllManufacturer();
  865. this.goodInfo.goodInfoDialog.formValue.goodType = [];
  866. GetAllGoodType().then(response => {
  867. if (response.data.state == 0) {
  868. this.$message.error(response.data.msg);
  869. return false
  870. } else {
  871. for (let i = 0; i < response.data.data.goodType.length; i++) {
  872. if (response.data.data.goodType[i].type == 1) {
  873. response.data.data.goodType[i].type_name = response.data.data.goodType[i].type_name + '(系统设定)'
  874. }
  875. this.goodInfo.goodInfoDialog.formValue.goodType.push(
  876. response.data.data.goodType[i]
  877. )
  878. }
  879. if (this.goodInfo.goodInfoDialog.formValue.goodType.length <= 0) {
  880. this.$message.error('请先新增商品类型');
  881. } else {
  882. this.goodInfo.goodInfoDialog.isVisibility = true;
  883. this.goodInfo.goodInfoDialog.isCreated = 1
  884. }
  885. }
  886. });
  887. this.goodInfo.goodInfoDialog.formValue.good_id = '';
  888. this.goodInfo.goodInfoDialog.formValue.specification_name = '';
  889. this.goodInfo.goodInfoDialog.formValue.buy_price = '';
  890. this.goodInfo.goodInfoDialog.formValue.sell_price = '';
  891. this.goodInfo.goodInfoDialog.formValue.remark = '';
  892. this.goodInfo.goodInfoDialog.formValue.manufacturer = '';
  893. this.goodInfo.goodInfoDialog.formValue.good_type_id = '';
  894. this.goodInfo.goodInfoDialog.formValue.dealer = '';
  895. this.goodInfo.goodInfoDialog.formValue.expiry_date_warn_day_count = '';
  896. this.goodInfo.goodInfoDialog.formValue.stock_warn_count = '';
  897. this.goodInfo.goodInfoDialog.formValue.is_reuse = '2';
  898. this.goodInfo.goodInfoDialog.formValue.good_name = '';
  899. this.goodInfo.goodInfoDialog.formValue.pinyin = '';
  900. this.goodInfo.goodInfoDialog.formValue.wubi = '';
  901. this.goodInfo.goodInfoDialog.formValue.good_kind = '';
  902. this.goodInfo.goodInfoDialog.formValue.medical_insurance_level = '';
  903. this.goodInfo.goodInfoDialog.formValue.retail_price = '';
  904. this.goodInfo.goodInfoDialog.formValue.medical_insurance_number = '';
  905. this.goodInfo.goodInfoDialog.formValue.is_special_diseases = '';
  906. this.goodInfo.goodInfoDialog.formValue.is_record = '';
  907. this.goodInfo.goodInfoDialog.formValue.statistics_category = '';
  908. this.goodInfo.goodInfoDialog.formValue.good_status = '';
  909. this.goodInfo.goodInfoDialog.formValue.default_count = '';
  910. this.goodInfo.goodInfoDialog.formValue.sign = '';
  911. this.goodInfo.goodInfoDialog.formValue.is_default = '';
  912. this.goodInfo.goodInfoDialog.formValue.is_charge_use = '';
  913. this.goodInfo.goodInfoDialog.formValue.is_charge_predict = '';
  914. this.goodInfo.goodInfoDialog.formValue.is_statistics_work = '';
  915. this.goodInfo.goodInfoDialog.formValue.sort = '';
  916. this.goodInfo.goodInfoDialog.formValue.is_doctor_use = '';
  917. this.goodInfo.goodInfoDialog.formValue.agent = '';
  918. this.goodInfo.goodInfoDialog.formValue.good_number = '';
  919. this.goodInfo.goodInfoDialog.formValue.register_number = '';
  920. this.$refs.addConsumable.show(0)
  921. },
  922. handleSelectionChange(val) {
  923. this.selectDrug = val;
  924. },
  925. // toRecord(){
  926. // var that = this
  927. // axios.get('http://127.0.0.1:9532/sz/api/goods/get').then(function(response) {
  928. // if (response.data.state == 0) {
  929. // that.$message.error(response.data.msg)
  930. // return false
  931. // } else {
  932. // that.$message({ message: '备案成功', type: 'success' })
  933. // }
  934. // }).catch(function(error) {
  935. // })
  936. // },
  937. BatchDelete() {
  938. if (this.selectDrug.length == 0) {
  939. this.$message.error("请选择要备案的信息");
  940. return false;
  941. }
  942. this.$confirm(
  943. "确认要备案所选记录吗? <br>",
  944. "备案提示",
  945. {
  946. dangerouslyUseHTMLString: true,
  947. confirmButtonText: "确定",
  948. cancelButtonText: "取消",
  949. type: "warning"
  950. }
  951. ).then(() => {
  952. var ids = [];
  953. var idMap = {};
  954. for (const index in this.selectDrug) {
  955. ids.push(this.selectDrug[index].id);
  956. idMap[this.selectDrug[index].id] = this.selectDrug[index].id;
  957. }
  958. var idss = ids.join(',');
  959. let params = {
  960. ids:idss,
  961. admin_user_id:this.$store.getters.xt_user.user.id
  962. };
  963. var that = this;
  964. axios.get('http://127.0.0.1:9532/sz/api/goods/get',{ params: params }).then(function(response) {
  965. if (response.data.state == 0) {
  966. that.$message.error(response.data.data.msg);
  967. return false
  968. } else {
  969. if(response.data.data.msg == ""){
  970. that.$message.success("备案成功!");
  971. that.getList()
  972. }
  973. if(response.data.data.msg!=""){
  974. that.$message.error(response.data.data.msg);
  975. that.getList()
  976. }
  977. }
  978. }).catch(function(error) {
  979. })
  980. });
  981. },
  982. toReturn(id,isMark){
  983. var that = this;
  984. let params = {
  985. 'id':id,
  986. 'type_id':3,
  987. 'is_mark':isMark,
  988. 'admin_user_id':this.$store.getters.xt_user.user.id,
  989. };
  990. axios.get('http://127.0.0.1:9532/sz/api/revocation/get',{params:params}).then(function(response) {
  991. if (response.data.state == 0) {
  992. that.$message.error(response.data.data.msg);
  993. return false
  994. } else {
  995. if(response.data.data.msg == ""){
  996. that.$message.success("备案成功!");
  997. that.getList()
  998. }
  999. if(response.data.data.msg!=""){
  1000. that.$message.error(response.data.data.msg);
  1001. that.getList()
  1002. }
  1003. }
  1004. }).catch(function(error) {
  1005. })
  1006. },
  1007. changeManufacture(){
  1008. this.getList()
  1009. },
  1010. changeRecord(){
  1011. this.getList()
  1012. },
  1013. handleSuccess({ results, header }) {
  1014. if (header != undefined && header.length > 0) {
  1015. var isHasMedicalInsuranceLevel = header.includes('*医保等级');
  1016. var isHasGoodUnit = header.includes('*单位');
  1017. var isHasStockWarnCount = header.includes('*库存警戒');
  1018. var isHasManuFacturer = header.includes('*生产厂商');
  1019. var isHasGoodName = header.includes('*耗材名称');
  1020. var isHasGoodKand = header.includes('*耗材种类');
  1021. var isHasSpecificationName = header.includes('*规格型号');
  1022. var isHasBuyPrice = header.includes('*零价');
  1023. if (!(isHasMedicalInsuranceLevel && isHasGoodUnit && isHasStockWarnCount && isHasManuFacturer && isHasGoodName && isHasGoodKand && isHasSpecificationName && isHasBuyPrice)) {
  1024. this.dialogVisible = true;
  1025. return
  1026. }
  1027. }else {
  1028. this.dialogVisible = true;
  1029. return
  1030. }
  1031. var tableData = [];
  1032. for(let i=1;i<results.length;i++){
  1033. let obj = {"good_kind_id":0,"good_type_id":0,"medical_insurance_id":0,"dealer_id":0,"statistic_id":0,"manufacturer_id":0,"unit_id":0};
  1034. for (var key in results[i]) {
  1035. if (results[i]['*耗材名称'] === undefined) {
  1036. obj['good_name'] = ''
  1037. } else {
  1038. if (key == '*耗材名称') {
  1039. obj['good_name'] = results[i][key].replace(/\s/g,"")
  1040. }
  1041. }
  1042. if (results[i]['*耗材种类'] === undefined) {
  1043. obj['good_kind'] = ''
  1044. } else {
  1045. if (key == '*耗材种类') {
  1046. obj['good_kind'] = results[i][key].replace(/\s/g,"")
  1047. }
  1048. }
  1049. if (results[i]['*耗材类型'] === undefined) {
  1050. obj['type_name'] = ''
  1051. } else {
  1052. if (key == '*耗材类型') {
  1053. obj['type_name'] = results[i][key].replace(/\s/g,"")
  1054. }
  1055. }
  1056. if (results[i]['*医保等级'] === undefined) {
  1057. obj['medical_insurance_level'] = ''
  1058. } else {
  1059. if (key == '*医保等级') {
  1060. obj['medical_insurance_level'] = results[i][key].replace(/\s/g,"")
  1061. }
  1062. }
  1063. if (results[i]['*规格型号'] === undefined) {
  1064. obj['specification_name'] = ''
  1065. } else {
  1066. if (key == '*规格型号') {
  1067. obj['specification_name'] = results[i][key].replace(/\s/g,"")
  1068. }
  1069. }
  1070. if (results[i]['*生产厂商'] === undefined) {
  1071. obj['manufacturer'] = ''
  1072. } else {
  1073. if (key == '*生产厂商') {
  1074. obj['manufacturer'] = results[i][key].replace(/\s/g,"")
  1075. }
  1076. }
  1077. if (results[i]['*单位'] === undefined) {
  1078. obj['good_unit'] = ''
  1079. } else {
  1080. if (key == '*单位') {
  1081. obj['good_unit'] = results[i][key].replace(/\s/g,"")
  1082. }
  1083. }
  1084. if (results[i]['*零价'] === undefined) {
  1085. obj['retail_price'] = ''
  1086. } else {
  1087. if (key == '*零价') {
  1088. obj['retail_price'] = results[i][key].replace(/\s/g,"")
  1089. }
  1090. }
  1091. if (results[i]['*库存警戒'] === undefined) {
  1092. obj['stock_warn_count'] = ''
  1093. } else {
  1094. if (key == '*库存警戒') {
  1095. obj['stock_warn_count'] = results[i][key].replace(/\s/g,"")
  1096. }
  1097. }
  1098. if (results[i]['经销商'] === undefined) {
  1099. obj['dealer'] = ''
  1100. } else {
  1101. if (key == '经销商') {
  1102. obj['dealer'] = results[i][key].replace(/\s/g,"")
  1103. }
  1104. }
  1105. if (results[i]['拼音'] === undefined) {
  1106. obj['pinyin'] = ''
  1107. } else {
  1108. if (key == '拼音') {
  1109. obj['pinyin'] = results[i][key].replace(/\s/g,"")
  1110. }
  1111. }
  1112. if (results[i]['五笔'] === undefined) {
  1113. obj['wubi'] = ''
  1114. } else {
  1115. if (key == '五笔') {
  1116. obj['wubi'] = results[i][key].replace(/\s/g,"")
  1117. }
  1118. }
  1119. if (results[i]['最新进价'] === undefined) {
  1120. obj['buy_price'] = ''
  1121. } else {
  1122. if (key == '最新进价') {
  1123. obj['buy_price'] = results[i][key].replace(/\s/g,"")
  1124. }
  1125. }
  1126. if (results[i]['医保编码'] === undefined) {
  1127. obj['medical_insurance_number'] = ''
  1128. } else {
  1129. if (key == '医保编码') {
  1130. obj['medical_insurance_number'] = results[i][key].replace(/\s/g,"")
  1131. }
  1132. }
  1133. if (results[i]['是否特病目录'] === undefined) {
  1134. obj['is_special_diseases'] = ''
  1135. } else {
  1136. if (key == '是否特病目录') {
  1137. obj['is_special_diseases'] = results[i][key].replace(/\s/g,"")
  1138. }
  1139. }
  1140. if (results[i]['是否备案'] === undefined) {
  1141. obj['is_record'] = ''
  1142. } else {
  1143. if (key == '是否备案') {
  1144. obj['is_record'] = results[i][key].replace(/\s/g,"")
  1145. }
  1146. }
  1147. if (results[i]['统计分类'] === undefined) {
  1148. obj['statistics_category'] = ''
  1149. } else {
  1150. if (key == '统计分类') {
  1151. obj['statistics_category'] = results[i][key].replace(/\s/g,"")
  1152. }
  1153. }
  1154. if (results[i]['状态'] === undefined) {
  1155. obj['good_status'] = ''
  1156. } else {
  1157. if (key == '状态') {
  1158. obj['good_status'] = results[i][key].replace(/\s/g,"")
  1159. }
  1160. }
  1161. if (results[i]['社保目录编码'] === undefined) {
  1162. obj['social_security_directory_code'] = ''
  1163. } else {
  1164. if (key == '社保目录编码') {
  1165. obj['social_security_directory_code'] = results[i][key].replace(/\s/g,"")
  1166. }
  1167. }
  1168. if (results[i]['生产地类别'] === undefined) {
  1169. obj['production_type'] = ''
  1170. } else {
  1171. if (key == '生产地类别') {
  1172. obj['production_type'] = results[i][key].replace(/\s/g,"")
  1173. }
  1174. }
  1175. if (results[i]['特殊医用材料标志'] === undefined) {
  1176. obj['special_medical'] = ''
  1177. } else {
  1178. if (key == '特殊医用材料标志') {
  1179. obj['special_medical'] = results[i][key].replace(/\s/g,"")
  1180. }
  1181. }
  1182. if (results[i]['备注'] === undefined) {
  1183. obj['remark'] = ''
  1184. } else {
  1185. if (key == '备注') {
  1186. obj['remark'] = results[i][key].replace(/\s/g,"")
  1187. }
  1188. }
  1189. }
  1190. tableData.push(obj);
  1191. var goodUnit = this.$store.getters.good_unit;
  1192. for(let i=0;i<tableData.length;i++){
  1193. for(let c=0;c<goodUnit.length;c++){
  1194. if(tableData[i].good_unit == goodUnit[c].name){
  1195. tableData[i].unit_id = goodUnit[c].id
  1196. }
  1197. }
  1198. }
  1199. }
  1200. for(let i=0;i<tableData.length;i++){
  1201. tableData[i].stock_warn_count = parseInt(tableData[i].stock_warn_count);
  1202. if(tableData[i].is_special_diseases == "是"){
  1203. tableData[i].is_special_diseases = 1
  1204. }
  1205. if(tableData[i].is_special_diseases == "否"){
  1206. tableData[i].is_special_diseases = 2
  1207. }
  1208. if(tableData[i].is_record == "是"){
  1209. tableData[i].is_record = 1
  1210. }
  1211. if(tableData[i].is_record == "否"){
  1212. tableData[i].is_record = 2
  1213. }
  1214. if(tableData[i].special_medical == "是"){
  1215. tableData[i].special_medical = "1"
  1216. }
  1217. if(tableData[i].special_medical == "否"){
  1218. tableData[i].special_medical = "2"
  1219. }
  1220. }
  1221. for(let i=0;i<tableData.length;i++){
  1222. if(tableData[i].is_special_diseases == ""){
  1223. tableData[i].is_special_diseases = 0
  1224. }else{
  1225. tableData[i].is_special_diseases = parseInt(tableData[i].is_special_diseases)
  1226. }
  1227. if(tableData[i].is_record == ""){
  1228. tableData[i].is_record = 0
  1229. }else{
  1230. tableData[i].is_record = parseInt(tableData[i].is_record)
  1231. }
  1232. }
  1233. let params = {
  1234. 'goods':tableData
  1235. };
  1236. postGoodInformation(params).then(response=>{
  1237. if(response.data.state == 1){
  1238. var msg = response.data.data.msg;
  1239. this.$message.success("导入成功!");
  1240. this.getList();
  1241. this.getInitializtion()
  1242. }else{
  1243. this.$message.error("导入失败,请下载日志查看")
  1244. }
  1245. })
  1246. },
  1247. generateTxt: function(log) {
  1248. var content = '';
  1249. var errlog = log.err_logs;
  1250. content = this.getContent(log);
  1251. for (let i = 0; i < errlog.length; i++) {
  1252. if (content.length == 0) {
  1253. content = errlog[i].err_msg
  1254. } else {
  1255. content = content + '\n' + errlog[i].err_msg
  1256. }
  1257. }
  1258. var url = new Blob(['\ufeff' + content], { type: 'text/txt,charset=UTF-8' });
  1259. if (typeof url === 'object' && url instanceof Blob) {
  1260. url = URL.createObjectURL(url) // 创建blob地址
  1261. }
  1262. const aLink = document.createElement('a');
  1263. aLink.href = url;
  1264. aLink.download = this.timestampToTime(log.export_time) + '患者导入日志' + '.txt';
  1265. aLink.click()
  1266. },
  1267. getContent(log) {
  1268. return '您导入的文档共' + log.total_num + '条患者数据' + ',' + '已成功导入' + log.success_num + '条,导入失败' + log.fail_num + '条,'
  1269. },
  1270. timestampToTime(timestamp) {
  1271. var date = new Date(timestamp * 1000);//时间戳为10位需*1000,时间戳为13位的话不需乘1000
  1272. var Y = date.getFullYear() + '年';
  1273. var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '月';
  1274. var D = (date.getDate() < 10 ? '0' + (date.getDate()) : date.getDate()) + '日 ';
  1275. var h = (date.getHours() < 10 ? '0' + (date.getHours()) : date.getHours()) + '时';
  1276. var m = (date.getMinutes() < 10 ? '0' + (date.getMinutes()) : date.getMinutes()) + '分';
  1277. var s = (date.getSeconds() < 10 ? '0' + (date.getSeconds()) : date.getSeconds()) + '秒';
  1278. return Y + M + D + h + m + s
  1279. },
  1280. generateLog() {
  1281. let params = {
  1282. 'log_type': 5
  1283. };
  1284. generateLog(params).then(
  1285. response => {
  1286. if (response.data.state === 1) {
  1287. this.logs = response.data.data.logs;
  1288. this.exportLogVisible = true
  1289. } else {
  1290. this.$message.error(response.data.msg)
  1291. }
  1292. }
  1293. )
  1294. },
  1295. getInitializtion(){
  1296. getInitializtion().then(response=>{
  1297. if(response.data.state == 1){
  1298. var goodKindList = response.data.data.goodKindList;
  1299. this.goodKindList = goodKindList
  1300. }
  1301. })
  1302. }
  1303. },
  1304. created() {
  1305. this.getAllGoodType();
  1306. this.getAllDealer();
  1307. this.getAllManufacturer();
  1308. this.goodInfo.goodInfoDialog.formValue.goodUnit = this.$store.getters.good_unit;
  1309. this.getInitializtion()
  1310. }
  1311. }
  1312. </script>