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

stockInOrderAdd.vue 23KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694
  1. <template>
  2. <div class="main-contain">
  3. <div class="position">
  4. <bread-crumb v-if="type == 1" :crumbs='crumbs'></bread-crumb>
  5. <bread-crumb v-if="type == 2" :crumbs='crumbs2'></bread-crumb>
  6. <div style="float:right;">
  7. <el-button size="small" @click="back()" class="filter-item">取 消</el-button>
  8. <el-button size="small" type="primary" @click="submit()" class="filter-item">保 存</el-button>
  9. </div>
  10. </div>
  11. <div class="app-container">
  12. <stock-in-dialog ref="dialog" :propForm="propForm"
  13. :visibility="isVisibility"
  14. v-on:dialog-comfirm="comfirm"
  15. v-on:dialog-cancle="cancle"></stock-in-dialog>
  16. <div class="cell clearfix">
  17. <label class="title"><span class="name">入库时间</span> : </label>
  18. <el-date-picker size="small" v-model="warehousing_time" prefix-icon="el-icon-date" :editable="false"
  19. style="width: 196px;" type="date" placeholder="选择日期时间" align="right" format="yyyy-MM-dd"
  20. value-format="yyyy-MM-dd"></el-date-picker>
  21. </div>
  22. <div class="cell clearfix">
  23. <label class="title"><span class="name">经销商</span> : </label>
  24. <el-select size="small" v-model="form.dealer" clearable placeholder="请选择经销商" @change="changeDealer">
  25. <el-option
  26. v-for="(option, index) in dealer"
  27. :key="index"
  28. :label="option.dealer_name"
  29. :value="option.id">
  30. </el-option>
  31. </el-select>
  32. </div>
  33. <div class="cell clearfix">
  34. <label class="title"><span class="name">厂商</span> : </label>
  35. <el-select size="small" v-model="form.manufacturer" clearable placeholder="请选择厂商"
  36. @change="changeManufacturer">
  37. <el-option
  38. v-for="(option, index) in manufacturer"
  39. :key="index"
  40. :label="option.manufacturer_name"
  41. :value="option.id">
  42. </el-option>
  43. </el-select>
  44. </div>
  45. <el-form :rules="tableRules" :model="recordInfo" ref="tableForm">
  46. <el-table id="oictable" :data="recordInfo.recordData" :class="signAndWeighBoxPatients" border
  47. style="width: 100%"
  48. max-height="450" :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)'}"
  49. >
  50. <el-table-column align="center" width="200">
  51. <template slot="header" slot-scope="scope">
  52. <span>商品类型<span style="color: red">*</span></span>
  53. </template>
  54. <template slot-scope="scope">
  55. <el-form-item style="padding-top: 15px;margin-left: 10px;margin-right: 10px">
  56. <el-input placeholder="请输入商品类型" v-model="scope.row.good_type_id"
  57. :value="typeName(scope.row.good_type_id)"
  58. @focus="showDialog(scope.$index, scope.row)"></el-input>
  59. </el-form-item>
  60. </template>
  61. </el-table-column>
  62. <el-table-column align="center" width="200">
  63. <template slot="header" slot-scope="scope">
  64. <span>规格名称<span style="color: red">*</span></span>
  65. </template>
  66. <template slot-scope="scope">
  67. <el-form-item style="padding-top: 15px">
  68. <el-input placeholder="请输入规格名称" v-model="scope.row.good_id"
  69. :value="specificationName(scope.row.good_id)"
  70. @focus="showDialog(scope.$index, scope.row)"></el-input>
  71. </el-form-item>
  72. </template>
  73. </el-table-column>
  74. <el-table-column align="center" width="150">
  75. <template slot="header" slot-scope="scope">
  76. <span>单价<span style="color: red">*</span></span>
  77. </template>
  78. <template slot-scope="scope">
  79. <!--<el-input type="number" v-model="scope.row.price" @blur="handleBlur(scope.$index, scope.row)"></el-input>-->
  80. <el-form-item :prop="'recordData.' + scope.$index + '.price'" :rules='tableRules.price'
  81. style="padding-top: 17px">
  82. <el-input placeholder="请输入单价" type="number" v-model="scope.row.price"></el-input>
  83. </el-form-item>
  84. </template>
  85. </el-table-column>
  86. <el-table-column align="center" width="180">
  87. <template slot="header" slot-scope="scope">
  88. <span>入库数量<span style="color: red">*</span></span>
  89. </template>
  90. <template slot-scope="scope">
  91. <!--{{scope.row.warehousing_count}}-->
  92. <!--<el-input type="number" v-model="scope.row.warehousing_count" @blur="handleBlur(scope.$index, scope.row)"></el-input>-->
  93. <el-form-item :prop="'recordData.' + scope.$index + '.warehousing_count'"
  94. :rules='tableRules.warehousing_count' style="padding-top: 17px">
  95. <el-input placeholder="请输入入库数量" type="number" v-model="scope.row.warehousing_count"></el-input>
  96. </el-form-item>
  97. </template>
  98. </el-table-column>
  99. <el-table-column label="总价" align="center" width="150">
  100. <template slot-scope="scope">
  101. {{calculate(scope.row.price*scope.row.warehousing_count)}}
  102. </template>
  103. </el-table-column>
  104. <el-table-column align="center" width="150">
  105. <template slot="header" slot-scope="scope">
  106. <span>批号</span>
  107. </template>
  108. <template slot-scope="scope">
  109. <el-form-item style="padding-top: 17px">
  110. <el-input placeholder="请输入批号" v-model="scope.row.number"></el-input>
  111. </el-form-item>
  112. </template>
  113. </el-table-column>
  114. <el-table-column label="生产日期" align="center" width="250">
  115. <template slot-scope="scope">
  116. <!--{{scope.row.product_date | parseTime("{y}-{m}-{d}")}}-->
  117. <el-date-picker prefix-icon="el-icon-date" style="width: 145px" v-model="scope.row.product_date"
  118. type="date" placeholder="选择日期时间" format="yyyy-MM-dd"
  119. value-format="yyyy-MM-dd"></el-date-picker>
  120. </template>
  121. </el-table-column>
  122. <el-table-column label="有效日期" align="center" width="250">
  123. <template slot-scope="scope">
  124. <!--{{ scope.row.expiry_date | parseTime("{y}-{m}-{d}")}}-->
  125. <el-date-picker prefix-icon="el-icon-date" style="width: 145px" v-model="scope.row.expiry_date"
  126. type="date" placeholder="选择日期时间" format="yyyy-MM-dd"
  127. value-format="yyyy-MM-dd"></el-date-picker>
  128. </template>
  129. </el-table-column>
  130. <el-table-column label="备注" align="center" width="150">
  131. <template slot-scope="scope">
  132. <el-input placeholder="请输入备注" v-model="scope.row.remark"></el-input>
  133. </template>
  134. </el-table-column>
  135. <el-table-column label="操作" align="center" fixed="right" width="150">
  136. <template slot-scope="scope">
  137. <el-tooltip class="item" effect="dark" content="新增" placement="top">
  138. <el-button
  139. size="mini"
  140. type="primary"
  141. icon="el-icon-circle-plus-outline"
  142. @click="handleEdit(scope.$index, scope.row)">
  143. </el-button>
  144. </el-tooltip>
  145. <el-tooltip class="item" effect="dark" content="删除" placement="top">
  146. <el-button
  147. size="mini"
  148. type="danger"
  149. icon="el-icon-delete"
  150. @click="handleDelete(scope.$index, scope.row)">
  151. </el-button>
  152. </el-tooltip>
  153. </template>
  154. </el-table-column>
  155. </el-table>
  156. </el-form>
  157. </div>
  158. </div>
  159. </template>
  160. <script>
  161. import stockInDialog from './Dialog/stockInDialog'
  162. import { uParseTime } from '@/utils/tools'
  163. import {
  164. deleteWarehouseInfo,
  165. GetAllConfig,
  166. GetAllGoodInfo,
  167. GetAllGoodInfoByID,
  168. GetAllGoodType,
  169. getWarehouseInfoByOrdeNumber,
  170. modifyWarehouseInfo,
  171. postWarehouse
  172. } from '@/api/stock'
  173. import BreadCrumb from '../components/bread-crumb'
  174. export default {
  175. components: { BreadCrumb, stockInDialog },
  176. name: 'stockIn',
  177. data() {
  178. var checkGoodId = (rule, value, callback) => {
  179. setTimeout(() => {
  180. if (value == '' || value == 0) {
  181. return callback(new Error('规格名称不能为空'))
  182. }
  183. }, 2000)
  184. }
  185. return {
  186. crumbs: [
  187. { path: false, name: '库存管理' },
  188. { path: false, name: '耗材入库单' },
  189. { path: false, name: '新增入库单' }
  190. ],
  191. crumbs2: [
  192. { path: false, name: '库存管理' },
  193. { path: false, name: '其他入库单' },
  194. { path: false, name: '新增入库单' }
  195. ],
  196. signAndWeighBoxPatients: 'sign-and-weigh-box-patients',
  197. warehousing_time: '',
  198. adminUserOptions: null,
  199. currentIndex: 0,
  200. recordInfo: {
  201. recordData: [],
  202. stock_in_code: '',
  203. current_index: ''
  204. },
  205. tableRules: {
  206. price: [
  207. { required: true, message: '单价不能为空', trigger: 'blur' }
  208. ],
  209. warehousing_count: [
  210. { required: true, message: '数量不能为空', trigge: 'blur' }
  211. ],
  212. good_id: [
  213. { validator: checkGoodId, trigger: 'blur' }
  214. ]
  215. },
  216. type: this.$route.query.type,
  217. total: '',
  218. product_date: '',
  219. expiry_date: '',
  220. numbers: '',
  221. // prop
  222. isVisibility: false,
  223. propForm: {
  224. goods: [],
  225. goodType: [],
  226. goodInfo: [],
  227. goodUnit: [],
  228. title: '入库',
  229. formValue: {
  230. good_type_id: '',
  231. good_id: '',
  232. number: '',
  233. product_date: '',
  234. expiry_date: '',
  235. warehousing_count: '',
  236. price: '',
  237. remark: '',
  238. dealer: '',
  239. manufacturer: ''
  240. },
  241. isCreated: 1
  242. },
  243. goodInfo: {
  244. loading: false,
  245. goodTypeData: [],
  246. type_code: ''
  247. },
  248. form: {
  249. manufacturer: '',
  250. dealer: ''
  251. },
  252. formValue: {
  253. good_type_id: '',
  254. good_id: '',
  255. number: '',
  256. product_date: '',
  257. expiry_date: '',
  258. warehousing_count: '',
  259. price: '',
  260. remark: '',
  261. dealer: '',
  262. manufacturer: ''
  263. },
  264. manufacturer: [],
  265. dealer: [],
  266. goodType: []
  267. }
  268. },
  269. methods: {
  270. handleSave: function() {
  271. if (this.recordInfo.recordData.length <= 0) {
  272. this.$message.error('请添加入库信息')
  273. return
  274. }
  275. sessionStorage.removeItem('warehousing_orders')
  276. this.$router.back(-1)
  277. }, handleCancle: function() {
  278. this.$confirm('是否放弃编辑返回上一页?', '放弃编辑', {
  279. confirmButtonText: '确定',
  280. cancelButtonText: '取消',
  281. type: 'warning'
  282. }).then(() => {
  283. sessionStorage.removeItem('warehousing_orders')
  284. this.$router.back(-1)
  285. }).catch(() => {
  286. })
  287. }, handleCreate: function() {
  288. this.propForm.formValue = {}
  289. this.propForm.isCreated = 1
  290. this.isVisibility = true
  291. }, comfirm: function(val) {
  292. this.propForm.goodType = []
  293. this.propForm.goods = []
  294. this.$refs.dialog.hide()
  295. console.log(val)
  296. if (val.selectedGoodInfo.length > 0) {
  297. for (let i = val.selectedGoodInfo.length - 1; i >= 0; i--) {
  298. if (i == 0) {
  299. this.recordInfo.recordData[this.currentIndex].good_type_id = val.selectedGoodInfo[i].good_type_id
  300. this.recordInfo.recordData[this.currentIndex].good_id = val.selectedGoodInfo[i].id
  301. this.recordInfo.recordData[this.currentIndex].price = val.selectedGoodInfo[i].buy_price.toString()
  302. } else {
  303. const tempForm = {}
  304. tempForm['good_type_id'] =val.selectedGoodInfo[i].good_type_id
  305. tempForm['good_id'] = val.selectedGoodInfo[i].id
  306. tempForm['number'] = ''
  307. tempForm['product_date'] = ''
  308. tempForm['expiry_date'] = ''
  309. tempForm['warehousing_count'] = ''
  310. tempForm['price'] = val.selectedGoodInfo[i].buy_price.toString()
  311. tempForm['remark'] = ''
  312. tempForm['dealer'] = ''
  313. tempForm['manufacturer'] = ''
  314. this.recordInfo.recordData.splice(this.currentIndex + 1, 0, tempForm)
  315. }
  316. }
  317. }
  318. this.currentIndex = -1
  319. }, cancle: function() {
  320. this.propForm.goodType = []
  321. this.propForm.goods = []
  322. this.$refs.dialog.hide()
  323. }, GetAllGoodType: function() {
  324. GetAllGoodType().then(response => {
  325. if (response.data.state == 0) {
  326. this.$message.error(response.data.msg)
  327. return false
  328. } else {
  329. for (let i = 0; i < response.data.data.goodType.length; i++) {
  330. this.propForm.goodType.push(response.data.data.goodType[i])
  331. }
  332. }
  333. })
  334. }, GetAllGoodInfo: function() {
  335. GetAllGoodInfo().then(response => {
  336. if (response.data.state == 0) {
  337. this.$message.error(response.data.msg)
  338. return false
  339. } else {
  340. for (let i = 0; i < response.data.data.goodInfo.length; i++) {
  341. this.propForm.goodInfo.push(response.data.data.goodInfo[i])
  342. }
  343. }
  344. })
  345. }, GetConfigInfo: function() {
  346. const loading = this.$loading({
  347. lock: true,
  348. text: 'Loading',
  349. spinner: 'el-icon-loading',
  350. background: 'rgba(0, 0, 0, 0.7)'
  351. })
  352. GetAllConfig().then(response => {
  353. if (response.data.state == 0) {
  354. this.$message.error(response.data.msg)
  355. return false
  356. } else {
  357. this.manufacturer = response.data.data.manufacturer
  358. this.dealer = response.data.data.dealer
  359. this.goodType = response.data.data.goodType
  360. this.goodInfo = response.data.data.goodInfo
  361. this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: '全部' })
  362. this.dealer.splice(0, 0, { id: 0, dealer_name: '全部' })
  363. this.manufacturer.splice(0, 0, { id: -1, manufacturer_name: '其他' })
  364. this.dealer.splice(0, 0, { id: -1, dealer_name: '其他' })
  365. this.form.manufacturer = 0
  366. this.form.dealer = 0
  367. }
  368. loading.close()
  369. })
  370. }, typeName: function(good_type_id) {
  371. let name = ''
  372. for (let i = 0; i < this.goodType.length; i++) {
  373. if (this.goodType[i].id == good_type_id) {
  374. name = this.goodType[i].type_name
  375. }
  376. }
  377. return name
  378. }, specificationName: function(good_info_id) {
  379. let name = ''
  380. for (let i = 0; i < this.goodInfo.length; i++) {
  381. if (this.goodInfo[i].id == good_info_id) {
  382. name = this.goodInfo[i].specification_name
  383. }
  384. }
  385. return name
  386. }, handleEdit: function(index, row) {
  387. const tempObj = {}
  388. tempObj['good_type_id'] = 0
  389. tempObj['good_id'] = 0
  390. tempObj['number'] = ''
  391. tempObj['product_date'] = ''
  392. tempObj['expiry_date'] = ''
  393. tempObj['warehousing_count'] = ''
  394. tempObj['price'] = ''
  395. tempObj['remark'] = ''
  396. tempObj['dealer'] = ''
  397. tempObj['manufacturer'] = ''
  398. this.recordInfo.recordData.push(tempObj)
  399. }, handleDelete: function(index, row) {
  400. if (this.recordInfo.recordData.length <= 1) {
  401. this.$message.error('只有一条记录的时候无法删除')
  402. return
  403. } else {
  404. this.recordInfo.recordData.splice(index, 1)
  405. }
  406. }, calculate: function(val) {
  407. if (val == 0) {
  408. return ''
  409. }
  410. return Math.round(parseFloat(val) * 100) / 100
  411. }, GetWarehouseInfoByOrdeNumber: function() {
  412. const params = {
  413. 'warehousing_order': sessionStorage.getItem('warehousing_orders')
  414. }
  415. this.recordInfo.recordData = []
  416. getWarehouseInfoByOrdeNumber(params).then(response => {
  417. if (response.data.state != 0) {
  418. for (let i = 0; i < response.data.data.info.length; i++) {
  419. this.recordInfo.recordData.push(response.data.data.info[i])
  420. }
  421. }
  422. })
  423. }, getTime(val, temp) {
  424. if (val != 0) {
  425. return uParseTime(val, temp)
  426. } else {
  427. return ''
  428. }
  429. },
  430. showDialog(index, row) {
  431. const loading = this.$loading({
  432. lock: true,
  433. text: 'Loading',
  434. spinner: 'el-icon-loading',
  435. background: 'rgba(0, 0, 0, 0.7)'
  436. })
  437. this.currentIndex = index
  438. this.isVisibility = true
  439. const params = {
  440. manufacturer_id: this.form.manufacturer,
  441. dealer_id: this.form.dealer
  442. }
  443. this.propForm.goods = []
  444. GetAllGoodInfoByID(params).then(response => {
  445. if (response.data.state == 0) {
  446. this.$message.error(response.data.msg)
  447. return false
  448. loading.close()
  449. } else {
  450. loading.close()
  451. if (response.data.data.goodInfo.length <= 0) {
  452. this.$message.error('该厂商或经销商没有物品信息')
  453. return
  454. }
  455. this.$refs.dialog.show()
  456. for (let i = 0; i < response.data.data.goodInfo.length; i++) {
  457. this.propForm.goodType.push(response.data.data.goodInfo[i].type)
  458. }
  459. const obj = {}
  460. this.propForm.goodType = this.propForm.goodType.reduce((cur, next) => {
  461. obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
  462. return cur
  463. }, []) // 设置cur默认类型为数组,并且初始值为空的数组
  464. }
  465. for (let i = 0; i < this.propForm.goodType.length; i++) {
  466. let goodInfo = []
  467. let goodObj = {}
  468. for (let a = 0; a < response.data.data.goodInfo.length; a++) {
  469. var respObj = response.data.data.goodInfo[a]
  470. respObj['isSelected'] = false
  471. if (respObj.type.id == this.propForm.goodType[i].id) {
  472. goodInfo.push(respObj)
  473. }
  474. }
  475. const obj = {}
  476. goodInfo = goodInfo.reduce((cur, next) => {
  477. obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
  478. return cur
  479. }, []) // 设置cur默认类型为数组,并且初始值为空的数组
  480. this.$set(goodObj, this.propForm.goodType[i].id, goodInfo)
  481. this.propForm.goods.push(goodObj)
  482. }
  483. console.log( this.propForm.goods)
  484. }
  485. )
  486. },
  487. getSummaries(param) {
  488. const { columns, data } = param
  489. const sums = []
  490. columns.forEach((column, index) => {
  491. if (index === 0) {
  492. sums[index] = '总价'
  493. return
  494. }
  495. const values = data.map(item => Number(item[column.property]))
  496. if (!values.every(value => isNaN(value))) {
  497. sums[index] = values.reduce((prev, curr) => {
  498. const value = Number(curr)
  499. if (!isNaN(value)) {
  500. return prev + curr
  501. } else {
  502. return prev
  503. }
  504. }, 0)
  505. sums[index] += ' 元'
  506. } else {
  507. sums[index] = 'N/A'
  508. }
  509. })
  510. return sums
  511. }
  512. ,
  513. back() {
  514. this.$router.go(-1)
  515. }
  516. ,
  517. submit() {
  518. this.$refs['tableForm'].validate((valid) => {
  519. if (valid) {
  520. const array = this.recordInfo.recordData
  521. for (let i = 0; i < array.length; i++) {
  522. if (array[i].good_type_id == 0) {
  523. this.$message.error('商品类型不能为空')
  524. return
  525. }
  526. if (array[i].good_id == 0) {
  527. this.$message.error('规格名称不能为空')
  528. return
  529. }
  530. }
  531. if(this.recordInfo.recordData.length <= 0){
  532. this.$message.success('请添加入库商品')
  533. return
  534. }
  535. const params = {
  536. 'stockIn': this.recordInfo.recordData
  537. }
  538. postWarehouse(params, this.warehousing_time, this.form.manufacturer, this.form.dealer, this.type).then(response => {
  539. if (response.data.state == 0) {
  540. this.$message.error(response.data.msg)
  541. return false
  542. } else {
  543. this.$message.success('入库成功')
  544. this.$router.back(-1)
  545. }
  546. })
  547. } else {
  548. return false
  549. }
  550. })
  551. }
  552. ,
  553. changeManufacturer(val) {
  554. }, changeDealer(val) {
  555. }
  556. }
  557. ,
  558. created() {
  559. var nowDate = new Date()
  560. var nowYear = nowDate.getFullYear()
  561. var nowMonth = nowDate.getMonth() + 1
  562. var nowDay = nowDate.getDate()
  563. this.warehousing_time =
  564. nowYear +
  565. '-' +
  566. (nowMonth < 10 ? '0' + nowMonth : nowMonth) +
  567. '-' +
  568. (nowDay < 10 ? '0' + nowDay : nowDay)
  569. const tempObj = {}
  570. tempObj['good_type_id'] = 0
  571. tempObj['good_id'] = 0
  572. tempObj['number'] = ''
  573. tempObj['product_date'] = ''
  574. tempObj['expiry_date'] = ''
  575. tempObj['warehousing_count'] = ''
  576. tempObj['price'] = ''
  577. tempObj['remark'] = ''
  578. tempObj['dealer'] = ''
  579. tempObj['manufacturer'] = ''
  580. this.recordInfo.recordData.push(tempObj)
  581. this.GetConfigInfo()
  582. this.propForm.goodUnit = this.$store.getters.good_unit
  583. }
  584. }
  585. </script>
  586. <style>
  587. #oictable ::-webkit-scrollbar {
  588. height: 15px;
  589. }
  590. </style>
  591. <style rel="stylesheet/css" lang="scss" scoped>
  592. .information {
  593. border: 1px #dcdfe6 solid;
  594. padding: 30px 20px 30px 20px;
  595. .border {
  596. border-bottom: 1px #dcdfe6 solid;
  597. margin: 0px 0 20px 0;
  598. }
  599. }
  600. .edit_separater {
  601. border-top: 1px solid rgb(233, 233, 233);
  602. margin-top: 15px;
  603. margin-bottom: 15px;
  604. }
  605. </style>
  606. <style>
  607. .sign-and-weigh-box .sign-and-weigh-box-patients .cell {
  608. font-size: 12px;
  609. }
  610. .sign-and-weigh-box .sign-and-weigh-box-patients .current-row > td {
  611. background: #6fb5fa;
  612. }
  613. </style>