|
@@ -269,6 +269,7 @@ $(document).ready(function() {
|
|
|
{ title: '固定', colSpan: '1', rowSpan: '1', field: 'is_fixed', hAlign: 1, width: 50, cellType: 'checkbox' },
|
|
|
{ title: '类型', colSpan: '1', rowSpan: '1', field: 'filing_type', hAlign: 1, width: 50, readOnly: true, visible: is_debug, },
|
|
|
{ title: '新类型', colSpan: '1', rowSpan: '1', field: 'new_filing_type', hAlign: 1, width: 50, readOnly: true, visible: is_debug, },
|
|
|
+ { title: '归档单位', colSpan: '1', rowSpan: '1', field: 'file_company', hAlign: 0, width: 80, formatter: '@' },
|
|
|
{ title: '提示', colSpan: '1', rowSpan: '1', field: 'tips', hAlign: 0, width: 280, formatter: '@', wordWrap: 1 },
|
|
|
],
|
|
|
emptyRows: 0,
|
|
@@ -398,7 +399,7 @@ $(document).ready(function() {
|
|
|
const data = [];
|
|
|
const getUpdateData = function(children) {
|
|
|
for (const [i, node] of children.entries()) {
|
|
|
- data.push({ id: node.id, is_fixed: node.is_fixed, filing_type: node.new_filing_type, tree_order: i + 1, tips: node.tips || '' });
|
|
|
+ data.push({ id: node.id, is_fixed: node.is_fixed, filing_type: node.new_filing_type, tree_order: i + 1, tips: node.tips || '', file_company: node.file_company || '' });
|
|
|
// data.push({ id: node.id, is_fixed: node.is_fixed, filing_type: node.filing_type, file_count: node.file_count, new_filing_type: node.new_filing_type, tree_order: i + 1, tips: node.tips || '' });
|
|
|
if (node.children) getUpdateData(node.children);
|
|
|
}
|
|
@@ -423,6 +424,7 @@ $(document).ready(function() {
|
|
|
org_is_fixed: node.is_fixed,
|
|
|
is_fixed: node.is_fixed,
|
|
|
filing_type: node.filing_type,
|
|
|
+ file_company: node.file_company,
|
|
|
tips: node.tips,
|
|
|
file_count: node.file_count,
|
|
|
permission_count: node.permission_count,
|