Browse Source

[fix] 销售管理

修改出差单的列表页面,去掉之前的分页,采用全局统一的分页
修改领料单的列表页面,去掉之前的分页,采用全局统一的分页
修改请购单的列表页面,去掉之前的分页,采用全局统一的分页
修改Bom的列表页面,去掉之前的分页,采用全局统一的分页
修改客户资料的详情页面,修改客户操作历史的分页,采用全局统一的分页;修改其他联系人信息的分页,采用全局统一的分页;修改其他收货地址信息的分页,采用全局统一的分页;
修改生产加工工序的列表页面,去掉之前的分页,采用全局统一的分页
修改制程类别明细列表的列表页面,去掉之前的分页,采用全局统一的分页
修改SOP列表的列表页面,去掉之前的分页,采用全局统一的分页
修改供应商资料列表的列表页面,去掉之前的分页,采用全局统一的分页
dev
liuxiaoxu 2 months ago
parent
commit
a0a72ba781
  1. 2
      ruoyi-admin/src/main/resources/static/ruoyi/js/ry-ui.js
  2. 2
      ruoyi-admin/src/main/resources/templates/erp/bom/bom.html
  3. 2
      ruoyi-admin/src/main/resources/templates/system/baseEvectionForm/baseEvectionForm.html
  4. 8
      ruoyi-admin/src/main/resources/templates/system/customer/detail.html
  5. 2
      ruoyi-admin/src/main/resources/templates/system/empRequisiteOrder/empRequisiteOrder.html
  6. 2
      ruoyi-admin/src/main/resources/templates/system/procedure/procedure.html
  7. 2
      ruoyi-admin/src/main/resources/templates/system/processCategory/processCategory.html
  8. 2
      ruoyi-admin/src/main/resources/templates/system/requisitioning/requisitioning.html
  9. 2
      ruoyi-admin/src/main/resources/templates/system/sop/sop.html
  10. 1
      ruoyi-admin/src/main/resources/templates/system/supplier/supplier.html

2
ruoyi-admin/src/main/resources/static/ruoyi/js/ry-ui.js

@ -47,7 +47,7 @@ var table = {
paginationLoop: false,
pageSize: 10,
pageNumber: 1,
pageList: [10, 100, 1000],
pageList: [20, 50, 100, 500, 1000],
toolbar: "toolbar",
loadingFontSize: 13,
striped: false,

2
ruoyi-admin/src/main/resources/templates/erp/bom/bom.html

@ -136,8 +136,6 @@
exportUrl: prefix + "/export",
importUrl: prefix + "/importData",
importTemplateUrl: prefix + "/importTemplate",
pageList: [5, 10, 25, 50],
pageSize: 10,
sortable: true, // 是否启用排序
sortStable: true, // 设置为 true 将获得稳定的排序
modalName: "bom",

2
ruoyi-admin/src/main/resources/templates/system/baseEvectionForm/baseEvectionForm.html

@ -81,8 +81,6 @@
exportUrl: prefix + "/export",
detailUrl: prefix + "/detail/{id}",
modalName: "出差单",
pageList: [5, 10, 25, 50],
pageSize: 10,
sortable: true, // 是否启用排序
sortStable: true, // 设置为 true 将获得稳定的排序
detailView: true,

8
ruoyi-admin/src/main/resources/templates/system/customer/detail.html

@ -415,8 +415,6 @@
url: '/system/customer/operList',
pagination: true,
pageNumber: 1,
pageSize: 10,
pageList: [10, 25, 50, 100],
showRefresh: false,
method: "post",
contentType: "application/x-www-form-urlencoded",
@ -487,8 +485,6 @@
data: [[${contactsList}]],
// pagination: true,
// pageNumber: 1,
// pageSize: 10,
// pageList: [10, 25, 50, 100],
maxHeight: 50,
modalName: "联系人明细",
columns: [
@ -586,8 +582,6 @@
data: [[${shippingAddressList}]],
// pagination: true,
// pageNumber: 1,
// pageSize: 10,
// pageList: [10, 25, 50, 100],
maxHeight: 50,
modalName: "收货地址明细",
columns: [
@ -616,8 +610,6 @@
data: [[${invoicesList}]],
// pagination: true,
// pageNumber: 1,
// pageSize: 10,
// pageList: [10, 25, 50, 100],
maxHeight: 50,
modalName: "开票信息",
columns: [

2
ruoyi-admin/src/main/resources/templates/system/empRequisiteOrder/empRequisiteOrder.html

@ -74,8 +74,6 @@
restoreUrl: prefix + "/restore/{id}",
exportUrl: prefix + "/export",
detailUrl: prefix + "/detail/{id}",
pageList: [5, 10, 25, 50],
pageSize: 10,
detailView: true,
fixedColumns: true, // 启用冻结列
rightFixedColumns:1,

2
ruoyi-admin/src/main/resources/templates/system/procedure/procedure.html

@ -82,8 +82,6 @@
exportUrl: prefix + "/export",
detailUrl: prefix + "/detail/{id}",
clickToSelect: true,
pageList: [10, 25, 50],
pageSize: 10,
showColumns: false,
fixedColumns: true, // 启用冻结列
fixedRightNumber: 1, // 冻结右列个数

2
ruoyi-admin/src/main/resources/templates/system/processCategory/processCategory.html

@ -60,8 +60,6 @@
removeUrl: prefix + "/remove",
exportUrl: prefix + "/export",
detailUrl: prefix + "/detail/{id}",
pageList: [10, 25, 50],
pageSize: 10,
showColumns: false,
fixedColumns: true, // 启用冻结列
fixedRightNumber: 1, // 冻结右列个数

2
ruoyi-admin/src/main/resources/templates/system/requisitioning/requisitioning.html

@ -93,8 +93,6 @@
exportUrl: prefix + "/export",
detailUrl: prefix + "/detail/{id}",
modalName: "请购单",
pageList: [5, 10, 25, 50],
pageSize: 10,
sortable: true, // 是否启用排序
sortStable: true, // 设置为 true 将获得稳定的排序
detailView: false,

2
ruoyi-admin/src/main/resources/templates/system/sop/sop.html

@ -92,8 +92,6 @@
showExport: true,
clickToSelect: true,
modalName: "SOP",
pageList: [10, 25, 50],
pageSize: 10,
showColumns: false,
fixedColumns: true, // 启用冻结列
fixedRightNumber: 1, // 冻结右列个数

1
ruoyi-admin/src/main/resources/templates/system/supplier/supplier.html

@ -102,7 +102,6 @@
showExport: true,
showColumns: true,
showToggle: true,
pageList: [10, 25, "all"],
clickToSelect: true,
modalName: "供应商资料",
fixedColumns:true,

Loading…
Cancel
Save