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

stockOutOrderEdit.vue 40KB

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