queryPart.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511
  1. <template>
  2. <div class="productInfoList-wrap">
  3. <!-- 搜索条件 -->
  4. <div class="table-page-search-wrapper">
  5. <a-form layout="inline" @keyup.enter.native="searchTable">
  6. <a-row :gutter="15">
  7. <a-col :md="4" :sm="24">
  8. <a-form-item label="产品名称">
  9. <a-input id="productInfoList-name" v-model.trim="queryParam.productName" allowClear placeholder="请输入产品名称"/>
  10. </a-form-item>
  11. </a-col>
  12. <a-col :md="4" :sm="24">
  13. <a-form-item label="产品编码">
  14. <a-input id="productInfoList-code" v-model.trim="queryParam.productCode" allowClear placeholder="请输入产品编码"/>
  15. </a-form-item>
  16. </a-col>
  17. <!-- <a-col :md="6" :sm="24">
  18. <a-form-item label="是否促销品">
  19. <v-select
  20. code="FLAG"
  21. id="productInfoList-promotionFlag"
  22. v-model="queryParam.promotionFlag"
  23. allowClear
  24. placeholder="请选择是否"
  25. ></v-select>
  26. </a-form-item>
  27. </a-col> -->
  28. <a-col :md="4" :sm="24">
  29. <a-form-item label="类型">
  30. <a-select v-model.trim="queryParam.ptype" :dropdownMatchSelectWidth="false" >
  31. <a-select-option value="0">
  32. 全部产品
  33. </a-select-option>
  34. <a-select-option value="1">
  35. 剩余待下推数量>0的产品
  36. </a-select-option>
  37. <a-select-option value="2">
  38. 可全部下推的产品
  39. </a-select-option>
  40. <a-select-option value="3">
  41. 不可全部下推的产品
  42. </a-select-option>
  43. </a-select>
  44. </a-form-item>
  45. </a-col>
  46. <a-col :md="4" :sm="24">
  47. <a-form-item label="出库仓库">
  48. <chooseWarehouse ref="warehouse" v-model="queryParam.warehouseSn"></chooseWarehouse>
  49. </a-form-item>
  50. </a-col>
  51. <a-col :md="4" :sm="24" style="margin-bottom: 10px;">
  52. <a-button type="primary" class="button-info" @click="searchTable" :disabled="disabled" id="productInfoList-refresh">查询</a-button>
  53. <a-button style="margin-left: 5px" @click="resetSearchForm" id="productInfoList-reset">重置</a-button>
  54. </a-col>
  55. </a-row>
  56. </a-form>
  57. </div>
  58. <!-- alert -->
  59. <div style="margin-bottom: 10px;display: flex;align-items: center;" v-if="detailData">
  60. <div style="display: flex;align-items: center;">
  61. <a-button type="primary" :disabled="newLoading" class="button-info" @click="handlePlAdd">批量添加</a-button>
  62. <a-button type="danger" :disabled="newLoading" class="button-error" @click="handlePlCancel">批量取消</a-button>
  63. <span style="margin-left: 10px;" v-if="selectedRowKeys.length">已选 {{ selectedRowKeys.length }} 项</span>
  64. </div>
  65. <div style="padding-left: 20px;">
  66. 总销售数量:<strong>{{ detailData&&(detailData.totalQty || detailData.totalQty==0) ? detailData.totalQty : '--' }}</strong>;
  67. 已取消数量:<strong>{{ detailData&&(detailData.totalCancelQty || detailData.totalCancelQty==0) ? detailData.totalCancelQty : '--' }}</strong>;
  68. 已下推数量:<strong>{{ detailData&&(detailData.totalPushedQty || detailData.totalPushedQty==0) ? detailData.totalPushedQty : '--' }}</strong>;
  69. 待下推数量:<strong>{{ detailData&&(detailData.totalUnpushedQty || detailData.totalUnpushedQty==0) ? detailData.totalUnpushedQty : '--' }}</strong>;
  70. <span v-if="$hasPermissions('B_salesDispatch_salesPrice')">总售价:<strong>{{ detailData&&(detailData.totalAmount || detailData.totalAmount==0) ? toThousands(detailData.totalAmount) : '--' }}</strong>;</span>
  71. <span v-if="$hasPermissions('B_salesDispatch_costPrice')">总成本:<strong>{{ detailData&&(detailData.totalCost || detailData.totalCost==0) ? toThousands(detailData.totalCost) : '--' }}</strong>;</span>
  72. <span v-if="$hasPermissions('B_salesDispatch_costPrice')&&$hasPermissions('B_salesDispatch_salesPrice')">总毛利:<strong>{{ detailData&&(detailData.grossProfit || detailData.grossProfit==0) ? toThousands(detailData.grossProfit) : '--' }}</strong>;</span>
  73. <span v-if="$hasPermissions('B_salesDispatch_salesPrice')">已取消金额:<strong>{{ detailData&&(detailData.totalCancelAmount || detailData.totalCancelAmount==0) ? toThousands(detailData.totalCancelAmount) : '--' }}</strong>;</span>
  74. <span v-if="$hasPermissions('B_salesDispatch_salesPrice')">已下推金额:<strong>{{ detailData&&(detailData.totalPushedAmount || detailData.totalPushedAmount==0) ? toThousands(detailData.totalPushedAmount) :'--' }}</strong>;</span>
  75. <span v-if="$hasPermissions('B_salesDispatch_salesPrice')">待下推金额:<strong>{{ detailData&&(detailData.totalUnpushedAmount || detailData.totalUnpushedAmount==0) ? toThousands(detailData.totalUnpushedAmount) : '--' }}</strong>;</span>
  76. </div>
  77. </div>
  78. <a-spin :spinning="spinning" tip="Loading...">
  79. <ve-table
  80. border-y
  81. v-show="!showEmpty"
  82. :scroll-width="0"
  83. :max-height="tableHeight"
  84. :show-header="showTableHead"
  85. :row-style-option="{clickHighlight: true}"
  86. :cellSelectionOption="{enable: false}"
  87. :virtual-scroll-option="{enable: true}"
  88. :columns="columns"
  89. :table-data="dataSource"
  90. row-key-field-name="id"
  91. :cell-style-option="cellStyleOption"
  92. :cell-span-option="cellSpanOption"
  93. :column-width-resize-option="columnWidthResizeOption"
  94. :checkbox-option="checkboxOption"
  95. />
  96. <div v-show="showEmpty" class="empty-data">暂无数据</div>
  97. </a-spin>
  98. </div>
  99. </template>
  100. <script>
  101. import { commonMixin } from '@/utils/mixin'
  102. import { salesPromoQueryList } from '@/api/salesNew'
  103. import { salesDetailAllList, salesPromoDetailCount, salesDetaiCount } from '@/api/salesDetailNew'
  104. import { STable, VSelect } from '@/components'
  105. import chooseWarehouse from '@/views/common/chooseWarehouse'
  106. export default {
  107. name: 'QueryPart',
  108. mixins: [commonMixin],
  109. components: { STable, VSelect, chooseWarehouse },
  110. props: {
  111. newLoading: {
  112. type: Boolean,
  113. default: false
  114. },
  115. maxHeight:{
  116. type: [String,Number],
  117. default: '300'
  118. },
  119. showHeader: {
  120. type: Boolean,
  121. default: true
  122. }
  123. },
  124. data () {
  125. return {
  126. advanced: true, // 高级搜索 展开/关闭
  127. productType: [],
  128. salesBillSn: '',
  129. detailData: null,
  130. queryParam: {
  131. ptype: '0', // 类型
  132. productCode: '', // 产品编码
  133. productName: '', // 产品名称
  134. promotionFlag: undefined, // 是否促销品
  135. brandSn: undefined, // 产品品牌
  136. productTypeSn1: '', // 产品一级分类
  137. productTypeSn2: '', // 产品二级分类
  138. productTypeSn3: '', // 产品三级分类
  139. salesBillSn: '',
  140. warehouseSn: undefined
  141. },
  142. disabled: false, // 查询、重置按钮是否可操作
  143. activeList: [], // 活动列表
  144. spinning: false,
  145. dataSource: [],
  146. tableHeight: this.maxHeight,
  147. cellStyleOption: {
  148. bodyCellClass: ({ row, column, rowIndex }) => {
  149. if (row.id.indexOf('promo-')>=0 && column.field === "no") {
  150. return "table-body-cell-no";
  151. }
  152. },
  153. },
  154. columnWidthResizeOption: {
  155. // default false
  156. enable: true,
  157. // column resize min width
  158. minWidth: 50
  159. },
  160. cellSpanOption: {
  161. bodyCellSpan: this.bodyCellSpan,
  162. },
  163. showEmpty: false,
  164. showTableHead: true,
  165. disableSelectedRowKeys: [],
  166. selectedRowKeys: []
  167. }
  168. },
  169. computed: {
  170. checkboxOption () {
  171. return {
  172. disableSelectedRowKeys: this.disableSelectedRowKeys,
  173. selectedRowKeys: this.selectedRowKeys,
  174. // 行选择改变事件
  175. selectedRowChange: ({ row, isSelected, selectedRowKeys }) => {
  176. this.selectedRowChange({ row, isSelected, selectedRowKeys })
  177. },
  178. // 全选改变事件
  179. selectedAllChange: ({ isSelected, selectedRowKeys }) => {
  180. this.selectedAllChange({ isSelected, selectedRowKeys })
  181. },
  182. }
  183. },
  184. columns () {
  185. const _this = this
  186. const priceFormat = function(data){
  187. return _this.toThousands(data) || '--'
  188. }
  189. const numsFormat = function(data){
  190. return data || data == 0 ? data : '--'
  191. }
  192. const codeFormat = function(record,data,h){
  193. let ftext = ''
  194. let fcolor = ''
  195. if(record.promotionFlag == 'GIFT'){
  196. ftext = '促'
  197. fcolor = '#52c41a'
  198. }
  199. if(record.promotionFlag == 'REGULAR'){
  200. ftext = '正'
  201. fcolor = '#108ee9'
  202. }
  203. if(record.promotionFlag == 'DISCOUNT'){
  204. ftext = '特'
  205. fcolor = '#faad14'
  206. }
  207. return (
  208. <div>
  209. <span style="padding-right: 15px;">{data}</span>
  210. {ftext?(<a-badge count={ftext} number-style={{ backgroundColor: fcolor, zoom:'80%' }}></a-badge>):''}
  211. {Number(record.stockQty||0) < Number(record.unpushedQty||0)?(<a-badge count="缺" number-style={{ zoom:'80%' }}></a-badge>):''}
  212. </div>
  213. )
  214. }
  215. // 输入框
  216. const inputFormat = function(record,data,h) {
  217. if(record.surplusQty>0){
  218. return (
  219. <div>
  220. <a-input-number
  221. size="small"
  222. vModel={record.cancelNums}
  223. precision={0}
  224. min={0}
  225. max={record.surplusQty}
  226. style="width: 100%;"
  227. placeholder="请输入" />
  228. </div>
  229. )
  230. }
  231. return '--'
  232. }
  233. // 操作按钮
  234. const actionFormat = function(record,data,h) {
  235. if(record.surplusQty>0){
  236. return (
  237. <div>
  238. <a-button
  239. size="small"
  240. type="link"
  241. class="button-info"
  242. onClick={()=>_this.handleAdd(record)}
  243. >添加</a-button>
  244. </div>
  245. )
  246. }
  247. return '--'
  248. }
  249. // 编号,并且格式化活动分类行
  250. const noFormat = function(record,data,h){
  251. return (
  252. <div>
  253. {record.id.indexOf('promo-')>=0 ? (
  254. <div class="active-title">
  255. {record.promo?(
  256. <div>
  257. <strong style="margin-right:10px;font-size:14px;">{record.promo.promotion.title} ({record.promo.promotionRule.description})</strong>
  258. <span style="margin-left:10px;color:#00aaff;cursor: pointer;" onClick={()=>this.showDesc(record)}>
  259. <a-icon title="查看活动详情" type="eye"/> 活动详情
  260. </span>
  261. </div>
  262. ):(<div></div>)}
  263. <div>
  264. 总售价:<strong>{record.total&&record.total.totalAmount||'--'}</strong>;
  265. 总款数:<strong>{record.total&&record.total.totalCategory||'--'}</strong>;
  266. 总数量:<strong>{record.total&&record.total.totalQty||'--'}</strong>;
  267. </div>
  268. </div>
  269. ):(<span>{data}</span>)}
  270. </div>
  271. )
  272. }
  273. let arr= [
  274. { title: "", field: "", key: "acheck", type: "checkbox", align: "center" },
  275. { title: '序号', field: 'no',key: "a", width: 50, align: 'center', operationColumn: false,renderBodyCell: ({ row, column, rowIndex }, h) => { return noFormat(row,row[column.field],h)} },
  276. { title: '产品编码', field: 'productCode',key: "b", width: 150, align: 'center',operationColumn: false,renderBodyCell: ({ row, column, rowIndex }, h) => { return codeFormat(row,row[column.field],h)} },
  277. { title: '产品名称', field: 'productName',key: "c", width: 250, align: 'center',operationColumn: false , ellipsis: { showTitle: true },renderBodyCell: ({ row, column, rowIndex }, h) => { return row[column.field] || '--'}},
  278. { title: '原厂编码', field: 'productOrigCode',key: "d", width: 150, align: 'center',operationColumn: false,ellipsis: { showTitle: true },renderBodyCell: ({ row, column, rowIndex }, h) => { return row[column.field] || '--'} },
  279. { title: '出库仓库', field: 'warehouseName',key: "e", width: 100, align: 'center',operationColumn: false,renderBodyCell: ({ row, column, rowIndex }, h) => { return row[column.field] || '--'}}
  280. ]
  281. if (this.$hasPermissions('B_salesDispatch_salesPrice')) { // 售价权限
  282. arr.push({ title: '销售价', field: 'price', width: 80,key: "f", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return priceFormat(row[column.field])} })
  283. }
  284. if (this.$hasPermissions('B_salesDispatch_costPrice')) {
  285. arr.push({ title: '成本价', field: 'showCost', width: 80,key: "g", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return priceFormat(row[column.field])} })
  286. }
  287. arr = arr.concat([
  288. { title: '出库仓库', field: 'warehouseName',key: "h", width: 100, align: 'center',operationColumn: false,renderBodyCell: ({ row, column, rowIndex }, h) => { return row[column.field] || '--'}},
  289. { title: '单位', field: 'productOrigUnit',key: "i", width: 80, align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return row[column.field] || '--'}},
  290. { title: '可用库存', field: 'stockQty', width: 80,key: "j", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return numsFormat(row[column.field])} },
  291. { title: '销售数量', field: 'qty', width: 80,key: "k", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return numsFormat(row[column.field])} },
  292. { title: '已取消', field: 'cancelQty', width: 80,key: "o", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return numsFormat(row[column.field])} },
  293. { title: '已下推', field: 'pushedQty', width: 80,key: "p", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return numsFormat(row[column.field])} },
  294. { title: '待下推', field: 'surplusQty', width: 80,key: "q", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return numsFormat(row[column.field])} },
  295. { title: '取消数量', field: 'surplusQty', width: 80,key: "r", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return inputFormat(row,row[column.field],h)} },
  296. { title: '操作', field: 'action', width: 80,key: "s", align: 'center',fixed: 'right',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return actionFormat(row,row[column.field],h)} },
  297. ])
  298. return arr
  299. }
  300. },
  301. methods: {
  302. // 产品分类 change
  303. changeProductType (val, opt) {
  304. this.queryParam.productTypeSn1 = val[0] ? val[0] : ''
  305. this.queryParam.productTypeSn2 = val[1] ? val[1] : ''
  306. this.queryParam.productTypeSn3 = val[2] ? val[2] : ''
  307. },
  308. // 合并活动分类单元格
  309. bodyCellSpan({ row, column, rowIndex }) {
  310. if (row.id.indexOf('promo-')>=0) {
  311. if(column.field=='no'){
  312. return {
  313. rowspan: 1,
  314. colspan: 17,
  315. };
  316. }else{
  317. return {
  318. rowspan: 0,
  319. colspan: 0,
  320. }
  321. }
  322. }
  323. },
  324. // 选择单元格
  325. selectedRowChange({ row, isSelected, selectedRowKeys }){
  326. // console.log(row, isSelected, selectedRowKeys);
  327. this.selectedRowKeys = selectedRowKeys;
  328. },
  329. // 全选行
  330. selectedAllChange({ isSelected, selectedRowKeys }){
  331. // console.log(isSelected, selectedRowKeys);
  332. this.selectedRowKeys = selectedRowKeys;
  333. },
  334. // 获取销售单参与的活动列表
  335. getActiveList(){
  336. salesPromoQueryList({ salesBillSn: this.salesBillSn }).then(res => {
  337. if(res.status == 200){
  338. this.activeList = res.data || []
  339. }
  340. this.$nextTick(()=>{
  341. this.searchTable()
  342. })
  343. })
  344. },
  345. async searchTable(){
  346. this.selectedRowKeys = []
  347. this.disableSelectedRowKeys = []
  348. this.dataSource = []
  349. this.disabled = true
  350. this.spinning = true
  351. this.queryParam.salesBillSn = this.salesBillSn
  352. this.queryParam.showStock = true
  353. const params = this.queryParam
  354. // 正常产品
  355. const proList = await salesDetailAllList(params).then(res => res.data)
  356. const norTotal = await salesDetaiCount(params).then(res => res.data)
  357. let listData = [{
  358. id: 'promo-normal',
  359. total: norTotal
  360. },...proList]
  361. // 循环获取活动产品
  362. const active = this.activeList
  363. for(let i=0;i<active.length;i++){
  364. const promo = active[i]
  365. const activeParams = {
  366. promoRuleSn: promo.promoRuleSn,
  367. promoSn: promo.promoSn,
  368. salesPromoSn: promo.salesPromoSn,
  369. ...params
  370. }
  371. // 获取活动产品列表
  372. const aclist = await salesDetailAllList(activeParams).then(res => res.data)
  373. // 获取活动产品统计
  374. // const acTotal = await salesPromoDetailCount(activeParams).then(res => res.data)
  375. const retList = [{
  376. id: 'promo-'+i,
  377. promo: promo,
  378. // total: acTotal
  379. },...aclist]
  380. listData = aclist&&aclist.length ? listData.concat(retList) : listData
  381. }
  382. console.log(listData)
  383. this.dataSource = listData
  384. // 格式化数据
  385. let f = 0
  386. this.dataSource.map((item,i) => {
  387. if(item.id.indexOf('promo-')>=0){f = f - 1}
  388. item.no = i + 1 + f
  389. const productCode = (item.productEntity && item.productEntity.code) || (item.dealerProductEntity && item.dealerProductEntity.code)
  390. const productName = (item.productEntity && item.productEntity.name) || (item.dealerProductEntity && item.dealerProductEntity.name)
  391. const productOrigCode = (item.productEntity && item.productEntity.origCode) || (item.dealerProductEntity && item.dealerProductEntity.origCode)
  392. const productOrigUnit = (item.productEntity && item.productEntity.unit) || (item.dealerProductEntity && item.dealerProductEntity.unit)
  393. item.productCode = productCode || '--'
  394. item.productName = productName || '--'
  395. item.productOrigCode = productOrigCode == ' ' ? '--' : productOrigCode
  396. item.productOrigUnit = productOrigUnit || '--'
  397. // 库存为0或待下推数为0,不可添加
  398. if(item.stockQty<0 || !item.stockQty || !item.surplusQty || item.surplusQty<0){
  399. // this.disableSelectedRowKeys.push(item.id)
  400. }
  401. })
  402. this.tableHeight = (this.showEmpty ? 200 : this.maxHeight) + 'px'
  403. this.spinning = false
  404. this.disabled = false
  405. },
  406. // 重置
  407. resetSearchForm () {
  408. this.queryParam.ptype = '0'
  409. this.queryParam.productCode = ''
  410. this.queryParam.productName = ''
  411. this.queryParam.promotionFlag = undefined
  412. this.queryParam.brandSn = undefined
  413. this.queryParam.productTypeSn1 = ''
  414. this.queryParam.productTypeSn2 = ''
  415. this.queryParam.productTypeSn3 = ''
  416. this.queryParam.warehouseSn = undefined
  417. this.productType = []
  418. this.dataSource = []
  419. this.searchTable()
  420. },
  421. pageInit (salesBillSn, detailData) {
  422. this.salesBillSn = salesBillSn
  423. this.detailData = detailData
  424. // 获取活动列表
  425. this.getActiveList()
  426. },
  427. // 清空选项
  428. clearSelectTable () {
  429. this.selectedRowKeys = []
  430. },
  431. // 添加
  432. handleAdd (row) {
  433. if (row.stockQty > 0) { // 可用库存大于0才可添加
  434. this.$emit('addProduct', [row.salesBillDetailSn])
  435. } else {
  436. this.$message.warning('库存为0,不可添加!')
  437. }
  438. },
  439. // 批量添加
  440. handlePlAdd () {
  441. const _this = this
  442. const chooseList = this.selectedRowKeys
  443. if (chooseList.length == 0) {
  444. _this.$message.warning('请先选择产品!')
  445. return
  446. }
  447. const chooseRow = this.dataSource.filter(item => chooseList.includes(item.id) && item.id.indexOf('promo-')<0)
  448. const obj = []
  449. chooseRow && chooseRow.map(item => {
  450. if (item.stockQty > 0) {
  451. obj.push(item.salesBillDetailSn)
  452. }
  453. })
  454. this.$confirm({
  455. title: '提示',
  456. content: '确认要批量添加到待下推列表吗?',
  457. centered: true,
  458. closable: true,
  459. onOk () {
  460. _this.$emit('addProduct', obj)
  461. }
  462. })
  463. },
  464. // 批量取消
  465. handlePlCancel () {
  466. const _this = this
  467. const chooseList = this.selectedRowKeys
  468. if (chooseList.length == 0) {
  469. _this.$message.warning('请先选择产品!')
  470. return
  471. }
  472. const chooseRow = this.dataSource.filter(item => chooseList.includes(item.id) && item.id.indexOf('promo-')<0)
  473. const obj = []
  474. chooseRow && chooseRow.map(item => {
  475. obj.push({
  476. 'cancelQty': item.cancelNums,
  477. 'salesBillDetailSn': item.salesBillDetailSn
  478. })
  479. })
  480. this.$emit('cancelProduct', obj)
  481. }
  482. }
  483. }
  484. </script>
  485. <style lang="less">
  486. .ve-table-body-td{
  487. .active-title{
  488. display: flex;
  489. align-items: center;
  490. justify-content: space-between;
  491. padding: 10px;
  492. background: #f3f8fa;
  493. }
  494. }
  495. .ve-table .ve-table-container .ve-table-content-wrapper table.ve-table-content tbody.ve-table-body tr.ve-table-body-tr td.table-body-cell-no,
  496. .ve-table .ve-table-container .ve-table-content-wrapper table.ve-table-content tbody.ve-table-body tr.ve-table-expand-tr td.table-body-cell-no{
  497. padding: 0;
  498. }
  499. </style>