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

drugStockOutOrder.vue 76KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457
  1. <template>
  2. <div class="main-contain">
  3. <div class="position">
  4. <bread-crumb :crumbs="crumbs"></bread-crumb>
  5. <el-button
  6. size="small"
  7. @click="AddNewOrder"
  8. class="filter-item"
  9. style="float: right"
  10. type="primary"
  11. icon="el-icon-circle-plus-outline"
  12. >新增</el-button
  13. >
  14. </div>
  15. <div class="app-container">
  16. <div class="cell clearfix">
  17. <label class="title"><span class="name">仓库</span> :</label>
  18. <el-select
  19. size="small"
  20. v-model="storehouse_id"
  21. filterable
  22. placeholder="请选择仓库"
  23. style="width: 200px"
  24. @change="changeStoreHouse"
  25. >
  26. <el-option
  27. v-for="(option, index) in houseList"
  28. :key="index"
  29. :label="option.storehouse_name"
  30. :value="option.id"
  31. >
  32. </el-option>
  33. </el-select>
  34. <el-input
  35. size="small"
  36. style="width: 200px"
  37. class="filter-item"
  38. v-model.trim="searchKey"
  39. placeholder="单据编码/制单人/厂商"
  40. />
  41. <el-button
  42. size="small"
  43. class="filter-item"
  44. type="primary"
  45. icon="el-icon-search"
  46. @click="search"
  47. >搜索</el-button
  48. >
  49. <div style="margin-left: 10px">
  50. <label class="title"><span class="name">出库时间</span> : </label>
  51. <el-date-picker
  52. size="small"
  53. v-model="start_time"
  54. prefix-icon="el-icon-date"
  55. :editable="false"
  56. style="width: 196px"
  57. type="date"
  58. placeholder="选择日期时间"
  59. align="right"
  60. format="yyyy-MM-dd"
  61. value-format="yyyy-MM-dd"
  62. @change="startTimeChange"
  63. ></el-date-picker>
  64. <span class="cellLine"> - </span>
  65. <el-date-picker
  66. size="small"
  67. v-model="end_time"
  68. prefix-icon="el-icon-date"
  69. :editable="false"
  70. style="width: 196px"
  71. type="date"
  72. placeholder="选择日期时间"
  73. align="right"
  74. format="yyyy-MM-dd"
  75. value-format="yyyy-MM-dd"
  76. @change="endTimeChange"
  77. ></el-date-picker>
  78. </div>
  79. <!-- <div style="margin-left: 10px">
  80. <span>审核状态:</span>
  81. <el-select
  82. v-model="check_id"
  83. style="width: 140px; margin-right: 10px"
  84. placeholder="请选择"
  85. @change="changeTypeName"
  86. >
  87. <el-option
  88. v-for="item in checkList"
  89. :key="item.id"
  90. :label="item.name"
  91. :value="item.id"
  92. >
  93. </el-option>
  94. </el-select>
  95. </div> -->
  96. </div>
  97. <div class="cell clearfix">
  98. <el-checkbox
  99. style="width: 70px"
  100. v-model="checked"
  101. @change="changeAllSelected"
  102. >全选</el-checkbox
  103. >
  104. <el-button size="small" icon="el-icon-delete" @click="batchDelete"
  105. >删除</el-button
  106. >
  107. <el-button size="small" type="primary" @click="toPrint">打印</el-button>
  108. <el-button size="small" type="primary" @click="toExport" :disabled="exportLoding">导出</el-button>
  109. <span>&nbsp;&nbsp;</span>
  110. <label class="title"><span class="name">出库方式</span> :</label>
  111. <el-select size="small" v-model="way_type" filterable placeholder="请选择仓库" style="width:200px" @change="changeWay">
  112. <el-option
  113. v-for="(option, index) in wayList"
  114. :key="index"
  115. :label="option.name"
  116. :value="option.id">
  117. </el-option>
  118. </el-select>
  119. <span>&nbsp;&nbsp;</span>
  120. <label class="title"><span class="name">审核状态</span> :</label>
  121. <el-select size="small" v-model="check_type" filterable placeholder="请选择仓库" style="width:200px" @change="changeCheckType">
  122. <el-option
  123. v-for="(option, index) in checkList"
  124. :key="index"
  125. :label="option.name"
  126. :value="option.id">
  127. </el-option>
  128. </el-select>
  129. </div>
  130. <el-table
  131. @current-change="handleSearch"
  132. :data="warehouseOutDate"
  133. :class="signAndWeighBoxPatients"
  134. style="width: 100%"
  135. border
  136. highlight-current-row
  137. ref="multipleTable"
  138. @selection-change="select"
  139. :row-style="{ color: '#303133' }"
  140. :header-cell-style="{
  141. backgroundColor: 'rgb(245, 247, 250)',
  142. color: '#606266',
  143. }"
  144. >
  145. <el-table-column type="selection" width="55" align="center">
  146. </el-table-column>
  147. <el-table-column label="单据日期" align="center">
  148. <template slot-scope="scope">
  149. {{ scope.row.warehouse_out_time | parseTime("{y}-{m}-{d}") }}
  150. </template>
  151. </el-table-column>
  152. <el-table-column label="单据编号" align="center">
  153. <template slot-scope="scope">
  154. {{ scope.row.warehouse_out_order_number }}
  155. </template>
  156. </el-table-column>
  157. <el-table-column label="仓库名称" align="center">
  158. <template slot-scope="scope">
  159. {{ getHouseName(scope.row.storehouse_id) }}
  160. </template>
  161. </el-table-column>
  162. <el-table-column label="制单人" align="center">
  163. <template slot-scope="scope">
  164. {{ getXuserName(scope.row.creater) }}
  165. </template>
  166. </el-table-column>
  167. <el-table-column min-width="40" align="center">
  168. <template slot="header" slot-scope="scope">
  169. <span>出库方式</span>
  170. </template>
  171. <template slot-scope="scope">
  172. <span v-if="scope.row.is_sys == 1">{{ "自动出库" }}</span>
  173. <span v-if="scope.row.is_sys == 0">{{ "手动出库" }}</span>
  174. <span v-if="scope.row.is_sys == 12">{{ "调拨出库" }}</span>
  175. <span v-if="scope.row.is_sys == 5">{{ "结算出库" }}</span>
  176. </template>
  177. </el-table-column>
  178. <el-table-column min-width="40" align="center">
  179. <template slot="header" slot-scope="scope">
  180. <span>审核状态</span>
  181. </template>
  182. <template slot-scope="scope">
  183. <span v-if="scope.row.is_check == 1">已审核</span>
  184. <span v-if="scope.row.is_check == 2">未审核</span>
  185. </template>
  186. </el-table-column>
  187. <el-table-column label="操作" align="center" width="240">
  188. <template slot-scope="scope">
  189. <el-tooltip
  190. class="item"
  191. effect="dark"
  192. content="编辑"
  193. placement="top"
  194. >
  195. <el-button
  196. size="mini"
  197. type="primary"
  198. icon="el-icon-edit-outline"
  199. @click="handleEdit(scope.$index, scope.row)"
  200. >
  201. </el-button>
  202. </el-tooltip>
  203. <el-tooltip
  204. class="item"
  205. effect="dark"
  206. content="删除"
  207. placement="top"
  208. >
  209. <el-button
  210. size="mini"
  211. type="danger"
  212. :disabled="scope.row.is_sys == 1"
  213. icon="el-icon-delete"
  214. @click="handleDelete(scope.$index, scope.row)"
  215. >
  216. </el-button>
  217. </el-tooltip>
  218. </template>
  219. </el-table-column>
  220. </el-table>
  221. <el-pagination
  222. @size-change="handleSizeChange"
  223. @current-change="handleCurrentChange"
  224. :page-sizes="[5, 10, 50, 100]"
  225. :page-size="5"
  226. background
  227. style="margin-top: 20px; text-align: right"
  228. layout="total, sizes, prev, pager, next, jumper"
  229. :total="total"
  230. >
  231. </el-pagination>
  232. <!-- 使用详情 -->
  233. <div v-show="tableShow" style="margin-top: 10px">
  234. <el-table
  235. :data="tableList"
  236. :class="signAndWeighBoxPatients"
  237. style="width: 100%"
  238. border
  239. highlight-current-row
  240. ref="multipleTableOne"
  241. @selection-change="select"
  242. :row-style="{ color: '#303133' }"
  243. :header-cell-style="{
  244. backgroundColor: 'rgb(245, 247, 250)',
  245. color: '#606266',
  246. }"
  247. :cell-class-name="cellStyle"
  248. >
  249. <el-table-column label="药品名称" align="center">
  250. <template slot-scope="scope">
  251. {{ scope.row.drug_name }}
  252. </template>
  253. </el-table-column>
  254. <el-table-column label="药品类型" align="center">
  255. <template slot-scope="scope">
  256. {{ getDrugType(scope.row.drug_type) }}
  257. </template>
  258. </el-table-column>
  259. <el-table-column label="规格&单位" align="center">
  260. <template slot-scope="scope">
  261. {{ scope.row.dose }}&nbsp;{{ scope.row.dose_unit }}*{{
  262. scope.row.min_number
  263. }}{{ scope.row.min_unit }}/{{ scope.row.max_unit }}
  264. </template>
  265. </el-table-column>
  266. <el-table-column label="国家编码" align="center">
  267. <template slot-scope="scope">
  268. {{ scope.row.medical_insurance_number }}
  269. </template>
  270. </el-table-column>
  271. <!-- <el-table-column label="仓库名称" align="center">
  272. <template slot-scope="scope">
  273. {{ getHouseName(scope.row.storehouse_id) }}
  274. </template>
  275. </el-table-column> -->
  276. <el-table-column label="仓库名称" align="center">
  277. <template slot-scope="scope">
  278. <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
  279. <td style="border-right: none; border-inline-end:none;text-align: center">
  280. {{ getHouseName(item.storehouse_id) }}
  281. </td>
  282. </tr>
  283. </template>
  284. </el-table-column>
  285. <el-table-column label="出库数量" align="center">
  286. <template slot-scope="scope">
  287. <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
  288. <td style="border-right: none; border-inline-end:none;text-align: center">
  289. <span v-if="is_sys==1 || is_sys == 5">{{getOutCountSix(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number,scope.row.drug_id)}}</span>
  290. <span v-if="is_sys == 12">{{getOutCountTen(item.count,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
  291. <span v-if="is_sys == 0"> {{getOutCountOne(item.batch_number,scope.row.max_unit,scope.row.min_unit,scope.row.min_number,scope.row.drug_id)}} </span>
  292. </td>
  293. </tr>
  294. </template>
  295. </el-table-column>
  296. <el-table-column label="批次" align="center">
  297. <template slot-scope="scope">
  298. <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
  299. <td style="border-right: none; border-inline-end:none;text-align: center">
  300. <span v-if="is_sys == 1 || is_sys == 5">
  301. {{getBatchNumber(item.warehousing_detail_id)}}
  302. </span>
  303. <span v-if="is_sys == 12">{{getBatchNumber(item.warehousing_detail_id)}}</span>
  304. <span v-if="is_sys == 0">{{getBatchNumberOne(item.batch_number)}}</span>
  305. </td>
  306. </tr>
  307. </template>
  308. </el-table-column>
  309. <el-table-column label="出库对象" align="center" v-if="is_sys == 0">
  310. <template slot-scope="scope">
  311. <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
  312. <td style="border-right: none; border-inline-end: none;text-align: center">
  313. {{getXuserName(scope.row.admin_user_id)}}
  314. </td>
  315. </tr>
  316. </template>
  317. </el-table-column>
  318. <el-table-column label="单价" align="center">
  319. <template slot-scope="scope">
  320. <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
  321. <td style="border-right: none; border-inline-end: none;text-align: center">
  322. <span v-if="is_sys == 1 || is_sys == 5 || is_sys == 12">{{getPrice(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
  323. <span v-if="is_sys == 0">
  324. <span v-if="scope.row.child.length == 1">
  325. {{getPriceTwo(item.warehouse_out_id,item.drug_id)}}
  326. </span>
  327. <span v-if="scope.row.child.length > 1">
  328. {{item.price}}
  329. </span>
  330. </span>
  331. </td>
  332. </tr>
  333. </template>
  334. </el-table-column>
  335. <el-table-column label="总价" align="center">
  336. <template slot-scope="scope">
  337. <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
  338. <td style="border-right: none; border-inline-end: none;text-align: center">
  339. <span v-if="org_id!=0 && org_id!=10480 && org_id!=10210">
  340. <span v-if="is_sys == 1 || is_sys == 5 || is_sys == 12">{{getTotalPrice(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}} </span>
  341. <span v-if="is_sys == 0">
  342. <span v-if="scope.row.child.length == 1">{{item.retail_price}}</span>
  343. <span v-if="scope.row.child.length > 1">{{item.count * item.price}}</span>
  344. </span>
  345. </span>
  346. <span v-if="org_id==0 || org_id ==10480 || org_id==10210">
  347. <!-- {{(item.count * item.price).toFixed(2)}} -->
  348. <span v-if="is_sys == 1 || is_sys == 5 || is_sys == 12">{{(getOutCountNightTen(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number,scope.row.drug_id)*item.price).toFixed(2)}}</span>
  349. <span v-if="is_sys==0"> {{(getOutCountNightTenOne(item.batch_number,scope.row.max_unit,scope.row.min_unit,scope.row.min_number,scope.row.drug_id)*item.price).toFixed(2)}}</span>
  350. </span>
  351. </td>
  352. </tr>
  353. </template>
  354. </el-table-column>
  355. <el-table-column label="生产厂家" align="center">
  356. <template slot-scope="scope">
  357. <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
  358. <td style="border-right: none; border-inline-end: none;text-align: center">
  359. <span v-if="is_sys == 1 || is_sys == 5 || is_sys == 12"> {{getAllManufacturerName(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
  360. <span v-if="is_sys == 0"> {{getManufacturerName(scope.row.manufacturer)}}</span>
  361. </td>
  362. </tr>
  363. </template>
  364. </el-table-column>
  365. <el-table-column label="生产日期" align="center">
  366. <template slot-scope="scope">
  367. <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
  368. <td style="border-right: none; border-inline-end: none;text-align: center">
  369. <span v-if="is_sys == 1 || is_sys == 5 || is_sys == 12"> {{getProductDate(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
  370. <span v-if="is_sys == 0"> {{getTime(scope.row.product_date)}}</span>
  371. </td>
  372. </tr>
  373. </template>
  374. </el-table-column>
  375. <el-table-column label="有效日期" align="center">
  376. <template slot-scope="scope">
  377. <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
  378. <td style="border-right: none; border-inline-end: none;text-align: center">
  379. <span v-if="is_sys == 1 || is_sys == 5 || is_sys == 12"> {{getExpiryDate(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
  380. <span v-if="is_sys == 0"> {{getTime(scope.row.expiry_date)}}</span>
  381. </td>
  382. </tr>
  383. </template>
  384. </el-table-column>
  385. <el-table-column label="经销商" align="center">
  386. <template slot-scope="scope">
  387. <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
  388. <td style="border-right: none; border-inline-end: none;text-align: center">
  389. <span v-if="is_sys ==1 || is_sys ==5 || is_sys ==12">{{getDealer(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
  390. <span v-if="is_sys ==0">{{getDealerName(scope.row.dealer)}}</span>
  391. </td>
  392. </tr>
  393. </template>
  394. </el-table-column>
  395. <el-table-column label="批准文号" align="center">
  396. <template slot-scope="scope">
  397. <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
  398. <td style="border-right: none; border-inline-end: none;text-align: center">
  399. <span v-if="is_sys == 1 || is_sys == 5 || is_sys == 12">{{getNumber(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
  400. <span v-if="is_sys == 0">{{scope.row.number}}</span>
  401. </td>
  402. </tr>
  403. </template>
  404. </el-table-column>
  405. <el-table-column label="备注" align="center">
  406. <template slot-scope="scope">
  407. <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
  408. <td style="border-right: none; border-inline-end: none;text-align: center">
  409. <span v-if="is_sys == 1 || is_sys == 5 || is_sys == 12">{{getRemark(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
  410. <span v-if="is_sys == 0">{{scope.row.remark}}</span>
  411. </td>
  412. </tr>
  413. </template>
  414. </el-table-column>
  415. <el-table-column label="操作" align="center">
  416. <template slot-scope="scope">
  417. <span style="color: #589ff8" @click="toDetail(scope.row)"
  418. >使用明细</span
  419. >
  420. </template>
  421. </el-table-column>
  422. </el-table>
  423. </div>
  424. </div>
  425. <el-dialog title="提示" :visible.sync="drugDialogVisible" width="90%">
  426. <span>
  427. <el-table
  428. :data="userList"
  429. :class="signAndWeighBoxPatients"
  430. style="width: 50%"
  431. border
  432. :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }"
  433. >
  434. <el-table-column min-width="35" align="center">
  435. <template slot="header" slot-scope="scope">
  436. <span>序号</span>
  437. </template>
  438. <template slot-scope="scope">
  439. {{ scope.$index + 1 }}
  440. </template>
  441. </el-table-column>
  442. <el-table-column min-width="35" align="center">
  443. <template slot="header" slot-scope="scope">
  444. <span>使用人</span>
  445. </template>
  446. <template slot-scope="scope">
  447. {{ scope.row.user.name }}
  448. </template>
  449. </el-table-column>
  450. <el-table-column min-width="35" align="center">
  451. <template slot="header" slot-scope="scope">
  452. <span>使用数量</span>
  453. </template>
  454. <template slot-scope="scope">
  455. <span>{{ scope.row.count }}{{ scope.row.count_unit }}</span>
  456. </template>
  457. </el-table-column>
  458. <el-table-column min-width="35" align="center">
  459. <template slot="header" slot-scope="scope">
  460. <span>使用时间</span>
  461. </template>
  462. <template slot-scope="scope">
  463. <span
  464. >{{ scope.row.ctime | parseTime("{y}-{m}-{d}") }}
  465. </span>
  466. </template>
  467. </el-table-column>
  468. </el-table>
  469. </span>
  470. <span slot="footer" class="dialog-footer">
  471. <el-button @click="drugDialogVisible = false">取 消</el-button>
  472. <el-button type="primary" @click="drugDialogVisible = false"
  473. >确 定</el-button
  474. >
  475. </span>
  476. </el-dialog>
  477. <el-dialog title="提示" :visible.sync="drugDialogVisibleTwo" width="90%">
  478. <span>
  479. <el-table
  480. :data="userListOne"
  481. :class="signAndWeighBoxPatients"
  482. style="width: 50%"
  483. border
  484. :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }"
  485. >
  486. <el-table-column min-width="35" align="center">
  487. <template slot="header" slot-scope="scope">
  488. <span>序号</span>
  489. </template>
  490. <template slot-scope="scope">
  491. {{ scope.$index + 1 }}
  492. </template>
  493. </el-table-column>
  494. <el-table-column min-width="35" align="center">
  495. <template slot="header" slot-scope="scope">
  496. <span>使用人</span>
  497. </template>
  498. <template slot-scope="scope">
  499. <span>系统</span>
  500. </template>
  501. </el-table-column>
  502. <el-table-column min-width="35" align="center">
  503. <template slot="header" slot-scope="scope">
  504. <span>使用数量</span>
  505. </template>
  506. <template slot-scope="scope">
  507. {{ scope.row.count }}{{ scope.row.count_unit }}
  508. </template>
  509. </el-table-column>
  510. <el-table-column min-width="35" align="center">
  511. <template slot="header" slot-scope="scope">
  512. <span>使用时间</span>
  513. </template>
  514. <template slot-scope="scope">
  515. <span
  516. >{{ scope.row.ctime | parseTime("{y}-{m}-{d}") }}
  517. </span>
  518. </template>
  519. </el-table-column>
  520. </el-table>
  521. </span>
  522. <span slot="footer" class="dialog-footer">
  523. <el-button @click="drugDialogVisibleTwo = false">取 消</el-button>
  524. <el-button type="primary" @click="drugDialogVisibleTwo = false"
  525. >确 定</el-button
  526. >
  527. </span>
  528. </el-dialog>
  529. </div>
  530. </template>
  531. <script>
  532. import { uParseTime } from "@/utils/tools";
  533. import { fetchAllAdminUsers, fetchAllDoctorAndNurse } from "@/api/doctor";
  534. import {
  535. deleteDrugWarehouseOut,
  536. GetAllConfig,
  537. getDrugWarehouseOutList,
  538. getDrugWarehouseOutUser,
  539. getDrugAutoMaticList,
  540. getSinleOrderDetail,
  541. getAutoDrugDetail,
  542. getDrugCountList,
  543. getExportOutOrderDrugList,
  544. } from "@/api/drug/drug_stock";
  545. import BreadCrumb from "../../components/bread-crumb";
  546. import { getInitializtion } from "@/api/stock";
  547. export default {
  548. name: "salesReturnOrder",
  549. components: { BreadCrumb },
  550. created() {
  551. if (this.$route.path == "/Pharmacy/drugs/stock/out") {
  552. this.crumbs = [
  553. { path: false, name: "药品管理" },
  554. { path: "/stock/drugs/stock/query", name: "出库单·" },
  555. ];
  556. }
  557. this.org_id = this.$store.getters.xt_user.org.id;
  558. var nowDate = new Date();
  559. var nowYear = nowDate.getFullYear();
  560. var nowMonth = nowDate.getMonth() + 1;
  561. var nowDay = nowDate.getDate();
  562. this.end_time =
  563. nowYear +
  564. "-" +
  565. (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
  566. "-" +
  567. (nowDay < 10 ? "0" + nowDay : nowDay);
  568. nowDate.setMonth(nowDate.getMonth() - 1);
  569. nowYear = nowDate.getFullYear();
  570. nowMonth = nowDate.getMonth() + 1;
  571. nowDay = nowDate.getDate();
  572. this.start_time =
  573. nowYear +
  574. "-" +
  575. (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
  576. "-" +
  577. (nowDay < 10 ? "0" + nowDay : nowDay);
  578. this.GetWarehouseOut();
  579. this.fetchAllAdminUsers();
  580. this.getDrugCountList();
  581. this.getInitializtion();
  582. },
  583. data() {
  584. return {
  585. searchKey: "",
  586. crumbs: [
  587. { path: false, name: "库存管理" },
  588. { path: false, name: "出库单" },
  589. ],
  590. page: 1,
  591. limit: 5,
  592. check_id: 0,
  593. checked: false,
  594. total: 0,
  595. pageTotal: 0,
  596. pageSelect: 0,
  597. adminUserOptions: [],
  598. multipleSelection: [],
  599. signAndWeighBoxPatients: "sign-and-weigh-box-patients",
  600. start_time: "",
  601. warehouseOutDate: [],
  602. end_time: "",
  603. goodType: [],
  604. goodInfo: [],
  605. manufacturer: [],
  606. selectedTableData: [],
  607. dealer: [],
  608. type: 1,
  609. dialogVisible: false,
  610. dialogVisibleTwo: false,
  611. warehousingOutInfo: {
  612. loading: false,
  613. warehousingOutData: [],
  614. info: {},
  615. },
  616. userList: [],
  617. list: [],
  618. drugConfig: {},
  619. drugList: [],
  620. tableList: [],
  621. drugTypeList: [],
  622. tableShow: false,
  623. manufacturerList: [],
  624. drugDialogVisible: false,
  625. drugDialogVisibleTwo: false,
  626. order_id: 0,
  627. dealerList: [],
  628. countList: [],
  629. outCountList: [],
  630. autoCountList: [],
  631. keyword: "",
  632. drug_type: 0,
  633. minCount: [],
  634. drugOutList: [],
  635. outList: [],
  636. userListOne: [],
  637. exportList: [],
  638. batchNumberList: [],
  639. drugFlowList: [],
  640. houseList: [],
  641. storehouse_id: 0,
  642. is_sys: 0,
  643. org_id: 0,
  644. way_type: 0,
  645. wayList: [
  646. { id: 0, name: "全部" },
  647. { id: 1, name: "手动出库" },
  648. { id: 2, name: "自动出库" },
  649. { id: 3, name: "调拨出库" },
  650. { id: 4, name: "结算出库" },
  651. ],
  652. check_type:0,
  653. checkList:[
  654. {id:0,name:"全部"},
  655. {id:1,name:"已审核"},
  656. {id:2,name:"未审核"},
  657. ],
  658. tabList:[],
  659. tabListOne:[],
  660. drugOutInfo:[],
  661. warehouseOutList:[],
  662. exportLoding:false,
  663. outInfoList:[],
  664. };
  665. },
  666. methods: {
  667. changeTypeName() {
  668. this.getlist();
  669. },
  670. getlist() {
  671. var params = {
  672. check_id: this.check_id,
  673. start_time: this.start_time,
  674. end_time: this.end_time,
  675. keyword: this.keywords,
  676. page: this.page,
  677. limit: this.limit,
  678. };
  679. getAllSecondOrderList(params).then((response) => {
  680. if (response.data.state == 1) {
  681. var list = response.data.data.list;
  682. this.tableList = list;
  683. var total = response.data.data.total;
  684. this.total = total;
  685. this.houseList = response.data.data.houseList;
  686. this.doctorList = response.data.data.doctorList;
  687. }
  688. });
  689. },
  690. search: function () {
  691. const Params = {
  692. page: this.page,
  693. limit: this.limit,
  694. start_time: this.start_time,
  695. end_time: this.end_time,
  696. type: this.type,
  697. keywords: this.searchKey,
  698. storehouse_id: this.storehouse_id,
  699. way_type: this.way_type,
  700. check_type:this.check_type,
  701. };
  702. this.warehouseOutDate = [];
  703. getDrugWarehouseOutList(Params).then((response) => {
  704. if (response.data.state == 0) {
  705. this.$message.error(response.data.msg);
  706. return false;
  707. } else {
  708. this.total = response.data.data.total;
  709. for (let i = 0; i < response.data.data.list.length; i++) {
  710. this.warehouseOutDate.push(response.data.data.list[i]);
  711. }
  712. var obj = { id: 0, storehouse_name: "全部" };
  713. this.houseList = [];
  714. this.houseList.push(obj);
  715. for (let i = 0; i < response.data.data.houseList.length; i++) {
  716. this.houseList.push(response.data.data.houseList[i]);
  717. }
  718. }
  719. });
  720. },
  721. AddNewOrder: function () {
  722. if (this.$route.path == "/Pharmacy/drugs/stock/out") {
  723. this.$router.push({
  724. name: "drugStockOutOrderAdd_Pharmacy",
  725. query: { type: this.type },
  726. });
  727. } else {
  728. this.$router.push({
  729. name: "drugStockOutOrderAdd",
  730. query: { type: this.type },
  731. });
  732. }
  733. },
  734. GetWarehouseOut: function () {
  735. const Params = {
  736. page: this.page,
  737. limit: this.limit,
  738. start_time: this.start_time,
  739. end_time: this.end_time,
  740. type: this.type,
  741. keywords: this.searchKey,
  742. storehouse_id: this.storehouse_id,
  743. way_type: this.way_type,
  744. check_type:this.check_type,
  745. };
  746. this.warehouseOutDate = [];
  747. getDrugWarehouseOutList(Params).then((response) => {
  748. if (response.data.state == 0) {
  749. this.$message.error(response.data.msg);
  750. return false;
  751. } else {
  752. this.total = response.data.data.total;
  753. for (let i = 0; i < response.data.data.list.length; i++) {
  754. this.warehouseOutDate.push(response.data.data.list[i]);
  755. }
  756. var obj = { id: 0, storehouse_name: "全部" };
  757. this.houseList = [];
  758. this.houseList.push(obj);
  759. for (let i = 0; i < response.data.data.houseList.length; i++) {
  760. this.houseList.push(response.data.data.houseList[i]);
  761. }
  762. }
  763. });
  764. },
  765. getXuserName(id) {
  766. if (id <= 0) {
  767. return "";
  768. }
  769. var name = "";
  770. if (
  771. this.adminUserOptions == null ||
  772. typeof this.adminUserOptions.length === "undefined"
  773. ) {
  774. return name;
  775. }
  776. var leng = this.adminUserOptions.length;
  777. if (leng == 0) {
  778. return name;
  779. }
  780. for (let index = 0; index < leng; index++) {
  781. if (this.adminUserOptions[index].id == id) {
  782. name = this.adminUserOptions[index].name;
  783. break;
  784. }
  785. }
  786. return name;
  787. },
  788. fetchAllAdminUsers() {
  789. fetchAllAdminUsers().then((response) => {
  790. if (response.data.state == 1) {
  791. this.adminUserOptions = response.data.data.users;
  792. var alen = this.adminUserOptions.length;
  793. for (let index = 0; index < alen; index++) {
  794. if (this.adminUserOptions[index].user_type == 2) {
  795. // this.doctorOptions.push(this.adminUserOptions[index]);
  796. }
  797. }
  798. }
  799. });
  800. },
  801. handleSelectionChange: function (val) {
  802. this.multipleSelection = val;
  803. },
  804. handleSizeChange(val) {
  805. this.limit = val;
  806. this.GetWarehouseOut();
  807. },
  808. handleCurrentChange(val) {
  809. this.page = val;
  810. this.GetWarehouseOut();
  811. },
  812. startTimeChange(val) {
  813. var time = this.getTimestamp(val) - this.getTimestamp(this.end_time);
  814. if (time > 0) {
  815. this.$message.error("结束时间不能小于开始时间");
  816. this.start_time = "";
  817. } else {
  818. this.GetWarehouseOut();
  819. }
  820. },
  821. endTimeChange(val) {
  822. var time = this.getTimestamp(val) - this.getTimestamp(this.start_time);
  823. if (time < 0) {
  824. this.$message.error("结束时间不能小于开始时间");
  825. this.end_time = "";
  826. } else {
  827. this.GetWarehouseOut();
  828. }
  829. },
  830. getTimestamp(time) {
  831. // 把时间日期转成时间戳
  832. return new Date(time).getTime() / 1000;
  833. },
  834. calculate: function (val) {
  835. return Math.round(parseFloat(val) * 100) / 100;
  836. },
  837. GetConfigInfo: function () {
  838. GetAllConfig().then((response) => {
  839. if (response.data.state == 0) {
  840. this.$message.error(response.data.msg);
  841. return false;
  842. } else {
  843. this.manufacturer = response.data.data.manufacturer;
  844. this.dealer = response.data.data.dealer;
  845. }
  846. });
  847. },
  848. handleEdit: function (index, row) {
  849. this.$router.push({
  850. path:
  851. "/drug/out/drugstockoutorderedit?id=" +
  852. row.id +
  853. "&type=" +
  854. this.type +
  855. "&is_sys=" +
  856. row.is_sys +
  857. "&supply_cancel_out_id=" +
  858. row.supply_cancel_out_id+"&is_check="+row.is_check
  859. });
  860. },
  861. handleSearch(val) {
  862. this.is_sys = val.is_sys;
  863. this.getInitializtion();
  864. this.getSinleOrderDetail(val.id, val.warehouse_out_time, val.is_sys);
  865. this.list = [];
  866. },
  867. handleDelete: function (index, row) {
  868. if (row.is_sys == 5) {
  869. this.$message.error("结算出库数据不能删除!");
  870. return;
  871. }
  872. if (row.is_sys == 12) {
  873. this.$message.error("调拨出库数据不能删除!");
  874. return;
  875. }
  876. if (row.supply_cancel_out_id > 0) {
  877. this.$message.error("采购出库数据不能删除!");
  878. return;
  879. }
  880. if(row.is_check == 1){
  881. this.$message.error("已审核的单据不能删除!")
  882. return false
  883. }
  884. const ids = [];
  885. ids.push(row.id);
  886. const idStr = ids.join(",");
  887. const params = {
  888. ids: idStr,
  889. };
  890. this.$confirm("确认删除出库单记录?", "删除出库单记录", {
  891. confirmButtonText: "确定",
  892. cancelButtonText: "取消",
  893. type: "warning",
  894. })
  895. .then(() => {
  896. deleteDrugWarehouseOut(params).then((response) => {
  897. if (response.data.state == 0) {
  898. this.$message.error(response.data.msg);
  899. return false;
  900. } else {
  901. this.$notify({
  902. title: "成功",
  903. message: "删除成功",
  904. type: "success",
  905. duration: 2000,
  906. });
  907. for (let i = 0; i < ids.length; i++) {
  908. for (let y = 0; y < this.warehouseOutDate.length; y++) {
  909. if (ids[i] == this.warehouseOutDate[y].id) {
  910. this.warehouseOutDate.splice(y, 1);
  911. }
  912. }
  913. }
  914. }
  915. });
  916. })
  917. .catch(() => {});
  918. },
  919. changeAllSelected: function (val) {
  920. if (val) {
  921. this.$refs.multipleTable.toggleAllSelection();
  922. } else {
  923. this.$refs.multipleTable.clearSelection();
  924. }
  925. },
  926. select(selection) {
  927. var ids = [];
  928. for (let i = 0; i < selection.length; i++) {
  929. ids.push(selection[i].id);
  930. }
  931. this.order_id = ids.join(",");
  932. this.selectedTableData = selection;
  933. this.getExportOutOrderDrugList();
  934. },
  935. batchDelete() {
  936. if (this.selectedTableData.length <= 0) {
  937. this.$message.error("请选择要删除的记录");
  938. return;
  939. }
  940. const ids = [];
  941. const idsOne = [];
  942. for (let i = 0; i < this.selectedTableData.length; i++) {
  943. if(this.selectedTableData[i].is_check == 1){
  944. this.$message.error("已审核单据不能删除!")
  945. return false
  946. }
  947. if (this.selectedTableData[i].is_sys == 1) {
  948. this.$message.error("自动出库数据不能删除!");
  949. return false;
  950. }
  951. if (this.selectedTableData[i].is_sys == 12) {
  952. this.$message.error("调拨出库数据不能删除!");
  953. return false;
  954. }
  955. if (this.selectedTableData[i].is_sys == 5) {
  956. this.$message.error("结算出库数据不能删除!");
  957. return false;
  958. }
  959. if (this.selectedTableData[i].is_sys == 0) {
  960. ids.push(this.selectedTableData[i].id);
  961. if(this.selectedTableData[i].supply_cancel_out_id >0){
  962. idsOne.push(this.selectedTableData[i].supply_cancel_out_id);
  963. }
  964. }
  965. }
  966. if (idsOne.length > 0) {
  967. this.$message.error("采购出库数据不能删除!");
  968. return;
  969. }
  970. const idStr = ids.join(",");
  971. const params = {
  972. ids: idStr,
  973. };
  974. this.$confirm("确认删除出库单记录?", "删除出库单记录", {
  975. confirmButtonText: "确定",
  976. cancelButtonText: "取消",
  977. type: "warning",
  978. })
  979. .then(() => {
  980. deleteDrugWarehouseOut(params).then((response) => {
  981. if (response.data.state == 0) {
  982. this.$message.error(response.data.msg);
  983. return false;
  984. } else {
  985. this.$notify({
  986. title: "成功",
  987. message: "删除成功",
  988. type: "success",
  989. duration: 2000,
  990. });
  991. for (let i = 0; i < ids.length; i++) {
  992. for (let y = 0; y < this.warehouseOutDate.length; y++) {
  993. if (ids[i] == this.warehouseOutDate[y].id) {
  994. this.warehouseOutDate.splice(y, 1);
  995. }
  996. }
  997. }
  998. }
  999. });
  1000. })
  1001. .catch(() => {});
  1002. },
  1003. jump(id) {
  1004. this.GetOrderDetailTwo(id);
  1005. this.userList = [];
  1006. this.dialogVisibleTwo = true;
  1007. },
  1008. GetOrderDetailTwo(order_id) {
  1009. const params = {
  1010. id: order_id,
  1011. };
  1012. getDrugWarehouseOutUser(params).then((response) => {
  1013. if (response.data.state == 0) {
  1014. this.$message.error(response.data.msg);
  1015. return false;
  1016. } else {
  1017. this.userList = [];
  1018. var total = 0;
  1019. for (let i = 0; i < response.data.data.list.length; i++) {
  1020. var obj = response.data.data.list[i];
  1021. obj["is_total"] = 0;
  1022. this.userList.push(obj);
  1023. total = total + response.data.data.list[i].count;
  1024. }
  1025. this.userList.push({
  1026. is_total: 1,
  1027. total: total,
  1028. });
  1029. }
  1030. });
  1031. },
  1032. merge({ row, column, rowIndex, columnIndex }) {
  1033. if (columnIndex === 0) {
  1034. const _row = this.tempArr[rowIndex];
  1035. const _col = _row > 0 ? 1 : 0;
  1036. return {
  1037. rowspan: _row,
  1038. colspan: _col,
  1039. };
  1040. }
  1041. },
  1042. handleSpanTempArr() {
  1043. this.tempArr = [];
  1044. for (
  1045. let i = 0;
  1046. i < this.warehousingOutInfo.warehousingOutData.length;
  1047. i++
  1048. ) {
  1049. if (i === 0) {
  1050. this.tempArr.push(1);
  1051. this.pos = 0;
  1052. } else {
  1053. // 判断当前元素与上一个元素是否相同
  1054. if (
  1055. this.warehousingOutInfo.warehousingOutData[i].drug_id ===
  1056. this.warehousingOutInfo.warehousingOutData[i - 1].drug_id
  1057. ) {
  1058. this.tempArr[this.pos] += 1;
  1059. this.tempArr.push(0);
  1060. } else {
  1061. this.tempArr.push(1);
  1062. this.pos = i;
  1063. }
  1064. }
  1065. }
  1066. let sameRowArr = [],
  1067. sIdx = 0;
  1068. this.warehousingOutInfo.warehousingOutData.forEach((item, index) => {
  1069. item.index = index;
  1070. if (index === 0) {
  1071. sameRowArr.push([index]);
  1072. } else {
  1073. if (
  1074. item.drug_id ===
  1075. this.warehousingOutInfo.warehousingOutData[index - 1].drug_id
  1076. ) {
  1077. sameRowArr[sIdx].push(index);
  1078. } else {
  1079. sIdx = sIdx + 1;
  1080. sameRowArr.push([index]);
  1081. }
  1082. }
  1083. });
  1084. this.sameRowArr = sameRowArr;
  1085. },
  1086. // getDrugAutoMaticList(id, recordTime, warehouse_out_order_number) {
  1087. // var params = {
  1088. // warehous_out_id: id,
  1089. // record_time: recordTime,
  1090. // warehouse_out_order_number: warehouse_out_order_number,
  1091. // };
  1092. // getDrugAutoMaticList(params).then((response) => {
  1093. // if (response.data.state == 1) {
  1094. // var list = response.data.data.list;
  1095. // this.list = list;
  1096. // var drugConfig = response.data.data.drugConfig;
  1097. // this.drugConfig = drugConfig;
  1098. // var drugList = response.data.data.drugList;
  1099. // this.drugList = drugList;
  1100. // var manulist = response.data.data.manufacturerList;
  1101. // this.manufacturerList = manulist;
  1102. // }
  1103. // });
  1104. // },
  1105. getDrugCount(id) {
  1106. var count = 0;
  1107. for (let i = 0; i < this.list.length; i++) {
  1108. if (this.list[i].drug_id == id) {
  1109. count = this.list[i].Total;
  1110. }
  1111. }
  1112. return count;
  1113. },
  1114. getRetailPrice(id) {
  1115. var price = 0;
  1116. for (let i = 0; i < this.drugList.length; i++) {
  1117. if (id == this.drugList[i].id) {
  1118. price = this.drugList[i].retail_price;
  1119. }
  1120. }
  1121. return price;
  1122. },
  1123. getTime(val) {
  1124. if (val < 0) {
  1125. return "";
  1126. }
  1127. if (val == "") {
  1128. return "";
  1129. } else {
  1130. return uParseTime(val, "{y}-{m}-{d}");
  1131. }
  1132. },
  1133. getInitializtion() {
  1134. getInitializtion().then((response) => {
  1135. if (response.data.state == 1) {
  1136. var drugTypeList = response.data.data.drugTypeList;
  1137. this.drugTypeList = drugTypeList;
  1138. }
  1139. });
  1140. },
  1141. getDrugType(id) {
  1142. var name = "";
  1143. for (let i = 0; i < this.drugTypeList.length; i++) {
  1144. if (id == this.drugTypeList[i].value) {
  1145. name = this.drugTypeList[i].name;
  1146. }
  1147. }
  1148. return name;
  1149. },
  1150. getManufacturerName(id) {
  1151. var name = "";
  1152. for (let i = 0; i < this.manufacturerList.length; i++) {
  1153. if (id == this.manufacturerList[i].id) {
  1154. name = this.manufacturerList[i].manufacturer_name;
  1155. }
  1156. }
  1157. return name;
  1158. },
  1159. getDealerName(id) {
  1160. var name = "";
  1161. for (let i = 0; i < this.dealerList.length; i++) {
  1162. if (id == this.dealerList[i].id) {
  1163. name = this.dealerList[i].dealer_name;
  1164. }
  1165. }
  1166. return name;
  1167. },
  1168. getSinleOrderDetail(id, start_time, is_sys) {
  1169. var params = {
  1170. id: id,
  1171. start_time: start_time,
  1172. };
  1173. getSinleOrderDetail(params).then((response) => {
  1174. if (response.data.state == 1) {
  1175. this.tableShow = true;
  1176. this.tableList = [];
  1177. //流水详情
  1178. var list = response.data.data.list;
  1179. this.warehouseOutList = list
  1180. this.manufacturerList = response.data.data.manufacturerList;
  1181. this.dealerList = response.data.data.dealerList;
  1182. //详情(xt_drug_automatic_reduce_detail)
  1183. var drugFlowList = response.data.data.drugFlowList;
  1184. //流水详情
  1185. var drugList = response.data.data.drugList
  1186. this.tabList = drugList
  1187. //按批号分组
  1188. var drugListOne = response.data.data.drugListFlow
  1189. //按批号分组
  1190. var drugListTwo= response.data.data.drugListOne
  1191. //出库详情
  1192. var drugoutlist = response.data.data.drugoutlist
  1193. this.outList = drugoutlist
  1194. this.drugOutInfo = drugoutlist
  1195. if (is_sys == 1) {
  1196. console.log("数据1",drugFlowList)
  1197. console.log("数据2",drugListOne)
  1198. if (drugFlowList.length > 0) {
  1199. for (let i = 0; i < drugFlowList.length; i++) {
  1200. drugFlowList[i].childOne = []
  1201. drugFlowList[i].child = []
  1202. if ((drugFlowList[i].count_unit ==drugFlowList[i].XtBaseDrug.max_unit) && (drugFlowList[i].XtBaseDrug.max_unit!=drugFlowList[i].XtBaseDrug.min_unit)) {
  1203. drugFlowList[i].count =drugFlowList[i].count * drugFlowList[i].XtBaseDrug.min_number;
  1204. }
  1205. if ((drugFlowList[i].count_unit ==drugFlowList[i].XtBaseDrug.min_unit)&& (drugFlowList[i].XtBaseDrug.max_unit!=drugFlowList[i].XtBaseDrug.min_unit) ) {
  1206. drugFlowList[i].count = drugFlowList[i].count;
  1207. }
  1208. if ((drugFlowList[i].count_unit ==drugFlowList[i].XtBaseDrug.min_unit)&& (drugFlowList[i].XtBaseDrug.max_unit==drugFlowList[i].XtBaseDrug.min_unit) ) {
  1209. drugFlowList[i].count = drugFlowList[i].count;
  1210. }
  1211. for(let j=0;j<drugListOne.length;j++){
  1212. if(drugFlowList[i].drug_id == drugListOne[j].drug_id){
  1213. drugFlowList[i].childOne.push(drugListOne[j])
  1214. }
  1215. }
  1216. }
  1217. }
  1218. console.log("以色列",drugFlowList)
  1219. this.drugFlowList = drugFlowList;
  1220. }
  1221. if (is_sys == 0 || is_sys == 12 || is_sys == 5) {
  1222. //出库详情
  1223. var flowlist = response.data.data.flowlist;
  1224. this.drugFlowList = [];
  1225. for (let i = 0; i < flowlist.length; i++) {
  1226. flowlist[i].childOne = []
  1227. flowlist[i].child = []
  1228. if (flowlist[i].count_unit == flowlist[i].max_unit) {
  1229. flowlist[i].count = flowlist[i].count * flowlist[i].min_number;
  1230. flowlist[i].count_unit = flowlist[i].min_unit;
  1231. }
  1232. if (flowlist[i].count_unit == flowlist[i].min_unit) {
  1233. flowlist[i].count = flowlist[i].count;
  1234. }
  1235. }
  1236. this.drugFlowList = flowlist;
  1237. }
  1238. for (let i = 0; i < list.length; i++) {
  1239. if (list[i].batch_number == "0" || list[i].batch_number == 0) {
  1240. list[i].batch_number = "";
  1241. }
  1242. if (list[i].number == "0" || list[i].number == 0) {
  1243. list[i].number = "";
  1244. }
  1245. list[i].child = []
  1246. list[i].childOne = []
  1247. if(list[i].is_sys == 1 ){
  1248. for(let j=0;j<drugListOne.length;j++){
  1249. if(list[i].drug_id == drugListOne[j].drug_id){
  1250. list[i].childOne.push(drugListOne[j])
  1251. }
  1252. }
  1253. }
  1254. if(list[i].is_sys == 0 || list[i].is_sys == 5 || list[i].is_sys == 12){
  1255. for(let j=0;j<drugListTwo.length;j++){
  1256. if(list[i].drug_id == drugListTwo[j].drug_id){
  1257. list[i].childOne.push(drugListTwo[j])
  1258. }
  1259. }
  1260. }
  1261. }
  1262. console.log("中故宫人我奶奶万年万年",list)
  1263. if(is_sys == 1 || is_sys == 5){
  1264. for(let i=0;i<list.length;i++){
  1265. for(let j=0;j<list[i].childOne.length;j++){
  1266. list[i].childOne[j].over_count_total = this.getOutCountSix(list[i].childOne[j].warehousing_detail_id,list[i].max_unit,list[i].min_unit,list[i].min_number,list[i].drug_id)
  1267. }
  1268. }
  1269. console.log("中部listowowowoowowow",list)
  1270. for(let i=0;i<list.length;i++){
  1271. for(let j=0;j<list[i].childOne.length;j++){
  1272. if(list[i].childOne[j].over_count_total !=""){
  1273. list[i].child.push(list[i].childOne[j])
  1274. }
  1275. }
  1276. }
  1277. console.log("list表格---------",list)
  1278. this.tableList = list;
  1279. }
  1280. if(is_sys == 12){
  1281. for(let i=0;i<list.length;i++){
  1282. for(let j=0;j<list[i].childOne.length;j++){
  1283. list[i].childOne[j].over_count_total = this.getOutCountSeven(list[i].childOne[j].warehousing_detail_id,list[i].max_unit,list[i].min_unit,list[i].min_number,list[i].drug_id)
  1284. }
  1285. }
  1286. for(let i=0;i<list.length;i++){
  1287. for(let j=0;j<list[i].childOne.length;j++){
  1288. if(list[i].childOne[j].over_count_total !=""){
  1289. list[i].child.push(list[i].childOne[j])
  1290. }
  1291. }
  1292. }
  1293. console.log("listowowowowo",list)
  1294. this.tableList = list;
  1295. }
  1296. if(is_sys == 0){
  1297. console.log("list999992332232323",list)
  1298. for(let i=0;i<list.length;i++){
  1299. for(let j=0;j<list[i].childOne.length;j++){
  1300. console.log("hhhahhawiiw",this.getOutCountOne(list[i].childOne[j].batch_number,list[i].max_unit,list[i].min_unit,list[i].min_number,list[i].drug_id))
  1301. list[i].childOne[j].over_count_total = this.getOutCountOne(list[i].childOne[j].batch_number,list[i].max_unit,list[i].min_unit,list[i].min_number,list[i].drug_id)
  1302. }
  1303. }
  1304. for(let i=0;i<list.length;i++){
  1305. for(let j=0;j<list[i].childOne.length;j++){
  1306. if(list[i].childOne[j].over_count_total !=""){
  1307. list[i].child.push(list[i].childOne[j])
  1308. }
  1309. }
  1310. }
  1311. this.tableList = list;
  1312. }
  1313. }
  1314. });
  1315. },
  1316. toDetail(val) {
  1317. this.userList = [];
  1318. this.userListOne = [];
  1319. var params = {
  1320. warehouse_out_id: val.warehouse_out_id,
  1321. drug_id: val.drug_id,
  1322. record_time: val.sys_record_time,
  1323. };
  1324. getAutoDrugDetail(params).then((response) => {
  1325. if (response.data.state == 1) {
  1326. this.userList = response.data.data.list;
  1327. if (val.is_sys == 1) {
  1328. this.drugDialogVisible = true;
  1329. }
  1330. if (val.is_sys == 0 || val.is_sys == 12 || val.is_sys == 5) {
  1331. this.drugDialogVisibleTwo = true;
  1332. }
  1333. var userListOne = response.data.data.outList;
  1334. this.userListOne = userListOne;
  1335. var batchNumber = response.data.data.batchNumber;
  1336. this.batchNumberList = batchNumber;
  1337. }
  1338. });
  1339. },
  1340. toPrint() {
  1341. if (this.order_id == 0) {
  1342. this.$message.error("请选择出库单");
  1343. } else {
  1344. this.$router.push({
  1345. path: "/stock/drugStockOutOrderDetailPrint?id=" + this.order_id,
  1346. });
  1347. }
  1348. },
  1349. getDrugCountList() {
  1350. var params = {
  1351. keyword: this.keywords,
  1352. start_time: this.start_time,
  1353. end_time: this.end_time,
  1354. };
  1355. getDrugCountList(params).then((response) => {
  1356. if (response.data.state == 1) {
  1357. var countlist = response.data.data.countList;
  1358. this.countList = countlist;
  1359. var outcountlist = response.data.data.outCountList;
  1360. this.outCountList = outcountlist;
  1361. var aucountlist = response.data.data.auCountList;
  1362. this.autoCountList = aucountlist;
  1363. var minCount = response.data.data.minCount;
  1364. this.minCount = minCount;
  1365. var info = response.data.data.info;
  1366. for (let i = 0; i < info.length; i++) {
  1367. if (info[i].count_unit == info[i].max_unit) {
  1368. info[i].count = info[i].count * info[i].min_number;
  1369. }
  1370. }
  1371. this.drugOutList = info;
  1372. }
  1373. });
  1374. },
  1375. getCount(drug_id, min_number, max_unit, min_unit) {
  1376. var count = 0;
  1377. var str = "";
  1378. var min_str = "";
  1379. for (let i = 0; i < this.drugOutList.length; i++) {
  1380. if (drug_id == this.drugOutList[i].drug_id) {
  1381. count += parseInt(this.drugOutList[i].count);
  1382. }
  1383. }
  1384. if (parseInt(count / min_number) != 0) {
  1385. str = parseInt(count / min_number) + max_unit;
  1386. }
  1387. if (count % min_number != 0) {
  1388. min_str = (count % min_number) + min_unit;
  1389. }
  1390. return str + min_str;
  1391. },
  1392. getTotalCount(drug_id, min_number, max_unit, min_unit) {
  1393. var str = "";
  1394. var min_str = "";
  1395. var arr = [];
  1396. var total = 0;
  1397. for (let i = 0; i < this.outList.length; i++) {
  1398. if (this.outList[i].drug_id == drug_id) {
  1399. total += this.outList[i].count;
  1400. }
  1401. }
  1402. if (total >= min_number) {
  1403. if (parseInt(total / min_number) != 0) {
  1404. str = parseInt(total / min_number) + max_unit;
  1405. }
  1406. if (total % min_number != 0) {
  1407. min_str = (total % min_number) + min_unit;
  1408. }
  1409. }
  1410. if (total < min_number) {
  1411. str = "";
  1412. min_str = total + min_unit;
  1413. }
  1414. return str + min_str;
  1415. },
  1416. getTotalCountOne(id, min_number, max_unit, min_unit) {
  1417. var arr = [];
  1418. for (let i = 0; i < this.drugFlowList.length; i++) {
  1419. if (id == this.drugFlowList[i].drug_id) {
  1420. arr.push(this.drugFlowList[i]);
  1421. }
  1422. }
  1423. var str = "";
  1424. var min_str = "";
  1425. var total = 0;
  1426. if (arr.length > 0) {
  1427. for (let i = 0; i < arr.length; i++) {
  1428. total += arr[i].count;
  1429. }
  1430. if (parseInt(total / min_number) != 0) {
  1431. str = parseInt(total / min_number) + max_unit;
  1432. }
  1433. if (total % min_number != 0) {
  1434. min_str = (total % min_number) + min_unit;
  1435. }
  1436. }
  1437. return str + min_str;
  1438. },
  1439. getAllPrice(drug_id, price, min_price) {
  1440. var strprice = 0;
  1441. var minstrprice = 0;
  1442. var str = "";
  1443. var min_str = "";
  1444. var total_price = 0;
  1445. for (let i = 0; i < this.outList.length; i++) {
  1446. if (this.outList[i].drug_id == drug_id) {
  1447. if (
  1448. parseInt(this.outList[i].count / this.outList[i].min_number) != 0
  1449. ) {
  1450. str = parseInt(this.outList[i].count / this.outList[i].min_number);
  1451. }
  1452. if (this.outList[i].count % this.outList[i].min_number != 0) {
  1453. min_str = this.outList[i].count % this.outList[i].min_number;
  1454. }
  1455. }
  1456. }
  1457. strprice = str * price;
  1458. minstrprice = min_str * min_price;
  1459. total_price = strprice + minstrprice;
  1460. return total_price;
  1461. },
  1462. getDrugBatchNumber(drugid, count) {
  1463. var arr = [];
  1464. for (let i = 0; i < this.batchNumberList.length; i++) {
  1465. if (
  1466. drugid == this.batchNumberList[i].drug_id &&
  1467. count == this.batchNumberList[i].count
  1468. ) {
  1469. arr.push(this.batchNumberList[i].batch_number);
  1470. }
  1471. }
  1472. return arr.join(",");
  1473. },
  1474. getExportOutOrderDrugList() {
  1475. var params = {
  1476. order_id: this.order_id,
  1477. };
  1478. this.exportLoding = true
  1479. getExportOutOrderDrugList(params).then((response) => {
  1480. if (response.data.state == 1) {
  1481. var list = response.data.data.list;
  1482. if(list!=null){
  1483. for(let i=0;i<list.length;i++){
  1484. list[i].count_one =0
  1485. if(list[i].count_unit == list[i].max_unit && list[i].max_unit!=list[i].min_unit){
  1486. list[i].count_one = list[i].count * list[i].min_number
  1487. }
  1488. if(list[i].count_unit == list[i].min_unit && list[i].max_unit!=list[i].min_unit){
  1489. list[i].count_one = list[i].count
  1490. }
  1491. if(list[i].count_unit == list[i].max_unit && list[i].max_unit==list[i].min_unit){
  1492. list[i].count_one = list[i].count
  1493. }
  1494. }
  1495. }
  1496. this.exportList = list;
  1497. this.exportLoding = false
  1498. this.manufacturerList = response.data.data.manufacturerList;
  1499. this.dealerList = response.data.data.dealerList;
  1500. this.outInfoList = response.data.data.outInfoList
  1501. }
  1502. });
  1503. },
  1504. toExport() {
  1505. console.log("EXPORTLSOT",this.exportList)
  1506. if (this.order_id == "") {
  1507. this.$message.error("请勾选出库单");
  1508. return;
  1509. }
  1510. for (let i = 0; i < this.exportList.length; i++) {
  1511. this.exportList[i].retail_price_one = 0
  1512. if(this.outInfoList.length!=null){
  1513. for(let j=0;j<this.outInfoList.length;j++){
  1514. if(this.exportList[i].warehouse_out_id == this.outInfoList[j].warehouse_out_id && this.exportList[i].drug_id == this.outInfoList[j].drug_id){
  1515. this.exportList[i].retail_price_one = this.outInfoList[j].price
  1516. }
  1517. }
  1518. }
  1519. if (this.exportList[i].dealer == 0) {
  1520. this.exportList[i].dealer = "";
  1521. }
  1522. if (this.exportList[i].manufacturer == 0) {
  1523. this.exportList[i].manufacturer = "";
  1524. }
  1525. this.exportList[i].unit =
  1526. this.exportList[i].dose +
  1527. this.exportList[i].dose_unit +
  1528. "*" +
  1529. this.exportList[i].min_number +
  1530. this.exportList[i].min_unit +
  1531. "/" +
  1532. this.exportList[i].max_unit;
  1533. // this.exportList[i].total_price = (this.exportList[i].count * this.exportList[i].price).toFixed(2);
  1534. this.exportList[i].out_count = this.getAllOut(this.exportList[i].count,this.exportList[i].max_unit,this.exportList[i].min_unit,this.exportList[i].min_number)
  1535. this.exportList[i].expiry_date = this.getTime(
  1536. this.exportList[i].expire_date
  1537. );
  1538. this.exportList[i].product_date = this.getTime(
  1539. this.exportList[i].product_date
  1540. );
  1541. for (let j = 0; j < this.manufacturerList.length; j++) {
  1542. if (this.exportList[i].manufacturer == this.manufacturerList[j].id) {
  1543. this.exportList[i].manufacturer = this.manufacturerList[j].manufacturer_name;
  1544. }
  1545. }
  1546. for (let z = 0; z < this.dealerList.length; z++) {
  1547. if (this.exportList[i].dealer == this.dealerList[z].id) {
  1548. this.exportList[i].dealer = this.dealerList[z].dealer_name;
  1549. }
  1550. }
  1551. this.exportList[i].retail_price = (this.exportList[i].count_one * this.exportList[i].min_price).toFixed(2)
  1552. this.exportList[i].ctime = this.getTime(this.exportList[i].ctime)
  1553. }
  1554. import("@/vendor/Export2Excel").then((excel) => {
  1555. for (let i = 0; i < this.exportList.length; i++) {
  1556. for (let j = 0; j < this.drugTypeList.length; j++) {
  1557. if (this.exportList[i].drug_type == this.drugTypeList[j].value) {
  1558. this.exportList[i].drug_type = this.drugTypeList[j].name;
  1559. }
  1560. }
  1561. }
  1562. const tHeader = [
  1563. "单据日期",
  1564. "药品名称",
  1565. "药品类型",
  1566. "规格&单位",
  1567. "批号",
  1568. "出库数量",
  1569. "单价",
  1570. "拆零零售价",
  1571. "总价",
  1572. "生产厂家",
  1573. "生产日期",
  1574. "有效日期",
  1575. "经销商",
  1576. "批准文号",
  1577. "出库时间",
  1578. "备注",
  1579. ];
  1580. const filterVal = [
  1581. "ctime",
  1582. "drug_name",
  1583. "drug_type",
  1584. "unit",
  1585. "batch_number",
  1586. "out_count",
  1587. "retail_price_one",
  1588. "price",
  1589. "retail_price",
  1590. "manufacturer",
  1591. "product_date",
  1592. "expiry_date",
  1593. "dealer",
  1594. "number",
  1595. "ctime",
  1596. "remark",
  1597. ];
  1598. const data = this.formatJson(filterVal, this.exportList);
  1599. console.log("Datewoo2o2o2o",data)
  1600. excel.export_json_to_excel({
  1601. header: tHeader,
  1602. data,
  1603. filename: "药品出库单详情",
  1604. });
  1605. this.downloadLoading = false;
  1606. });
  1607. },
  1608. formatJson(filterVal, jsonData) {
  1609. return jsonData.map((v) => filterVal.map((j) => v[j]));
  1610. },
  1611. getAllPriceOne(
  1612. drug_id,
  1613. price,
  1614. min_price,
  1615. max_unit,
  1616. count_unit,
  1617. min_number,
  1618. is_sys
  1619. ) {
  1620. var total = 0;
  1621. var all_price = 0;
  1622. for (let i = 0; i < this.drugFlowList.length; i++) {
  1623. if (drug_id == this.drugFlowList[i].drug_id) {
  1624. total += this.drugFlowList[i].count;
  1625. }
  1626. }
  1627. if (max_unit == count_unit && is_sys != 0 && is_sys != 12) {
  1628. total = total * min_number;
  1629. }
  1630. all_price = (total / min_number) * price;
  1631. return all_price;
  1632. },
  1633. getHouseName(id) {
  1634. var storehouse_name = "";
  1635. for (let i = 0; i < this.houseList.length; i++) {
  1636. if (id == this.houseList[i].id) {
  1637. storehouse_name = this.houseList[i].storehouse_name;
  1638. }
  1639. }
  1640. return storehouse_name;
  1641. },
  1642. changeStoreHouse() {
  1643. this.GetWarehouseOut();
  1644. },
  1645. changeWay() {
  1646. this.GetWarehouseOut();
  1647. },
  1648. changeCheckType(){
  1649. this.GetWarehouseOut();
  1650. },
  1651. // 合并单元格样式
  1652. cellStyle({ row, column, rowIndex, columnIndex }) {
  1653. let arr = [4,5,6, 7, 8, 9,10,11,12,13,14];
  1654. if (arr.indexOf(columnIndex) > -1) {
  1655. return "spanClass";
  1656. }
  1657. },
  1658. getOutCountSix(warehouse_info_id,max_unit,min_unit,min_number,drug_id){
  1659. var arr = []
  1660. var total = 0
  1661. var max_str = ""
  1662. var min_str = ""
  1663. for(let j=0;j<this.outList.length;j++){
  1664. if(warehouse_info_id == this.outList[j].warehouse_info_id && drug_id == this.outList[j].drug_id){
  1665. arr.push(this.outList[j])
  1666. }
  1667. }
  1668. if(arr.length > 0){
  1669. for(let i=0;i<arr.length;i++){
  1670. total +=arr[i].count
  1671. }
  1672. }
  1673. if (total < min_number) {
  1674. min_str = total + min_unit;
  1675. }
  1676. if (total == 0) {
  1677. min_str = "";
  1678. max_str = "";
  1679. }
  1680. if (total >= min_number) {
  1681. if (parseInt(total / min_number) != 0) {
  1682. max_str = parseInt(total / min_number) + max_unit;
  1683. }
  1684. if (total % min_number != 0) {
  1685. min_str = (total % min_number) + min_unit;
  1686. }
  1687. }
  1688. return max_str + min_str;
  1689. },
  1690. getOutCountSeven(warehouse_info_id,max_unit,min_unit,min_number,drug_id){
  1691. var arr = []
  1692. var total = 0
  1693. var max_str = ""
  1694. var min_str = ""
  1695. for(let j=0;j<this.outList.length;j++){
  1696. if(this.outList[j].count_unit == max_unit){
  1697. this.outList[j].count = this.outList[j].count * min_number
  1698. }
  1699. if(warehouse_info_id == this.outList[j].warehouse_info_id && drug_id == this.outList[j].drug_id){
  1700. arr.push(this.outList[j])
  1701. }
  1702. }
  1703. if(arr.length > 0){
  1704. for(let i=0;i<arr.length;i++){
  1705. total +=arr[i].count
  1706. }
  1707. }
  1708. if (total < min_number) {
  1709. min_str = total + min_unit;
  1710. }
  1711. if (total == 0) {
  1712. min_str = "";
  1713. max_str = "";
  1714. }
  1715. if (total >= min_number) {
  1716. if (parseInt(total / min_number) != 0) {
  1717. max_str = parseInt(total / min_number) + max_unit;
  1718. }
  1719. if (total % min_number != 0) {
  1720. min_str = (total % min_number) + min_unit;
  1721. }
  1722. }
  1723. return max_str + min_str;
  1724. },
  1725. getOutCount(warehouse_info_id,max_unit,min_unit,min_number){
  1726. var arr = []
  1727. var total = 0
  1728. var max_str = ""
  1729. var min_str = ""
  1730. for(let j=0;j<this.tabList.length;j++){
  1731. if(warehouse_info_id == this.tabList[j].warehousing_detail_id){
  1732. arr.push(this.tabList[j])
  1733. }
  1734. }
  1735. if(arr.length > 0){
  1736. for(let i=0;i<arr.length;i++){
  1737. total +=arr[i].count
  1738. }
  1739. }
  1740. if (total < min_number) {
  1741. min_str = total + min_unit;
  1742. }
  1743. if (total == 0) {
  1744. min_str = "";
  1745. max_str = "";
  1746. }
  1747. if (total >= min_number) {
  1748. if (parseInt(total / min_number) != 0) {
  1749. max_str = parseInt(total / min_number) + max_unit;
  1750. }
  1751. if (total % min_number != 0) {
  1752. min_str = (total % min_number) + min_unit;
  1753. }
  1754. }
  1755. return max_str + min_str;
  1756. },
  1757. getOutCountOne(batch_number,max_unit,min_unit,min_number,drug_id){
  1758. var arr = []
  1759. var total = 0
  1760. var max_str = ""
  1761. var min_str = ""
  1762. for(let j=0;j<this.tabList.length;j++){
  1763. if(batch_number == this.tabList[j].batch_number && drug_id == this.tabList[j].drug_id){
  1764. arr.push(this.tabList[j])
  1765. }
  1766. }
  1767. if(arr.length > 0){
  1768. for(let i=0;i<arr.length;i++){
  1769. total +=arr[i].count
  1770. }
  1771. }
  1772. if (total < min_number) {
  1773. min_str = total + min_unit;
  1774. }
  1775. if (total == 0) {
  1776. min_str = "";
  1777. max_str = "";
  1778. }
  1779. if (total >= min_number) {
  1780. if (parseInt(total / min_number) != 0) {
  1781. max_str = parseInt(total / min_number) + max_unit;
  1782. }
  1783. if (total % min_number != 0) {
  1784. min_str = (total % min_number) + min_unit;
  1785. }
  1786. }
  1787. return max_str + min_str;
  1788. },
  1789. getBatchNumber(warehouse_info_id){
  1790. var arr = []
  1791. var batch_number = 0
  1792. for(let j=0;j<this.tabList.length;j++){
  1793. if(warehouse_info_id == this.tabList[j].warehousing_detail_id){
  1794. arr.push(this.tabList[j])
  1795. }
  1796. }
  1797. if(arr.length > 0){
  1798. batch_number = arr[0].batch_number
  1799. }
  1800. return batch_number
  1801. },
  1802. getBatchNumberOne(number){
  1803. var arr = []
  1804. var batch_number = 0
  1805. for(let j=0;j<this.tabList.length;j++){
  1806. if(number == this.tabList[j].batch_number){
  1807. arr.push(this.tabList[j])
  1808. }
  1809. }
  1810. if(arr.length > 0){
  1811. batch_number = arr[0].batch_number
  1812. }
  1813. return batch_number
  1814. },
  1815. getPrice(warehouse_info_id,max_unit,min_unit,min_number){
  1816. var arr = []
  1817. var price = 0
  1818. for(let j=0;j<this.tabList.length;j++){
  1819. if(warehouse_info_id == this.tabList[j].warehousing_detail_id){
  1820. arr.push(this.tabList[j])
  1821. }
  1822. }
  1823. if(arr.length > 0){
  1824. price = arr[0].price
  1825. }
  1826. return price
  1827. },
  1828. getPriceOne(number,max_unit,min_unit,min_number){
  1829. var arr = []
  1830. var price = 0
  1831. for(let j=0;j<this.tabList.length;j++){
  1832. if(number == this.tabList[j].batch_number){
  1833. arr.push(this.tabList[j])
  1834. }
  1835. }
  1836. if(arr.length > 0){
  1837. price = arr[0].price
  1838. }
  1839. return price
  1840. },
  1841. getTotalPrice(warehouse_info_id,max_unit,min_unit,min_number){
  1842. var arr = []
  1843. var total = 0
  1844. var max_str = 0
  1845. var min_str = 0
  1846. var price = 0
  1847. var all_price = 0
  1848. for(let j=0;j<this.tabList.length;j++){
  1849. if(warehouse_info_id == this.tabList[j].warehousing_detail_id){
  1850. arr.push(this.tabList[j])
  1851. }
  1852. }
  1853. if(arr.length > 0){
  1854. for(let i=0;i<arr.length;i++){
  1855. total +=arr[i].count
  1856. price = arr[0].price
  1857. }
  1858. }
  1859. if (total < min_number) {
  1860. min_str = total
  1861. }
  1862. if (total == 0) {
  1863. min_str = 0;
  1864. max_str = 0;
  1865. }
  1866. if (total >= min_number) {
  1867. if (parseInt(total / min_number) != 0) {
  1868. max_str = parseInt(total / min_number)
  1869. }
  1870. if (total % min_number != 0) {
  1871. min_str = (total % min_number)
  1872. }
  1873. }
  1874. if(max_unit!=min_unit){
  1875. all_price = max_str * min_number * price + min_str * price
  1876. }
  1877. if(max_unit == min_unit){
  1878. all_price = max_str * price + min_str * price
  1879. }
  1880. if(all_price > 0){
  1881. return all_price.toFixed(2)
  1882. }else{
  1883. return 0
  1884. }
  1885. },
  1886. getTotalPriceOne(number,max_unit,min_unit,min_number,retail_price){
  1887. var arr = []
  1888. var total = 0
  1889. var max_str = 0
  1890. var min_str = 0
  1891. var price = 0
  1892. var all_price = 0
  1893. for(let j=0;j<this.tabList.length;j++){
  1894. if(number == this.tabList[j].batch_number){
  1895. arr.push(this.tabList[j])
  1896. }
  1897. }
  1898. if(arr.length > 0){
  1899. for(let i=0;i<arr.length;i++){
  1900. total +=arr[i].count
  1901. }
  1902. }
  1903. price = retail_price
  1904. if (total < min_number) {
  1905. min_str = total
  1906. }
  1907. if (total == 0) {
  1908. min_str = 0;
  1909. max_str = 0;
  1910. }
  1911. if (total >= min_number) {
  1912. if (parseInt(total / min_number) != 0) {
  1913. max_str = parseInt(total / min_number)
  1914. }
  1915. if (total % min_number != 0) {
  1916. min_str = (total % min_number)
  1917. }
  1918. }
  1919. if(max_unit!=min_unit){
  1920. all_price = max_str * price + min_str * price
  1921. }
  1922. if(max_unit == min_unit){
  1923. all_price = max_str * price + min_str * price
  1924. }
  1925. if(all_price > 0){
  1926. return all_price.toFixed(2)
  1927. }else{
  1928. return 0
  1929. }
  1930. },
  1931. getAllManufacturerName(warehouse_info_id,max_unit,min_unit,min_number){
  1932. var arr = []
  1933. var manufacture_id = 0
  1934. var manufacturer_name = ""
  1935. for(let j=0;j<this.tabList.length;j++){
  1936. if(warehouse_info_id == this.tabList[j].warehousing_detail_id){
  1937. arr.push(this.tabList[j])
  1938. }
  1939. }
  1940. if(arr.length >0){
  1941. manufacture_id = arr[0].manufacturer
  1942. }
  1943. manufacturer_name = this.getManufacturerName(manufacture_id)
  1944. return manufacturer_name
  1945. },
  1946. getAllManufacturerNameOne(number,max_unit,min_unit,min_number){
  1947. var arr = []
  1948. var manufacture_id = 0
  1949. var manufacturer_name = ""
  1950. for(let j=0;j<this.tabList.length;j++){
  1951. if(number == this.tabList[j].number){
  1952. arr.push(this.tabList[j])
  1953. }
  1954. }
  1955. if(arr.length >0){
  1956. manufacture_id = arr[0].manufacturer
  1957. }
  1958. manufacturer_name = this.getManufacturerName(manufacture_id)
  1959. return manufacturer_name
  1960. },
  1961. getProductDate(warehouse_info_id,max_unit,min_unit,min_number){
  1962. var arr = []
  1963. var product_date = 0
  1964. for(let j=0;j<this.tabList.length;j++){
  1965. if(warehouse_info_id == this.tabList[j].warehousing_detail_id){
  1966. arr.push(this.tabList[j])
  1967. }
  1968. }
  1969. if(arr.length >0){
  1970. product_date = arr[0].product_date
  1971. }
  1972. return this.getTime(product_date)
  1973. },
  1974. getProductDateOne(number,max_unit,min_unit,min_number){
  1975. var arr = []
  1976. var product_date = 0
  1977. for(let j=0;j<this.tabList.length;j++){
  1978. if(number == this.tabList[j].number){
  1979. arr.push(this.tabList[j])
  1980. }
  1981. }
  1982. if(arr.length >0){
  1983. product_date = arr[0].product_date
  1984. }
  1985. return this.getTime(product_date)
  1986. },
  1987. getExpiryDate(warehouse_info_id,max_unit,min_unit,min_number){
  1988. var arr = []
  1989. var expiry_date = 0
  1990. for(let j=0;j<this.tabList.length;j++){
  1991. if(warehouse_info_id == this.tabList[j].warehousing_detail_id){
  1992. arr.push(this.tabList[j])
  1993. }
  1994. }
  1995. if(arr.length >0){
  1996. expiry_date = arr[0].expire_date
  1997. }
  1998. return this.getTime(expiry_date)
  1999. },
  2000. getExpiryDateOne(number,max_unit,min_unit,min_number){
  2001. var arr = []
  2002. var expiry_date = 0
  2003. for(let j=0;j<this.tabList.length;j++){
  2004. if(number == this.tabList[j].number){
  2005. arr.push(this.tabList[j])
  2006. }
  2007. }
  2008. if(arr.length >0){
  2009. expiry_date = arr[0].expire_date
  2010. }
  2011. return this.getTime(expiry_date)
  2012. },
  2013. getDealer(warehouse_info_id,max_unit,min_unit,min_number){
  2014. var arr = []
  2015. var dealer = 0
  2016. for(let j=0;j<this.tabList.length;j++){
  2017. if(warehouse_info_id == this.tabList[j].warehousing_detail_id){
  2018. arr.push(this.tabList[j])
  2019. }
  2020. }
  2021. if(arr.length >0){
  2022. dealer = arr[0].dealer
  2023. }
  2024. return this.getDealerName(dealer)
  2025. },
  2026. getDealerOne(number,max_unit,min_unit,min_number){
  2027. var arr = []
  2028. var dealer = 0
  2029. for(let j=0;j<this.tabList.length;j++){
  2030. if(number == this.tabList[j].number){
  2031. arr.push(this.tabList[j])
  2032. }
  2033. }
  2034. if(arr.length >0){
  2035. dealer = arr[0].dealer
  2036. }
  2037. return this.getDealerName(dealer)
  2038. },
  2039. getNumber(warehouse_info_id,max_unit,min_unit,min_number){
  2040. var arr = []
  2041. var number = ""
  2042. for(let j=0;j<this.tabList.length;j++){
  2043. if(warehouse_info_id == this.tabList[j].warehousing_detail_id){
  2044. arr.push(this.tabList[j])
  2045. }
  2046. }
  2047. if(arr.length >0){
  2048. number = arr[0].number
  2049. }
  2050. return number
  2051. },
  2052. getNumberOne(number,max_unit,min_unit,min_number){
  2053. var arr = []
  2054. var number = ""
  2055. for(let j=0;j<this.tabList.length;j++){
  2056. if(number == this.tabList[j].number){
  2057. arr.push(this.tabList[j])
  2058. }
  2059. }
  2060. if(arr.length >0){
  2061. number = arr[0].number
  2062. }
  2063. return number
  2064. },
  2065. getRemark(warehouse_info_id,max_unit,min_unit,min_number){
  2066. var arr = []
  2067. var remark = ""
  2068. for(let j=0;j<this.tabList.length;j++){
  2069. if(warehouse_info_id == this.tabList[j].warehousing_detail_id){
  2070. arr.push(this.tabList[j])
  2071. }
  2072. }
  2073. if(arr.length >0){
  2074. if(arr[0].DrugWarehouseInfoOne!=null){
  2075. remark = arr[0].DrugWarehouseInfoOne.remark
  2076. }
  2077. }
  2078. return remark
  2079. },
  2080. getAllOut(count,max_unit,min_unit,min_number){
  2081. var total = 0
  2082. var max_str = ""
  2083. var min_str = ""
  2084. total = count
  2085. if (total < min_number) {
  2086. min_str = total + min_unit
  2087. }
  2088. if (total == 0) {
  2089. min_str = 0;
  2090. max_str = 0;
  2091. }
  2092. if (total >= min_number) {
  2093. if (parseInt(total / min_number) != 0) {
  2094. max_str = parseInt(total / min_number) + max_unit
  2095. }
  2096. if (total % min_number != 0) {
  2097. min_str = (total % min_number)+ min_unit
  2098. }
  2099. }
  2100. return max_str + min_str
  2101. },
  2102. getPriceTwo(warehouse_out_id,drug_id){
  2103. var price = 0
  2104. for(let i=0;i<this.warehouseOutList.length;i++){
  2105. if(drug_id == this.warehouseOutList[i].drug_id){
  2106. price = this.warehouseOutList[i].price
  2107. }
  2108. }
  2109. return price
  2110. },
  2111. getOutCountTen(total,max_unit,min_unit,min_number){
  2112. var max_str = ""
  2113. var min_str = ""
  2114. if (total < min_number) {
  2115. min_str = total + min_unit;
  2116. }
  2117. if (total == 0) {
  2118. min_str = "";
  2119. max_str = "";
  2120. }
  2121. if (total >= min_number) {
  2122. if (parseInt(total / min_number) != 0) {
  2123. max_str = parseInt(total / min_number) + max_unit;
  2124. }
  2125. if (total % min_number != 0) {
  2126. min_str = (total % min_number) + min_unit;
  2127. }
  2128. }
  2129. return max_str + min_str;
  2130. },
  2131. getOutCountNightTen(warehouse_info_id,max_unit,min_unit,min_number,drug_id){
  2132. var arr = []
  2133. var total = 0
  2134. var max_str = ""
  2135. var min_str = ""
  2136. for(let j=0;j<this.outList.length;j++){
  2137. if(warehouse_info_id == this.outList[j].warehouse_info_id && drug_id == this.outList[j].drug_id){
  2138. arr.push(this.outList[j])
  2139. }
  2140. }
  2141. if(arr.length > 0){
  2142. for(let i=0;i<arr.length;i++){
  2143. total +=arr[i].count
  2144. }
  2145. }
  2146. if (total < min_number) {
  2147. min_str = total
  2148. }
  2149. if (total == 0) {
  2150. min_str = "";
  2151. max_str = "";
  2152. }
  2153. if (total >= min_number) {
  2154. if (parseInt(total / min_number) != 0) {
  2155. max_str = parseInt(total / min_number)
  2156. }
  2157. if (total % min_number != 0) {
  2158. min_str = (total % min_number)
  2159. }
  2160. }
  2161. return max_str + min_str;
  2162. },
  2163. getOutCountNightTenOne(batch_number,max_unit,min_unit,min_number,drug_id){
  2164. var arr = []
  2165. var total = 0
  2166. var max_str = ""
  2167. var min_str = ""
  2168. for(let j=0;j<this.tabList.length;j++){
  2169. if(batch_number == this.tabList[j].batch_number && drug_id == this.tabList[j].drug_id){
  2170. arr.push(this.tabList[j])
  2171. }
  2172. }
  2173. if(arr.length > 0){
  2174. for(let i=0;i<arr.length;i++){
  2175. total +=arr[i].count
  2176. }
  2177. }
  2178. if (total < min_number) {
  2179. min_str = total
  2180. }
  2181. if (total == 0) {
  2182. min_str = "";
  2183. max_str = "";
  2184. }
  2185. if (total >= min_number) {
  2186. if (parseInt(total / min_number) != 0) {
  2187. max_str = parseInt(total / min_number)
  2188. }
  2189. if (total % min_number != 0) {
  2190. min_str = (total % min_number)
  2191. }
  2192. }
  2193. return max_str + min_str;
  2194. },
  2195. },
  2196. };
  2197. </script>
  2198. <style rel="stylesheet/scss" lang="scss">
  2199. .app-container {
  2200. // margin: 20px;
  2201. font-size: 15px;
  2202. .filter-container {
  2203. padding-bottom: 5px;
  2204. }
  2205. .search-component {
  2206. width: 500px;
  2207. .searchBox {
  2208. width: 300px;
  2209. height: 36px;
  2210. line-height: 36px;
  2211. padding-left: 15px;
  2212. border: 1px #dcdfe6 solid;
  2213. border-right: none;
  2214. outline: none;
  2215. float: left;
  2216. border-radius: 6px 0 0 6px;
  2217. font-size: 14px;
  2218. color: #333;
  2219. background: #fff;
  2220. box-shadow: 3px 3px 4px rgba(135, 135, 135, 0.05);
  2221. }
  2222. .searchBtn {
  2223. background-color: #409eff;
  2224. color: #fff;
  2225. font-size: 15px;
  2226. text-align: center;
  2227. height: 36px;
  2228. line-height: 36px;
  2229. float: left;
  2230. outline: none;
  2231. width: 70px;
  2232. border: none;
  2233. border-radius: 0 6px 6px 0;
  2234. font-family: "Microsoft Yahei";
  2235. cursor: pointer;
  2236. }
  2237. }
  2238. .amount {
  2239. font-weight: normal;
  2240. padding: 10px 0 0 0;
  2241. color: #606266;
  2242. font-size: 14px;
  2243. span {
  2244. color: #ef2525;
  2245. font-family: "Arial";
  2246. padding: 0 2px;
  2247. }
  2248. }
  2249. }
  2250. .el-table td,
  2251. .el-table th.is-leaf,
  2252. .el-table--border,
  2253. .el-table--group {
  2254. border-color: #d0d3da;
  2255. }
  2256. .el-table--border::after,
  2257. .el-table--group::after,
  2258. .el-table::before {
  2259. background-color: #d0d3da;
  2260. }
  2261. </style>
  2262. <style>
  2263. .sign-and-weigh-box .sign-and-weigh-box-patients .cell {
  2264. font-size: 12px;
  2265. }
  2266. .sign-and-weigh-box .sign-and-weigh-box-patients .current-row > td {
  2267. background: #6fb5fa;
  2268. }
  2269. .count {
  2270. color: #bd2c00;
  2271. }
  2272. .el-table td,
  2273. .el-table th.is-leaf,
  2274. .el-table--border,
  2275. .el-table--group {
  2276. border-color: #d0d3da;
  2277. }
  2278. .el-table--border::after,
  2279. .el-table--group::after,
  2280. .el-table::before {
  2281. background-color: #d0d3da;
  2282. }
  2283. /* 合并表格线样式 */
  2284. .spanClass .cell {
  2285. padding: 0 !important;
  2286. }
  2287. .spanClass .cell tr {
  2288. display: inline-block;
  2289. width: 100%;
  2290. }
  2291. .spanClass .cell tr td {
  2292. padding: 10px 0;
  2293. border-bottom: 1px solid #ebeef5;
  2294. display: block;
  2295. width: 100%;
  2296. }
  2297. .spanClass .cell tr:last-of-type td {
  2298. border-bottom: none;
  2299. }
  2300. </style>