diff --git a/.makemd/fileCache.mdc b/.makemd/fileCache.mdc index cd73d1c..52c20a7 100644 Binary files a/.makemd/fileCache.mdc and b/.makemd/fileCache.mdc differ diff --git a/.makemd/superstate.mdc b/.makemd/superstate.mdc index 9e1d280..5e8804e 100644 Binary files a/.makemd/superstate.mdc and b/.makemd/superstate.mdc differ diff --git a/.obsidian/plugins/advanced-canvas/main.js b/.obsidian/plugins/advanced-canvas/main.js index 0d90e25..bf6a2ab 100644 --- a/.obsidian/plugins/advanced-canvas/main.js +++ b/.obsidian/plugins/advanced-canvas/main.js @@ -180,7 +180,7 @@ var DebugHelper = class { } }); if (duration >= 0) { - setTimeout(() => { + window.setTimeout(() => { canvas.removeNode(node); }, duration); } @@ -303,7 +303,7 @@ var _CanvasHelper = class _CanvasHelper { }; } static createControlMenuButton(menuOption) { - const quickSetting = document.createElement("div"); + const quickSetting = activeDocument.createElement("div"); if (menuOption.id) quickSetting.id = menuOption.id; quickSetting.classList.add("canvas-control-item"); (0, import_obsidian2.setIcon)(quickSetting, menuOption.icon); @@ -320,7 +320,7 @@ var _CanvasHelper = class _CanvasHelper { controlGroup.appendChild(element); } static createCardMenuOption(canvas, menuOption, previewNodeSize, onPlaced) { - const menuOptionElement = document.createElement("div"); + const menuOptionElement = activeDocument.createElement("div"); if (menuOption.id) menuOptionElement.id = menuOption.id; menuOptionElement.classList.add("canvas-card-menu-button"); menuOptionElement.classList.add("mod-draggable"); @@ -343,7 +343,7 @@ var _CanvasHelper = class _CanvasHelper { canvas == null ? void 0 : canvas.cardMenuEl.appendChild(element); } static createPopupMenuOption(menuOption) { - const menuOptionElement = document.createElement("button"); + const menuOptionElement = activeDocument.createElement("button"); if (menuOption.id) menuOptionElement.id = menuOption.id; menuOptionElement.classList.add("clickable-icon"); (0, import_obsidian2.setIcon)(menuOptionElement, menuOption.icon); @@ -366,14 +366,14 @@ var _CanvasHelper = class _CanvasHelper { return; } menuOptionElement.classList.add("is-active"); - const submenu = document.createElement("div"); + const submenu = (_c = menuOptionElement.parentElement) == null ? void 0 : _c.createDiv(); + if (!submenu) return; submenu.id = submenuId; submenu.classList.add("canvas-submenu"); for (const subMenuOption of subMenuOptions) { const subMenuOptionElement = this.createPopupMenuOption(subMenuOption); submenu.appendChild(subMenuOptionElement); } - (_c = menuOptionElement.parentElement) == null ? void 0 : _c.appendChild(submenu); } }); return menuOptionElement; @@ -399,10 +399,9 @@ var _CanvasHelper = class _CanvasHelper { } static getBBox(canvasElements) { const bBoxes = canvasElements.map((element) => { - if (element.getBBox) return element.getBBox(); - const nodeData = element; - if (nodeData.x !== void 0 && nodeData.y !== void 0 && nodeData.width !== void 0 && nodeData.height !== void 0) - return { minX: nodeData.x, minY: nodeData.y, maxX: nodeData.x + nodeData.width, maxY: nodeData.y + nodeData.height }; + if ("getBBox" in element) return element.getBBox(); + if (element.x !== void 0 && element.y !== void 0 && element.width !== void 0 && element.height !== void 0) + return { minX: element.x, minY: element.y, maxX: element.x + element.width, maxY: element.y + element.height }; return null; }).filter((bbox) => bbox !== null); return BBoxHelper.combineBBoxes(bBoxes); @@ -457,12 +456,11 @@ var _CanvasHelper = class _CanvasHelper { const popupMenuElement = (_a = canvas == null ? void 0 : canvas.menu) == null ? void 0 : _a.menuEl; if (!popupMenuElement) return; (_b = popupMenuElement.querySelector(`#${STYLE_MENU_ID}`)) == null ? void 0 : _b.remove(); - const styleMenuButtonElement = document.createElement("button"); + const styleMenuButtonElement = popupMenuElement.createEl("button"); styleMenuButtonElement.id = STYLE_MENU_ID; styleMenuButtonElement.classList.add("clickable-icon"); (0, import_obsidian2.setIcon)(styleMenuButtonElement, "paintbrush"); (0, import_obsidian2.setTooltip)(styleMenuButtonElement, "Style", { placement: "top" }); - popupMenuElement.appendChild(styleMenuButtonElement); styleMenuButtonElement.addEventListener("click", () => { var _a2, _b2, _c; const isOpen = styleMenuButtonElement.classList.toggle("has-active-menu"); @@ -471,7 +469,7 @@ var _CanvasHelper = class _CanvasHelper { (_b2 = popupMenuElement.querySelector(`#${STYLE_MENU_DROPDOWN_SUBMENU_ID}`)) == null ? void 0 : _b2.remove(); return; } - const styleMenuDropdownElement = document.createElement("div"); + const styleMenuDropdownElement = popupMenuElement.createDiv(); styleMenuDropdownElement.id = STYLE_MENU_DROPDOWN_ID; styleMenuDropdownElement.classList.add("menu"); styleMenuDropdownElement.style.position = "absolute"; @@ -484,24 +482,20 @@ var _CanvasHelper = class _CanvasHelper { styleMenuDropdownElement.style.left = `${leftPosition}px`; else styleMenuDropdownElement.style.right = `${rightPosition}px`; for (const stylableAttribute of stylableAttributes) { - const stylableAttributeElement = document.createElement("div"); + const stylableAttributeElement = styleMenuDropdownElement.createDiv(); stylableAttributeElement.classList.add("menu-item"); stylableAttributeElement.classList.add("tappable"); - const iconElement = document.createElement("div"); + const iconElement = stylableAttributeElement.createDiv(); iconElement.classList.add("menu-item-icon"); let selectedStyle = (_c = stylableAttribute.options.find((option) => currentStyleAttributes[stylableAttribute.key] === option.value)) != null ? _c : stylableAttribute.options.find((value) => value.value === null); if (!selectedStyle) continue; (0, import_obsidian2.setIcon)(iconElement, selectedStyle.icon); - stylableAttributeElement.appendChild(iconElement); - const labelElement = document.createElement("div"); + const labelElement = stylableAttributeElement.createDiv(); labelElement.classList.add("menu-item-title"); labelElement.textContent = stylableAttribute.label; - stylableAttributeElement.appendChild(labelElement); - const expandIconElement = document.createElement("div"); + const expandIconElement = stylableAttributeElement.createDiv(); expandIconElement.classList.add("menu-item-icon"); (0, import_obsidian2.setIcon)(expandIconElement, "chevron-right"); - stylableAttributeElement.appendChild(expandIconElement); - styleMenuDropdownElement.appendChild(stylableAttributeElement); stylableAttributeElement.addEventListener("pointerenter", () => { stylableAttributeElement.classList.add("selected"); }); @@ -511,7 +505,7 @@ var _CanvasHelper = class _CanvasHelper { stylableAttributeElement.addEventListener("click", () => { var _a3; (_a3 = popupMenuElement.querySelector(`#${STYLE_MENU_DROPDOWN_SUBMENU_ID}`)) == null ? void 0 : _a3.remove(); - const styleMenuDropdownSubmenuElement = document.createElement("div"); + const styleMenuDropdownSubmenuElement = popupMenuElement.createDiv(); styleMenuDropdownSubmenuElement.id = STYLE_MENU_DROPDOWN_SUBMENU_ID; styleMenuDropdownSubmenuElement.classList.add("menu"); styleMenuDropdownSubmenuElement.style.position = "absolute"; @@ -537,32 +531,27 @@ var _CanvasHelper = class _CanvasHelper { }); if (selectedStyle === styleOption) { styleMenuDropdownSubmenuOptionElement.classList.add("mod-selected"); - const selectedIconElement = document.createElement("div"); + const selectedIconElement = styleMenuDropdownSubmenuOptionElement.createDiv(); selectedIconElement.classList.add("menu-item-icon"); selectedIconElement.classList.add("mod-selected"); (0, import_obsidian2.setIcon)(selectedIconElement, "check"); - styleMenuDropdownSubmenuOptionElement.appendChild(selectedIconElement); } styleMenuDropdownSubmenuElement.appendChild(styleMenuDropdownSubmenuOptionElement); } - popupMenuElement.appendChild(styleMenuDropdownSubmenuElement); }); } - popupMenuElement.appendChild(styleMenuDropdownElement); }); } static createDropdownOptionElement(menuOption) { - const menuDropdownOptionElement = document.createElement("div"); + const menuDropdownOptionElement = activeDocument.createElement("div"); menuDropdownOptionElement.classList.add("menu-item"); menuDropdownOptionElement.classList.add("tappable"); - const iconElement = document.createElement("div"); + const iconElement = menuDropdownOptionElement.createDiv(); iconElement.classList.add("menu-item-icon"); (0, import_obsidian2.setIcon)(iconElement, menuOption.icon); - menuDropdownOptionElement.appendChild(iconElement); - const labelElement = document.createElement("div"); + const labelElement = menuDropdownOptionElement.createDiv(); labelElement.classList.add("menu-item-title"); labelElement.textContent = menuOption.label; - menuDropdownOptionElement.appendChild(labelElement); menuDropdownOptionElement.addEventListener("pointerenter", () => { menuDropdownOptionElement.classList.add("selected"); }); @@ -576,7 +565,7 @@ var _CanvasHelper = class _CanvasHelper { return menuDropdownOptionElement; } static createDropdownSeparatorElement() { - const separatorElement = document.createElement("div"); + const separatorElement = activeDocument.createElement("div"); separatorElement.classList.add("menu-separator"); return separatorElement; } @@ -633,7 +622,8 @@ var CanvasExtension = class { constructor(plugin) { this.plugin = plugin; const isEnabled = this.isEnabled(); - if (!(isEnabled === true || this.plugin.settings.getSetting(isEnabled))) return; + if (!(isEnabled === true || this.plugin.settings.getSetting(isEnabled))) + return; this.init(); } }; @@ -1386,7 +1376,7 @@ var CssStylesConfigManager = class { getStyles() { if (this.cachedConfig) return this.cachedConfig; this.cachedConfig = []; - const styleSheets = document.styleSheets; + const styleSheets = activeDocument.styleSheets; for (let i = 0; i < styleSheets.length; i++) { const sheet = styleSheets.item(i); if (!sheet) continue; @@ -1407,6 +1397,7 @@ var CssStylesConfigManager = class { const matches = textContent.matchAll(this.configRegex); for (const match of matches) { const yamlString = match[1]; + if (!yamlString) continue; const configYaml = (0, import_obsidian3.parseYaml)(yamlString); configs.push(configYaml); } @@ -1534,7 +1525,8 @@ var EdgeStylesExtension = class extends CanvasExtension { const toNodeBBox = edge.to.node.getBBox(); const toBBoxSidePos = BBoxHelper.getCenterOfBBoxSide(toNodeBBox, edge.to.side); const toPos = edge.to.end === "none" ? toBBoxSidePos : edge.bezier.to; - const path = new EDGE_PATHFINDING_METHODS[pathfindingMethod]( + const PathfindingConstructor = EDGE_PATHFINDING_METHODS[pathfindingMethod]; + const path = new PathfindingConstructor( this.plugin, canvas, fromNodeBBox, @@ -1657,9 +1649,6 @@ var VariableBreakpointCanvasExtension = class extends CanvasExtension { // src/settings.ts var README_URL = "https://github.com/Developer-Mike/obsidian-advanced-canvas?tab=readme-ov-file"; -var SPENT_HOURS = 250; -var RECEIVED_DONATIONS = 606; -var HOURLY_RATE_GOAL = 15; var KOFI_PAGE_URL = "https://ko-fi.com/X8X27IA08"; var KOFI_BADGE_URI = "data:image/webp;base64,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"; var DEFAULT_SETTINGS_VALUES = { @@ -1887,7 +1876,12 @@ var SETTINGS = { label: "Custom node style settings", description: "Add custom style settings for nodes. (Go to GitHub for more information)", type: "button", - onClick: () => window.open("https://github.com/Developer-Mike/obsidian-advanced-canvas/blob/main/README.md#custom-styles") + onClick: () => { + const anchor = activeDocument.createElement("a"); + anchor.href = "https://github.com/Developer-Mike/obsidian-advanced-canvas/blob/main/README.md#custom-styles"; + anchor.target = "_blank"; + anchor.click(); + } }, defaultTextNodeColor: { label: "Default text node color", @@ -1923,7 +1917,12 @@ var SETTINGS = { label: "Custom edge style settings", description: "Add custom style settings for edges. (Go to GitHub for more information)", type: "button", - onClick: () => window.open("https://github.com/Developer-Mike/obsidian-advanced-canvas/blob/main/README.md#custom-styles") + onClick: () => { + const anchor = activeDocument.createElement("a"); + anchor.href = "https://github.com/Developer-Mike/obsidian-advanced-canvas/blob/main/README.md#custom-styles"; + anchor.target = "_blank"; + anchor.click(); + } }, inheritEdgeColorFromNode: { label: "Inherit edge color from node", @@ -2215,10 +2214,9 @@ var AdvancedCanvasPluginSettingTab = class extends import_obsidian4.PluginSettin heading.infoSection, heading.disableToggle ? null : headingId ); - const settingsHeaderChildrenContainerEl = document.createElement("div"); + const settingsHeaderChildrenContainerEl = containerEl.createDiv(); settingsHeaderChildrenContainerEl.classList.add("settings-header-children"); - settingsHeaderChildrenContainerEl.appendChild(document.createElement("span")); - containerEl.appendChild(settingsHeaderChildrenContainerEl); + settingsHeaderChildrenContainerEl.createSpan(); for (const [settingId, setting] of Object.entries(heading.children)) { if (!(settingId in DEFAULT_SETTINGS_VALUES)) continue; switch (setting.type) { @@ -2252,7 +2250,10 @@ var AdvancedCanvasPluginSettingTab = class extends import_obsidian4.PluginSettin if (infoSection !== void 0) { setting.addExtraButton( (button) => button.setTooltip("Open github documentation").setIcon("info").onClick(async () => { - window.open(`${README_URL}#${infoSection}`); + const anchor = activeDocument.createElement("a"); + anchor.href = `${README_URL}#${infoSection}`; + anchor.target = "_blank"; + anchor.click(); }) ); } @@ -2275,7 +2276,7 @@ var AdvancedCanvasPluginSettingTab = class extends import_obsidian4.PluginSettin } createNumberSetting(containerEl, settingId, setting) { new import_obsidian4.Setting(containerEl).setName(setting.label).setDesc(setting.description).addText( - (text) => text.setValue(this.settingsManager.getSetting(settingId).toString()).onChange(async (value) => { + (text) => text.setValue(JSON.stringify(this.settingsManager.getSetting(settingId))).onChange(async (value) => { await this.settingsManager.setSetting({ [settingId]: setting.parse(value) }); }) ); @@ -2309,12 +2310,10 @@ var AdvancedCanvasPluginSettingTab = class extends import_obsidian4.PluginSettin ); } createStylesSetting(containerEl, settingId, setting) { - const nestedContainerEl = document.createElement("details"); + const nestedContainerEl = containerEl.createEl("details"); nestedContainerEl.classList.add("setting-item"); - containerEl.appendChild(nestedContainerEl); - const summaryEl = document.createElement("summary"); + const summaryEl = nestedContainerEl.createEl("summary"); summaryEl.textContent = setting.label; - nestedContainerEl.appendChild(summaryEl); for (const styleAttribute of setting.getParameters(this.settingsManager)) { new import_obsidian4.Setting(nestedContainerEl).setName(styleAttribute.label).addDropdown( (dropdown) => { @@ -2331,39 +2330,18 @@ var AdvancedCanvasPluginSettingTab = class extends import_obsidian4.PluginSettin ); } } - async createKofiBanner(containerEl) { - const banner = document.createElement("div"); + createKofiBanner(containerEl) { + const banner = containerEl.createDiv(); banner.classList.add("kofi-banner"); - const title = document.createElement("h1"); - title.textContent = "Enjoying the plugin?"; - banner.appendChild(title); - const description = document.createElement("p"); - description.innerHTML = ` - Currently, Advanced Canvas has received about ${RECEIVED_DONATIONS}\xA3 in donations with a total of about ${SPENT_HOURS} hours spent on development.
-
- Please help me develop this plugin further by reaching the goal of ${HOURLY_RATE_GOAL}\xA3/hour \u2764\uFE0F - `; - banner.appendChild(description); - const progressContainer = document.createElement("div"); - progressContainer.classList.add("progress-container"); - const progressbar = document.createElement("progress"); - progressbar.value = RECEIVED_DONATIONS / SPENT_HOURS; - progressbar.max = HOURLY_RATE_GOAL; - progressContainer.appendChild(progressbar); - const hourlyRate = document.createElement("span"); - hourlyRate.classList.add("hourly-rate"); - hourlyRate.textContent = `${(RECEIVED_DONATIONS / SPENT_HOURS).toString()}\xA3/h`; - progressContainer.appendChild(hourlyRate); - banner.appendChild(progressContainer); - const koFiButton = document.createElement("a"); + const title = banner.createSpan(); + title.classList.add("ac-kofi-banner-title"); + title.textContent = "Support the development of Advanced Canvas"; + const koFiButton = banner.createEl("a"); koFiButton.classList.add("ac-kofi-button"); koFiButton.href = KOFI_PAGE_URL; koFiButton.target = "_blank"; - const koFiImage = document.createElement("img"); + const koFiImage = koFiButton.createEl("img"); koFiImage.src = KOFI_BADGE_URI; - koFiButton.appendChild(koFiImage); - banner.appendChild(koFiButton); - containerEl.appendChild(banner); } }; @@ -2442,7 +2420,7 @@ var dist_default = JSONC; var Patcher = class _Patcher { constructor(plugin) { this.plugin = plugin; - this.patch(); + void this.patch(); } static async waitForMapValueLookup(map, viewType, patch) { return new Promise((resolve) => { @@ -2541,7 +2519,7 @@ var _MigrationHelper = class _MigrationHelper { }; _MigrationHelper.MIGRATIONS = { undefined: (canvas) => { - var _a, _b, _c; + var _a, _b, _c, _d; const TARGET_SPEC_VERSION = "1.0-1.0"; let startNode; const globalInterdimensionalEdges = {}; @@ -2568,16 +2546,16 @@ _MigrationHelper.MIGRATIONS = { if (edge.fromNode !== node.id) edge.fromNode = `${portalId}-${edge.fromNode}`; if (edge.toNode !== node.id) edge.toNode = `${portalId}-${edge.toNode}`; } - globalInterdimensionalEdges[portalId].push(...edges); + (_b = globalInterdimensionalEdges[portalId]) == null ? void 0 : _b.push(...edges); } delete node.edgesToNodeFromPortal; } } - for (const node of (_b = canvas.nodes) != null ? _b : []) { + for (const node of (_c = canvas.nodes) != null ? _c : []) { if (!(node.id in globalInterdimensionalEdges)) continue; node.interdimensionalEdges = globalInterdimensionalEdges[node.id]; } - (_c = canvas.metadata) != null ? _c : canvas.metadata = { + (_d = canvas.metadata) != null ? _d : canvas.metadata = { version: TARGET_SPEC_VERSION, frontmatter: {}, startNode @@ -2916,7 +2894,7 @@ var CanvasPatcher = class extends Patcher { const addEdgeEventRef = that.plugin.app.workspace.on("advanced-canvas:edge-added", (_canvas, edge) => { that.plugin.app.workspace.trigger("advanced-canvas:edge-connection-dragging:before", this.canvas, edge, e, true, "to"); that.plugin.app.workspace.offref(addEdgeEventRef); - document.addEventListener("pointerup", (e2) => { + activeDocument.addEventListener("pointerup", (e2) => { that.plugin.app.workspace.trigger("advanced-canvas:edge-connection-dragging:after", this.canvas, edge, e2, true, "to"); }, { once: true }); }); @@ -2976,7 +2954,7 @@ var CanvasPatcher = class extends Patcher { const toPos = BBoxHelper.getCenterOfBBoxSide(this.to.node.getBBox(), this.to.side); const draggingSide = Math.hypot(eventPos.x - fromPos.x, eventPos.y - fromPos.y) > Math.hypot(eventPos.x - toPos.x, eventPos.y - toPos.y) ? "to" : "from"; that.plugin.app.workspace.trigger("advanced-canvas:edge-connection-dragging:before", this.canvas, this, e, false, draggingSide, previousEnds); - document.addEventListener("pointerup", (e2) => { + activeDocument.addEventListener("pointerup", (e2) => { that.plugin.app.workspace.trigger("advanced-canvas:edge-connection-dragging:after", this.canvas, this, e2, false, draggingSide, previousEnds); }, { once: true }); return result; @@ -3052,7 +3030,7 @@ var AdvancedCanvasEmbed = class extends import_obsidian7.Component { super(); this.onModifyCallback = (file) => { if (file.path !== this.file.path) return; - this.loadFile(); + void this.loadFile(); }; this.context = context; this.file = file; @@ -3083,7 +3061,7 @@ var AdvancedCanvasEmbed = class extends import_obsidian7.Component { else if (canvasNode.type === "file") nodeContent = `**File Node:** ${canvasNode.file}`; this.context.containerEl.classList.add("markdown-embed"); this.context.containerEl.empty(); - import_obsidian7.MarkdownRenderer.render(this.context.app, nodeContent, this.context.containerEl, this.file.path, this); + await import_obsidian7.MarkdownRenderer.render(this.context.app, nodeContent, this.context.containerEl, this.file.path, this); } }; @@ -3139,7 +3117,7 @@ var TaskQueue = class { async add(task) { return new Promise((resolve) => { this.queue.push([resolve, task]); - if (!this.running) this.run(); + if (!this.running) void this.run(); }); } setOnFinished(callback) { @@ -3164,10 +3142,12 @@ var MetadataCachePatcher = class extends Patcher { if (!this.plugin.settings.getSetting("canvasMetadataCompatibilityEnabled")) return; Patcher.patchPrototype(this.plugin, this.plugin.app.metadataCache, { getCache: Patcher.OverrideExisting((next) => function(filepath, ...args) { + var _a; if (FilepathHelper.extension(filepath) === "canvas") { - if (!this.fileCache.hasOwnProperty(filepath)) return null; - const hash = this.fileCache[filepath].hash; - return this.metadataCache[hash] || null; + if (!Object.prototype.hasOwnProperty.call(this.fileCache, filepath)) + return null; + const hash = (_a = this.fileCache[filepath]) == null ? void 0 : _a.hash; + return hash && this.metadataCache[hash] || null; } return next.call(this, filepath, ...args); }), @@ -3179,7 +3159,7 @@ var MetadataCachePatcher = class extends Patcher { resolveLinks: Patcher.OverrideExisting((next) => async function(filepath) { const result = next.call(this, filepath); if (FilepathHelper.extension(filepath) === "canvas") - CanvasMetadataHandler.resolveCanvasLinks.call(this, filepath); + await CanvasMetadataHandler.resolveCanvasLinks.call(this, filepath); return result; }) }); @@ -3189,12 +3169,11 @@ var _CanvasMetadataHandler = class _CanvasMetadataHandler { static async computeCanvasFileMetadataAsync(file) { this.uniqueFileLookup.add(file.name.toLowerCase(), file); let isStale = true; - if (!this.fileCache.hasOwnProperty(file.path)) - this.saveFileCache(file.path, { mtime: 0, size: 0, hash: "" }); + const cache2 = this.fileCache[file.path]; + if (!cache2) this.saveFileCache(file.path, { mtime: 0, size: 0, hash: "" }); else { - const cache2 = this.fileCache[file.path]; const unchanged = cache2.mtime === file.stat.mtime && cache2.size === file.stat.size; - const hasMetadataCache = cache2.hash && this.metadataCache.hasOwnProperty(cache2.hash); + const hasMetadataCache = cache2.hash && Object.prototype.hasOwnProperty.call(this.metadataCache, cache2.hash); if (unchanged && hasMetadataCache) isStale = false; } @@ -3226,19 +3205,19 @@ var _CanvasMetadataHandler = class _CanvasMetadataHandler { data, metadata ); - const slowIndexingTimeout = setTimeout(() => { + const slowIndexingTimeout = window.setTimeout(() => { new import_obsidian8.Notice(`Canvas indexing taking a long time for file ${file.path}`); }, 1e4); try { metadata = await _CanvasMetadataHandler.computeCanvasMetadataAsync.call(this, data); } finally { - clearTimeout(slowIndexingTimeout); + window.clearTimeout(slowIndexingTimeout); } if (metadata) { this.saveMetaCache(hash, metadata); this.trigger("changed", file, data, metadata); } else { - console.log("Canvas metadata failed to parse", file); + console.error("Canvas metadata failed to parse", file); } } static async computeCanvasMetadataAsync(data) { @@ -3261,7 +3240,7 @@ var _CanvasMetadataHandler = class _CanvasMetadataHandler { return { key, displayText: aliases.length > 0 ? aliases.join("|") : link, - link, + link: link != null ? link : v, original: v }; }).filter((v) => v !== null); @@ -3360,9 +3339,9 @@ var BacklinksPatcher = class extends Patcher { const that = this; await Patcher.waitForViewRequest(this.plugin, "backlink", (view) => { Patcher.patchPrototype(this.plugin, view.backlink, { - recomputeBacklink: Patcher.OverrideExisting((next) => function(file, ...args) { + recomputeBacklink: Patcher.OverrideExisting((next) => function(file) { that.isRecomputingBacklinks = true; - const result = next.call(this, file, ...args); + const result = next.call(this, file); that.isRecomputingBacklinks = false; return result; }) @@ -3378,8 +3357,8 @@ var BacklinksPatcher = class extends Patcher { } } }, - getMarkdownFiles: Patcher.OverrideExisting((next) => function(...args) { - if (!that.isRecomputingBacklinks) return next.call(this, ...args); + getMarkdownFiles: Patcher.OverrideExisting((next) => function() { + if (!that.isRecomputingBacklinks) return next.call(this); const files = []; const root = this.getRoot(); this.recurseChildrenAC(root, (child) => { @@ -3432,7 +3411,7 @@ var FileManagerPatcher = class extends Patcher { const content = JSON.parse(data); fn(content.metadata.frontmatter); return JSON.stringify(content, null, 2); - }); + }).catch(() => console.error("Failed to update metadata object in canvas file.")); return; } return next.call(this, file, fn, options); @@ -3475,7 +3454,7 @@ var PropertiesPatcher = class extends Patcher { const content = JSON.parse(data); if (content == null ? void 0 : content.metadata) content.metadata.frontmatter = frontmatter; return JSON.stringify(content, null, 2); - }); + }).catch(() => console.error("Failed to update metadata object in canvas file.")); return; } return next.call(this, frontmatter); @@ -3543,50 +3522,41 @@ var CanvasSearchView = class { this.createSearchView(); } createSearchView() { - this.containerEl = document.createElement("div"); + this.containerEl = this.view.canvas.wrapperEl.createDiv(); this.containerEl.className = "document-search-container"; - const documentSearch = document.createElement("div"); + const documentSearch = this.containerEl.createDiv(); documentSearch.className = "document-search"; - this.containerEl.appendChild(documentSearch); - const searchInputContainer = document.createElement("div"); + const searchInputContainer = documentSearch.createDiv(); searchInputContainer.className = "search-input-container document-search-input"; - documentSearch.appendChild(searchInputContainer); - this.searchInput = document.createElement("input"); + this.searchInput = searchInputContainer.createEl("input"); this.searchInput.type = "text"; this.searchInput.placeholder = "Find..."; this.searchInput.addEventListener("keydown", (e) => this.onKeyDown(e)); this.searchInput.addEventListener("input", () => this.onInput()); - searchInputContainer.appendChild(this.searchInput); - this.searchCount = document.createElement("div"); + this.searchCount = searchInputContainer.createDiv(); this.searchCount.className = "document-search-count"; this.searchCount.style.display = "none"; this.searchCount.textContent = "0 / 0"; - searchInputContainer.appendChild(this.searchCount); - const documentSearchButtons = document.createElement("div"); + const documentSearchButtons = documentSearch.createDiv(); documentSearchButtons.className = "document-search-buttons"; - documentSearch.appendChild(documentSearchButtons); - const previousButton = document.createElement("button"); + const previousButton = documentSearchButtons.createEl("button"); previousButton.className = "clickable-icon document-search-button"; previousButton.setAttribute("aria-label", "Previous\nShift + F3"); previousButton.setAttribute("data-tooltip-position", "top"); (0, import_obsidian10.setIcon)(previousButton, "arrow-up"); previousButton.addEventListener("click", () => this.changeMatch(this.matchIndex - 1)); - documentSearchButtons.appendChild(previousButton); - const nextButton = document.createElement("button"); + const nextButton = documentSearchButtons.createEl("button"); nextButton.className = "clickable-icon document-search-button"; nextButton.setAttribute("aria-label", "Next\nF3"); nextButton.setAttribute("data-tooltip-position", "top"); (0, import_obsidian10.setIcon)(nextButton, "arrow-down"); nextButton.addEventListener("click", () => this.changeMatch(this.matchIndex + 1)); - documentSearchButtons.appendChild(nextButton); - const closeButton = document.createElement("button"); + const closeButton = documentSearch.createEl("button"); closeButton.className = "clickable-icon document-search-close-button"; closeButton.setAttribute("aria-label", "Exit search"); closeButton.setAttribute("data-tooltip-position", "top"); (0, import_obsidian10.setIcon)(closeButton, "x"); closeButton.addEventListener("click", () => this.close()); - documentSearch.appendChild(closeButton); - this.view.canvas.wrapperEl.appendChild(this.containerEl); this.view.canvas.searchEl = this.containerEl; this.searchInput.focus(); } @@ -3666,7 +3636,7 @@ var MetadataCanvasExtension = class extends CanvasExtension { var _a; const metadata = (_a = canvas.data) == null ? void 0 : _a.metadata; if (!metadata || metadata.version !== CURRENT_SPEC_VERSION) - return new import_obsidian11.Notice("Metadata node not found or version mismatch. Should have been migrated (but wasn't)."); + return void new import_obsidian11.Notice("Metadata node not found or version mismatch. Should have been migrated (but wasn't)."); const that = this; const validator = { get(target, key) { @@ -3718,7 +3688,7 @@ var AbstractSelectionModal = class extends import_obsidian12.FuzzySuggestModal { getItemText(item) { return item; } - onChooseItem(item, evt) { + onChooseItem(_item, _evt) { } awaitInput() { return new Promise((resolve, _reject) => { @@ -3937,7 +3907,7 @@ var DEFAULT_SLIDE_NAME = "New Slide"; var PresentationCanvasExtension = class extends CanvasExtension { constructor() { super(...arguments); - this.savedViewport = null; + this.savedViewport = { x: 0, y: 0, zoom: 1 }; this.isPresentationMode = false; this.visitedNodeIds = []; this.fullscreenModalObserver = null; @@ -3985,7 +3955,7 @@ var PresentationCanvasExtension = class extends CanvasExtension { checkCallback: CanvasHelper.canvasCommand( this.plugin, (_canvas) => !this.isPresentationMode, - (canvas) => this.startPresentation(canvas) + (canvas) => void this.startPresentation(canvas) ) }); this.plugin.addCommand({ @@ -3994,7 +3964,7 @@ var PresentationCanvasExtension = class extends CanvasExtension { checkCallback: CanvasHelper.canvasCommand( this.plugin, (_canvas) => !this.isPresentationMode, - (canvas) => this.startPresentation(canvas, true) + (canvas) => void this.startPresentation(canvas, true) ) }); this.plugin.addCommand({ @@ -4113,7 +4083,6 @@ var PresentationCanvasExtension = class extends CanvasExtension { const animationDurationMs = this.plugin.settings.getSetting("slideTransitionAnimationDuration") * 1e3; const toNodeBBox = CanvasHelper.getSmallestAllowedZoomBBox(canvas, toNode.getBBox()); const toNodeBBoxPadded = removePadding ? toNodeBBox : BBoxHelper.enlargeBBox(toNodeBBox, 50); - console.log({ toNodeBBox, toNodeBBoxPadded }); if (animationDurationMs > 0 && fromNode) { const animationIntensity = this.plugin.settings.getSetting("slideTransitionAnimationIntensity"); const fromNodeBBox = CanvasHelper.getSmallestAllowedZoomBBox(canvas, fromNode.getBBox()); @@ -4133,7 +4102,7 @@ var PresentationCanvasExtension = class extends CanvasExtension { if (!tryContinue || this.visitedNodeIds.length === 0) { const startNode2 = canvas.metadata["startNode"] && canvas.nodes.get(canvas.metadata["startNode"]); if (!startNode2) { - new import_obsidian13.Notice("No start node found. Please mark a node as a start node trough the popup menu."); + new import_obsidian13.Notice("No start node found. Please mark a node as a start node through the popup menu."); return; } this.visitedNodeIds = [startNode2.getData().id]; @@ -4178,16 +4147,16 @@ var PresentationCanvasExtension = class extends CanvasExtension { mutationRecords.forEach((mutationRecord) => { mutationRecord.addedNodes.forEach((node) => { var _a; - document.body.removeChild(node); - (_a = document.fullscreenElement) == null ? void 0 : _a.appendChild(node); + activeDocument.body.removeChild(node); + (_a = activeDocument.fullscreenElement) == null ? void 0 : _a.appendChild(node); }); }); - const inputField = document.querySelector(".prompt-input"); + const inputField = activeDocument.querySelector(".prompt-input"); if (inputField) inputField.focus(); }); - this.fullscreenModalObserver.observe(document.body, { childList: true }); + this.fullscreenModalObserver.observe(activeDocument.body, { childList: true }); canvas.wrapperEl.onfullscreenchange = (_e) => { - if (document.fullscreenElement) return; + if (activeDocument.fullscreenElement) return; this.endPresentation(canvas); }; } @@ -4198,7 +4167,7 @@ var PresentationCanvasExtension = class extends CanvasExtension { if (!startNodeId) return; const startNode = canvas.nodes.get(startNodeId); if (!startNode) return; - this.animateNodeTransition(canvas, void 0, startNode); + void this.animateNodeTransition(canvas, void 0, startNode); } endPresentation(canvas) { var _a; @@ -4207,7 +4176,7 @@ var PresentationCanvasExtension = class extends CanvasExtension { (_a = this.fullscreenModalObserver) == null ? void 0 : _a.disconnect(); this.fullscreenModalObserver = null; canvas.wrapperEl.onfullscreenchange = null; - if (document.fullscreenElement) document.exitFullscreen(); + if (activeDocument.fullscreenElement) void activeDocument.exitFullscreen(); } canvas.wrapperEl.onkeydown = null; canvas.setReadonly(false); @@ -4220,7 +4189,7 @@ var PresentationCanvasExtension = class extends CanvasExtension { this.presentationUsesFullscreen = false; } nextNode(canvas) { - var _a; + var _a, _b; const fromNodeId = this.visitedNodeIds.last(); if (!fromNodeId) return; const fromNode = canvas.nodes.get(fromNodeId); @@ -4235,13 +4204,13 @@ var PresentationCanvasExtension = class extends CanvasExtension { }); const traversedEdgesCount = this.visitedNodeIds.filter((visitedNodeId) => visitedNodeId === fromNodeId).length - 1; const nextEdge = sortedEdges[traversedEdgesCount]; - toNode = nextEdge.to.node; + toNode = (_b = nextEdge == null ? void 0 : nextEdge.to) == null ? void 0 : _b.node; } if (toNode) { this.visitedNodeIds.push(toNode.getData().id); - this.animateNodeTransition(canvas, fromNode, toNode); + void this.animateNodeTransition(canvas, fromNode, toNode); } else { - this.animateNodeTransition(canvas, fromNode, fromNode); + void this.animateNodeTransition(canvas, fromNode, fromNode); } } previousNode(canvas) { @@ -4255,7 +4224,7 @@ var PresentationCanvasExtension = class extends CanvasExtension { toNode = fromNode; this.visitedNodeIds.push(fromNodeId); } - this.animateNodeTransition(canvas, fromNode, toNode); + void this.animateNodeTransition(canvas, fromNode, toNode); } }; @@ -4433,16 +4402,16 @@ var BetterReadonlyCanvasExtension = class extends CanvasExtension { createToggle(menuOption, settingKey) { const toggle = CanvasHelper.createControlMenuButton({ ...menuOption, - callback: () => (async () => { + callback: () => void (async () => { var _a; const newValue = !this.plugin.settings.getSetting(settingKey); await this.plugin.settings.setSetting({ [settingKey]: newValue }); - toggle.dataset.toggled = this.plugin.settings.getSetting(settingKey).toString(); + toggle.dataset.toggled = JSON.stringify(this.plugin.settings.getSetting(settingKey)); (_a = menuOption.callback) == null ? void 0 : _a.call(this); })() }); toggle.classList.add("show-while-readonly"); - toggle.dataset.toggled = this.plugin.settings.getSetting(settingKey).toString(); + toggle.dataset.toggled = JSON.stringify(this.plugin.settings.getSetting(settingKey)); return toggle; } updatePopupMenu(canvas) { @@ -4471,7 +4440,7 @@ var EncapsulateCanvasExtension = class extends CanvasExtension { checkCallback: CanvasHelper.canvasCommand( this.plugin, (canvas) => !canvas.readonly && canvas.selection.size > 0, - (canvas) => this.encapsulateSelection(canvas) + (canvas) => void this.encapsulateSelection(canvas) ) }); this.plugin.registerEvent(this.plugin.app.workspace.on( @@ -4545,7 +4514,7 @@ var CommandsCanvasExtension = class extends CanvasExtension { checkCallback: CanvasHelper.canvasCommand( this.plugin, (canvas) => !canvas.readonly, - (canvas) => this.createFileNode(canvas) + (canvas) => void this.createFileNode(canvas) ) }); this.plugin.addCommand({ @@ -4687,8 +4656,9 @@ var CommandsCanvasExtension = class extends CanvasExtension { const nodeData = canvas.getSelectionData().nodes[0]; if (!nodeData) return; const wikilink = `[[${file.path}#${nodeData.id}|${file.name} (${TextHelper.toTitleCase(nodeData.type)} node)]]`; - navigator.clipboard.writeText(wikilink); - new import_obsidian14.Notice("Copied wikilink to node to clipboard.", 2e3); + navigator.clipboard.writeText(wikilink).then( + () => new import_obsidian14.Notice("Copied wikilink to node to clipboard.", 2e3) + ).catch(() => new import_obsidian14.Notice("Failed to copy wikilink to node to clipboard.", 2e3)); } ) }); @@ -4731,7 +4701,7 @@ var CommandsCanvasExtension = class extends CanvasExtension { } for (const outgoingLink of outgoingLinks) { if (existingFileNodes.has(outgoingLink)) continue; - this.createFileNode(canvas, outgoingLink); + void this.createFileNode(canvas, outgoingLink); } } ) @@ -4776,7 +4746,7 @@ var CommandsCanvasExtension = class extends CanvasExtension { } for (const backlink of backlinks) { if (existingFileNodes.has(backlink)) continue; - this.createFileNode(canvas, backlink); + void this.createFileNode(canvas, backlink); } } ) @@ -4954,11 +4924,11 @@ var AutoResizeNodeCanvasExtension = class extends CanvasExtension { )); this.plugin.registerEvent(this.plugin.app.workspace.on( "advanced-canvas:node-editing-state-changed", - (canvas, node, editing) => this.onNodeEditingStateChanged(canvas, node, editing) + (canvas, node, editing) => void this.onNodeEditingStateChanged(canvas, node, editing) )); this.plugin.registerEvent(this.plugin.app.workspace.on( "advanced-canvas:node-text-content-changed", - (canvas, node, viewUpdate) => this.onNodeTextContentChanged(canvas, node, viewUpdate.view.dom) + (canvas, node, viewUpdate) => void this.onNodeTextContentChanged(canvas, node, viewUpdate.view.dom) )); } isValidNodeType(nodeData) { @@ -5005,7 +4975,7 @@ var AutoResizeNodeCanvasExtension = class extends CanvasExtension { if (!this.canBeResized(node)) return; await sleep(10); if (editing) { - this.onNodeTextContentChanged(_canvas, node, node.child.editMode.cm.dom); + void this.onNodeTextContentChanged(_canvas, node, node.child.editMode.cm.dom); return; } const renderedMarkdownContainer = node.nodeEl.querySelector(".markdown-preview-view.markdown-rendered"); @@ -5101,6 +5071,9 @@ var PortalsCanvasExtension = class _PortalsCanvasExtension extends CanvasExtensi this.onSetData(canvas, data).then((newData) => { if (newData.nodes.length === data.nodes.length && newData.edges.length === data.edges.length) return; setData(newData); + }).catch((error) => { + console.error("Error loading portal data:", error); + new import_obsidian15.Notice("An error occurred while loading portal data. Please check console for details."); }); } )); @@ -5396,9 +5369,9 @@ var FrontmatterControlButtonCanvasExtension = class extends CanvasExtension { let propertiesLeaf = (_a2 = this.plugin.app.workspace.getLeavesOfType("file-properties").first()) != null ? _a2 : null; if (!propertiesLeaf) { propertiesLeaf = this.plugin.app.workspace.getRightLeaf(false); - propertiesLeaf == null ? void 0 : propertiesLeaf.setViewState({ type: "file-properties" }); + void (propertiesLeaf == null ? void 0 : propertiesLeaf.setViewState({ type: "file-properties" })); } - if (propertiesLeaf) this.plugin.app.workspace.revealLeaf(propertiesLeaf); + if (propertiesLeaf) void this.plugin.app.workspace.revealLeaf(propertiesLeaf); } }) ); @@ -5422,7 +5395,7 @@ var BetterDefaultSettingsCanvasExtension = class extends CanvasExtension { )); this.plugin.registerEvent(this.plugin.app.workspace.on( "advanced-canvas:double-click", - (canvas, event, preventDefault) => this.onDoubleClick(canvas, event, preventDefault) + (canvas, event, preventDefault) => void this.onDoubleClick(canvas, event, preventDefault) )); this.plugin.registerEvent(this.plugin.app.workspace.on( "advanced-canvas:node-created", @@ -5433,7 +5406,7 @@ var BetterDefaultSettingsCanvasExtension = class extends CanvasExtension { )); this.plugin.registerEvent(this.plugin.app.workspace.on( "advanced-canvas:edge-created", - (canvas, edge) => this.applyDefaultEdgeStyles(canvas, edge) + (canvas, edge) => void this.applyDefaultEdgeStyles(canvas, edge) )); this.plugin.registerEvent(this.plugin.app.workspace.on( "advanced-canvas:node-resized", @@ -5581,7 +5554,7 @@ var ColorPaletteCanvasExtension = class extends CanvasExtension { } `).join(""); for (const win of this.plugin.windowsManager.windows) { - const doc = win.document; + const doc = win.activeDocument; (_a = doc.getElementById(CUSTOM_COLORS_MOD_STYLES_ID)) == null ? void 0 : _a.remove(); const customColorModStyle = doc.createElement("style"); customColorModStyle.id = CUSTOM_COLORS_MOD_STYLES_ID; @@ -5594,8 +5567,8 @@ var ColorPaletteCanvasExtension = class extends CanvasExtension { this.observer = new MutationObserver((mutations) => { const colorMenuOpened = mutations.some( (mutation) => Object.values(mutation.addedNodes).some( - (node) => node instanceof HTMLElement && node.classList.contains("canvas-submenu") && Object.values(node.childNodes).some( - (node2) => node2 instanceof HTMLElement && node2.classList.contains("canvas-color-picker-item") + (node) => node.instanceOf(HTMLElement) && node.classList.contains("canvas-submenu") && Object.values(node.childNodes).some( + (node2) => node2.instanceOf(HTMLElement) && node2.classList.contains("canvas-color-picker-item") ) ) ); @@ -5612,7 +5585,7 @@ var ColorPaletteCanvasExtension = class extends CanvasExtension { this.observer.observe(canvas.menu.menuEl, { childList: true }); } createColorMenuItem(canvas, colorId) { - const menuItem = document.createElement("div"); + const menuItem = activeDocument.createElement("div"); menuItem.classList.add("canvas-color-picker-item"); menuItem.classList.add(`mod-canvas-color-${colorId}`); menuItem.addEventListener("click", () => { @@ -5626,7 +5599,7 @@ var ColorPaletteCanvasExtension = class extends CanvasExtension { } getCustomColors() { const colors = []; - const style = getComputedStyle(document.body); + const style = getComputedStyle(activeDocument.body); let colorIndex = DEFAULT_COLORS_COUNT + 1; while (style.getPropertyValue(`--canvas-color-${colorIndex}`)) { colors.push(colorIndex.toString()); @@ -5683,7 +5656,7 @@ var CollapsibleGroupsCanvasExtension = class extends CanvasExtension { const groupNodeData = groupNode.getData(); if (groupNodeData.type !== "group") return; (_a = groupNode.collapseEl) == null ? void 0 : _a.remove(); - const collapseEl = document.createElement("span"); + const collapseEl = activeDocument.createElement("div"); collapseEl.className = "collapse-button"; (0, import_obsidian17.setIcon)(collapseEl, groupNodeData.collapsed ? "plus-circle" : "minus-circle"); collapseEl.onclick = () => this.toggleCollapseGroup(canvas, groupNode); @@ -5924,7 +5897,7 @@ var FlipEdgeCanvasExtension = class extends CanvasExtension { edgeDirectionButton.addEventListener("click", () => this.onEdgeDirectionDropdownCreated(canvas)); } onEdgeDirectionDropdownCreated(canvas) { - const dropdownEl = document.body.querySelector("div.menu"); + const dropdownEl = activeDocument.body.querySelector("div.menu"); if (!dropdownEl) return; const separatorEl = CanvasHelper.createDropdownSeparatorElement(); dropdownEl.appendChild(separatorEl); @@ -5936,7 +5909,9 @@ var FlipEdgeCanvasExtension = class extends CanvasExtension { dropdownEl.appendChild(flipEdgeButton); } flipEdge(canvas) { - const selectedEdges = [...canvas.selection].filter((item) => item.path !== void 0); + const selectedEdges = [...canvas.selection].filter( + (item) => item.path !== void 0 + ); if (selectedEdges.length === 0) return; for (const edge of selectedEdges) { edge.update({ @@ -6226,7 +6201,7 @@ function makeDataUrl(content, mimeType) { return `data:${mimeType};base64,${content}`; } async function fetchAsDataURL(url, init, process2) { - const res = await fetch(url, init); + throw Error("fetch call was blocked by AC"); if (res.status === 404) { throw new Error(`Resource "${res.url}" not found`); } @@ -6265,9 +6240,9 @@ async function resourceToDataURL(resourceUrl, contentType, options) { } let dataURL; try { - const content = await fetchAsDataURL(resourceUrl, options.fetchRequestInit, ({ res, result }) => { + const content = await fetchAsDataURL(resourceUrl, options.fetchRequestInit, ({ res: res2, result }) => { if (!contentType) { - contentType = res.headers.get("Content-Type") || ""; + contentType = res2.headers.get("Content-Type") || ""; } return getContentFromDataUrl(result); }); @@ -6589,7 +6564,7 @@ async function fetchCSS(url) { if (cache2 != null) { return cache2; } - const res = await fetch(url); + throw Error("fetch call was blocked by AC"); const cssText = await res.text(); cache2 = { url, cssText }; cssFetchCache[url] = cache2; @@ -6790,7 +6765,7 @@ var ExportCanvasExtension = class extends CanvasExtension { checkCallback: CanvasHelper.canvasCommand( this.plugin, (canvas) => canvas.nodes.size > 0, - (canvas) => this.showExportImageSettingsModal(canvas, null) + (canvas) => void this.showExportImageSettingsModal(canvas, null) ) }); this.plugin.addCommand({ @@ -6799,7 +6774,7 @@ var ExportCanvasExtension = class extends CanvasExtension { checkCallback: CanvasHelper.canvasCommand( this.plugin, (canvas) => canvas.selection.size > 0, - (canvas) => this.showExportImageSettingsModal( + (canvas) => void this.showExportImageSettingsModal( canvas, canvas.getSelectionData().nodes.map((nodeData) => canvas.nodes.get(nodeData.id)).filter((node) => node !== void 0) ) @@ -6842,7 +6817,7 @@ var ExportCanvasExtension = class extends CanvasExtension { noFontExportSetting = new import_obsidian18.Setting(modal.contentEl).setName("Skip font export").setDesc("This will not include the fonts in the exported SVG. This will make the SVG file smaller.").addToggle( (toggle) => toggle.setValue(noFontExport).onChange((value) => noFontExport = value) ); - let theme = document.body.classList.contains("theme-dark") ? "dark" : "light"; + let theme = activeDocument.body.classList.contains("theme-dark") ? "dark" : "light"; new import_obsidian18.Setting(modal.contentEl).setName("Theme").setDesc("The theme used for the export.").addDropdown( (dropdown) => dropdown.addOptions({ light: "Light", @@ -6864,7 +6839,7 @@ var ExportCanvasExtension = class extends CanvasExtension { new import_obsidian18.Setting(modal.contentEl).addButton( (button) => button.setButtonText("Save").setCta().onClick(async () => { modal.close(); - this.exportImage( + await this.exportImage( canvas, nodesToExport, svg, @@ -6882,10 +6857,10 @@ var ExportCanvasExtension = class extends CanvasExtension { } async exportImage(canvas, nodesToExport, svg, pixelRatioFactor, noFontExport, theme, watermark, garbledText, transparentBackground) { var _a, _b, _c; - const cachedTheme = document.body.classList.contains("theme-dark") ? "dark" : "light"; + const cachedTheme = activeDocument.body.classList.contains("theme-dark") ? "dark" : "light"; if (theme !== cachedTheme) { - document.body.classList.toggle("theme-dark", theme === "dark"); - document.body.classList.toggle("theme-light", theme === "light"); + activeDocument.body.classList.toggle("theme-dark", theme === "dark"); + activeDocument.body.classList.toggle("theme-light", theme === "light"); } const isWholeCanvas = nodesToExport === null; if (!nodesToExport) nodesToExport = [...canvas.nodes.values()]; @@ -6897,10 +6872,10 @@ var ExportCanvasExtension = class extends CanvasExtension { const backgroundColor = transparentBackground ? void 0 : window.getComputedStyle(canvas.canvasEl).getPropertyValue("--canvas-background"); new import_obsidian18.Notice("Exporting the canvas. Please wait..."); const interactionBlocker = this.getInteractionBlocker(); - document.body.appendChild(interactionBlocker); + activeDocument.body.appendChild(interactionBlocker); canvas.screenshotting = true; canvas.canvasEl.classList.add("is-exporting"); - if (garbledText) canvas.canvasEl.classList.add("is-text-garbled"); + if (garbledText) canvas.wrapperEl.classList.add("is-text-garbled"); let watermarkEl = null; const cachedSelection = new Set(canvas.selection); canvas.deselectAll(); @@ -6953,7 +6928,6 @@ var ExportCanvasExtension = class extends CanvasExtension { while (unloadedNodes.length > 0 && performance.now() - startTimestamp < MAX_ALLOWED_LOADING_TIME) { await sleep(10); unloadedNodes = nodesToExport.filter((node) => node.initialized === false || node.isContentMounted === false); - console.info(`Waiting for ${unloadedNodes.length} nodes to finish loading...`); } if (unloadedNodes.length === 0) { const nodeElements = nodesToExport.map((node) => node.nodeEl); @@ -6991,7 +6965,7 @@ var ExportCanvasExtension = class extends CanvasExtension { let baseFilename = `${((_c = canvas.view.file) == null ? void 0 : _c.basename) || "Untitled"}`; if (!isWholeCanvas) baseFilename += ` - Selection of ${nodesToExport.length}`; const filename = `${baseFilename}.${svg ? "svg" : "png"}`; - const downloadEl = document.createElement("a"); + const downloadEl = activeDocument.createElement("a"); downloadEl.href = imageDataUri; downloadEl.download = filename; downloadEl.click(); @@ -7003,39 +6977,33 @@ var ExportCanvasExtension = class extends CanvasExtension { } finally { canvas.screenshotting = false; canvas.canvasEl.classList.remove("is-exporting"); - if (garbledText) canvas.canvasEl.classList.remove("is-text-garbled"); + if (garbledText) canvas.wrapperEl.classList.remove("is-text-garbled"); if (watermarkEl) canvas.canvasEl.removeChild(watermarkEl); canvas.updateSelection(() => canvas.selection = cachedSelection); canvas.setViewport(cachedViewport.x, cachedViewport.y, cachedViewport.zoom); interactionBlocker.remove(); if (theme !== cachedTheme) { - document.body.classList.toggle("theme-dark", cachedTheme === "dark"); - document.body.classList.toggle("theme-light", cachedTheme === "light"); + activeDocument.body.classList.toggle("theme-dark", cachedTheme === "dark"); + activeDocument.body.classList.toggle("theme-light", cachedTheme === "light"); } } } getInteractionBlocker() { - const interactionBlocker = document.createElement("div"); + const interactionBlocker = activeDocument.createElement("div"); interactionBlocker.classList.add("progress-bar-container"); - const progressBar = document.createElement("div"); + const progressBar = interactionBlocker.createDiv(); progressBar.classList.add("progress-bar"); - interactionBlocker.appendChild(progressBar); - const progressBarMessage = document.createElement("div"); + const progressBarMessage = progressBar.createDiv(); progressBarMessage.classList.add("progress-bar-message", "u-center-text"); progressBarMessage.innerText = "Generating image..."; - progressBar.appendChild(progressBarMessage); - const progressBarIndicator = document.createElement("div"); + const progressBarIndicator = progressBar.createDiv(); progressBarIndicator.classList.add("progress-bar-indicator"); - progressBar.appendChild(progressBarIndicator); - const progressBarLine = document.createElement("div"); + const progressBarLine = progressBarIndicator.createDiv(); progressBarLine.classList.add("progress-bar-line"); - progressBarIndicator.appendChild(progressBarLine); - const progressBarSublineIncrease = document.createElement("div"); + const progressBarSublineIncrease = progressBarIndicator.createDiv(); progressBarSublineIncrease.classList.add("progress-bar-subline", "mod-increase"); - progressBarIndicator.appendChild(progressBarSublineIncrease); - const progressBarSublineDecrease = document.createElement("div"); + const progressBarSublineDecrease = progressBarIndicator.createDiv(); progressBarSublineDecrease.classList.add("progress-bar-subline", "mod-decrease"); - progressBarIndicator.appendChild(progressBarSublineDecrease); return interactionBlocker; } getWatermark(bbox) { @@ -7048,7 +7016,7 @@ var ExportCanvasExtension = class extends CanvasExtension { y: bboxWidth * 0.014 }; bbox.maxY += height + watermarkPadding.y; - const watermarkEl = document.createElementNS("http://www.w3.org/2000/svg", "svg"); + const watermarkEl = activeDocument.createElementNS("http://www.w3.org/2000/svg", "svg"); watermarkEl.id = "watermark-ac"; watermarkEl.style.transform = `translate(${bbox.minX + watermarkPadding.x}px, ${bbox.maxY - height - watermarkPadding.y}px)`; watermarkEl.setAttrs({ @@ -7144,10 +7112,10 @@ var FloatingEdgeCanvasExtension = class extends CanvasExtension { node.nodeEl.classList.toggle("hovering-floating-edge-zone", hovering); } }; - document.addEventListener("pointermove", this.onPointerMove); + activeDocument.addEventListener("pointermove", this.onPointerMove); } onEdgeStoppedDragging(_canvas, edge, event, _newEdge, side) { - document.removeEventListener("pointermove", this.onPointerMove); + activeDocument.removeEventListener("pointermove", this.onPointerMove); const dropZoneNode = side === "from" ? edge.from.node : edge.to.node; const floatingEdgeDropZone = this.getFloatingEdgeDropZoneForNode(dropZoneNode); const wasDroppedInFloatingEdgeDropZone = this.plugin.settings.getSetting("allowFloatingEdgeCreation") ? BBoxHelper.insideBBox({ x: event.clientX, y: event.clientY }, floatingEdgeDropZone, true) : false; @@ -7328,16 +7296,16 @@ var EdgeExposerExtension = class extends CanvasExtension { for (const exposedDataKey of getExposedEdgeData(this.plugin.settings)) { const datasetPairs = edgeData[exposedDataKey] && typeof edgeData[exposedDataKey] === "object" ? Object.entries(edgeData[exposedDataKey]) : [[exposedDataKey, edgeData[exposedDataKey]]]; for (const [key, value] of datasetPairs) { - const stringifiedKey = key == null ? void 0 : key.toString(); + const stringifiedKey = JSON.stringify(key); if (!stringifiedKey) continue; if (!value) { delete edge.path.display.dataset[stringifiedKey]; if ((_a = edge.fromLineEnd) == null ? void 0 : _a.el) delete edge.fromLineEnd.el.dataset[stringifiedKey]; if ((_b = edge.toLineEnd) == null ? void 0 : _b.el) delete edge.toLineEnd.el.dataset[stringifiedKey]; } else { - edge.path.display.dataset[stringifiedKey] = value.toString(); - if ((_c = edge.fromLineEnd) == null ? void 0 : _c.el) edge.fromLineEnd.el.dataset[stringifiedKey] = value.toString(); - if ((_d = edge.toLineEnd) == null ? void 0 : _d.el) edge.toLineEnd.el.dataset[stringifiedKey] = value.toString(); + edge.path.display.dataset[stringifiedKey] = JSON.stringify(value); + if ((_c = edge.fromLineEnd) == null ? void 0 : _c.el) edge.fromLineEnd.el.dataset[stringifiedKey] = JSON.stringify(value); + if ((_d = edge.toLineEnd) == null ? void 0 : _d.el) edge.toLineEnd.el.dataset[stringifiedKey] = JSON.stringify(value); } } } @@ -7378,7 +7346,7 @@ var CanvasWrapperExposerExtension = class extends CanvasExtension { updateExposedSettings(canvas) { if (!canvas) return; for (const setting of EXPOSED_SETTINGS) { - canvas.wrapperEl.dataset[setting] = this.plugin.settings.getSetting(setting).toString(); + canvas.wrapperEl.dataset[setting] = JSON.stringify(this.plugin.settings.getSetting(setting)); } } }; @@ -7389,14 +7357,14 @@ var BasesTableViewPatcher = class extends Patcher { if (!this.plugin.settings.getSetting("canvasMetadataCompatibilityEnabled")) return; const bases = this.plugin.app.internalPlugins.getEnabledPluginById("bases"); if (!bases) return; - this.patchViewFactory(bases); + void this.patchViewFactory(bases); } async patchViewFactory(bases) { const that = this; await Patcher.patchOnce(this.plugin, bases.registrations.table, (resolve) => ({ factory: Patcher.OverrideExisting((next) => function(...args) { const view = next.call(this, ...args); - that.patchTableView(view); + void that.patchTableView(view); resolve(view); return view; }) @@ -7409,7 +7377,7 @@ var BasesTableViewPatcher = class extends Patcher { const result = next.call(this, ...args); if (this.rows.length > 0) { const row = this.rows.first(); - that.patchTableRow(row); + void that.patchTableRow(row); resolve(row); } return result; @@ -7423,7 +7391,7 @@ var BasesTableViewPatcher = class extends Patcher { let result = next.call(this, ...args); if (this.cells.length > 0) { const cell = this.cells.first(); - that.patchTableCell(cell); + void that.patchTableCell(cell); resolve(cell); result = next.call(this, ...args); } diff --git a/.obsidian/plugins/advanced-canvas/manifest.json b/.obsidian/plugins/advanced-canvas/manifest.json index 4ccc600..8e1b49c 100644 --- a/.obsidian/plugins/advanced-canvas/manifest.json +++ b/.obsidian/plugins/advanced-canvas/manifest.json @@ -1,8 +1,8 @@ { "id": "advanced-canvas", "name": "Advanced Canvas", - "version": "6.0.1", - "minAppVersion": "1.1.0", + "version": "6.1.6", + "minAppVersion": "1.7.2", "description": "Supercharge your canvas experience! Create presentations, flowcharts and more!", "author": "Developer-Mike", "authorUrl": "https://github.com/Developer-Mike", diff --git a/.obsidian/plugins/advanced-canvas/styles.css b/.obsidian/plugins/advanced-canvas/styles.css index 2d6b633..675d710 100644 --- a/.obsidian/plugins/advanced-canvas/styles.css +++ b/.obsidian/plugins/advanced-canvas/styles.css @@ -24,69 +24,54 @@ transform: scaleY(1); transition: transform 0.2s ease-in-out; } -.settings-header-children details { - flex-direction: column; - align-items: initial; -} .ac-settings-heading:has(.checkbox-container:not(.is-enabled)) + .settings-header-children { opacity: 0.5; pointer-events: none; height: 0; transform: scaleY(0); } +.setting-item > .setting-item-control input[type=text] { + width: 75px; +} +details.setting-item { + flex-direction: column; + align-items: initial; +} +details.setting-item:not([open]) { + row-gap: 0; +} +details.setting-item[open] { + padding-bottom: var(--size-4-2); +} details.setting-item[open] > summary { - margin-bottom: 0.75em; + margin-bottom: var(--size-4-2); } details.setting-item > *:not(summary) { - padding-left: 1em; - border-left: 1px solid var(--color-accent); + border: 1px solid var(--background-primary); } .kofi-banner { - position: relative; - display: flex; - flex-direction: column; - padding: var(--size-4-3); - background-color: var(--background-secondary); - border: 1px solid var(--divider-color); - border-radius: var(--radius-s); -} -.kofi-banner h1 { - margin: 0; - margin-bottom: 10px; - font-size: var(--font-ui-large); - font-weight: 600; -} -.kofi-banner .progress-container { display: flex; flex-direction: row; align-items: center; - justify-items: center; + justify-content: space-between; + padding: var(--size-4-3); + background-color: var(--background-primary-alt); + border-radius: var(--radius-m); } -.kofi-banner .progress-container progress { - background: transparent; -} -.kofi-banner .progress-container progress::-webkit-progress-bar { - background-color: var(--background-modifier-border); - border-radius: var(--input-radius); -} -.kofi-banner .progress-container progress::-webkit-progress-value { - background-color: var(--color-accent); - border-radius: var(--input-radius); -} -.kofi-banner .progress-container .hourly-rate { - margin-left: 10px; +.kofi-banner .ac-kofi-banner-title { + margin: 0; + font-size: var(--font-ui-small); font-weight: 600; } .kofi-banner .ac-kofi-button { - align-self: flex-end; width: min-content; height: min-content; line-height: 0; } .kofi-banner .ac-kofi-button img { - min-width: 100px; + min-width: 75px; width: 25%; - max-width: 200px; + max-width: 100px; } .canvas-wrapper > .document-search-container { transform: translateZ(0); diff --git a/.obsidian/workspace-mobile.json b/.obsidian/workspace-mobile.json index 6708030..3448340 100644 --- a/.obsidian/workspace-mobile.json +++ b/.obsidian/workspace-mobile.json @@ -13,15 +13,25 @@ "state": { "type": "canvas", "state": { - "file": "2026년 월력형 메모형 일정(2월) (2).canvas", + "file": "2026년 월력형 메모형 일정(2월).canvas", "viewState": { - "x": 1464.5, - "y": 13610, - "zoom": -0.48272823854843555 + "x": 1108.9225463867188, + "y": 52232.798828125, + "zoom": -4 } }, "icon": "lucide-layout-dashboard", - "title": "2026년 월력형 메모형 일정(2월) (2)" + "title": "2026년 월력형 메모형 일정(2월)" + } + }, + { + "id": "6c10e3bc95a711fa", + "type": "leaf", + "state": { + "type": "empty", + "state": {}, + "icon": "lucide-file", + "title": "새 탭" } } ] @@ -52,7 +62,7 @@ "state": { "type": "search", "state": { - "query": "Section:수통클", + "query": "file:당직", "matchingCase": false, "explainSearch": false, "collapseAll": false, @@ -103,7 +113,7 @@ } }, { - "id": "972cb53b65ee7f96", + "id": "1d896d6f8ea8a735", "type": "leaf", "state": { "type": "file-explorer", @@ -116,7 +126,7 @@ } }, { - "id": "aca78a139aeee89a", + "id": "c91af1947a2dafea", "type": "leaf", "state": { "type": "mk-path-view", @@ -210,37 +220,39 @@ }, "active": "7793305178417da9", "lastOpenFiles": [ - "수통클린.md", - "2026년 월력형 메모형 일정(2월) (2).canvas", - "inbox/수통클린시스템.md", - "2025년 월력형 메모형 일정 - 복사본.canvas", - "2026년 월력형 메모형 일정(2월).canvas", - "정수기.md", - "30연대 26년도 예산.md", - "차량 2부제.md", - "부대운영진단.md", - "20. 행정보급관/21. 인수인계서/215. 반기업무.md", - "20. 행정보급관/21. 인수인계서/214. 분기업무.md", - "inbox/위임보수.md", - "불용장비.md", - "장비.md", - "통합이동정비.md", - "inbox/보급품 수령 , 분배, 반납.md", - "지휘관 교체 재물조사.md", "혹서기일과.md", - "연성세제 보급계획.md", - "하계 집중운용장비 기술검사 및 정비지원.md", - "재난안전통신망.md", - "대한민국 안전대전환 집중 안전점검.md", - "세탁지원.md", - "실내 공기질 측정.md", - "손망실보고서.md", - "inbox/체육대회.md", - "inbox/안전점검의날.md", - "검차.md", - "은닉초과재산탄약회수활동.md", - "무제 4.canvas", + "inbox/당직근무간 특이사항.md", + "2026년 월력형 메모형 일정(2월).canvas", + "월하약품불출.md", + "26년 30연대 전술훈련평가 수검자료 정리.md", + "전술훈련평가.md", + "30연대 26년도 예산.md", + "inbox/소방.md", + "매연측정.md", + "위생점검.md", + "inbox/보급품 수령 , 분배, 반납.md", + "일일결산.md", + "inbox/개인장구류 불출 문제발생.md", + "지휘관 교체 재물조사.md", + "inbox/위임보수.md", + "월하준비.md", + "하게 재난대비계획 기간.md", + "정수기.md", + "files/24_result.pdf", + "군차량 매연 측정.md", + "inbox/총기탄약.md", + "위생지도.md", + "병영생활관신축.md", + "소방시설.md", + "오수관로공사.md", + "안전활동유공.md", + "일일 무기,탄약결산.md", + "inbox/수통클린시스템.md", "2025년 월력형 메모형 일정.canvas", + "1778129959563.jpg", + "2026년 월력형 메모형 일정(2월) (2).canvas", + "2025년 월력형 메모형 일정 - 복사본.canvas", + "무제 4.canvas", "무제 3.canvas", "20260419_061701(1).jpg", "20260419_061701.jpg", @@ -256,12 +268,10 @@ "1774062005196.jpg", "30연대재산현황/재산현황데이터베이스목록화.base", "30연대재산현황/재산현황데이터베이스목록.base", - "30연대재산현황/재산현황", "1772583797342001.png", "Resized_1000013476_284516238422615.jpeg", "temp_1771983504814.-1331654701_423627128632719.png", "1772583797342.png", - "Resized_20260220_172030(1).jpeg", "무제 2.canvas", "2026년 월력형 메모형 일정(1월).canvas", "무제 파일 2.canvas", diff --git a/.space/context.mdb b/.space/context.mdb index 44adbe4..e09de2c 100644 Binary files a/.space/context.mdb and b/.space/context.mdb differ diff --git a/1778129959563.jpg b/1778129959563.jpg new file mode 100644 index 0000000..458eb39 Binary files /dev/null and b/1778129959563.jpg differ diff --git a/2026년 월력형 메모형 일정(2월).canvas b/2026년 월력형 메모형 일정(2월).canvas index ac8c738..d57be7b 100644 --- a/2026년 월력형 메모형 일정(2월).canvas +++ b/2026년 월력형 메모형 일정(2월).canvas @@ -1,9 +1,9 @@ { "nodes":[ {"id":"2a6df34a9649ac1a","type":"group","x":-1020,"y":9460,"width":1084,"height":1680,"label":"무제 그룹"}, - {"id":"a51300f673e02529","type":"group","x":-2640,"y":54400,"width":543,"height":1360,"color":"3","label":"완료될때까지 추적관리 해야할 일들"}, - {"id":"55c86fbfc4debdf2","type":"group","x":-2097,"y":54400,"width":468,"height":720,"label":"완료될때가지 추적관리 해야할 일들1"}, + {"id":"55c86fbfc4debdf2","type":"group","x":-2297,"y":58760,"width":468,"height":720,"label":"완료될때가지 추적관리 해야할 일들1"}, {"id":"e69fd8cf05076453","type":"group","x":1040,"y":55100,"width":300,"height":300,"label":"무제 그룹"}, + {"id":"a51300f673e02529","type":"group","x":-2840,"y":58760,"width":543,"height":1360,"color":"3","label":"완료될때까지 추적관리 해야할 일들"}, {"id":"c394cf7c2b87dbbe","type":"group","x":783,"y":24360,"width":300,"height":300,"label":"무제 그룹"}, {"id":"038e25c011af1f1f","type":"group","x":-375,"y":13280,"width":2055,"height":100,"label":"무제 그룹"}, {"id":"6ed86919df40e4db","type":"group","x":-1020,"y":9460,"width":1084,"height":1680,"label":"무제 그룹"}, @@ -3500,37 +3500,6 @@ "width":410, "height":60 }, - { - "id":"45c312ae4f6665af", - "type":"text", - "text":"- [x] 차량 예방정비, 9230호, 송광섭", - "styleAttributes":{}, - "x":-369, - "y":25550, - "width":409, - "height":60 - }, - { - "id":"31e14aa6ae0127ae", - "type":"text", - "text":"- [x] 교육수료주 통합이동정비계획, 30-2", - "styleAttributes":{}, - "x":-369, - "y":25490, - "width":408, - "height":60 - }, - { - "id":"f371c08267c5c350", - "type":"text", - "text":"- [x] 전산보안진단체계 업데이트", - "styleAttributes":{}, - "x":-369, - "y":25730, - "width":408, - "height":60 - }, - {"id":"a715b09be831b140","type":"text","text":"# 1. 26. ( 월 )\n- [x] 일일 무기/탄약 결산(5056미리 약 3000발)\n- [ ] 15:00, 업무 [[일일결산]] ","x":-367,"y":25360,"width":409,"height":130}, { "id":"4620e1cea1f6fb41", "type":"text", @@ -3605,469 +3574,6 @@ "width":409, "height":50 }, - { - "id":"b7265e47e2406832", - "type":"text", - "text":"- [x] [[25년 후반기 소방안전 정밀점검 결과 후속조치]] 결과보고,~26,유재형,박성현", - "styleAttributes":{}, - "x":-369, - "y":26220, - "width":409, - "height":80, - "color":"1" - }, - { - "id":"845d2580f7e7d965", - "type":"text", - "text":"- [x] 전달\n\t- [x] 육사 임관식 수식 제고", - "styleAttributes":{}, - "x":-369, - "y":26360, - "width":416, - "height":60 - }, - { - "id":"0e0b1c3f6deb87bd", - "type":"text", - "text":"# 2. 10. ( 화 )", - "styleAttributes":{}, - "x":73, - "y":29458, - "width":379, - "height":60 - }, - { - "id":"a925100a97aaeb7a", - "type":"text", - "text":"- [x] 대보수 소요,콘센트 소요", - "styleAttributes":{}, - "x":73, - "y":30098, - "width":379, - "height":60 - }, - { - "id":"1f1a7bccb4cafa59", - "type":"text", - "text":"- [x] 환경담당 교육파견 중에도 위 내용 전파 감사합니다.\n예하부대 다시 한번 체크 후에 보고 바랍니다. 독신숙소 포함\n이번 주, 금요일까지.\n예) 23연대 점검결과(0개소) : 이상무", - "styleAttributes":{}, - "x":73, - "y":29878, - "width":379, - "height":220 - }, - { - "id":"aa75f95f83b4837c", - "type":"text", - "text":"- [x] 30연대 지원과사무실 이전, 라지에타 철거,영선반 지원", - "styleAttributes":{}, - "x":73, - "y":29798, - "width":379, - "height":80 - }, - { - "id":"60c9e12f98e030fe", - "type":"text", - "text":"- [x] 대냥유류 납품,4000", - "styleAttributes":{}, - "x":73, - "y":29578, - "width":375, - "height":60 - }, - { - "id":"357c0e596bd4be3c", - "type":"text", - "text":"- [ ] 발전기 예방정비,의무,추사장, 1400,임대헌", - "styleAttributes":{}, - "x":73, - "y":29518, - "width":375, - "height":60 - }, - { - "id":"119e457c24e7f9cd", - "type":"text", - "text":"- [x] 감찰 담당 부대방", - "styleAttributes":{}, - "x":49, - "y":29115, - "width":391, - "height":60 - }, - { - "id":"552d1ce087d394db", - "type":"text", - "text":"- [ ] 1월 생수 납품 조서 제출,장성국 #취소", - "styleAttributes":{}, - "x":-368, - "y":28980, - "width":808, - "height":60 - }, - { - "id":"83606155087b7d4d", - "type":"text", - "text":"- [x] 위험물안전괸리자, 가스사용시설 안전관리자 임명,2.3~12.31", - "styleAttributes":{}, - "x":49, - "y":29175, - "width":391, - "height":65 - }, - { - "id":"a2108295995d8552", - "type":"text", - "text":"- [x] 교육용 총기 반납 2정,9(623879),10중대(020139), 이승민,", - "styleAttributes":{}, - "x":-375, - "y":28680, - "width":2020, - "height":60 - }, - { - "id":"461bcc74bffec840", - "type":"text", - "text":"- [x] 수리부속 출고,K2 장전손잡이,680,이승민", - "styleAttributes":{}, - "x":-375, - "y":28740, - "width":2020, - "height":60 - }, - { - "id":"9f05225a0a6bba13", - "type":"text", - "text":"- [ ] 본부중대, 방독면 폐처리 불용승인, 3,18,1,이국진,김미화 #진행중", - "styleAttributes":{}, - "x":-375, - "y":28620, - "width":2020, - "height":60, - "color":"4" - }, - { - "id":"492ed2886ced2989", - "type":"text", - "text":"- [x] 차량예방정비,3430호", - "styleAttributes":{}, - "x":832, - "y":27800, - "width":375, - "height":60, - "color":"1" - }, - { - "id":"ad15b133be2c110a", - "type":"text", - "text":"- [x] 연말정산 서류제출", - "styleAttributes":{}, - "x":832, - "y":27740, - "width":405, - "height":60 - }, - { - "id":"d2fe559269749069", - "type":"text", - "text":"- # 2. 5. ( 목 )", - "styleAttributes":{}, - "x":829, - "y":27680, - "width":408, - "height":60 - }, - { - "id":"796a9c2b36809166", - "type":"text", - "text":"- [ ] [[지원과 환경개선]] 자재소요(타일,페인트)", - "styleAttributes":{}, - "x":-375, - "y":28440, - "width":2020, - "height":60 - }, - { - "id":"0a7d04c4787d43c4", - "type":"text", - "text":"- [ ] [[에어컨 재산수입조치]], 한승민", - "styleAttributes":{}, - "x":-375, - "y":28500, - "width":2020, - "height":60, - "color":"4" - }, - { - "id":"f254071dc03e5f18", - "type":"text", - "text":"- [ ] 더 좋은 병영식당 취사기구 납품,한승민,다단식운반차,들어왔는지 확인필요,6개", - "styleAttributes":{}, - "x":-375, - "y":28560, - "width":2020, - "height":60, - "color":"4" - }, - { - "id":"c17dec9b2599350c", - "type":"text", - "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] ", - "styleAttributes":{}, - "x":-375, - "y":28360, - "width":2020, - "height":80, - "color":"3" - }, - { - "id":"63c41b2a8ce0f53c", - "type":"text", - "text":"- [x] 감찰실 방문", - "styleAttributes":{}, - "x":-375, - "y":28300, - "width":803, - "height":60 - }, - { - "id":"20c3fdbba7c07fda", - "type":"text", - "text":"- [x] 상용이불 세탁 민간업체 방문,64개>6세트(1교대,소병욱)", - "styleAttributes":{}, - "x":50, - "y":28240, - "width":375, - "height":60 - }, - { - "id":"3ef44c6979a5c7a7", - "type":"text", - "text":"- # 2. 6. ( 금 )", - "styleAttributes":{}, - "x":1237, - "y":27680, - "width":408, - "height":60 - }, - { - "id":"5af0528c7a17847a", - "type":"text", - "text":"- [ ] 욱본 동계 환경오염사고 예방 현장점겸결과보고,~6,관리책임관,순찰코스,신상이", - "styleAttributes":{}, - "x":1237, - "y":27800, - "width":408, - "height":60, - "color":"1" - }, - { - "id":"c0791310f367d850", - "type":"text", - "text":"- [x] 차량예방정비,3204호", - "styleAttributes":{}, - "x":1237, - "y":27740, - "width":408, - "height":60, - "color":"1" - }, - { - "id":"849c20fd7db280e7", - "type":"text", - "text":"- [ ] 30-1 훈련복 세탁", - "styleAttributes":{}, - "x":1237, - "y":27860, - "width":408, - "height":60 - }, - { - "id":"94c6a2dd746f5fa0", - "type":"text", - "text":"- [ ] 불용승인장비 반납 준비 배차신청 및 반납 #취소", - "styleAttributes":{}, - "x":424, - "y":28240, - "width":809, - "height":60 - }, - { - "id":"12d7114dc15708f7", - "type":"text", - "text":"- [x] 30-1 훈련복세탁, 30-2 이불패드매트리스세탁", - "styleAttributes":{}, - "x":428, - "y":27920, - "width":401, - "height":60 - }, - { - "id":"e44df9bc2e4d46df", - "type":"text", - "text":"- [x] 30-1 훈련복 세탁", - "styleAttributes":{}, - "x":832, - "y":27860, - "width":405, - "height":60 - }, - { - "id":"ddaf021ba624d601", - "type":"text", - "text":"- [x] 침대 모두기, 14시, 파레트 25개", - "styleAttributes":{}, - "x":425, - "y":28300, - "width":428, - "height":60 - }, - { - "id":"953d6af99db00831", - "type":"text", - "text":"- [ ] 교육과 구매물자 재산수입후 불출,근거캡춰보고,이영세", - "styleAttributes":{}, - "x":1237, - "y":27920, - "width":408, - "height":80 - }, - { - "id":"aec52999beef7555", - "type":"text", - "text":"- [x] 예산 사용계획 수정보고(1분기 사용자보수비)", - "styleAttributes":{}, - "x":1237, - "y":28060, - "width":408, - "height":60 - }, - { - "id":"bd6b78142d6107ce", - "type":"text", - "text":"- [ ] 26 전반기 국가기술자격점정 원서접수,~3,고재은 #취소", - "styleAttributes":{}, - "x":424, - "y":27860, - "width":408, - "height":60 - }, - { - "id":"2a6b5a9a5001d1ba", - "type":"text", - "text":"- [ ] 2월 안전점검의날 행사", - "styleAttributes":{}, - "x":424, - "y":27800, - "width":408, - "height":60 - }, - { - "id":"3bc66ed6b39c7658", - "type":"text", - "text":"# 2. 4. ( 수 )", - "styleAttributes":{}, - "x":424, - "y":27680, - "width":408, - "height":60 - }, - { - "id":"8077c1f605c9f5cd", - "type":"text", - "text":"- [ ] 전투장비지휘검열 확인검열,원정완, 저장 화생방물자 관리(제원표 교체) ", - "styleAttributes":{}, - "x":-379, - "y":28000, - "width":2024, - "height":60, - "color":"1" - }, - { - "id":"5a37bb1a0e2191ed", - "type":"text", - "text":"- [x] 1분기 사용자보수비 사용계획 보고,5건", - "styleAttributes":{}, - "x":829, - "y":27920, - "width":408, - "height":60 - }, - { - "id":"9a01460df176ed49", - "type":"text", - "text":"- [x] 26년 교육준비사열(훈련소장)", - "styleAttributes":{}, - "x":49, - "y":27920, - "width":379, - "height":60, - "color":"1" - }, - { - "id":"587f4870705b09f5", - "type":"text", - "text":"- [ ] 관리전환,12보병여단,375245974,보운배식대,2,37x122800,식기세척기,2개", - "styleAttributes":{}, - "x":-379, - "y":28120, - "width":2024, - "height":60 - }, - { - "id":"499d7e49f20be90c", - "type":"text", - "text":"- [x] 1월 은닉 및 초과재산 탄약 회수활동 결과보고,~3,원정완", - "styleAttributes":{}, - "x":49, - "y":27860, - "width":375, - "height":60 - }, - { - "id":"84ab5714a2012739", - "type":"text", - "text":"- [x] 차량예방정비,1330호", - "styleAttributes":{}, - "x":49, - "y":27800, - "width":375, - "height":60, - "color":"1" - }, - { - "id":"e3e83c10d1c81567", - "type":"text", - "text":"# 2. 3. ( 화 )", - "styleAttributes":{}, - "x":49, - "y":27680, - "width":379, - "height":60 - }, - { - "id":"d19982b1427211bf", - "type":"text", - "text":"- [ ] 1분기 총기탄약 자체점검 메모 확인", - "styleAttributes":{}, - "x":-379, - "y":28180, - "width":2024, - "height":60, - "color":"1" - }, - { - "id":"80fd75e63a384e2d", - "type":"text", - "text":"- [ ] [[간부교육]], 준비 및 실시,2.4(수)", - "styleAttributes":{}, - "x":-379, - "y":27740, - "width":1211, - "height":60, - "color":"1" - }, { "id":"67cbd279756a9e22", "type":"text", @@ -4079,16 +3585,6 @@ "height":60, "color":"1" }, - { - "id":"c25c5ad2e6bccd4f", - "type":"text", - "text":"- [x] 수통클린시스템 세척일정 파악,한승민", - "styleAttributes":{}, - "x":49, - "y":28060, - "width":379, - "height":60 - }, { "id":"efff5fc8238dec6c", "type":"text", @@ -4099,26 +3595,6 @@ "width":398, "height":60 }, - { - "id":"e0136389116e751e", - "type":"text", - "text":"- [x] [[가스검침 직원 전화, 01051901708]]", - "styleAttributes":{}, - "x":843, - "y":26100, - "width":418, - "height":60 - }, - { - "id":"71f107ae41fe7162", - "type":"text", - "text":"- [x] [[30연대 26년도 예산]], 환경예산 배정됨", - "styleAttributes":{}, - "x":843, - "y":26040, - "width":404, - "height":60 - }, { "id":"6eaf9379c8090fed", "type":"text", @@ -4139,6 +3615,57 @@ "width":404, "height":60 }, + {"id":"d9c8c12dfbd26466","type":"text","text":"# 1. 29. ( 목 )\n- [ ] 일일 무기/탄약 결산\n- [ ] 15:00, 업무 [[일일결산]] ","x":845,"y":25360,"width":404,"height":130}, + { + "id":"34e75a30a8ef1fb6", + "type":"text", + "text":"- [x] 여성편의시설 가림막 데크 설치", + "styleAttributes":{}, + "x":1255, + "y":25550, + "width":396, + "height":60 + }, + { + "id":"6e79cc04601db9f8", + "type":"text", + "text":"- [x] 총기 지급대장, 재산 미일치, 3중대 조치필요", + "styleAttributes":{}, + "x":1247, + "y":25670, + "width":404, + "height":60 + }, + { + "id":"8e824849affb92a3", + "type":"text", + "text":"- [ ] 침대 타부대 전환", + "styleAttributes":{}, + "x":1255, + "y":25610, + "width":396, + "height":60 + }, + { + "id":"5ad4f2c6593b8948", + "type":"text", + "text":"- [x] 수시 편제 심의 보고, 원정완", + "styleAttributes":{}, + "x":843, + "y":25790, + "width":802, + "height":60 + }, + { + "id":"f03f73ada577da96", + "type":"text", + "text":"- [x] 전차량반납", + "styleAttributes":{}, + "x":1247, + "y":25490, + "width":404, + "height":60 + }, { "id":"a663fb308ae09a36", "type":"text", @@ -4159,45 +3686,14 @@ "width":409, "height":60 }, - {"id":"d9c8c12dfbd26466","type":"text","text":"# 1. 29. ( 목 )\n- [ ] 일일 무기/탄약 결산\n- [ ] 15:00, 업무 [[일일결산]] ","x":845,"y":25360,"width":404,"height":130}, { - "id":"f03f73ada577da96", + "id":"53a1218c2a71160e", "type":"text", - "text":"- [x] 전차량반납", + "text":"- [x] [[k2총기 편제 초과 조정 의견보고]],원정완", "styleAttributes":{}, - "x":1247, - "y":25490, - "width":404, - "height":60 - }, - { - "id":"6e79cc04601db9f8", - "type":"text", - "text":"- [x] 총기 지급대장, 재산 미일치, 3중대 조치필요", - "styleAttributes":{}, - "x":1247, - "y":25670, - "width":404, - "height":60 - }, - { - "id":"34e75a30a8ef1fb6", - "type":"text", - "text":"- [x] 여성편의시설 가림막 데크 설치", - "styleAttributes":{}, - "x":1255, - "y":25550, - "width":396, - "height":60 - }, - { - "id":"8e824849affb92a3", - "type":"text", - "text":"- [ ] 침대 타부대 전환", - "styleAttributes":{}, - "x":1255, - "y":25610, - "width":396, + "x":438, + "y":25760, + "width":405, "height":60 }, { @@ -4224,25 +3720,2147 @@ }, {"id":"a424f6084e8616ab","type":"text","text":"# 1. 28. ( 수 ) \n- [x] 일일 무기/탄약 결산\n- [ ] 15:00, 업무 [[일일결산]] ","x":436,"y":25360,"width":409,"height":130}, { - "id":"a8949ed83ba4dff2", + "id":"4845cb4afcea58b1", "type":"text", - "text":"- [x] [[26냉난방기 세척 현황]] 최종,김광훈(교지대)", + "text":"- [ ] Deliis, 정비지시서 완결처리", "styleAttributes":{}, - "x":434, - "y":25910, + "x":438, + "y":24960, + "width":404, + "height":60, + "color":"1" + }, + { + "id":"2fcc5d7aebc9cc31", + "type":"text", + "text":"- [ ] 불용저리 승인장비반납 배차신청 #취소", + "styleAttributes":{}, + "x":441, + "y":24450, + "width":402, + "height":60 + }, + { + "id":"270a4e64712ec1a7", + "type":"text", + "text":"- [ ] 침대 수령\n\t- [ ] 보관장소:분리거장 뒤 주차장\n\t- [ ] 3교 침대프레임 225개, 연결키트 78개\n\t- [ ] 1,2교 침대프레임 90개", + "styleAttributes":{}, + "x":441, + "y":24510, + "width":402, + "height":256 + }, + {"id":"96b52fe634ade5ba","type":"text","text":"# 1. 27. ( 화 ) \n- [x] 일일 무기/탄약 결산\n- [ ] 15:00, 업무 [[일일결산]] ","x":41,"y":25360,"width":399,"height":130}, + { + "id":"cbff765b831613e2", + "type":"text", + "text":"- [ ] 대보수 소요종합,~2.6,이수빈", + "styleAttributes":{}, + "x":843, + "y":25730, + "width":808, + "height":60 + }, + { + "id":"0b0766b9fc39be3f", + "type":"text", + "text":"- [x] 1분기 위임보수 심의 예정", + "styleAttributes":{}, + "x":39, + "y":25550, + "width":399, + "height":60 + }, + { + "id":"cd72103ff18a0d44", + "type":"text", + "text":"- [x] 2월산전점검의날 행사,일정반영", + "styleAttributes":{}, + "x":39, + "y":25490, + "width":399, + "height":60 + }, + { + "id":"e7389ac019266dfb", + "type":"text", + "text":"- [x] 전반기 생활쓰레기 처리비 배정전 산출자료 보고,~26,신상이", + "styleAttributes":{}, + "x":-362, + "y":25790, + "width":796, + "height":60 + }, + { + "id":"5c723a3bf0571129", + "type":"text", + "text":"- [x] 지원과 회식", + "styleAttributes":{}, + "x":40, + "y":25610, + "width":394, + "height":60 + }, + { + "id":"9fb3ebfeda1e07bd", + "type":"text", + "text":"- [ ] 26년 개편부대 장비전환 후 잔여장비 소요보고,원정완 #미보고", + "styleAttributes":{}, + "x":40, + "y":25670, + "width":394, + "height":60 + }, + { + "id":"3cba11c7d9b961f1", + "type":"text", + "text":"- [ ] 수시 편제심의소요 종합", + "styleAttributes":{}, + "x":203, + "y":25020, + "width":1054, + "height":60, + "color":"1" + }, + { + "id":"ad55bd7918ce9120", + "type":"text", + "text":"- [ ] 수통클린 세착,3교육대,~28,한승민, 916개 #취소\n\t- [ ] 수통 세척후 680개 수령, 수통뚜껑 50개부족\n\t- [ ] 10중대 200개 세척 의뢰", + "styleAttributes":{}, + "x":440, + "y":24766, + "width":410, + "height":194 + }, + { + "id":"585ebdef134c4ce9", + "type":"text", + "text":"- [ ] 방독면 불용처리 승인신청", + "styleAttributes":{}, + "x":42, + "y":24135, + "width":808, + "height":60, + "color":"4" + }, + { + "id":"6a4e0fd9f70bca85", + "type":"text", + "text":"- [ ] 불용처리 승인장비 반납", + "styleAttributes":{}, + "x":850, + "y":24135, + "width":404, + "height":60, + "color":"1" + }, + { + "id":"8786ac951fa8196b", + "type":"text", + "text":"- [ ] Gs0 수리부속 반납,원정완\n\t- [ ] 009215004,탄창,탄약용 116개,수리대상\n\t- [ ] 370770018,휴대주머니,방독면, 219개", + "styleAttributes":{}, + "x":850, + "y":24195, + "width":407, + "height":158 + }, + { + "id":"a0fe73336779d09a", + "type":"text", + "text":"- [ ] 손망실 보고서 원본 제출", + "styleAttributes":{}, + "x":42, + "y":24195, + "width":808, + "height":60 + }, + { + "id":"3344675072394a03", + "type":"text", + "text":"- [ ] 사용자보수비 배정계획 보고, 주임원사실 보소비용 포함", + "styleAttributes":{}, + "x":850, + "y":23953, + "width":407, + "height":60 + }, + { + "id":"1fbc37ab1097d874", + "type":"text", + "text":"- [ ] 대량유류 수령,연무5동 4000 #취소", + "styleAttributes":{}, + "x":850, + "y":24353, + "width":407, + "height":67 + }, + { + "id":"7747c7087429231a", + "type":"text", + "text":"- [ ] 3교 콘센트 위밈보수 소요보고", + "styleAttributes":{}, + "x":443, + "y":24274, + "width":399, + "height":60, + "color":"1" + }, + { + "id":"5b8e8a4cec99db8b", + "type":"text", + "text":"- [ ] 쌍안경 교육대별 2대 반납받기", + "styleAttributes":{}, + "x":441, + "y":24338, + "width":402, + "height":60 + }, + { + "id":"1026e44d4c6871ac", + "type":"text", + "text":"- [ ] 급식운영회의 참석, 참모장 주관, 김낙중 영웅실", + "styleAttributes":{}, + "x":1254, + "y":23820, + "width":404, + "height":60 + }, + { + "id":"8995502fe551c20a", + "type":"text", + "text":"- [ ] 3교 콘센트 위임보수 건의, #취소", + "styleAttributes":{}, + "x":441, + "y":24391, + "width":402, + "height":60 + }, + { + "id":"651e84804640188c", + "type":"text", + "text":"- [x] 2교육대, 무기고 사진 찍기,소장님 부대방문대비", + "styleAttributes":{}, + "x":448, + "y":24013, + "width":409, + "height":60, + "color":"1" + }, + { + "id":"0e2eb1252271b07f", + "type":"text", + "text":"- [ ] 26-1차 수시편성장비 편성심의 소요총합보고,~23,원정완", + "styleAttributes":{}, + "x":-362, + "y":24075, + "width":1619, + "height":60 + }, + { + "id":"d28e3fb946a62a68", + "type":"text", + "text":"- [ ] 사용다보수비 집행심의 보고작성 소요종합", + "styleAttributes":{}, + "x":-362, + "y":23955, + "width":1212, + "height":60 + }, + { + "id":"0f4af9e306b15df9", + "type":"text", + "text":"- [ ] 25 전투장비지휘검열 후속조치 결과보고,연대장", + "styleAttributes":{}, + "x":-358, + "y":23840, + "width":1208, + "height":60, + "color":"1" + }, + { + "id":"c067ec2e7eba7c04", + "type":"text", + "text":"- [ ] 수통세척,10중대,200개", + "styleAttributes":{}, + "x":442, + "y":23785, "width":409, "height":60 }, { - "id":"53a1218c2a71160e", + "id":"38df91346f91a129", "type":"text", - "text":"- [x] [[k2총기 편제 초과 조정 의견보고]],원정완", + "text":"- [x] 부대정밀진단 체크리스트 작성 보고", "styleAttributes":{}, - "x":438, - "y":25760, + "x":45, + "y":23785, + "width":402, + "height":60, + "color":"1" + }, + { + "id":"a6f5a1bd2d2e6da0", + "type":"text", + "text":"- [ ] 25년 후반기 소방정밀점검 결과 후속조치 결과보고,유재형", + "styleAttributes":{}, + "x":-365, + "y":23893, + "width":2023, + "height":60 + }, + { + "id":"e59d4a36c60f6190", + "type":"text", + "text":"- [ ] 교육수료주 통합이동정비계획, 발전기,", + "styleAttributes":{}, + "x":850, + "y":23833, + "width":404, + "height":60 + }, + { + "id":"c0cb8cf11e6ee146", + "type":"text", + "text":"- [x] 30-1 훈련복 세탁", + "styleAttributes":{}, + "x":-379, + "y":27940, + "width":428, + "height":60 + }, + { + "id":"f0bf49af87c89efd", + "type":"text", + "text":"- [x] 영선대 문의, 사무실 라지에타 제거", + "styleAttributes":{}, + "x":-375, + "y":28240, + "width":428, + "height":60 + }, + { + "id":"cd809f31f0fbcbb0", + "type":"text", + "text":"# 2. 2. ( 월 )", + "styleAttributes":{}, + "x":-379, + "y":27680, + "width":428, + "height":60 + }, + { + "id":"ef1c86dac7b52ece", + "type":"text", + "text":"- [x] 차량예방정비,3130호", + "styleAttributes":{}, + "x":-379, + "y":27800, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"b8d98dbe0e430689", + "type":"text", + "text":"- [x] 2026년 전반기 부사관 정기평정 개인자력 확인,~28,고재은", + "styleAttributes":{}, + "x":-379, + "y":27860, + "width":428, + "height":80 + }, + { + "id":"45c312ae4f6665af", + "type":"text", + "text":"- [x] 차량 예방정비, 9230호, 송광섭", + "styleAttributes":{}, + "x":-369, + "y":25550, + "width":409, + "height":60 + }, + { + "id":"31e14aa6ae0127ae", + "type":"text", + "text":"- [x] 교육수료주 통합이동정비계획, 30-2", + "styleAttributes":{}, + "x":-369, + "y":25490, + "width":408, + "height":60 + }, + { + "id":"f371c08267c5c350", + "type":"text", + "text":"- [x] 전산보안진단체계 업데이트", + "styleAttributes":{}, + "x":-369, + "y":25730, + "width":408, + "height":60 + }, + {"id":"a715b09be831b140","type":"text","text":"# 1. 26. ( 월 )\n- [x] 일일 무기/탄약 결산(5056미리 약 3000발)\n- [ ] 15:00, 업무 [[일일결산]] ","x":-367,"y":25360,"width":409,"height":130}, + { + "id":"b7265e47e2406832", + "type":"text", + "text":"- [x] [[25년 후반기 소방안전 정밀점검 결과 후속조치]] 결과보고,~26,유재형,박성현", + "styleAttributes":{}, + "x":-369, + "y":26220, + "width":409, + "height":80, + "color":"1" + }, + { + "id":"845d2580f7e7d965", + "type":"text", + "text":"- [x] 전달\n\t- [x] 육사 임관식 수식 제고", + "styleAttributes":{}, + "x":-369, + "y":26360, + "width":416, + "height":60 + }, + { + "id":"7c77c2a40f19e2b1", + "type":"text", + "text":"# 3. 5.( 목 )", + "styleAttributes":{}, + "x":894, + "y":35000, + "width":428, + "height":60 + }, + { + "id":"e532839bef2453da", + "type":"text", + "text":"- [ ] 영상교재 활용,저장화생방 장비물ㅏ 시뇟닝 평가(csrp) 업무가이드", + "styleAttributes":{}, + "x":1346, + "y":34440, + "width":458, + "height":100 + }, + { + "id":"10ffb0899226d031", + "type":"text", + "text":"- [ ] 1분기 장비 탄약 관리실태 현장 확인 결과 조치해야할 사항\n\t- [ ] 관련근거\n\t\t- [ ] 육규 428 군수품 및 재산출납관리 규정\n\t\t- [ ] 유규 465 탄약관리규정\n\t\t- [ ] 육규 471 장비관리규정\n\t\t- [ ] 육규 742 화생방 장비 물자 관리규정\n\t- [ ] 은닉탄 회수함 보완\n\t- [ ] 저장화생방 장비물자 관리제웟표 최신화\n\t- [ ] 부대행정압무 총기결산, 전산대장 내용 누락\n\t- [ ] 총기관리책임관 정(교육대장,) cctv 확인\n\t- [ ] 정비지시서 미완결 처리(7일이내)", + "styleAttributes":{}, + "x":1342, + "y":33940, + "width":462, + "height":380, + "color":"1" + }, + { + "id":"d2605c4171896b86", + "type":"text", + "text":"- [ ] 손망실 처리 변상대상자 동의서 제출(이명세상사)", + "styleAttributes":{}, + "x":1342, + "y":34380, + "width":462, + "height":60, + "color":"1" + }, + { + "id":"cfd75170577b5c93", + "type":"text", + "text":"- [ ] K5방독면 휴대주머니 교체소요 종합,이승민~3.6", + "styleAttributes":{}, + "x":506, + "y":33320, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"51caab59e1f8f46e", + "type":"text", + "text":"- [ ] 7중대 총기 1정(739426) 반납,오세열,김범수", + "styleAttributes":{}, + "x":506, + "y":33380, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"8cb4d677a6881d16", + "type":"text", + "text":"- [ ] 가스사용시설 안전관리자 교육,장성국,3.18-20 원격교육.! 3.23-24 소집교육", + "styleAttributes":{}, + "x":506, + "y":33260, + "width":428, + "height":60 + }, + { + "id":"b0b81fcded5526ff", + "type":"text", + "text":"- [x] 회식", + "styleAttributes":{}, + "x":934, + "y":33940, + "width":408, + "height":60 + }, + { + "id":"535e88852e5d2724", + "type":"text", + "text":"- [ ] 2차 오수봔로 개선사업,신상이,1020,위병소 면회실,지원과장,군수실무자 #미참석", + "styleAttributes":{}, + "x":924, + "y":33100, + "width":496, + "height":60, + "color":"1" + }, + { + "id":"05672f5ff4f49778", + "type":"text", + "text":"# 3. 6.( 금 )", + "styleAttributes":{}, + "x":1322, + "y":35000, + "width":428, + "height":60 + }, + { + "id":"0dbcfc382bcb081a", + "type":"text", + "text":"- [x] 지휘관 월간 탄약고 덤검", + "styleAttributes":{}, + "x":1322, + "y":35060, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"1c2e29c0297ee671", + "type":"text", + "text":"- [x] 도시락 간담회,장성국,1400,김낙중영웅실,", + "styleAttributes":{}, + "x":1322, + "y":35120, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"c58de6ffb58dc631", + "type":"text", + "text":"- [x] 컴퓨터 교체,이명세, 인수인계서 작성제출,~6", + "styleAttributes":{}, + "x":894, + "y":35240, + "width":856, + "height":60 + }, + { + "id":"632a62dfda12fbd2", + "type":"text", + "text":"- [ ] 수저 소요종합,황인찬,37w034910,~3.6 #취소", + "styleAttributes":{}, + "x":1322, + "y":35180, + "width":428, + "height":60 + }, + { + "id":"9b89f886f4f203f0", + "type":"text", + "text":"- [x] **2월 은닉 재산초과 탄약 회수활동 결과보고,~3.4, 한서욱**", + "styleAttributes":{}, + "x":486, + "y":35480, + "width":408, + "height":60 + }, + { + "id":"177e9de484c5e6d0", + "type":"text", + "text":"- [ ] **26년도 2분기 사용자 보수비 심의 자료 종합보고(연대장님, ~3.3(화),** / 지휘관 보고 및 심의, 3.5(목) 13:30, 집무실, 다시 수정해서 공문으로 보고, 지시했던 내용을 누락하지말자 ", + "styleAttributes":{}, + "x":486, + "y":35420, + "width":1264, + "height":60, + "color":"1" + }, + { + "id":"c9e0bf38db3b7d46", + "type":"text", + "text":"- [x] 2월 안전점검의날 행사 결과 종합, 작성, 안전실 게시판 보고", + "styleAttributes":{}, + "x":486, + "y":35360, + "width":1264, + "height":60 + }, + { + "id":"20889fadbea072ed", + "type":"text", + "text":"- [x] 사용자보수비 심의, 2교 견적서 제출,4건\n\t- [ ] 부대운영자재비 1건", + "styleAttributes":{}, + "x":486, + "y":36400, + "width":846, + "height":60 + }, + { + "id":"7dfea70b51f6f3c1", + "type":"text", + "text":"- [x] 병영생환관 화장실(대변칸) 천장보수 샘플제시,현장토의,최기호", + "styleAttributes":{}, + "x":486, + "y":35300, + "width":408, + "height":60 + }, + { + "id":"61f6efef25d5c391", + "type":"text", + "text":"- [x] 핸드토키,1대(cpl10215),정비불가,불용신청,조희철", + "styleAttributes":{}, + "x":486, + "y":35240, + "width":408, + "height":60 + }, + { + "id":"a4c2b3ca19e619ec", + "type":"text", + "text":"- [x] 화생방보호의 교육용 정수부족 노후교체 소요종합,~5,한서욱", + "styleAttributes":{}, + "x":486, + "y":35120, + "width":836, + "height":60 + }, + { + "id":"22f37f7afa0bda7a", + "type":"text", + "text":"- [x] 기간 장병용 정수부족분 수통보급 소요종합, 박형주,~3.5", + "styleAttributes":{}, + "x":486, + "y":35180, + "width":836, + "height":60 + }, + { + "id":"c794c0f278ff3a56", + "type":"text", + "text":"- [x] 3월 안전점검의날 ", + "styleAttributes":{}, + "x":486, + "y":35060, + "width":408, + "height":60, + "color":"1" + }, + { + "id":"2c49e0f40c45493a", + "type":"text", + "text":"# 3. 3.( 화 )", + "styleAttributes":{}, + "x":58, + "y":35000, + "width":428, + "height":60 + }, + { + "id":"6c901dc787b6b818", + "type":"text", + "text":"- [x] 사무실이동", + "styleAttributes":{}, + "x":78, + "y":33940, + "width":428, + "height":60 + }, + { + "id":"19bd0f77b934f231", + "type":"text", + "text":"- [x] 가스계량기 교체 업체 출입신청", + "styleAttributes":{}, + "x":1342, + "y":35480, + "width":408, + "height":60 + }, + { + "id":"9a2b276bb23fdbe8", + "type":"text", + "text":"- [ ] 위험성평가 작성", + "styleAttributes":{}, + "x":1342, + "y":35540, + "width":408, + "height":60, + "color":"3" + }, + { + "id":"947b4dc6bf9eea88", + "type":"text", + "text":"~~최상사님~ 잘지내시죠?~~\n~~다름아니라 전군 군수품 조사 관련해서 전산착오품목 델리스상 군수품조정 입력해 주셔야 해서요. 가능하시면 내일 좀 부탁드려요~ 오늘도 고생하셨습니다.~~", + "styleAttributes":{}, + "x":1342, + "y":33320, + "width":462, + "height":200, + "color":"1" + }, + { + "id":"be48ebe435a2460e", + "type":"text", + "text":"# 3. 4.( 수 )", + "styleAttributes":{}, + "x":486, + "y":35000, + "width":408, + "height":60 + }, + { + "id":"c11a7558a8330b48", + "type":"text", + "text":"- [x] 전역자 이불세탁 소요보고(3월15일기준),박관식 #매월 ~26", + "styleAttributes":{}, + "x":934, + "y":33020, + "width":408, + "height":80 + }, + { + "id":"e07866285076b3ee", + "type":"text", + "text":"[군수계획 업무 전파]\n1. 도로교통공단 전문강사 초빙\n 해빙기 차량사고 예방교육 \n 참석대상자 종합(메모보고 참조)\n * 대상 : 직접운전자, 운행책임자,\n 운전병 전원\n (별) 보고기한 : 2. 26. (목) 한\n\n2. 전반기 운행책임자 자격인증평가\n (공문 참조)\n * 대상 : 453명 / 전 부대(엑셀파일)\n * 국방수송정보체계 접속 후 \n 온라인평가\n (별) 부대(서)별 실시결과 보고(공문)\n : 2. 27.(금) 한 / 군지대대, 군수과 보고\n\n3. 폭염대비 재난대비물자 소요 종합\n (종합 메모보고 발송 예정)\n (별) 소요 종합 후 26년 배정예산 고려\n 예하부대 재배정\n * 대상 물자 : 폭염응급키트, 인삼천, \n 아이스조끼, 아이스팩, 보냉가방 등\n * 올해는 폭염응급키트 구매비용이 \n 추가로 나오지 않습니다.\n\n4. 봄맞이 주둔지, 훈련장 환경정리 추진\n (메모보고 참조)\n (별) 부대별 계획보고 : 3. 5. (목)\n - 연대 : 주간회의 지휘보고에 포함\n - 직할부대 : 참모장님 간담회시 보고", + "styleAttributes":{}, + "x":934, + "y":33320, + "width":408, + "height":880 + }, + { + "id":"82130f90719ff177", + "type":"text", + "text":"- [ ] 수리부속 수령,보안경200,1교청구", + "styleAttributes":{}, + "x":934, + "y":33260, + "width":408, + "height":60 + }, + { + "id":"0b0865ee05eef2e7", + "type":"text", + "text":"- [ ] 청렴교육 수료증 제출,고재은,나라배움 #미실시-", + "styleAttributes":{}, + "x":1342, + "y":32810, + "width":428, + "height":70 + }, + { + "id":"7f1cb4a3ed4b6523", + "type":"text", + "text":"- [ ] 원도우11 보안업데이트를 위한 조치,이명세", + "styleAttributes":{}, + "x":1342, + "y":32695, + "width":428, + "height":60 + }, + { + "id":"27d89f1ade54ec56", + "type":"text", + "text":"- [x] 참모주간 무기고탄약고 점검 #미실시-", + "styleAttributes":{}, + "x":1342, + "y":32755, + "width":428, + "height":60 + }, + { + "id":"57d2334e0b657d90", + "type":"text", + "text":"- [ ] 2교육대 방독면 폐처리 정비의뢰,강재구\n\t- [ ] 전산상 반납후 전화요청\n\t- [ ] 2교육대 방독면 총 131개 입니다..!\n\t- [ ] 5중대 - 총 22개\n중좌 17개\n대좌 2개\n중우 3개\n\n6중대 - 총 32개\n소좌 3개\n중좌 21개\n대좌 8개\n\n7중대 - 총 65개\n중좌 61개\n대좌 4개\n\n8중대 - 총 12개\n중좌 8개\n중우 4개", + "styleAttributes":{}, + "x":78, + "y":34380, + "width":502, + "height":560, + "color":"1" + }, + { + "id":"a8b87cf0c929a34e", + "type":"text", + "text":"- [ ] 통신장비 예방정비", + "styleAttributes":{}, + "x":78, + "y":34060, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"4ea3993c943d52af", + "type":"text", + "text":"- [ ] 식당, 가스계량기(G10)교체 추적확인, ~27\n\t- [ ] 01064075665\n\t- [ ] [[01071921116]] : 699600원, 육영건설\n\t- [ ] 01066592067\n\t- [ ] 01041009427 : : 35만원(계량기#인건비) 입니다\n\t- [ ] [[01028286846]] : 632500원, 화성", + "styleAttributes":{}, + "x":-350, + "y":33740, + "width":2100, + "height":200 + }, + { + "id":"337a1b5071d4677b", + "type":"text", + "text":"- [ ] 이재성 손망실, ~3.11(수), 군수과 제출 > 감찰실 검토 요청", + "styleAttributes":{}, + "x":-350, + "y":33200, + "width":2120, + "height":60 + }, + { + "id":"04e64c526d4f71f5", + "type":"text", + "text":"- [x] 2.25(수), 오후에 선임행보관님, 군수담당관은 종합된 의견 가지고 주임원사실에서 토의한번하겠습니다.", + "styleAttributes":{}, + "x":506, + "y":33030, + "width":428, + "height":170, + "color":"1" + }, + { + "id":"9299038c4dff079e", + "type":"text", + "text":"- [ ] 1교육대 K5정화통 반납, 누가?", + "styleAttributes":{}, + "x":64, + "y":33380, + "width":442, + "height":60 + }, + { + "id":"5d25fae239339315", + "type":"text", + "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", + "styleAttributes":{}, + "x":-350, + "y":33560, + "width":2100, + "height":100, + "color":"3" + }, + { + "id":"45a00c4bf93ac18f", + "type":"text", + "text":"- [x] 장거리 배차 신청 종합 보고, 유재형,~2.26", + "styleAttributes":{}, + "x":934, + "y":32810, + "width":408, + "height":70 + }, + { + "id":"550cb85af67ef33a", + "type":"text", + "text":"- [ ] 식기세척기용세제,린스 보급,0800,세척제37x923786,144,헹굼청가제 접시닦기용(375034413),48,28-30-26연대", + "styleAttributes":{}, + "x":934, + "y":32700, + "width":408, + "height":110 + }, + { + "id":"67ba71556f30f0c9", + "type":"text", + "text":"- [ ] 대냥유류 수령,4000리터, 연무5동,임대원,김용대 #취소", + "styleAttributes":{}, + "x":934, + "y":32640, + "width":408, + "height":60 + }, + { + "id":"9d49829f34735dc0", + "type":"text", + "text":"- [ ] 예산, 사용자 보수비 계획보고, 안일남,김미화", + "styleAttributes":{}, + "x":449, + "y":30338, + "width":1251, + "height":60, + "color":"1" + }, + { + "id":"bbc6c3b06eeb402a", + "type":"text", + "text":"- [ ] 장비지휘검열 확인검열 후속조치, 1분기 총기탄약 점검 후속조치 , 원정완 #취소", + "styleAttributes":{}, + "x":450, + "y":30398, + "width":808, + "height":62 + }, + { + "id":"079a653dd6f377b8", + "type":"text", + "text":"- [x] 부대운영자재비,250만원배정,추후 추가보고,한승민", + "styleAttributes":{}, + "x":449, + "y":30520, "width":405, "height":60 }, + { + "id":"db7d1211fd377634", + "type":"text", + "text":"- [ ] 1교 수통세척예정", + "styleAttributes":{}, + "x":506, + "y":32640, + "width":428, + "height":60 + }, + { + "id":"127d8cf32276af83", + "type":"text", + "text":"- [ ] [[봅맞이 환경정리]] 계획보고,~3.3(화) 100,유재", + "styleAttributes":{}, + "x":506, + "y":32970, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"8fc5a0889f11674e", + "type":"text", + "text":"- [ ] 26년 민간위닥 수정계약 공문, 보고, ~25 #미보고", + "styleAttributes":{}, + "x":78, + "y":32700, + "width":428, + "height":60 + }, + { + "id":"a51372ee24af7aba", + "type":"text", + "text":"- [x] 도시락 품평회,1030,식당, 장성국", + "styleAttributes":{}, + "x":78, + "y":32760, + "width":428, + "height":60 + }, + { + "id":"8e66b7ebb9b36919", + "type":"text", + "text":"- [ ] 해빙기 차량사고예방 교육,유재형,박성현,충무강당,1000 #미참석", + "styleAttributes":{}, + "x":78, + "y":32640, + "width":428, + "height":60 + }, + { + "id":"27e54c4ce79d9a0a", + "type":"text", + "text":"- [ ] 위임보수 건의(식당 음료취수기쪽 바닥 타일 박리),연대장님 지시", + "styleAttributes":{}, + "x":78, + "y":32970, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"69dc038518cf1af0", + "type":"text", + "text":"- [x] 이발,1430", + "styleAttributes":{}, + "x":78, + "y":32520, + "width":428, + "height":60 + }, + { + "id":"66ffcb1141a9bd8d", + "type":"text", + "text":"- [x] 교육사 설연휴 공직기강 [[감찰]] 점검, 2.12~13, 훈련소", + "styleAttributes":{}, + "x":856, + "y":30520, + "width":844, + "height":60, + "color":"1" + }, + { + "id":"677ac91935ca8c78", + "type":"text", + "text":"- [ ] [[훼손처리 총기]] 재산정리, 이영민,이재성,이승민", + "styleAttributes":{}, + "x":856, + "y":30640, + "width":402, + "height":60 + }, + { + "id":"3487e80da4422c77", + "type":"text", + "text":"- [x] 공문,메모 확인", + "styleAttributes":{}, + "dynamicHeight":false, + "x":856, + "y":30460, + "width":402, + "height":60 + }, + { + "id":"02858b9ac0d2e2fc", + "type":"text", + "text":"- [x] 4중대 손망실보고서 양식 전달,이재성", + "styleAttributes":{}, + "x":450, + "y":30580, + "width":406, + "height":60, + "color":"1" + }, + { + "id":"dfee52685be388b1", + "type":"text", + "text":"- [x] [[30연대 26년도 예산]] 배정공문접수", + "styleAttributes":{}, + "x":856, + "y":30580, + "width":402, + "height":60 + }, + { + "id":"d638be3b1a97a1b2", + "type":"text", + "text":"- [ ] [[주유취급소 및 유류탱크저장소 화재사고 예방 점검]]결과보고,박관식,~2.20 #미실시", + "styleAttributes":{}, + "x":1362, + "y":31440, + "width":408, + "height":90 + }, + { + "id":"2f80c21e82db6021", + "type":"text", + "text":"- # 2. 20. ( 금 )", + "styleAttributes":{}, + "x":1362, + "y":31320, + "width":408, + "height":60 + }, + { + "id":"d4de69032b54791b", + "type":"text", + "text":"- [x] 건설자재 소요파악,~20,황인찬", + "styleAttributes":{}, + "x":1362, + "y":31530, + "width":408, + "height":60 + }, + { + "id":"bc8f8307ad0d456e", + "type":"text", + "text":"- [x] 인권교육 수료증 제출,기변,나라배움,인트라넷,고재은", + "styleAttributes":{}, + "x":1362, + "y":31590, + "width":408, + "height":90 + }, + { + "id":"05d7d3e5b4959c1d", + "type":"text", + "text":"- # 2. 19. ( 목 )", + "styleAttributes":{}, + "x":954, + "y":31320, + "width":408, + "height":60 + }, + { + "id":"0bc112d6faf8a46b", + "type":"text", + "text":"# 2. 28.( 토 )", + "styleAttributes":{}, + "x":1770, + "y":32400, + "width":428, + "height":60, + "color":"#1100ff" + }, + { + "id":"6c5c87da61bf6f6e", + "type":"text", + "text":"- [ ] 참모주간 무기고탄약고 점검 #미실시", + "styleAttributes":{}, + "x":1362, + "y":31380, + "width":408, + "height":60 + }, + { + "id":"0f9cb0f655d4c755", + "type":"text", + "text":"- [x] 군수예산 계획보고 수정보고,3건", + "styleAttributes":{}, + "x":1362, + "y":32140, + "width":408, + "height":60 + }, + { + "id":"8730f74c351ffedf", + "type":"text", + "text":"- [ ] 청렴교육 수료증 제출,고재은,나라배움 #미실시", + "styleAttributes":{}, + "x":1362, + "y":31680, + "width":408, + "height":60 + }, + { + "id":"1a6b97ea206031fc", + "type":"text", + "text":"- [x] 부대운영자재비 사용 현황 보고, 주임원사님", + "styleAttributes":{}, + "x":1362, + "y":32020, + "width":408, + "height":60 + }, + { + "id":"0d2d1842f603eb80", + "type":"text", + "text":"- [x] 가스업체 소급업체 담당자 처리,1400", + "styleAttributes":{}, + "x":1362, + "y":32080, + "width":408, + "height":60 + }, + { + "id":"3bf82d1e6e645e2b", + "type":"text", + "text":"- [x] 육사 합동임관식지원\n\t- [ ] 2.19(목) 석식,20금 조식\n\t- [ ] 숙식,2교 2층 3층\n\t- [ ] 250명\n\t- [ ] 별관?", + "styleAttributes":{}, + "x":954, + "y":31440, + "width":408, + "height":180, + "color":"1" + }, + { + "id":"a88a34ed05914cfe", + "type":"text", + "text":"- [ ] 3월 한시적 인가 소요파악 보고,~19,장성국 #진행중", + "styleAttributes":{}, + "x":954, + "y":31800, + "width":816, + "height":60 + }, + { + "id":"cbfb0e874b33409d", + "type":"text", + "text":"- [x] 이재성상사, 손망실 보고서 작성제출 처리, ", + "styleAttributes":{}, + "x":954, + "y":31740, + "width":816, + "height":60 + }, + { + "id":"906bdc4e9034d9f2", + "type":"text", + "text":"- [x] 당직근무 휴식", + "styleAttributes":{}, + "x":954, + "y":31380, + "width":408, + "height":60 + }, + { + "id":"1f73c91c638bd0f6", + "type":"text", + "text":"# 2. 17.( 화 )", + "styleAttributes":{}, + "x":98, + "y":31320, + "width":428, + "height":60 + }, + { + "id":"e2a1095d642c3e42", + "type":"text", + "text":"# 2. 26.( 목 )", + "styleAttributes":{}, + "x":934, + "y":32400, + "width":408, + "height":60 + }, + { + "id":"83731d1c0039888d", + "type":"text", + "text":"# 2. 27.( 금 )", + "styleAttributes":{}, + "x":1342, + "y":32400, + "width":428, + "height":60 + }, + { + "id":"27d0b52ae3b6e967", + "type":"text", + "text":"- [x] 26년 전반기 운행책임자 평가 결과보고,~27,유재형", + "styleAttributes":{}, + "x":934, + "y":32460, + "width":836, + "height":60 + }, + { + "id":"83e770189723c061", + "type":"text", + "text":"- [x] 30-1 이불패드매트리스 세닥", + "styleAttributes":{}, + "x":506, + "y":32460, + "width":428, + "height":60 + }, + { + "id":"b99f4d2d852ed008", + "type":"text", + "text":"# 2. 25.( 수 )", + "styleAttributes":{}, + "x":506, + "y":32400, + "width":428, + "height":60 + }, + { + "id":"b12eaec1bfdbeaed", + "type":"text", + "text":"- [x] [[사이버 보안 진단의 날 시행-1]]사이버 보안진단의날 행사,", + "styleAttributes":{}, + "x":954, + "y":31860, + "width":816, + "height":60 + }, + { + "id":"98e503a48ee34687", + "type":"text", + "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", + "styleAttributes":{}, + "x":-330, + "y":31920, + "width":2100, + "height":100, + "color":"3" + }, + { + "id":"54c74fb448b4f5b3", + "type":"text", + "text":"추 석", + "styleAttributes":{"textAlign":"center"}, + "x":-330, + "y":31380, + "width":1284, + "height":85, + "color":"1" + }, + { + "id":"bc75fb65a406576b", + "type":"text", + "text":"# 2. 18.( 수 )", + "styleAttributes":{}, + "x":526, + "y":31320, + "width":428, + "height":60 + }, + { + "id":"c52fa49f3162ba5d", + "type":"text", + "text":"- [ ] 불용장비 반납,53군지단,이승민", + "styleAttributes":{}, + "x":1240, + "y":28920, + "width":405, + "height":60 + }, + { + "id":"457b84d873ae2a1b", + "type":"text", + "text":"- [ ] 식당 별관 가스계량기 교체, 영선대 협조/소군수과 보고", + "styleAttributes":{}, + "x":853, + "y":29040, + "width":792, + "height":60 + }, + { + "id":"6033a57fad35b209", + "type":"text", + "text":"# 2. 13.( 금 ) 당직근무", + "styleAttributes":{}, + "x":1261, + "y":29458, + "width":428, + "height":60 + }, + { + "id":"41196eef2f0457bf", + "type":"text", + "text":"- # 2. 12. ( 목 )", + "styleAttributes":{}, + "x":853, + "y":29458, + "width":408, + "height":60 + }, + { + "id":"5806842c6ccff08b", + "type":"text", + "text":"- [x] 차량예방정비,3508-2호", + "styleAttributes":{}, + "x":1261, + "y":29578, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"387e9c9298b0fd68", + "type":"text", + "text":"- [x] 차량예방정비,3508-1호", + "styleAttributes":{}, + "x":853, + "y":29518, + "width":408, + "height":60, + "color":"1" + }, + { + "id":"0ca6fb260527f00b", + "type":"text", + "text":"- [x] 전투장비지휘검열 최종결과보고, 원정완", + "styleAttributes":{}, + "x":1261, + "y":29518, + "width":428, + "height":60 + }, + { + "id":"cd494d4b00da0719", + "type":"text", + "text":"- [x] 스틸그레이팅 수령,50개, 샘플확인1교육대, 박성현", + "styleAttributes":{}, + "x":856, + "y":29578, + "width":402, + "height":60 + }, + { + "id":"675437a043034c50", + "type":"text", + "text":"# 2. 24.( 화 )", + "styleAttributes":{}, + "x":78, + "y":32400, + "width":428, + "height":60 + }, + { + "id":"c20fad49ee098739", + "type":"text", + "text":"- [x] 차량예방정비,3508-3호", + "styleAttributes":{}, + "x":78, + "y":32460, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"fdb58c815034a85a", + "type":"text", + "text":"- [ ] 욱본 동계 환경오염사고 예방 현장점겸결과보고,~13,자체점검결과보고,신상이 #미실시", + "styleAttributes":{}, + "x":1261, + "y":29638, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"e7aa5c02ababba8f", + "type":"text", + "text":"- [ ] 1중대, 총기 반납1정(725605), 총몽멈치옷확장", + "styleAttributes":{}, + "x":1261, + "y":29860, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"8114629509077a7c", + "type":"text", + "text":"- [x] 1분기 바이러스 일제점검,이명세", + "styleAttributes":{}, + "x":1258, + "y":29798, + "width":431, + "height":62, + "color":"1" + }, + { + "id":"0c06c091ed43fe28", + "type":"text", + "text":"- [x] [설 연휴 전 부대별 조치사항 : 2. 12.(목) 10:00 한 완료보고] \n1. (교육사 지시) 무기고,탄약고 출입구(열쇠) 봉인\n * 미사용시설(창고,사무실 등)은\n 해부대 지휘관 판단 하 실시\n2. 연휴 전 화재취약시설 및 장소 \n 일제점검(화재 예방활동)\n (부대별 자체점검)\n * 미사용 전원코드 제거 \n 미사용시설 점검(화재취약요인제거)\n3. 연휴간 급식대책 이상유무 확인\n\n(별) 위 사항 부대별 진행하고\n 2. 12. (목) 10시까지 \n 아래와 같이 단톡방에\n 결과를 보고해주십시요.\n\n(별) 00연대 1,2,3번 완료", + "styleAttributes":{}, + "x":856, + "y":29798, + "width":405, + "height":482 + }, + { + "id":"1f1a7bccb4cafa59", + "type":"text", + "text":"- [x] 환경담당 교육파견 중에도 위 내용 전파 감사합니다.\n예하부대 다시 한번 체크 후에 보고 바랍니다. 독신숙소 포함\n이번 주, 금요일까지.\n예) 23연대 점검결과(0개소) : 이상무", + "styleAttributes":{}, + "x":73, + "y":29878, + "width":379, + "height":220 + }, + { + "id":"aa75f95f83b4837c", + "type":"text", + "text":"- [x] 30연대 지원과사무실 이전, 라지에타 철거,영선반 지원", + "styleAttributes":{}, + "x":73, + "y":29798, + "width":379, + "height":80 + }, + { + "id":"0d48edd732633afe", + "type":"text", + "text":"- [x] 수송부 차량 인계요청후 인수, 0700", + "styleAttributes":{}, + "x":453, + "y":29858, + "width":400, + "height":60 + }, + { + "id":"3ae3ae69f21eb00a", + "type":"text", + "text":"- [x] 부대운영자재비 소요보고, 한승민", + "styleAttributes":{}, + "x":448, + "y":29798, + "width":408, + "height":60, + "color":"1" + }, + { + "id":"c42f54047918a85c", + "type":"text", + "text":"- [x] [[전투조키(부수기재포함) 수령]],박형주,우경빈,1500,4번창고", + "styleAttributes":{}, + "x":880, + "y":28920, + "width":360, + "height":60 + }, + { + "id":"2c0a0081215237c1", + "type":"text", + "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", + "styleAttributes":{}, + "x":-355, + "y":29698, + "width":2044, + "height":100, + "color":"3" + }, + { + "id":"4185e302a7a88fbc", + "type":"text", + "text":"- [x] 📌공지\n- [x] •군수분야 소통과 공감 일정 통보\n- [x] 일시 : 26. 2. 11(수), 10:00\n - 장소 : 군수지원대대 1층 회의실\n - 내용 : 군수분야 실시 / 예정사항\n 거구자피복 체계개선 교육\n 애로 및 건의사항 접수\n \n\t * 각 부대 지원과장, 군수담당관\n 보충역 교육대 행정보급관 등\n\n많은 관심 가져주시고 일정에 맞춰\n참석해주시면 감사하겠습니다.", + "styleAttributes":{}, + "x":450, + "y":29978, + "width":405, + "height":360 + }, + { + "id":"0bb889ef38507c71", + "type":"text", + "text":"- [x] 부대사, 군수분야, 대규모보수 별관 방수공사 공사비 확인, 이동혁", + "styleAttributes":{}, + "x":450, + "y":29918, + "width":404, + "height":60 + }, + { + "id":"a925100a97aaeb7a", + "type":"text", + "text":"- [x] 대보수 소요,콘센트 소요", + "styleAttributes":{}, + "x":73, + "y":30098, + "width":379, + "height":60 + }, + { + "id":"6b124ac69ca250b0", + "type":"text", + "text":"- [ ] [[가스 계량기 교체 협조, 중부 가스 통화]]", + "styleAttributes":{}, + "x":73, + "y":29638, + "width":780, + "height":60, + "color":"1" + }, + { + "id":"119e457c24e7f9cd", + "type":"text", + "text":"- [x] 감찰 담당 부대방", + "styleAttributes":{}, + "x":49, + "y":29115, + "width":391, + "height":60 + }, + { + "id":"83606155087b7d4d", + "type":"text", + "text":"- [x] 위험물안전괸리자, 가스사용시설 안전관리자 임명,2.3~12.31", + "styleAttributes":{}, + "x":49, + "y":29175, + "width":391, + "height":65 + }, + { + "id":"afbcc78cc9fe2d85", + "type":"text", + "text":"- [x] 연휴전 지휘관 무기고탄약고 점검, 0930,탄약고, 배", + "styleAttributes":{}, + "x":448, + "y":29518, + "width":405, + "height":60, + "color":"1" + }, + { + "id":"ba43b972d25d7f3c", + "type":"text", + "text":"- [x] 박광현 주무관, 3,4,9,10중대 세는곳 현장확인,오후 #취소", + "styleAttributes":{}, + "x":448, + "y":29578, + "width":405, + "height":60 + }, + { + "id":"357c0e596bd4be3c", + "type":"text", + "text":"- [ ] 발전기 예방정비,의무,추사장, 1400,임대헌", + "styleAttributes":{}, + "x":73, + "y":29518, + "width":375, + "height":60 + }, + { + "id":"60c9e12f98e030fe", + "type":"text", + "text":"- [x] 대냥유류 납품,4000", + "styleAttributes":{}, + "x":73, + "y":29578, + "width":375, + "height":60 + }, + { + "id":"840845243459e125", + "type":"text", + "text":"# 2. 11. ( 수 )", + "styleAttributes":{}, + "x":448, + "y":29458, + "width":408, + "height":60 + }, + { + "id":"0e0b1c3f6deb87bd", + "type":"text", + "text":"# 2. 10. ( 화 )", + "styleAttributes":{}, + "x":73, + "y":29458, + "width":379, + "height":60 + }, + { + "id":"2a6b5a9a5001d1ba", + "type":"text", + "text":"- [ ] 2월 안전점검의날 행사", + "styleAttributes":{}, + "x":424, + "y":27800, + "width":408, + "height":60 + }, + { + "id":"411bd7963426fdd6", + "type":"text", + "text":"- [ ] 3교육대, 방독면폐처리 불용승인 4,5,5,23,이국진 #진행중", + "styleAttributes":{}, + "x":-375, + "y":28800, + "width":2020, + "height":60, + "color":"1" + }, + { + "id":"dcdfaf47f5c72b59", + "type":"text", + "text":"- [ ] [[26년 1분기 장비탄약 관리실태 현장 확인,원정완]] 자체점검 결과보고,~28", + "styleAttributes":{ + "border":null + }, + "x":-372, + "y":28860, + "width":2017, + "height":60, + "color":"1" + }, + { + "id":"343781935127f18a", + "type":"text", + "text":"- [ ] 사용부대 공사협력관 참석 대상자 보고,박관식,~2.3,2.6, 충청시설단 대회으실(2층) 1030-1130 #취소", + "styleAttributes":{}, + "x":440, + "y":28980, + "width":1205, + "height":60 + }, + { + "id":"ecbc55134953125c", + "type":"text", + "text":"- [x] 대보수 소요종합,~2.6,이수빈", + "styleAttributes":{}, + "x":-375, + "y":29240, + "width":2020, + "height":60, + "color":"1" + }, + { + "id":"552d1ce087d394db", + "type":"text", + "text":"- [ ] 1월 생수 납품 조서 제출,장성국 #취소", + "styleAttributes":{}, + "x":-368, + "y":28980, + "width":808, + "height":60 + }, + { + "id":"9ac4600fcb25c2b9", + "type":"text", + "text":"- [ ] 화단 보수, 수송부 5톤차량 화단파손 보수요청, 남주영중사(01027605665)", + "styleAttributes":{}, + "x":-368, + "y":29040, + "width":1211, + "height":60, + "color":"4" + }, + { + "id":"84ab5714a2012739", + "type":"text", + "text":"- [x] 차량예방정비,1330호", + "styleAttributes":{}, + "x":49, + "y":27800, + "width":375, + "height":60, + "color":"1" + }, + { + "id":"bd6b78142d6107ce", + "type":"text", + "text":"- [ ] 26 전반기 국가기술자격점정 원서접수,~3,고재은 #취소", + "styleAttributes":{}, + "x":424, + "y":27860, + "width":408, + "height":60 + }, + { + "id":"12d7114dc15708f7", + "type":"text", + "text":"- [x] 30-1 훈련복세탁, 30-2 이불패드매트리스세탁", + "styleAttributes":{}, + "x":428, + "y":27920, + "width":401, + "height":60 + }, + { + "id":"f254071dc03e5f18", + "type":"text", + "text":"- [ ] 더 좋은 병영식당 취사기구 납품,한승민,다단식운반차,들어왔는지 확인필요,6개", + "styleAttributes":{}, + "x":-375, + "y":28560, + "width":2020, + "height":60, + "color":"4" + }, + { + "id":"0a7d04c4787d43c4", + "type":"text", + "text":"- [ ] [[에어컨 재산수입조치]], 한승민", + "styleAttributes":{}, + "x":-375, + "y":28500, + "width":2020, + "height":60, + "color":"4" + }, + { + "id":"9f05225a0a6bba13", + "type":"text", + "text":"- [ ] 본부중대, 방독면 폐처리 불용승인, 3,18,1,이국진,김미화 #진행중", + "styleAttributes":{}, + "x":-375, + "y":28620, + "width":2020, + "height":60, + "color":"4" + }, + { + "id":"796a9c2b36809166", + "type":"text", + "text":"- [ ] [[지원과 환경개선]] 자재소요(타일,페인트)", + "styleAttributes":{}, + "x":-375, + "y":28440, + "width":2020, + "height":60 + }, + { + "id":"9a01460df176ed49", + "type":"text", + "text":"- [x] 26년 교육준비사열(훈련소장)", + "styleAttributes":{}, + "x":49, + "y":27920, + "width":379, + "height":60, + "color":"1" + }, + { + "id":"499d7e49f20be90c", + "type":"text", + "text":"- [x] 1월 은닉 및 초과재산 탄약 회수활동 결과보고,~3,원정완", + "styleAttributes":{}, + "x":49, + "y":27860, + "width":375, + "height":60 + }, + { + "id":"492ed2886ced2989", + "type":"text", + "text":"- [x] 차량예방정비,3430호", + "styleAttributes":{}, + "x":832, + "y":27800, + "width":375, + "height":60, + "color":"1" + }, + { + "id":"5af0528c7a17847a", + "type":"text", + "text":"- [ ] 욱본 동계 환경오염사고 예방 현장점겸결과보고,~6,관리책임관,순찰코스,신상이", + "styleAttributes":{}, + "x":1237, + "y":27800, + "width":408, + "height":60, + "color":"1" + }, + { + "id":"e44df9bc2e4d46df", + "type":"text", + "text":"- [x] 30-1 훈련복 세탁", + "styleAttributes":{}, + "x":832, + "y":27860, + "width":405, + "height":60 + }, + { + "id":"849c20fd7db280e7", + "type":"text", + "text":"- [ ] 30-1 훈련복 세탁", + "styleAttributes":{}, + "x":1237, + "y":27860, + "width":408, + "height":60 + }, + { + "id":"5a37bb1a0e2191ed", + "type":"text", + "text":"- [x] 1분기 사용자보수비 사용계획 보고,5건", + "styleAttributes":{}, + "x":829, + "y":27920, + "width":408, + "height":60 + }, + { + "id":"94c6a2dd746f5fa0", + "type":"text", + "text":"- [ ] 불용승인장비 반납 준비 배차신청 및 반납 #취소", + "styleAttributes":{}, + "x":424, + "y":28240, + "width":809, + "height":60 + }, + { + "id":"ddaf021ba624d601", + "type":"text", + "text":"- [x] 침대 모두기, 14시, 파레트 25개", + "styleAttributes":{}, + "x":425, + "y":28300, + "width":428, + "height":60 + }, + { + "id":"63c41b2a8ce0f53c", + "type":"text", + "text":"- [x] 감찰실 방문", + "styleAttributes":{}, + "x":-375, + "y":28300, + "width":803, + "height":60 + }, + { + "id":"20c3fdbba7c07fda", + "type":"text", + "text":"- [x] 상용이불 세탁 민간업체 방문,64개>6세트(1교대,소병욱)", + "styleAttributes":{}, + "x":50, + "y":28240, + "width":375, + "height":60 + }, + { + "id":"a2108295995d8552", + "type":"text", + "text":"- [x] 교육용 총기 반납 2정,9(623879),10중대(020139), 이승민,", + "styleAttributes":{}, + "x":-375, + "y":28680, + "width":2020, + "height":60 + }, + { + "id":"461bcc74bffec840", + "type":"text", + "text":"- [x] 수리부속 출고,K2 장전손잡이,680,이승민", + "styleAttributes":{}, + "x":-375, + "y":28740, + "width":2020, + "height":60 + }, + { + "id":"c17dec9b2599350c", + "type":"text", + "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] ", + "styleAttributes":{}, + "x":-375, + "y":28360, + "width":2020, + "height":80, + "color":"3" + }, + { + "id":"953d6af99db00831", + "type":"text", + "text":"- [ ] 교육과 구매물자 재산수입후 불출,근거캡춰보고,이영세", + "styleAttributes":{}, + "x":1237, + "y":27920, + "width":408, + "height":80 + }, + { + "id":"aec52999beef7555", + "type":"text", + "text":"- [x] 예산 사용계획 수정보고(1분기 사용자보수비)", + "styleAttributes":{}, + "x":1237, + "y":28060, + "width":408, + "height":60 + }, + { + "id":"3bc66ed6b39c7658", + "type":"text", + "text":"# 2. 4. ( 수 )", + "styleAttributes":{}, + "x":424, + "y":27680, + "width":408, + "height":60 + }, + { + "id":"8077c1f605c9f5cd", + "type":"text", + "text":"- [ ] 전투장비지휘검열 확인검열,원정완, 저장 화생방물자 관리(제원표 교체) ", + "styleAttributes":{}, + "x":-379, + "y":28000, + "width":2024, + "height":60, + "color":"1" + }, + { + "id":"80fd75e63a384e2d", + "type":"text", + "text":"- [ ] [[간부교육]], 준비 및 실시,2.4(수)", + "styleAttributes":{}, + "x":-379, + "y":27740, + "width":1211, + "height":60, + "color":"1" + }, + { + "id":"c25c5ad2e6bccd4f", + "type":"text", + "text":"- [x] 수통클린시스템 세척일정 파악,한승민", + "styleAttributes":{}, + "x":49, + "y":28060, + "width":379, + "height":60 + }, + { + "id":"587f4870705b09f5", + "type":"text", + "text":"- [ ] 관리전환,12보병여단,375245974,보운배식대,2,37x122800,식기세척기,2개", + "styleAttributes":{}, + "x":-379, + "y":28120, + "width":2024, + "height":60 + }, + { + "id":"d19982b1427211bf", + "type":"text", + "text":"- [ ] 1분기 총기탄약 자체점검 메모 확인", + "styleAttributes":{}, + "x":-379, + "y":28180, + "width":2024, + "height":60, + "color":"1" + }, + { + "id":"e3e83c10d1c81567", + "type":"text", + "text":"# 2. 3. ( 화 )", + "styleAttributes":{}, + "x":49, + "y":27680, + "width":379, + "height":60 + }, + { + "id":"ad15b133be2c110a", + "type":"text", + "text":"- [x] 연말정산 서류제출", + "styleAttributes":{}, + "x":832, + "y":27740, + "width":405, + "height":60 + }, + { + "id":"fbed22cf6a9104fa", + "type":"text", + "text":"- [ ] 수리부속 출고,K2 장전손잡이,680,이승민", + "styleAttributes":{}, + "x":-351, + "y":26790, + "width":1996, + "height":60, + "color":"4" + }, + { + "id":"d2fe559269749069", + "type":"text", + "text":"- # 2. 5. ( 목 )", + "styleAttributes":{}, + "x":829, + "y":27680, + "width":408, + "height":60 + }, + { + "id":"3ef44c6979a5c7a7", + "type":"text", + "text":"- # 2. 6. ( 금 )", + "styleAttributes":{}, + "x":1237, + "y":27680, + "width":408, + "height":60 + }, + { + "id":"c0791310f367d850", + "type":"text", + "text":"- [x] 차량예방정비,3204호", + "styleAttributes":{}, + "x":1237, + "y":27740, + "width":408, + "height":60, + "color":"1" + }, + { + "id":"6d097c5223af4a1b", + "type":"text", + "text":"- [ ] 월간 유류/가스 결산\n\t- 소모:난방유류, 취사장\n\t- 소모:총기손질유\n\t- 소모:취사장,난방용가스소모\n\t- 소모:장비용(발전기,의무과)", + "styleAttributes":{}, + "x":843, + "y":25850, + "width":808, + "height":190 + }, + { + "id":"e0136389116e751e", + "type":"text", + "text":"- [x] [[가스검침 직원 전화, 01051901708]]", + "styleAttributes":{}, + "x":843, + "y":26100, + "width":418, + "height":60 + }, + { + "id":"71f107ae41fe7162", + "type":"text", + "text":"- [x] [[30연대 26년도 예산]], 환경예산 배정됨", + "styleAttributes":{}, + "x":843, + "y":26040, + "width":404, + "height":60 + }, + { + "id":"d3d0294e95e9fbae", + "type":"text", + "text":"- [ ] [[26년 육직부대 부대안전진단점검]], 2.23(월),26(목),이동섭", + "styleAttributes":{}, + "x":843, + "y":26220, + "width":802, + "height":60 + }, + { + "id":"0790a42870bbb3ea", + "type":"text", + "text":"- [ ] 1월 생수 납품 조서 제출,장성국", + "styleAttributes":{}, + "x":843, + "y":26160, + "width":808, + "height":60 + }, + { + "id":"b72cbfc6d11f0d40", + "type":"text", + "text":"- [x] 26년 탄약 선정결과 비문 배부수령,소군수과,원정완", + "styleAttributes":{}, + "x":-368, + "y":26030, + "width":802, + "height":60, + "color":"1" + }, + { + "id":"cd4ea0218c61f2b0", + "type":"text", + "text":"- [ ] 3교육대, 방독면폐처리 불용승인 4,5,5,23,이국진", + "styleAttributes":{}, + "x":-340, + "y":26850, + "width":1985, + "height":60, + "color":"1" + }, + { + "id":"c71f7aea20a8c3c8", + "type":"text", + "text":"- [ ] [[26년 1분기 장비탄약 관리실태 현장 확인,원정완]] 자체점검 결과보고,~28", + "styleAttributes":{ + "border":null + }, + "x":-402, + "y":26910, + "width":2047, + "height":60, + "color":"1" + }, + { + "id":"9cdd081335637808", + "type":"text", + "text":"- [ ] 화단 보수, 수송부 5톤차량 화단파손 보수요청, 남주영중사(01027605665)", + "styleAttributes":{}, + "x":434, + "y":26970, + "width":1211, + "height":70, + "color":"4" + }, { "id":"24ee1a80225e5d86", "type":"text", @@ -4309,92 +5927,15 @@ "color":"4" }, { - "id":"fbed22cf6a9104fa", + "id":"5583d1a2867a72da", "type":"text", - "text":"- [ ] 수리부속 출고,K2 장전손잡이,680,이승민", - "styleAttributes":{}, - "x":-351, - "y":26790, - "width":1996, - "height":60, - "color":"4" - }, - { - "id":"cd4ea0218c61f2b0", - "type":"text", - "text":"- [ ] 3교육대, 방독면폐처리 불용승인 4,5,5,23,이국진", - "styleAttributes":{}, - "x":-340, - "y":26850, - "width":1985, - "height":60, - "color":"1" - }, - { - "id":"5ad4f2c6593b8948", - "type":"text", - "text":"- [x] 수시 편제 심의 보고, 원정완", + "text":"- [x] 여성편의시설 전기준공검사 완료", "styleAttributes":{}, "x":843, - "y":25790, - "width":802, + "y":26360, + "width":418, "height":60 }, - { - "id":"cbff765b831613e2", - "type":"text", - "text":"- [ ] 대보수 소요종합,~2.6,이수빈", - "styleAttributes":{}, - "x":843, - "y":25730, - "width":808, - "height":60 - }, - { - "id":"6d097c5223af4a1b", - "type":"text", - "text":"- [ ] 월간 유류/가스 결산\n\t- 소모:난방유류, 취사장\n\t- 소모:총기손질유\n\t- 소모:취사장,난방용가스소모\n\t- 소모:장비용(발전기,의무과)", - "styleAttributes":{}, - "x":843, - "y":25850, - "width":808, - "height":190 - }, - { - "id":"b72cbfc6d11f0d40", - "type":"text", - "text":"- [x] 26년 탄약 선정결과 비문 배부수령,소군수과,원정완", - "styleAttributes":{}, - "x":-368, - "y":26030, - "width":802, - "height":60, - "color":"1" - }, - { - "id":"9cdd081335637808", - "type":"text", - "text":"- [ ] 화단 보수, 수송부 5톤차량 화단파손 보수요청, 남주영중사(01027605665)", - "styleAttributes":{}, - "x":434, - "y":26970, - "width":1211, - "height":70, - "color":"4" - }, - { - "id":"c71f7aea20a8c3c8", - "type":"text", - "text":"- [ ] [[26년 1분기 장비탄약 관리실태 현장 확인,원정완]] 자체점검 결과보고,~28", - "styleAttributes":{ - "border":null - }, - "x":-402, - "y":26910, - "width":2047, - "height":60, - "color":"1" - }, { "id":"ed2b0c75c61ec5d7", "type":"text", @@ -4407,322 +5948,231 @@ "color":"1" }, { - "id":"d3d0294e95e9fbae", + "id":"a8949ed83ba4dff2", "type":"text", - "text":"- [ ] [[26년 육직부대 부대안전진단점검]], 2.23(월),26(목),이동섭", + "text":"- [x] [[26냉난방기 세척 현황]] 최종,김광훈(교지대)", "styleAttributes":{}, - "x":843, - "y":26220, - "width":802, - "height":60 - }, - { - "id":"5583d1a2867a72da", - "type":"text", - "text":"- [x] 여성편의시설 전기준공검사 완료", - "styleAttributes":{}, - "x":843, - "y":26360, - "width":418, - "height":60 - }, - { - "id":"0790a42870bbb3ea", - "type":"text", - "text":"- [ ] 1월 생수 납품 조서 제출,장성국", - "styleAttributes":{}, - "x":843, - "y":26160, - "width":808, - "height":60 - }, - { - "id":"5c723a3bf0571129", - "type":"text", - "text":"- [x] 지원과 회식", - "styleAttributes":{}, - "x":40, - "y":25610, - "width":394, - "height":60 - }, - { - "id":"9fb3ebfeda1e07bd", - "type":"text", - "text":"- [ ] 26년 개편부대 장비전환 후 잔여장비 소요보고,원정완 #미보고", - "styleAttributes":{}, - "x":40, - "y":25670, - "width":394, - "height":60 - }, - { - "id":"0b0766b9fc39be3f", - "type":"text", - "text":"- [x] 1분기 위임보수 심의 예정", - "styleAttributes":{}, - "x":39, - "y":25550, - "width":399, - "height":60 - }, - { - "id":"cd72103ff18a0d44", - "type":"text", - "text":"- [x] 2월산전점검의날 행사,일정반영", - "styleAttributes":{}, - "x":39, - "y":25490, - "width":399, - "height":60 - }, - { - "id":"e7389ac019266dfb", - "type":"text", - "text":"- [x] 전반기 생활쓰레기 처리비 배정전 산출자료 보고,~26,신상이", - "styleAttributes":{}, - "x":-362, - "y":25790, - "width":796, - "height":60 - }, - { - "id":"4845cb4afcea58b1", - "type":"text", - "text":"- [ ] Deliis, 정비지시서 완결처리", - "styleAttributes":{}, - "x":438, - "y":24960, - "width":404, - "height":60, - "color":"1" - }, - { - "id":"2fcc5d7aebc9cc31", - "type":"text", - "text":"- [ ] 불용저리 승인장비반납 배차신청 #취소", - "styleAttributes":{}, - "x":441, - "y":24450, - "width":402, - "height":60 - }, - { - "id":"270a4e64712ec1a7", - "type":"text", - "text":"- [ ] 침대 수령\n\t- [ ] 보관장소:분리거장 뒤 주차장\n\t- [ ] 3교 침대프레임 225개, 연결키트 78개\n\t- [ ] 1,2교 침대프레임 90개", - "styleAttributes":{}, - "x":441, - "y":24510, - "width":402, - "height":256 - }, - { - "id":"ad55bd7918ce9120", - "type":"text", - "text":"- [ ] 수통클린 세착,3교육대,~28,한승민, 916개 #취소\n\t- [ ] 수통 세척후 680개 수령, 수통뚜껑 50개부족\n\t- [ ] 10중대 200개 세척 의뢰", - "styleAttributes":{}, - "x":440, - "y":24766, - "width":410, - "height":194 - }, - { - "id":"3cba11c7d9b961f1", - "type":"text", - "text":"- [ ] 수시 편제심의소요 종합", - "styleAttributes":{}, - "x":203, - "y":25020, - "width":1054, - "height":60, - "color":"1" - }, - { - "id":"585ebdef134c4ce9", - "type":"text", - "text":"- [ ] 방독면 불용처리 승인신청", - "styleAttributes":{}, - "x":42, - "y":24135, - "width":808, - "height":60, - "color":"4" - }, - { - "id":"0e2eb1252271b07f", - "type":"text", - "text":"- [ ] 26-1차 수시편성장비 편성심의 소요총합보고,~23,원정완", - "styleAttributes":{}, - "x":-362, - "y":24075, - "width":1619, - "height":60 - }, - { - "id":"6a4e0fd9f70bca85", - "type":"text", - "text":"- [ ] 불용처리 승인장비 반납", - "styleAttributes":{}, - "x":850, - "y":24135, - "width":404, - "height":60, - "color":"1" - }, - { - "id":"8786ac951fa8196b", - "type":"text", - "text":"- [ ] Gs0 수리부속 반납,원정완\n\t- [ ] 009215004,탄창,탄약용 116개,수리대상\n\t- [ ] 370770018,휴대주머니,방독면, 219개", - "styleAttributes":{}, - "x":850, - "y":24195, - "width":407, - "height":158 - }, - { - "id":"651e84804640188c", - "type":"text", - "text":"- [x] 2교육대, 무기고 사진 찍기,소장님 부대방문대비", - "styleAttributes":{}, - "x":448, - "y":24013, - "width":409, - "height":60, - "color":"1" - }, - { - "id":"a0fe73336779d09a", - "type":"text", - "text":"- [ ] 손망실 보고서 원본 제출", - "styleAttributes":{}, - "x":42, - "y":24195, - "width":808, - "height":60 - }, - { - "id":"d28e3fb946a62a68", - "type":"text", - "text":"- [ ] 사용다보수비 집행심의 보고작성 소요종합", - "styleAttributes":{}, - "x":-362, - "y":23955, - "width":1212, - "height":60 - }, - { - "id":"3344675072394a03", - "type":"text", - "text":"- [ ] 사용자보수비 배정계획 보고, 주임원사실 보소비용 포함", - "styleAttributes":{}, - "x":850, - "y":23953, - "width":407, - "height":60 - }, - {"id":"96b52fe634ade5ba","type":"text","text":"# 1. 27. ( 화 ) \n- [x] 일일 무기/탄약 결산\n- [ ] 15:00, 업무 [[일일결산]] ","x":41,"y":25360,"width":399,"height":130}, - { - "id":"1fbc37ab1097d874", - "type":"text", - "text":"- [ ] 대량유류 수령,연무5동 4000 #취소", - "styleAttributes":{}, - "x":850, - "y":24353, - "width":407, - "height":67 - }, - { - "id":"7747c7087429231a", - "type":"text", - "text":"- [ ] 3교 콘센트 위밈보수 소요보고", - "styleAttributes":{}, - "x":443, - "y":24274, - "width":399, - "height":60, - "color":"1" - }, - { - "id":"0f4af9e306b15df9", - "type":"text", - "text":"- [ ] 25 전투장비지휘검열 후속조치 결과보고,연대장", - "styleAttributes":{}, - "x":-358, - "y":23840, - "width":1208, - "height":60, - "color":"1" - }, - { - "id":"c067ec2e7eba7c04", - "type":"text", - "text":"- [ ] 수통세척,10중대,200개", - "styleAttributes":{}, - "x":442, - "y":23785, + "x":434, + "y":25910, "width":409, "height":60 }, { - "id":"38df91346f91a129", + "id":"68e4cea991228aa3", "type":"text", - "text":"- [x] 부대정밀진단 체크리스트 작성 보고", + "text":"- [ ] 군수 2월 보급결산,~27\n\t- [ ] [[일일결산]]\n\t- [ ] 국방군수정보체계 재산 수입,불출,반납 처리 정리", "styleAttributes":{}, - "x":45, - "y":23785, - "width":402, + "x":-350, + "y":33060, + "width":428, + "height":140, + "color":"5" + }, + { + "id":"f7007e71f217c95f", + "type":"text", + "text":"- [x] 총기탄약 국방부 점검,육훈소대상, 자체점검체크리스트 점검실시,후 연대장님 보고", + "styleAttributes":{}, + "x":-260, + "y":36900, + "width":380, + "height":60 + }, + { + "id":"5e927944ebba5925", + "type":"text", + "text":"- [ ] 1교육대 교육수료주 통합이동정비 추속조치,임대원\n\t- [ ] 방독면 폐처리:1중대16,2중대10,3중대9,4중대27\n\t- [ ] 총기 폐처리:2중대 1정(손망실), 4중대2정", + "styleAttributes":{}, + "x":-350, + "y":34460, + "width":428, + "height":220 + }, + { + "id":"d52123c067d49323", + "type":"text", + "text":"- [x] 카니발 : 01육1292\n (과장님, 중령 송수민, 박민선, 소령 조호현, 중위 조보현)\n* K3 : 209고5623\n (중령 사왕궁, 이운재, 5급 이승환, 최종민)\n\n0920분 도착입니다. 26연대부터 30연대, 23연대 순으로 갑니다", + "styleAttributes":{}, + "x":-350, + "y":34060, + "width":428, + "height":260 + }, + { + "id":"eda3b4fbadb6e51a", + "type":"text", + "text":"- [ ] 해빙기 취약시설 안전점검 결과보고, 이동섭,~3.20", + "styleAttributes":{}, + "x":-350, + "y":34380, + "width":428, + "height":80 + }, + { + "id":"d881df080348871d", + "type":"text", + "text":"- [ ] 1중대, 총기 반납1정(725605), 총몽멈치옷확장", + "styleAttributes":{}, + "x":-350, + "y":33320, + "width":428, "height":60, "color":"1" }, { - "id":"a6f5a1bd2d2e6da0", + "id":"b006301111973121", "type":"text", - "text":"- [ ] 25년 후반기 소방정밀점검 결과 후속조치 결과보고,유재형", + "text":"- [ ] 예산, 사용자 보수비 계획보고, 안일남,김미화", "styleAttributes":{}, - "x":-365, - "y":23893, - "width":2023, + "x":-350, + "y":33380, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"a1f38b3f2fc8fee5", + "type":"text", + "text":"- [ ] 욱본 동계 환경오염사고 예방 현장점겸결과보고,~13,자체점검결과보고,신상이 #미실시", + "styleAttributes":{}, + "x":-350, + "y":33440, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"e6db88bcbd5a3e7a", + "type":"text", + "text":"- [x] 30-1 담요,침낭 세탁", + "styleAttributes":{}, + "x":-350, + "y":32520, + "width":428, "height":60 }, { - "id":"1026e44d4c6871ac", + "id":"ef067d2477cbe265", "type":"text", - "text":"- [ ] 급식운영회의 참석, 참모장 주관, 김낙중 영웅실", + "text":"- [x] 3월 군수교 연료취급자 원격교육 대상자 파악,~23,장성국", "styleAttributes":{}, - "x":1254, - "y":23820, - "width":404, + "x":-350, + "y":32640, + "width":428, "height":60 }, { - "id":"e59d4a36c60f6190", + "id":"11a9f622200bd214", "type":"text", - "text":"- [ ] 교육수료주 통합이동정비계획, 발전기,", + "text":"- [ ] 대전 하나 시티즌 프로 축구 개막전 #취소", "styleAttributes":{}, - "x":850, - "y":23833, - "width":404, + "x":-370, + "y":35060, + "width":428, "height":60 }, { - "id":"8995502fe551c20a", + "id":"a88beacf318c0b93", "type":"text", - "text":"- [ ] 3교 콘센트 위임보수 건의, #취소", + "text":"# 3. 2. (월) 근무휴식, ", "styleAttributes":{}, - "x":441, - "y":24391, - "width":402, + "x":-370, + "y":35000, + "width":428, "height":60 }, { - "id":"5b8e8a4cec99db8b", + "id":"9662862419f8a87d", "type":"text", - "text":"- [ ] 쌍안경 교육대별 2대 반납받기", + "text":"- [ ] [[훼손처리 총기]] 재산정리, 이영민,이재성,이승민", "styleAttributes":{}, - "x":441, - "y":24338, - "width":402, + "x":-350, + "y":33500, + "width":428, + "height":60 + }, + { + "id":"f63a3b6a56b58df9", + "type":"text", + "text":"- [x] [[주유취급소 및 유류탱크저장소 화재사고 예방 점검]]결과보고,박관식,~2.20 #미실시-완료", + "styleAttributes":{}, + "x":-350, + "y":33660, + "width":428, + "height":80 + }, + { + "id":"b2488e23f33ecb6b", + "type":"text", + "text":"- [x] 창고저장관리 현장확인,군수사 피복과장등 4명, 박형주 수행, 1100", + "styleAttributes":{}, + "x":-350, + "y":33000, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"6336f4522d15858c", + "type":"text", + "text":"- [x] 유류탱크저장소 화재사고 예방 점검결과도 부탁드립니다.\n(27연대+교육지원대대)", + "styleAttributes":{}, + "x":-350, + "y":32900, + "width":428, + "height":100 + }, + { + "id":"e8a9b09c59e98068", + "type":"text", + "text":"# 2. 23.( 월 )", + "styleAttributes":{}, + "x":-350, + "y":32400, + "width":428, + "height":60 + }, + { + "id":"eca56377f4dba0b9", + "type":"text", + "text":"- [x] 차량예방정비,9130호", + "styleAttributes":{}, + "x":-350, + "y":32460, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"72468afad5ffaa63", + "type":"text", + "text":"- [x] 3월 한시인가 의견 월요일까지 부탁드립니다.\n(26.27.29.30.교지대)", + "styleAttributes":{}, + "x":-350, + "y":32820, + "width":428, + "height":80, + "color":"1" + }, + { + "id":"18eee28c722ced82", + "type":"text", + "text":"- [ ] 방독면 58개 불용승인 처리에 따른 반납 건의, 이승민, 교육용 교훈처, 운영용 군지대 신청", + "styleAttributes":{}, + "x":-350, + "y":32700, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"2ddddd3f85681b40", + "type":"text", + "text":"# 2. 16.( 월 )", + "styleAttributes":{}, + "x":-330, + "y":31320, + "width":428, "height":60 }, { @@ -4735,6 +6185,36 @@ "width":428, "height":60 }, + { + "id":"b69a1adb753c149b", + "type":"text", + "text":"- [x] 라지에타 철거 신청,군수현장지원게시판", + "styleAttributes":{}, + "x":-355, + "y":29858, + "width":428, + "height":60 + }, + { + "id":"ec463aa8817de800", + "type":"text", + "text":"- [x] 30-1,통합이동정비", + "styleAttributes":{}, + "x":-355, + "y":29518, + "width":428, + "height":60 + }, + { + "id":"e4663f38b24ff7b0", + "type":"text", + "text":"- [ ] [[26년 1분기 장비탄약 관리실태 현장 확인,원정완]]", + "styleAttributes":{}, + "x":-355, + "y":29578, + "width":428, + "height":60 + }, { "id":"95513975d1a45d85", "type":"text", @@ -4756,46 +6236,6 @@ "width":428, "height":60 }, - { - "id":"ec463aa8817de800", - "type":"text", - "text":"- [x] 30-1,통합이동정비", - "styleAttributes":{}, - "x":-355, - "y":29518, - "width":428, - "height":60 - }, - { - "id":"e4663f38b24ff7b0", - "type":"text", - "text":"- [ ] [[26년 1분기 장비탄약 관리실태 현장 확인,원정완]]", - "styleAttributes":{}, - "x":-355, - "y":29578, - "width":428, - "height":60 - }, - { - "id":"b69a1adb753c149b", - "type":"text", - "text":"- [x] 라지에타 철거 신청,군수현장지원게시판", - "styleAttributes":{}, - "x":-355, - "y":29858, - "width":428, - "height":60 - }, - { - "id":"cd809f31f0fbcbb0", - "type":"text", - "text":"# 2. 2. ( 월 )", - "styleAttributes":{}, - "x":-379, - "y":27680, - "width":428, - "height":60 - }, { "id":"fbd39384f49beab2", "type":"text", @@ -4807,45 +6247,85 @@ "height":60 }, { - "id":"f0bf49af87c89efd", + "id":"305a0d70e23bd9f0", "type":"text", - "text":"- [x] 영선대 문의, 사무실 라지에타 제거", + "text":"- [ ] 사이버 필수 이수교육 \n\t1. 민주주의와헌법 수호\n\t2. 청령\n\t3. 장애인인식개선\n\t4. 아동학대\n\t5. 자살예방\n\t6. 인권\n\t7. 안전\n\t8. 다문화이해교육\n\t9. 성인지교육\n1. Mmooc\n2. 나라배움터\n3. 산업안전보건교육원\n4. ", "styleAttributes":{}, - "x":-375, - "y":28240, - "width":428, + "x":-2840, + "y":60115, + "width":523, + "height":485 + }, + { + "id":"39bd6d40c2da9931", + "type":"text", + "text":"- [ ] 개인장구류 부족분 현황 (군지대 보급반 김용대 주무관)\n다용도 파우치 -1\n수통파우치 -164\n수류탄파우치 -10\n30발탄창파우치 -20\n차이 발생입니다\n[[개인장구류 불출 문제발생]]", + "styleAttributes":{}, + "x":-2808, + "y":58780, + "width":491, + "height":240 + }, + { + "id":"26a76cd52036d7b8", + "type":"text", + "text":"- [ ] 제설제 보유 13개,전투물자 창고", + "styleAttributes":{}, + "x":-2808, + "y":59240, + "width":491, "height":60 }, { - "id":"c0cb8cf11e6ee146", + "id":"38b6436bf2e4854a", "type":"text", - "text":"- [x] 30-1 훈련복 세탁", + "text":"- [ ] 26년 육군 안전관리 e러닝 교육,수료증 제출,일반관리자과정,고재은,빅에듀,산업안전보건교육우닌,step", "styleAttributes":{}, - "x":-379, - "y":27940, - "width":428, - "height":60 + "x":-2808, + "y":59300, + "width":491, + "height":130 }, { - "id":"ef1c86dac7b52ece", + "id":"5b63b712f1db77d7", "type":"text", - "text":"- [x] 차량예방정비,3130호", + "text":"- [ ] 지역상생 급식비 집행,46백만원,장성국\n\t- [x] 1차 3.21(토)~22(일)\n\t- [ ] 2차 6.6(토)~7(일)\n\t- [ ] 3차 9.19(토)~20(일)\n\t- [ ] 4차 11.14(토)~15(일)", "styleAttributes":{}, - "x":-379, - "y":27800, - "width":428, - "height":60, + "x":-2808, + "y":59430, + "width":491, + "height":200, "color":"1" }, { - "id":"b8d98dbe0e430689", + "id":"00bd4a46ec37b9ee", "type":"text", - "text":"- [x] 2026년 전반기 부사관 정기평정 개인자력 확인,~28,고재은", + "text":"- [ ] 연무5동 숙소관리\n\t- [ ] 전기검침\n\t- [ ] 보일러 점검(비밀번호:0000)\n- [ ] 난방보일러(왼촉)압력조절 0.4이하\n- [ ] 난방온도 설정", "styleAttributes":{}, - "x":-379, - "y":27860, - "width":428, - "height":80 + "x":-2808, + "y":59020, + "width":491, + "height":220 + }, + { + "id":"82c4bffbd6a84cde", + "type":"text", + "text":"- [ ] 월간 유류/가스 결산\n\t- 소모:난방유류, 취사장\n\t- 소모:총기손질유\n\t- 소모:취사장,난방용가스소모\n\t- 소모:장비용(발전기,의무과)", + "styleAttributes":{}, + "x":-2808, + "y":59630, + "width":491, + "height":190 + }, + { + "id":"31fd269faa6681da", + "type":"text", + "text":"1. 관리전환, 12보병여단, 보온배식대 2개, 식기세척기 2개\n2. 에어컨 재산수입 1대?\n3. 다단식운반차 6개 ?\n4. 본부중대, 방독면 폐처리 21개\n5. 3교육대, 방독면 폐처리 37개(교육용은 교훈처 신품지급건의)\n6. ", + "styleAttributes":{}, + "x":-2808, + "y":59820, + "width":491, + "height":270 }, { "id":"50181c9afe29bde6", @@ -4867,58 +6347,6 @@ "width":2976, "height":60 }, - { - "id":"bb211e09d707972f", - "type":"text", - "text":"- [ ] 2분기 사용다보수비 소요종합,", - "styleAttributes":{}, - "x":1342, - "y":32640, - "width":1284, - "height":60 - }, - { - "id":"1a66b110f2f61ee9", - "type":"text", - "text":"- [x] 박성록 행보관님 전기기능사 원서 출력", - "styleAttributes":{}, - "x":2198, - "y":32460, - "width":428, - "height":60 - }, - { - "id":"261e46bb235ac10b", - "type":"text", - "text":"# 3. 1. (일) 본부중대 당직근무", - "styleAttributes":{}, - "x":2198, - "y":32400, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"9011e16ad6d0bef0", - "type":"text", - "text":"- [ ] 3월 안전점검의날 일저 파악!!김수형,~27 #매월", - "styleAttributes":{}, - "x":1342, - "y":33020, - "width":1284, - "height":60 - }, - { - "id":"cfe9bb0e8b8492f6", - "type":"text", - "text":"- [ ] 2월 은닉 재산초과 탄약 회수활동 결과보고,~3.4, 한서욱", - "styleAttributes":{}, - "x":934, - "y":32960, - "width":1692, - "height":60, - "color":"1" - }, { "id":"a2ed536327463b72", "type":"text", @@ -4930,16 +6358,6 @@ "height":60, "color":"1" }, - { - "id":"67136af9eb227564", - "type":"text", - "text":"- [ ] 군수예산 사용계획보고 공문작성", - "styleAttributes":{}, - "x":2198, - "y":32760, - "width":428, - "height":60 - }, { "id":"61880b61414d0a7d", "type":"text", @@ -4950,6 +6368,16 @@ "width":428, "height":60 }, + { + "id":"bb211e09d707972f", + "type":"text", + "text":"- [ ] 2분기 사용다보수비 소요종합,", + "styleAttributes":{}, + "x":1342, + "y":32640, + "width":1284, + "height":60 + }, { "id":"52b244882390875f", "type":"text", @@ -4970,6 +6398,501 @@ "width":2976, "height":60 }, + { + "id":"67136af9eb227564", + "type":"text", + "text":"- [ ] 군수예산 사용계획보고 공문작성", + "styleAttributes":{}, + "x":2198, + "y":32760, + "width":428, + "height":60 + }, + { + "id":"261e46bb235ac10b", + "type":"text", + "text":"# 3. 1. (일) 본부중대 당직근무", + "styleAttributes":{}, + "x":2198, + "y":32400, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"1a66b110f2f61ee9", + "type":"text", + "text":"- [x] 박성록 행보관님 전기기능사 원서 출력", + "styleAttributes":{}, + "x":2198, + "y":32460, + "width":428, + "height":60 + }, + { + "id":"cfe9bb0e8b8492f6", + "type":"text", + "text":"- [ ] 2월 은닉 재산초과 탄약 회수활동 결과보고,~3.4, 한서욱", + "styleAttributes":{}, + "x":934, + "y":32960, + "width":1692, + "height":60, + "color":"1" + }, + { + "id":"9011e16ad6d0bef0", + "type":"text", + "text":"- [ ] 3월 안전점검의날 일저 파악!!김수형,~27 #매월", + "styleAttributes":{}, + "x":1342, + "y":33020, + "width":1284, + "height":60 + }, + { + "id":"9e101a3cf45680f6", + "type":"text", + "text":"- [ ] **쌍안경,대검 재산 수정**, 대검 박성현이 작성한 한긃파일을 기준으로 총기기준 대검조정소요 작성하여 전파(메모)", + "styleAttributes":{}, + "x":280, + "y":40660, + "width":2120, + "height":60, + "color":"1" + }, + { + "id":"71bea65b8417b20c", + "type":"text", + "text":" - [x] ☆**==FS연습기간 공직기강 점검 :==** 3. 9 ~ 19\n\t관련 간부 출퇴근, 총기탄약 관리, 예산사용, 당직근무체계, 비상대비태세, 보안, 식당관리 등 관심갖고 조치바랍니다. ", + "styleAttributes":{}, + "x":280, + "y":40720, + "width":2120, + "height":60, + "color":"1" + }, + { + "id":"41dcb200cfbde4db", + "type":"text", + "text":"- [ ] **[[부대운영진단]] 준비**", + "styleAttributes":{}, + "x":280, + "y":41320, + "width":2120, + "height":60, + "color":"1" + }, + { + "id":"e164c6cabb7ce365", + "type":"text", + "text":"- [x] 3교 150만원 사용자보수비 집행", + "styleAttributes":{}, + "x":1962, + "y":41620, + "width":438, + "height":60 + }, + { + "id":"928882be046927a9", + "type":"text", + "text":"- [ ] 지원과 사무실개선 집행계획,사용자보수비", + "styleAttributes":{}, + "x":1962, + "y":41560, + "width":438, + "height":60 + }, + { + "id":"70aec4e4bd55dde1", + "type":"text", + "text":"# 3. 27.(금) 이발예약 11시, 늦게퇴근", + "styleAttributes":{}, + "x":1962, + "y":42120, + "width":448, + "height":60 + }, + { + "id":"e4bd3a375e46319e", + "type":"text", + "text":"- [ ] 해빙기 취약시설 일제점검, 이동섭, ~3.27(금),시살물(일반,경계,복지시설/훈련장시설/기타(소방,전기,가스,유류시설)),체크리스트,~4.3(금)한", + "styleAttributes":{}, + "x":290, + "y":42800, + "width":2120, + "height":60 + }, + { + "id":"1a3bf129eb681611", + "type":"text", + "text":"- [ ] **쌍안경,대검 재산 수정**, 대검 박성현이 작성한 한긃파일을 기준으로 총기기준 대검조정소요 작성하여 전파(메모)", + "styleAttributes":{}, + "x":290, + "y":42860, + "width":2120, + "height":60, + "color":"1" + }, + { + "id":"11736c0142fc864e", + "type":"text", + "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", + "styleAttributes":{}, + "x":290, + "y":42920, + "width":2120, + "height":100, + "color":"3" + }, + { + "id":"48c31d3545a59bdc", + "type":"text", + "text":"- [ ] 봄맞이 환경정리\n\t\t계획보고 3.5주간회의시,연대장\n\t\t환경정리 3.9~4.2\n\t\t결과보고4.2 주간회의시 연대장\n\t\t", + "styleAttributes":{}, + "x":290, + "y":43020, + "width":2120, + "height":140, + "color":"1" + }, + { + "id":"0152a46cb41e50d0", + "type":"text", + "text":"- [ ] 해빙기 취약시설 일제점검, 이동섭, ~3.27(금),시살물(일반,경계,복지시설/훈련장시설/기타(소방,전기,가스,유류시설)),체크리스트,~4.3(금)한", + "styleAttributes":{}, + "x":280, + "y":40600, + "width":2120, + "height":60 + }, + { + "id":"fc92f776d4ee50ed", + "type":"text", + "text":"- [ ] 벼영생활관 신축 착수토의 소요건의,박관식,~3.20 #취소", + "styleAttributes":{}, + "x":1962, + "y":41380, + "width":438, + "height":60 + }, + { + "id":"6a2135aa53ff0085", + "type":"text", + "text":"- [ ] 봄맞이 환경정리\n\t\t계획보고 3.5주간회의시,연대장\n\t\t환경정리 3.9~4.2\n\t\t결과보고4.2 주간회의시 연대장\n\t\t", + "styleAttributes":{}, + "x":280, + "y":40880, + "width":2120, + "height":140, + "color":"1" + }, + { + "id":"209bd7d09a3fca3f", + "type":"text", + "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", + "styleAttributes":{}, + "x":280, + "y":40780, + "width":2120, + "height":100, + "color":"3" + }, + { + "id":"1d41a479af4cb5dd", + "type":"text", + "text":"- [ ] 5군지사, 신품 k1방독면 정화통 소요보고,~3.31,김석", + "styleAttributes":{}, + "x":1962, + "y":41440, + "width":438, + "height":60, + "color":"1" + }, + { + "id":"348c26faf9f34580", + "type":"text", + "text":"- [x] CCTV정비비 집행계획작성, 이명세, 조태숙", + "styleAttributes":{}, + "x":1962, + "y":41500, + "width":438, + "height":60 + }, + { + "id":"71df38c0aa5b24e0", + "type":"text", + "text":"- [x] 건설장비 지원 종합,한서욱,~3.27", + "styleAttributes":{}, + "x":1962, + "y":42180, + "width":428, + "height":60 + }, + { + "id":"17f5aecf3461d93e", + "type":"text", + "text":"- [ ] 군수 3월 보급결산,~27\n\t- [ ] [[일일결산]]\n\t- [ ] 국방군수정보체계 재산 수입,불출,반납 처리 정리", + "styleAttributes":{}, + "x":290, + "y":42300, + "width":2100, + "height":140, + "color":"1" + }, + { + "id":"f7c53b5bbce8b2dc", + "type":"text", + "text":"- [ ] [[부대안전진단 결과]] 점검,,3.23~27,이동섭,안잔관리체게,시설물,위험물, 총기탄약,환경,23일연대본븐(행정)", + "styleAttributes":{}, + "x":290, + "y":42440, + "width":2100, + "height":60, + "color":"1" + }, + { + "id":"4f2105ee4f1c700d", + "type":"text", + "text":"- [ ] 투광등 공사,조범희 주무관(전기),1교5,풋살2,가로등6", + "styleAttributes":{}, + "x":1916, + "y":42500, + "width":474, + "height":60 + }, + { + "id":"dfac53c1ecf01bfc", + "type":"text", + "text":"# 3. 20. ( 금 ) 오후반가", + "styleAttributes":{}, + "x":1952, + "y":40120, + "width":428, + "height":60 + }, + { + "id":"d7074be738cc1bff", + "type":"text", + "text":"- [x] 26년 전반기 물자편성기준서 심의 조정소요 품목파납,~3.20.조태숙", + "styleAttributes":{}, + "x":1952, + "y":40180, + "width":428, + "height":60 + }, + { + "id":"d8b8a6a855eb9c20", + "type":"text", + "text":"- [x] 27년 도태결정 및 28-32년도 도태계획요구서 제출,한서욱,~3.20", + "styleAttributes":{}, + "x":1952, + "y":40240, + "width":428, + "height":60 + }, + { + "id":"2c0f12e6ac8f3225", + "type":"text", + "text":"- [ ] 해빙기 취약시설 안전점검 결과보고, 이동섭,~3.20", + "styleAttributes":{}, + "x":280, + "y":40360, + "width":2100, + "height":60, + "color":"1" + }, + { + "id":"e9d21a72662f89cd", + "type":"text", + "text":"- [ ] 25년 후반기 소방점검 후속조치\n\t 결과보고(이행결과)\n\t * 공사결과 포함하여\n\t 3.20(금) 한 보고", + "styleAttributes":{}, + "x":1952, + "y":40420, + "width":428, + "height":120 + }, + { + "id":"ca11837d2b660db7", + "type":"text", + "text":"- [ ] 1중대, 총기 반납1정(725605), 총몽멈치옷확장", + "styleAttributes":{}, + "x":280, + "y":41080, + "width":2100, + "height":60, + "color":"1" + }, + { + "id":"35ac22bfd6bc6eae", + "type":"text", + "text":"- [ ] 욱본 동계 환경오염사고 예방 현장점겸결과보고,~13,자체점검결과보고,신상이", + "styleAttributes":{}, + "x":280, + "y":41140, + "width":2100, + "height":60, + "color":"1" + }, + { + "id":"74b87d0b5c432b7c", + "type":"text", + "text":"- [ ] [[훼손처리 총기]] 재산정리, 이영민,이재성,이승민", + "styleAttributes":{}, + "x":280, + "y":41200, + "width":2100, + "height":60, + "color":"1" + }, + { + "id":"a4f968e2bd1c2967", + "type":"text", + "text":"# 4. 3.(금)", + "styleAttributes":{}, + "x":2032, + "y":45000, + "width":428, + "height":60 + }, + { + "id":"40ad2b92473fe6ed", + "type":"text", + "text":"- [x] 3월 한시인가 결산결과 공문으로 보내주시면 확인하겠습니다(~4.5)", + "styleAttributes":{}, + "x":2032, + "y":45060, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"5dbe882ddaaeddcb", + "type":"text", + "text":"- [ ] 안전관리자 인사명령 의뢰,,김수형,~.3.12", + "styleAttributes":{}, + "x":976, + "y":38600, + "width":1264, + "height":60 + }, + { + "id":"1941c6a014a0cece", + "type":"text", + "text":"- [ ] 부대운영진단 준ㅂ", + "styleAttributes":{}, + "x":1880, + "y":38660, + "width":360, + "height":60, + "color":"1" + }, + { + "id":"df12114b7b09fb75", + "type":"text", + "text":"☆**==FS연습기간 공직기강 점검 :==** 3. 9 ~ 19\n관련 간부 출퇴근, 총기탄약 관리, 예산사용, 당직근무체계, 비상대비태세, 보안, 식당관리 등 관심갖고 조치바랍니다. **자체점검 결과보고** ", + "styleAttributes":{}, + "x":120, + "y":37960, + "width":2120, + "height":60, + "color":"1" + }, + { + "id":"0e2cc76bed354895", + "type":"text", + "text":"- [x] K5 휴대주며니 수령,이승민, 251개", + "styleAttributes":{}, + "x":976, + "y":38320, + "width":1264, + "height":60 + }, + { + "id":"cdbbe36203ab042a", + "type":"text", + "text":"- [ ] 26년 연대 평가관련 현황종합 및 훈련준비,정구휘, 4.15\n\t1. 탄약치장물자 수령분배\n\t2. 개인군장결속\n\t3. 삽탄,임무형보호태세\n\t4. 개인임무수행철 최신화,3.16\n\t5. 연대통제 전투준비태세, 지휘통제기구 훈련,3.18 1400-1530\n\t6. ", + "styleAttributes":{}, + "x":976, + "y":38380, + "width":1264, + "height":220 + }, + { + "id":"0aa3944c916c827c", + "type":"text", + "text":"- [x] ==[[예산]] 사용계획보고== ", + "styleAttributes":{}, + "x":976, + "y":37840, + "width":1244, + "height":60, + "color":"1" + }, + { + "id":"3083c073eaacd986", + "type":"text", + "text":"- [ ] 해빙기 취약시설 일제점검, 이동섭, ~3.27(금),시살물(일반,경계,복지시설/훈련장시설/기타(소방,전기,가스,유류시설)),체크리스트,~4.3(금)한", + "styleAttributes":{}, + "x":120, + "y":39520, + "width":2120, + "height":60 + }, + { + "id":"c45a500bee9c402c", + "type":"text", + "text":"- [ ] **쌍안경,대검 재산 수정**, 대검 박성현이 작성한 한긃파일을 기준으로 총기기준 대검조정소요 작성하여 전파(메모)", + "styleAttributes":{}, + "x":120, + "y":39580, + "width":2120, + "height":60, + "color":"1" + }, + { + "id":"71730e95b25ab133", + "type":"text", + "text":"- [ ] 연대본부 랜드토키 2대 수리부속처리품 재산정리 필요, 이명세", + "styleAttributes":{}, + "x":2032, + "y":45180, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"62a36f30f4613968", + "type":"text", + "text":"- [x] 감찰,손망실 보고서 수정,도장지참,구은지", + "styleAttributes":{}, + "x":2032, + "y":45120, + "width":428, + "height":60 + }, + { + "id":"75f349f3d1af34fa", + "type":"text", + "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", + "styleAttributes":{}, + "x":120, + "y":38020, + "width":2120, + "height":100, + "color":"3" + }, + { + "id":"b69929a4f23c7f12", + "type":"text", + "text":"- [ ] 봄맞이 환경정리\n\t\t계획보고 3.5주간회의시,연대장\n\t\t환경정리 3.9~4.2\n\t\t결과보고4.2 주간회의시 연대장\n\t\t", + "styleAttributes":{}, + "x":120, + "y":38120, + "width":2120, + "height":140, + "color":"1" + }, { "id":"40b9f1e87ede3b0a", "type":"text", @@ -5003,79 +6926,16 @@ "height":60 }, { - "id":"df12114b7b09fb75", + "id":"956330e0c86f62b9", "type":"text", - "text":"☆**==FS연습기간 공직기강 점검 :==** 3. 9 ~ 19\n관련 간부 출퇴근, 총기탄약 관리, 예산사용, 당직근무체계, 비상대비태세, 보안, 식당관리 등 관심갖고 조치바랍니다. **자체점검 결과보고** ", + "text":"- [ ] 1중대, 총기 반납1정(725605), 총몽멈치옷확장", "styleAttributes":{}, "x":120, - "y":37960, - "width":2120, + "y":37540, + "width":2100, "height":60, "color":"1" }, - { - "id":"75f349f3d1af34fa", - "type":"text", - "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", - "styleAttributes":{}, - "x":120, - "y":38020, - "width":2120, - "height":100, - "color":"3" - }, - { - "id":"b69929a4f23c7f12", - "type":"text", - "text":"- [ ] 봄맞이 환경정리\n\t\t계획보고 3.5주간회의시,연대장\n\t\t환경정리 3.9~4.2\n\t\t결과보고4.2 주간회의시 연대장\n\t\t", - "styleAttributes":{}, - "x":120, - "y":38120, - "width":2120, - "height":140, - "color":"1" - }, - { - "id":"3083c073eaacd986", - "type":"text", - "text":"- [ ] 해빙기 취약시설 일제점검, 이동섭, ~3.27(금),시살물(일반,경계,복지시설/훈련장시설/기타(소방,전기,가스,유류시설)),체크리스트,~4.3(금)한", - "styleAttributes":{}, - "x":120, - "y":39520, - "width":2120, - "height":60 - }, - { - "id":"c45a500bee9c402c", - "type":"text", - "text":"- [ ] **쌍안경,대검 재산 수정**, 대검 박성현이 작성한 한긃파일을 기준으로 총기기준 대검조정소요 작성하여 전파(메모)", - "styleAttributes":{}, - "x":120, - "y":39580, - "width":2120, - "height":60, - "color":"1" - }, - { - "id":"dfac53c1ecf01bfc", - "type":"text", - "text":"# 3. 20. ( 금 ) 오후반가", - "styleAttributes":{}, - "x":1952, - "y":40120, - "width":428, - "height":60 - }, - { - "id":"d7074be738cc1bff", - "type":"text", - "text":"- [x] 26년 전반기 물자편성기준서 심의 조정소요 품목파납,~3.20.조태숙", - "styleAttributes":{}, - "x":1952, - "y":40180, - "width":428, - "height":60 - }, { "id":"7c0d4b011b372fdb", "type":"text", @@ -5086,6 +6946,17 @@ "width":430, "height":70 }, + { + "id":"07d86a463b20161e", + "type":"text", + "text":"- [x] 병영생활 관 신축 1단계 선행연구 착수토의,~13, 자체", + "styleAttributes":{}, + "x":1382, + "y":37220, + "width":836, + "height":70, + "color":"1" + }, { "id":"d12194cae1a42603", "type":"text", @@ -5107,78 +6978,45 @@ "height":65 }, { - "id":"956330e0c86f62b9", + "id":"b3451e5b5b0f73aa", "type":"text", - "text":"- [ ] 1중대, 총기 반납1정(725605), 총몽멈치옷확장", + "text":"- [x] 1교육대 부대운영자재비 ", "styleAttributes":{}, - "x":120, - "y":37540, - "width":2100, - "height":60, - "color":"1" + "x":1792, + "y":37020, + "width":430, + "height":65 }, { - "id":"0e2cc76bed354895", + "id":"11ab919954beeda1", "type":"text", - "text":"- [x] K5 휴대주며니 수령,이승민, 251개", + "text":"- [ ] 국방부 나라배움터 인권교육, 자살예방교육 떴습니당.\n\n신청하시길 바랍니다~", "styleAttributes":{}, - "x":976, - "y":38320, - "width":1264, - "height":60 - }, - { - "id":"cdbbe36203ab042a", - "type":"text", - "text":"- [ ] 26년 연대 평가관련 현황종합 및 훈련준비,정구휘, 4.15\n\t1. 탄약치장물자 수령분배\n\t2. 개인군장결속\n\t3. 삽탄,임무형보호태세\n\t4. 개인임무수행철 최신화,3.16\n\t5. 연대통제 전투준비태세, 지휘통제기구 훈련,3.18 1400-1530\n\t6. ", - "styleAttributes":{}, - "x":976, - "y":38380, - "width":1264, - "height":220 - }, - { - "id":"5dbe882ddaaeddcb", - "type":"text", - "text":"- [ ] 안전관리자 인사명령 의뢰,,김수형,~.3.12", - "styleAttributes":{}, - "x":976, - "y":38600, - "width":1264, - "height":60 - }, - { - "id":"1941c6a014a0cece", - "type":"text", - "text":"- [ ] 부대운영진단 준ㅂ", - "styleAttributes":{}, - "x":1880, - "y":38660, - "width":360, - "height":60, - "color":"1" - }, - { - "id":"0aa3944c916c827c", - "type":"text", - "text":"- [x] ==[[예산]] 사용계획보고== ", - "styleAttributes":{}, - "x":976, - "y":37840, - "width":1244, - "height":60, - "color":"1" - }, - { - "id":"d8b8a6a855eb9c20", - "type":"text", - "text":"- [x] 27년 도태결정 및 28-32년도 도태계획요구서 제출,한서욱,~3.20", - "styleAttributes":{}, - "x":1952, - "y":40240, + "x":1792, + "y":36900, "width":428, "height":60 }, + { + "id":"12df0d41f2d48419", + "type":"text", + "text":"- [x] 손망실보고서 제출", + "styleAttributes":{}, + "x":1792, + "y":36780, + "width":428, + "height":60 + }, + { + "id":"95c3deef450ec3e6", + "type":"text", + "text":"- [x] 개인정보동의서 제출", + "styleAttributes":{}, + "x":1790, + "y":36840, + "width":430, + "height":60 + }, { "id":"0810bea6c465f3af", "type":"text", @@ -5189,6 +7027,17 @@ "width":428, "height":60 }, + { + "id":"3ad5b5f88d64fb27", + "type":"text", + "text":"- [ ] 화장실 천장보수 소요 부대 예산 검토,보고,최기호,~3.13", + "styleAttributes":{}, + "x":1384, + "y":36960, + "width":836, + "height":60, + "color":"1" + }, { "id":"a46b31de08573eeb", "type":"text", @@ -5200,17 +7049,6 @@ "height":65, "color":"1" }, - { - "id":"07d86a463b20161e", - "type":"text", - "text":"- [x] 병영생활 관 신축 1단계 선행연구 착수토의,~13, 자체", - "styleAttributes":{}, - "x":1382, - "y":37220, - "width":836, - "height":70, - "color":"1" - }, { "id":"871ccc35147d3572", "type":"text", @@ -5231,6 +7069,359 @@ "width":430, "height":70 }, + { + "id":"ce6c04a261eafd3a", + "type":"text", + "text":"- [x] 교육과장 전파\n\t4.3.(금) 09:30~11:30까지\n\t지휘통제기구훈련을 시행합니다.\n\tㆍ참석대상 : 지휘통제실 구성요원\n\t (자리배치도 참조)\n\tㆍ사전 DB구축을 해야하니 내일\n\t 오전까지 인사군수실무자는\n\t 지통실에 와서 수정바랍니다\n\t* 전술훈련평가 점검표 추가 의견으로 달아놨으니 반드시 확인바랍니다.", + "styleAttributes":{}, + "x":1624, + "y":45420, + "width":836, + "height":240, + "color":"1" + }, + { + "id":"cc5b786c98e559ae", + "type":"text", + "text":"- [ ] 5군지사, 신품 k1방독면 정화통 소요보고,~3.31,김석", + "styleAttributes":{}, + "x":360, + "y":45660, + "width":2100, + "height":60, + "color":"1" + }, + { + "id":"7144b05813ca4141", + "type":"text", + "text":"- [x] 충성!\n\t담당관님 4중대장 김승권상사입니다.\n\t오늘 하루도 고생많으셨습니다!\n\t다름이 아니라 차량5부제 제외간부 파일을 의견으로 올려드렸는데 4중대 간부 1명이 누락되어 말씀드립니다.\n\t김윤종상사이며 가족 출근을 시킨 후 부대 출근을 해야되서 5부제 제외차량으로 편성이 필요합니다.\n\t죄송하지만 간부 1명 포함시켜주시면 감사하겠습니다!!\n\t이상입니다. 충성!", + "styleAttributes":{}, + "x":2042, + "y":45720, + "width":418, + "height":360 + }, + { + "id":"7a45c327cbdfecd8", + "type":"text", + "text":"# 4. 10.(금) 정상퇴근1730", + "styleAttributes":{}, + "x":2042, + "y":46720, + "width":428, + "height":60 + }, + { + "id":"be2c8bf0fb4ea944", + "type":"text", + "text":"- [ ] 육군규정 수정 개정소요 제출,~4.10,조태숙 #취소", + "styleAttributes":{}, + "x":2042, + "y":46780, + "width":428, + "height":60 + }, + { + "id":"631741e9b210aaa8", + "type":"text", + "text":"- [x] 밝은눈 안과 출장검진,고재은,4.10,1300-1330,연무관", + "styleAttributes":{}, + "x":2042, + "y":46840, + "width":428, + "height":60 + }, + { + "id":"ce3e16baceeb6154", + "type":"text", + "text":"- [x] 28-32 국방중기계획 작성교육, 남재우, 1000, 교육지원대대장, 교지대 다목적홀", + "styleAttributes":{}, + "x":2042, + "y":46900, + "width":428, + "height":60 + }, + { + "id":"9ebadd4055e8db52", + "type":"text", + "text":"- [x] 주간유류탱크점검,유류소모", + "styleAttributes":{}, + "x":2040, + "y":46960, + "width":430, + "height":60 + }, + { + "id":"4d1d3aed023ce83b", + "type":"text", + "text":"- [ ] 28-32 국방중기계획작성,~4.15,박관식,연대 교육대 창고(피복,운영, 치장창고)", + "styleAttributes":{}, + "x":370, + "y":47020, + "width":2100, + "height":60, + "color":"1" + }, + { + "id":"f7eb2d8645d88f6a", + "type":"text", + "text":"- [ ] 26년 전반기 안전보건확보의무 이행 자율 점검 결과보고, 이동섭,~6.15", + "styleAttributes":{}, + "x":370, + "y":47080, + "width":2100, + "height":60 + }, + { + "id":"53804a2924d935c6", + "type":"text", + "text":"# 4. 9.(목)", + "styleAttributes":{}, + "x":1634, + "y":46720, + "width":408, + "height":60 + }, + { + "id":"586e93f50436381d", + "type":"text", + "text":"- [x] ✔️전반기 교육사 군수통합지도방문\n🌱환경+재난분야는 3.9.(목) 예정입니다.\n각 부대별 미흡사항 있는지 사전 점검 부탁드립니다.", + "styleAttributes":{}, + "x":1634, + "y":47160, + "width":408, + "height":120 + }, + { + "id":"19942abda1789692", + "type":"text", + "text":"- [x] [승용차 2부제(홀짝제) 시행]\n\t(별) 메모보고 참조\n\t\n\t1. 시행일 : 4. 13.(월) 06:30 부\n\t2. 대상 : 군인, 군무원, 근무원 전 차량\n\t * 10인승 이하 승용자동차\n\t1. 시행방법 : 끝자리 숫자가 \n\t 홀수면 홀수일, 짝수면 짝수일 운행\n\t2. 적용시간 : 평일(월~금) 24시간\n\t * 주말, 공휴일, 31일 제외\n\t3. 제외차량 : 기존 5부제 지침 적용\n\t * 추가사항 \n\t - 대중교통 미운행 시간에 출근 하는\n\t 차량 포함(06시 30분 이전 출근)\n\t - 논산에서 버스 첫차 출발시간 고려\n\t (201번 버스 기준 06시에 논산 출발)\n\t (별) 적용제외차량 스티커는\n\t A4 코팅하여 차량 전면\n\t 잘 보이는 곳에 위치\n\t (양식이 다르면 미인정)\n\t\n\t메모보고 참고하시고\n\t기존양식 활용하여\n\t2부제 제외차량 공문으로\n\t보고바랍니다.(4. 10.(금) 한)", + "styleAttributes":{}, + "x":2040, + "y":47160, + "width":450, + "height":615 + }, + { + "id":"89f9935d44ddd651", + "type":"text", + "text":"- [x] 총기보관함 10인용 보급,황인찬,~4.9,56개(24,32),도수하역(인원필요),1교18,2교19,3교 19", + "styleAttributes":{}, + "x":1634, + "y":46780, + "width":408, + "height":60 + }, + { + "id":"d09373eda8f0ac22", + "type":"text", + "text":"- [x] 에방정비,9130호", + "styleAttributes":{}, + "x":1634, + "y":46840, + "width":408, + "height":60 + }, + { + "id":"c2dbf7c0610185a6", + "type":"text", + "text":"- [ ] 모래주머니 소요 종합,황인찬,~4.9 #취소 ", + "styleAttributes":{}, + "x":1634, + "y":46960, + "width":406, + "height":60 + }, + { + "id":"296224789442e8b1", + "type":"text", + "text":"- [ ] 건설장비 소요종합 보고,한서욱,~4.9 #취소", + "styleAttributes":{}, + "x":1634, + "y":46900, + "width":406, + "height":60 + }, + { + "id":"c8f69c02e67654ff", + "type":"text", + "text":"# 4. 2.(목)", + "styleAttributes":{}, + "x":1624, + "y":45000, + "width":408, + "height":60 + }, + { + "id":"8fb6923c263306fa", + "type":"text", + "text":"- [x] 25,26년 불용장비폐처리결과 보고,한서욱,~4.2", + "styleAttributes":{}, + "x":1624, + "y":45060, + "width":408, + "height":60 + }, + { + "id":"b5cff9eec56cf03d", + "type":"text", + "text":"- [x] 의무과 인원 5부제 수정", + "styleAttributes":{}, + "x":1624, + "y":45180, + "width":408, + "height":60 + }, + { + "id":"53cd88c837dd21fd", + "type":"text", + "text":"- [x] 부대야전정비지시서 완결, 통신장비, CPL10192 10215 10216,조희철", + "styleAttributes":{}, + "x":1624, + "y":45120, + "width":408, + "height":60 + }, + { + "id":"7a51300d4193f98c", + "type":"text", + "text":"- [x] 3중대 행보관(정현일) 전훌훈련평가관련 탄약,치장물자 분배 계획문의", + "styleAttributes":{}, + "x":1624, + "y":45240, + "width":408, + "height":60 + }, + { + "id":"2bc467a39828447e", + "type":"text", + "text":"- [x] 주간예정사항 작성,이명세 ", + "styleAttributes":{}, + "x":1624, + "y":45300, + "width":408, + "height":60 + }, + { + "id":"6a6d4e37bfef997d", + "type":"text", + "text":"- [ ] 6중대 물자유지비 사용계획보고 작성", + "styleAttributes":{}, + "x":1624, + "y":45360, + "width":408, + "height":60 + }, + { + "id":"6a2f7c6d6e9319b6", + "type":"text", + "text":"- [x] 출입신청서 보내드립니다.\n납품일:4월 9일 오후 13시 도착\n품명: 총기보관함 10정용 72개 \n계약자:동광시스템\n\n1.성명: 김종운\n생년월일 : 730123\n주소: 경기도 고양시 덕양구 내유동현대파크빌B동301호\n연락처 : 010-6349-7531\n차종 : 프리마/흰색\n차량번호 : 경기92자2973(5톤)\n2. 성명:김윤성\n생년월일:820220\n연락처:010-7425-1214\n주소:경기도 파주시 심학산로385 운정센트럴 푸르지오아파트 1015동1102호\n차량정보:경기87바2650(구쎈8톤/검정색)", + "styleAttributes":{}, + "x":1634, + "y":47280, + "width":408, + "height":550 + }, + { + "id":"004a2948a41d5297", + "type":"text", + "text":"- [x] 방탄헬멧\n\t교체소요 재파악합니다\n\t\n\t상태가 크랙가거나 위장포를 씌워서도 사용이 불가한 방탄헬멧 교체 소요를 파악합니다\n\t\n\t기존에 파악 했던 수량\n\t방탄헬멧(중형)391개\n\t부유대 1800개\n\t에서 문의드리는 내용입니다", + "styleAttributes":{}, + "x":1544, + "y":41380, + "width":418, + "height":260 + }, + { + "id":"362f4213cd150b6b", + "type":"text", + "text":"- [x] 발전기기술검사,,임대원,임헌준", + "styleAttributes":{}, + "x":1544, + "y":40420, + "width":408, + "height":60 + }, + { + "id":"4b0d7c29660a75ee", + "type":"text", + "text":"# 3. 26.(목)", + "styleAttributes":{}, + "x":1554, + "y":42120, + "width":408, + "height":60 + }, + { + "id":"e5137228f1ca4ac4", + "type":"text", + "text":"- [x] 지원과 회식", + "styleAttributes":{}, + "x":1554, + "y":42180, + "width":408, + "height":60 + }, + { + "id":"295277c22f3eb53e", + "type":"text", + "text":"- [ ] TV(37X038075),거치대(37x011486) 불출 tv10,중앙스탠드형2,벽걸이브라겟형8 ", + "styleAttributes":{}, + "x":1554, + "y":42240, + "width":408, + "height":60 + }, + { + "id":"41534eb35d745a98", + "type":"text", + "text":"- [x] 정거리배차 소요종합, 유재형", + "styleAttributes":{}, + "x":1554, + "y":42500, + "width":400, + "height":60 + }, + { + "id":"89b46c98d5a009e4", + "type":"text", + "text":"- [x] 4월 간부영내급식 한시인가 소요 종합,장성국", + "styleAttributes":{}, + "x":1554, + "y":42560, + "width":400, + "height":60 + }, + { + "id":"a963a7248f52ce53", + "type":"text", + "text":"- [x] 버스팀장 09시 인솔\n- [x] 10시 계운과 보안교육 이후 퇴영", + "styleAttributes":{}, + "x":1554, + "y":43160, + "width":400, + "height":60 + }, + { + "id":"b58b9eedaad70b9a", + "type":"text", + "text":"- [x] 위장포사이즈 파악,박형주", + "styleAttributes":{}, + "x":1554, + "y":42620, + "width":400, + "height":60 + }, + { + "id":"8d8903dfffa152e6", + "type":"text", + "text":"- [ ] 보급품 분배\n\t- [ ] 티비 TV 10대\n\t\t- [ ] 1교 4(스탠드2벽걸이2)\n\t\t- [ ] 2교 2(벽걸이2)\n\t\t- [ ] 3교 4(벽걸이4)\n\t- [x] 방탄헬멧 260\n\t\t- [ ] 1교 30\n\t\t- [ ] 2교 100\n\t\t- [ ] 3교 120\n\t- [x] 방탄 부수기재(내피)1800\n\t\t- [ ] 1교 700\n\t\t- [ ] 2교 600\n\t\t- [ ] 3교 500ㄴ", + "styleAttributes":{}, + "x":1554, + "y":42680, + "width":400, + "height":480 + }, { "id":"94ff4a23cbbd8988", "type":"text", @@ -5272,96 +7463,13 @@ "height":60 }, { - "id":"2c0f12e6ac8f3225", + "id":"a3e77b2623a2e900", "type":"text", - "text":"- [ ] 해빙기 취약시설 안전점검 결과보고, 이동섭,~3.20", - "styleAttributes":{}, - "x":280, - "y":40360, - "width":2100, - "height":60, - "color":"1" - }, - { - "id":"12df0d41f2d48419", - "type":"text", - "text":"- [x] 손망실보고서 제출", - "styleAttributes":{}, - "x":1792, - "y":36780, - "width":428, - "height":60 - }, - { - "id":"95c3deef450ec3e6", - "type":"text", - "text":"- [x] 개인정보동의서 제출", - "styleAttributes":{}, - "x":1790, - "y":36840, - "width":430, - "height":60 - }, - { - "id":"11ab919954beeda1", - "type":"text", - "text":"- [ ] 국방부 나라배움터 인권교육, 자살예방교육 떴습니당.\n\n신청하시길 바랍니다~", - "styleAttributes":{}, - "x":1792, - "y":36900, - "width":428, - "height":60 - }, - { - "id":"3ad5b5f88d64fb27", - "type":"text", - "text":"- [ ] 화장실 천장보수 소요 부대 예산 검토,보고,최기호,~3.13", + "text":"- [x] 1교육대 내일 전출간부 1명 총기 1정 및 대검 1정 연대무기고 반납 있습니다!\n개방시간은 1540으로 인지하겠습니다!\n@최병규 @박성현 하사 ", "styleAttributes":{}, "x":1384, - "y":36960, - "width":836, - "height":60, - "color":"1" - }, - { - "id":"b3451e5b5b0f73aa", - "type":"text", - "text":"- [x] 1교육대 부대운영자재비 ", - "styleAttributes":{}, - "x":1792, - "y":37020, - "width":430, - "height":65 - }, - { - "id":"0bc112d6faf8a46b", - "type":"text", - "text":"# 2. 28.( 토 )", - "styleAttributes":{}, - "x":1770, - "y":32400, - "width":428, - "height":60, - "color":"#1100ff" - }, - { - "id":"e9d21a72662f89cd", - "type":"text", - "text":"- [ ] 25년 후반기 소방점검 후속조치\n\t 결과보고(이행결과)\n\t * 공사결과 포함하여\n\t 3.20(금) 한 보고", - "styleAttributes":{}, - "x":1952, - "y":40420, - "width":428, - "height":120 - }, - { - "id":"362f4213cd150b6b", - "type":"text", - "text":"- [x] 발전기기술검사,,임대원,임헌준", - "styleAttributes":{}, - "x":1544, - "y":40420, - "width":408, + "y":37600, + "width":404, "height":60 }, { @@ -5374,56 +7482,6 @@ "width":408, "height":60 }, - { - "id":"242c2c1f8d0cdbf4", - "type":"text", - "text":"- [x] 헐거운 침대 연결조립체 조사 소요종합,~3.13, 최기호,30미리,35미리 2개종류 소요파악", - "styleAttributes":{}, - "x":1384, - "y":37020, - "width":408, - "height":60 - }, - { - "id":"3cd4553971f53017", - "type":"text", - "text":"- [ ] 병영생활 관 신축 1단계 선행연구 착수토의,~13,박괸식 #조기실시", - "styleAttributes":{}, - "x":1386, - "y":37080, - "width":406, - "height":70 - }, - { - "id":"4ee1ebe38076eaf5", - "type":"text", - "text":"- [ ] [[훼손처리 총기]] 재산정리, 이영민,이재성,이승민", - "styleAttributes":{}, - "x":486, - "y":36140, - "width":1264, - "height":60 - }, - { - "id":"72bf07734a0c14a3", - "type":"text", - "text":"- [x] 식당, 가스계량기(G10)교체 추적확인, ~27 결과:2번째 섭체 선정\n\t- [ ] 01064075665 : 770,000원\n\t- [ ] [[01071921116]] : 699600원, 육영건설\n\t- [ ] 01066592067\n\t- [ ] 01041009427 : : 35만원(계량기#인건비) 입니다\n\t- [ ] [[01028286846]] : 632500원, 화성", - "styleAttributes":{}, - "x":486, - "y":36200, - "width":1264, - "height":200 - }, - { - "id":"04f845f9505998f5", - "type":"text", - "text":"# 3. 12. (목)근무휴식, ", - "styleAttributes":{}, - "x":1384, - "y":36720, - "width":408, - "height":60 - }, { "id":"08494b2190b57238", "type":"text", @@ -5444,6 +7502,26 @@ "width":408, "height":60 }, + { + "id":"242c2c1f8d0cdbf4", + "type":"text", + "text":"- [x] 헐거운 침대 연결조립체 조사 소요종합,~3.13, 최기호,30미리,35미리 2개종류 소요파악", + "styleAttributes":{}, + "x":1384, + "y":37020, + "width":408, + "height":60 + }, + { + "id":"3cd4553971f53017", + "type":"text", + "text":"- [ ] 병영생활 관 신축 1단계 선행연구 착수토의,~13,박괸식 #조기실시", + "styleAttributes":{}, + "x":1386, + "y":37080, + "width":406, + "height":70 + }, { "id":"4ecfe43116174cd2", "type":"text", @@ -5455,15 +7533,57 @@ "height":60 }, { - "id":"a3e77b2623a2e900", + "id":"4ee1ebe38076eaf5", "type":"text", - "text":"- [x] 1교육대 내일 전출간부 1명 총기 1정 및 대검 1정 연대무기고 반납 있습니다!\n개방시간은 1540으로 인지하겠습니다!\n@최병규 @박성현 하사 ", + "text":"- [ ] [[훼손처리 총기]] 재산정리, 이영민,이재성,이승민", + "styleAttributes":{}, + "x":486, + "y":36140, + "width":1264, + "height":60 + }, + { + "id":"72bf07734a0c14a3", + "type":"text", + "text":"- [x] 식당, 가스계량기(G10)교체 추적확인, ~27 결과:2번째 섭체 선정\n\t- [ ] 01064075665 : 770,000원\n\t- [ ] [[01071921116]] : 699600원, 육영건설\n\t- [ ] 01066592067\n\t- [ ] 01041009427 : : 35만원(계량기#인건비) 입니다\n\t- [ ] [[01028286846]] : 632500원, 화성", + "styleAttributes":{}, + "x":486, + "y":36200, + "width":1264, + "height":200 + }, + { + "id":"ebe9490f1f094578", + "type":"text", + "text":"- [x] 손망실 처리 변상대상자 동의서 제출(이명세상사)", + "styleAttributes":{}, + "x":486, + "y":36460, + "width":1264, + "height":60, + "color":"1" + }, + { + "id":"04f845f9505998f5", + "type":"text", + "text":"# 3. 12. (목)근무휴식, ", "styleAttributes":{}, "x":1384, - "y":37600, - "width":404, + "y":36720, + "width":408, "height":60 }, + { + "id":"82b43743b27b9aeb", + "type":"text", + "text":"- [ ] 물자유지비(cctv) 정비예산 건의,이명세, 견적서 메일보냄", + "styleAttributes":{}, + "x":894, + "y":35300, + "width":856, + "height":60, + "color":"1" + }, { "id":"2a63968443b16167", "type":"text", @@ -5476,15 +7596,14 @@ "color":"1" }, { - "id":"ebe9490f1f094578", + "id":"b5728ef779cb56a3", "type":"text", - "text":"- [x] 손망실 처리 변상대상자 동의서 제출(이명세상사)", + "text":"- [ ] 간부 인성검사", "styleAttributes":{}, - "x":486, - "y":36460, - "width":1264, - "height":60, - "color":"1" + "x":1342, + "y":35660, + "width":408, + "height":60 }, { "id":"abe947ec9c5cdf2d", @@ -5507,6 +7626,17 @@ "height":60, "color":"1" }, + { + "id":"7acec792f8f94452", + "type":"text", + "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", + "styleAttributes":{}, + "x":-370, + "y":36040, + "width":2120, + "height":100, + "color":"3" + }, { "id":"cb2d7fffcdd272c8", "type":"text", @@ -5529,79 +7659,6 @@ "height":60, "color":"1" }, - { - "id":"7acec792f8f94452", - "type":"text", - "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", - "styleAttributes":{}, - "x":-370, - "y":36040, - "width":2120, - "height":100, - "color":"3" - }, - { - "id":"b5728ef779cb56a3", - "type":"text", - "text":"- [ ] 간부 인성검사", - "styleAttributes":{}, - "x":1342, - "y":35660, - "width":408, - "height":60 - }, - { - "id":"0152a46cb41e50d0", - "type":"text", - "text":"- [ ] 해빙기 취약시설 일제점검, 이동섭, ~3.27(금),시살물(일반,경계,복지시설/훈련장시설/기타(소방,전기,가스,유류시설)),체크리스트,~4.3(금)한", - "styleAttributes":{}, - "x":280, - "y":40600, - "width":2120, - "height":60 - }, - { - "id":"9e101a3cf45680f6", - "type":"text", - "text":"- [ ] **쌍안경,대검 재산 수정**, 대검 박성현이 작성한 한긃파일을 기준으로 총기기준 대검조정소요 작성하여 전파(메모)", - "styleAttributes":{}, - "x":280, - "y":40660, - "width":2120, - "height":60, - "color":"1" - }, - { - "id":"c58de6ffb58dc631", - "type":"text", - "text":"- [x] 컴퓨터 교체,이명세, 인수인계서 작성제출,~6", - "styleAttributes":{}, - "x":894, - "y":35240, - "width":856, - "height":60 - }, - { - "id":"c9e0bf38db3b7d46", - "type":"text", - "text":"- [x] 2월 안전점검의날 행사 결과 종합, 작성, 안전실 게시판 보고", - "styleAttributes":{}, - "x":486, - "y":35360, - "width":1264, - "height":60 - }, - { - "id":"177e9de484c5e6d0", - "type":"text", - "text":"- [ ] **26년도 2분기 사용자 보수비 심의 자료 종합보고(연대장님, ~3.3(화),** / 지휘관 보고 및 심의, 3.5(목) 13:30, 집무실, 다시 수정해서 공문으로 보고, 지시했던 내용을 누락하지말자 ", - "styleAttributes":{}, - "x":486, - "y":35420, - "width":1264, - "height":60, - "color":"1" - }, { "id":"e361bc2c2f15f16b", "type":"text", @@ -5613,1521 +7670,1032 @@ "height":60 }, { - "id":"890967733f58876e", + "id":"b1d83de61e99015b", "type":"text", - "text":"# 3. 18. ( 수 )", + "text":"- [x] 🌱 실내공기질 측정 예정\n- 금일 : 30-1교(라돈 6지점), 25-2교, 25-3교\n- 익일(예정) : 27-3교, 28연대 식당, 30-2교, 30-3교\n\n각 부대별 인지하시어 인솔 및 측정지점 안내바랍니다.\n\n* 콘센트, 측정기기 공간 확보 필수\n* 순차적으로 연락예정\n* 병영생활시설의 경우 병영생활관에 1지점 이상 설치 필수\n* 실내공기질 측정 기사님 연락처입니다.\n성당-> 30-1교육대 안내부탁드리겠습니다.\n01095570500 백규현기사", "styleAttributes":{}, - "x":1136, - "y":40120, + "x":1226, + "y":47140, "width":408, - "height":60 + "height":430 }, { - "id":"8b855b3f52b3837c", + "id":"357267fce19d565a", "type":"text", - "text":"- [x] 병영생활 관 신축 1단계 선행연구 착수토의,~13, 연대장님주관", + "text":"- [x] 26년 실내공기질 측정,신상이,~5.4, 1교 라돈, 취사식당4.16-17, 3교4.14-15,윤정현010-5409-8081", "styleAttributes":{}, - "x":1136, - "y":40180, - "width":408, - "height":60 - }, - { - "id":"99f202d4996877aa", - "type":"text", - "text":"- [x] 교육수료주 통합이동정비,3교육", - "styleAttributes":{}, - "x":1136, - "y":40300, - "width":408, - "height":60 - }, - { - "id":"86f5d4cec3a5103f", - "type":"text", - "text":"- [x] 유압크레인 지원소요 종합, 이민학,~3.18", - "styleAttributes":{}, - "x":1136, - "y":40420, - "width":408, - "height":60 - }, - { - "id":"1528230f5fce24eb", - "type":"text", - "text":"- [x] 26-2차 국방구 위함물 안전관리자 양상 교육 대상자 파악 보고,장성국,~3.18", - "styleAttributes":{}, - "x":1136, - "y":40480, - "width":408, - "height":60 - }, - { - "id":"71bea65b8417b20c", - "type":"text", - "text":" - [x] ☆**==FS연습기간 공직기강 점검 :==** 3. 9 ~ 19\n\t관련 간부 출퇴근, 총기탄약 관리, 예산사용, 당직근무체계, 비상대비태세, 보안, 식당관리 등 관심갖고 조치바랍니다. ", - "styleAttributes":{}, - "x":280, - "y":40720, - "width":2120, - "height":60, - "color":"1" - }, - { - "id":"0dbcfc382bcb081a", - "type":"text", - "text":"- [x] 지휘관 월간 탄약고 덤검", - "styleAttributes":{}, - "x":1322, - "y":35060, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"1c2e29c0297ee671", - "type":"text", - "text":"- [x] 도시락 간담회,장성국,1400,김낙중영웅실,", - "styleAttributes":{}, - "x":1322, - "y":35120, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"82b43743b27b9aeb", - "type":"text", - "text":"- [ ] 물자유지비(cctv) 정비예산 건의,이명세, 견적서 메일보냄", - "styleAttributes":{}, - "x":894, - "y":35300, - "width":856, - "height":60, - "color":"1" - }, - { - "id":"632a62dfda12fbd2", - "type":"text", - "text":"- [ ] 수저 소요종합,황인찬,37w034910,~3.6 #취소", - "styleAttributes":{}, - "x":1322, - "y":35180, - "width":428, - "height":60 - }, - { - "id":"19bd0f77b934f231", - "type":"text", - "text":"- [x] 가스계량기 교체 업체 출입신청", - "styleAttributes":{}, - "x":1342, - "y":35480, - "width":408, - "height":60 - }, - { - "id":"9a2b276bb23fdbe8", - "type":"text", - "text":"- [ ] 위험성평가 작성", - "styleAttributes":{}, - "x":1342, - "y":35540, - "width":408, - "height":60, - "color":"3" - }, - { - "id":"337a1b5071d4677b", - "type":"text", - "text":"- [ ] 이재성 손망실, ~3.11(수), 군수과 제출 > 감찰실 검토 요청", - "styleAttributes":{}, - "x":-350, - "y":33200, - "width":2120, - "height":60 - }, - { - "id":"27d0b52ae3b6e967", - "type":"text", - "text":"- [x] 26년 전반기 운행책임자 평가 결과보고,~27,유재형", - "styleAttributes":{}, - "x":934, - "y":32460, - "width":836, - "height":60 - }, - { - "id":"83731d1c0039888d", - "type":"text", - "text":"# 2. 27.( 금 )", - "styleAttributes":{}, - "x":1342, - "y":32400, - "width":428, - "height":60 - }, - { - "id":"209bd7d09a3fca3f", - "type":"text", - "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", - "styleAttributes":{}, - "x":280, - "y":40780, - "width":2120, - "height":100, - "color":"3" - }, - { - "id":"d90ea66f53f05d2d", - "type":"text", - "text":"- [x] 폭영대비물자소요보고,~3.11,유재형", - "styleAttributes":{}, - "x":976, - "y":36780, - "width":408, - "height":60 - }, - { - "id":"9f8204e615d3f374", - "type":"text", - "text":"- [x] 군수사령관 현장방문,1030-1330,9중대 현장방문", - "styleAttributes":{}, - "x":976, - "y":36840, - "width":408, - "height":60 - }, - { - "id":"5a6a61641afc0deb", - "type":"text", - "text":"- [ ] 종군교 직무보수(공병장비기본)~11,한서욱 #취소", - "styleAttributes":{}, - "x":976, - "y":36900, - "width":408, - "height":60 - }, - { - "id":"9dd4a3872ecf9a44", - "type":"text", - "text":"- [x] 2월 음식물쓰레기 배출일지 제출 및 발생량 결과분석,~11,신상이", - "styleAttributes":{}, - "x":976, - "y":36960, - "width":408, - "height":60 - }, - { - "id":"489f562861364417", - "type":"text", - "text":"- [ ] 위험성평가 작성", - "styleAttributes":{}, - "x":120, - "y":37420, + "x":370, + "y":47570, "width":1264, "height":60, - "color":"3" + "color":"4" }, { - "id":"1216f25d5fd1b6bd", + "id":"98fd06d3ec5017ac", "type":"text", - "text":"- [x] 간부 인성검사", + "text":"- [x] 사령부 전반기 군수분야지도방문", "styleAttributes":{}, - "x":120, - "y":37480, + "x":370, + "y":47630, "width":1264, - "height":60 - }, - { - "id":"333741a9ae2f78d4", - "type":"text", - "text":"- [x] 교육과구매품 재산증가,이명세, 회의용테이블(37w002126) 5개, TV(37w024149)3개", - "styleAttributes":{}, - "x":976, - "y":38260, - "width":408, - "height":60 - }, - { - "id":"bd92ac90717a18d6", - "type":"text", - "text":"- [ ] [군수계획업무전파]\n\t1. 차량사고예방교육 (2차)\n\t - 3.12(목) 10시 광개토강당\n\t - 최대한 많은 인원참석(열외최소화)\n\t * 열외자는 지휘관주관 교육실시 후\n\t 공문보고\n\t1. 소방안전관리자 교육대상자 종합\n\t * 메모보고 참조(오늘중 보고)\n\t * 교육미이수자, 보직교체예정부대\n\t 교육필요\n\t1. 25년 후반기 소방점검 후속조치\n\t 결과보고(이행결과)\n\t * 공사결과 포함하여\n\t 3.20(금) 한 보고 \n\t1. 봄맞이 환경정화활동 적극실시\n\t * 4.2.(목) 지휘보고 포함 결과보고\n\t1. 에너지관리실태 현장확인\n\t * 가로등.경계등 ON OFF\n\t 올바른 멀티탭 사용\n\t 불필요전원코드 제거\n\t (별) 점검결과 우수부대는\n\t 전반기 에너지절약 계획표창반영(1명)", - "styleAttributes":{}, - "x":976, - "y":38660, - "width":408, - "height":700 - }, - { - "id":"649ed3476e696fdd", - "type":"text", - "text":"고생많으십니다 \n혹시나해서 생수 예산반납 전 한번 더 전달드립니다.\n3월부터는 배출용생수는 도시락 업체에서 제공하기에 따로 신청하시면 안됩니다.\n각 교육대에도 꼭 전달 부탁 드립니다.\n(3월 1주차에 생수업체 통해 신청하신 부분은 제가 인지하고 있어서 1주차에 신청해서 필요한 예상금액 외에는 전액 반납예정입니다)", - "styleAttributes":{}, - "x":976, - "y":39640, - "width":464, - "height":280 - }, - { - "id":"6a2135aa53ff0085", - "type":"text", - "text":"- [ ] 봄맞이 환경정리\n\t\t계획보고 3.5주간회의시,연대장\n\t\t환경정리 3.9~4.2\n\t\t결과보고4.2 주간회의시 연대장\n\t\t", - "styleAttributes":{}, - "x":280, - "y":40880, - "width":2120, - "height":140, + "height":60, "color":"1" }, { - "id":"20889fadbea072ed", + "id":"62354298d7007344", "type":"text", - "text":"- [x] 사용자보수비 심의, 2교 견적서 제출,4건\n\t- [ ] 부대운영자재비 1건", + "text":"# 4. 8.(수)", "styleAttributes":{}, - "x":486, - "y":36400, - "width":846, + "x":1226, + "y":46720, + "width":408, "height":60 }, { - "id":"0c81c9c2179f2f82", + "id":"b6dc15cad6ee79a3", "type":"text", - "text":"- [x] Fs연습기간 사고예방교육(군사경찰대장 주관)\n-대상 : 전장병 + 군무원\n- 1,2교육대 : 11일(수) 09시 / 1강의장\n- 3교육대 : 25(수) 14시 / 9강의장\n\n* 본부중대 및 참모부, 의무과는 가용날짜에 참석\n* 교육대는 가용한 강의장알려주십시오.", + "text":"- [ ] 체력검정1차 #취소", "styleAttributes":{}, - "x":976, - "y":37020, + "x":1226, + "y":46780, + "width":408, + "height":60 + }, + { + "id":"6b05dafc0aed08b8", + "type":"text", + "text":"- [x] 연대전술훈련평가 자체예행연습,연대장", + "styleAttributes":{}, + "x":370, + "y":47690, + "width":1264, + "height":60, + "color":"1" + }, + { + "id":"5f64427bc237e7f2", + "type":"text", + "text":"- [x] 내일 군수통합지도방문(급양)은 현재까지는 직영식당 현장위주로 보신다고합니다.\n어떤거 위주로 보실건지는 확인 후 전파드리겠습니다.\n\n관련해서 군수과장님과 저는 15시부터 28-25-29에 현장확인을 할 예정입니다. ", + "styleAttributes":{}, + "x":1226, + "y":47750, "width":408, "height":210 }, { - "id":"0b9d8c5bb6b1f67d", + "id":"b50c63e75a26e13d", "type":"text", - "text":"- [x] 연결 키트 소요 보고", + "text":"- [x] 손망실 소집교읅, 구은지, 1030,성당", "styleAttributes":{}, - "x":976, - "y":37230, + "x":2040, + "y":47775, + "width":430, + "height":60 + }, + { + "id":"0909035d927b14c0", + "type":"text", + "text":"- [x] 군수계획(소방.재난).환경분야는\n내일점검합니다\n(교육사 군수계획장교,환경담당)", + "styleAttributes":{}, + "x":1634, + "y":47830, "width":408, - "height":60 - }, - { - "id":"a4c2b3ca19e619ec", - "type":"text", - "text":"- [x] 화생방보호의 교육용 정수부족 노후교체 소요종합,~5,한서욱", - "styleAttributes":{}, - "x":486, - "y":35120, - "width":836, - "height":60 - }, - { - "id":"22f37f7afa0bda7a", - "type":"text", - "text":"- [x] 기간 장병용 정수부족분 수통보급 소요종합, 박형주,~3.5", - "styleAttributes":{}, - "x":486, - "y":35180, - "width":836, - "height":60 - }, - { - "id":"7c77c2a40f19e2b1", - "type":"text", - "text":"# 3. 5.( 목 )", - "styleAttributes":{}, - "x":894, - "y":35000, - "width":428, - "height":60 - }, - { - "id":"10ffb0899226d031", - "type":"text", - "text":"- [ ] 1분기 장비 탄약 관리실태 현장 확인 결과 조치해야할 사항\n\t- [ ] 관련근거\n\t\t- [ ] 육규 428 군수품 및 재산출납관리 규정\n\t\t- [ ] 유규 465 탄약관리규정\n\t\t- [ ] 육규 471 장비관리규정\n\t\t- [ ] 육규 742 화생방 장비 물자 관리규정\n\t- [ ] 은닉탄 회수함 보완\n\t- [ ] 저장화생방 장비물자 관리제웟표 최신화\n\t- [ ] 부대행정압무 총기결산, 전산대장 내용 누락\n\t- [ ] 총기관리책임관 정(교육대장,) cctv 확인\n\t- [ ] 정비지시서 미완결 처리(7일이내)", - "styleAttributes":{}, - "x":1342, - "y":33940, - "width":462, - "height":380, - "color":"1" - }, - { - "id":"d2605c4171896b86", - "type":"text", - "text":"- [ ] 손망실 처리 변상대상자 동의서 제출(이명세상사)", - "styleAttributes":{}, - "x":1342, - "y":34380, - "width":462, - "height":60, - "color":"1" - }, - { - "id":"05672f5ff4f49778", - "type":"text", - "text":"# 3. 6.( 금 )", - "styleAttributes":{}, - "x":1322, - "y":35000, - "width":428, - "height":60 - }, - { - "id":"82130f90719ff177", - "type":"text", - "text":"- [ ] 수리부속 수령,보안경200,1교청구", - "styleAttributes":{}, - "x":934, - "y":33260, - "width":408, - "height":60 - }, - { - "id":"5d25fae239339315", - "type":"text", - "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", - "styleAttributes":{}, - "x":-350, - "y":33560, - "width":2100, - "height":100, - "color":"3" - }, - { - "id":"4ea3993c943d52af", - "type":"text", - "text":"- [ ] 식당, 가스계량기(G10)교체 추적확인, ~27\n\t- [ ] 01064075665\n\t- [ ] [[01071921116]] : 699600원, 육영건설\n\t- [ ] 01066592067\n\t- [ ] 01041009427 : : 35만원(계량기#인건비) 입니다\n\t- [ ] [[01028286846]] : 632500원, 화성", - "styleAttributes":{}, - "x":-350, - "y":33740, - "width":2100, - "height":200 - }, - { - "id":"67ba71556f30f0c9", - "type":"text", - "text":"- [ ] 대냥유류 수령,4000리터, 연무5동,임대원,김용대 #취소", - "styleAttributes":{}, - "x":934, - "y":32640, - "width":408, - "height":60 - }, - { - "id":"550cb85af67ef33a", - "type":"text", - "text":"- [ ] 식기세척기용세제,린스 보급,0800,세척제37x923786,144,헹굼청가제 접시닦기용(375034413),48,28-30-26연대", - "styleAttributes":{}, - "x":934, - "y":32700, - "width":408, - "height":110 - }, - { - "id":"45a00c4bf93ac18f", - "type":"text", - "text":"- [x] 장거리 배차 신청 종합 보고, 유재형,~2.26", - "styleAttributes":{}, - "x":934, - "y":32810, - "width":408, - "height":70 - }, - { - "id":"e2a1095d642c3e42", - "type":"text", - "text":"# 2. 26.( 목 )", - "styleAttributes":{}, - "x":934, - "y":32400, - "width":408, - "height":60 - }, - { - "id":"947b4dc6bf9eea88", - "type":"text", - "text":"~~최상사님~ 잘지내시죠?~~\n~~다름아니라 전군 군수품 조사 관련해서 전산착오품목 델리스상 군수품조정 입력해 주셔야 해서요. 가능하시면 내일 좀 부탁드려요~ 오늘도 고생하셨습니다.~~", - "styleAttributes":{}, - "x":1342, - "y":33320, - "width":462, - "height":200, - "color":"1" - }, - { - "id":"e532839bef2453da", - "type":"text", - "text":"- [ ] 영상교재 활용,저장화생방 장비물ㅏ 시뇟닝 평가(csrp) 업무가이드", - "styleAttributes":{}, - "x":1346, - "y":34440, - "width":458, - "height":100 - }, - { - "id":"535e88852e5d2724", - "type":"text", - "text":"- [ ] 2차 오수봔로 개선사업,신상이,1020,위병소 면회실,지원과장,군수실무자 #미참석", - "styleAttributes":{}, - "x":924, - "y":33100, - "width":496, - "height":60, - "color":"1" - }, - { - "id":"df9822fbac47c9c2", - "type":"text", - "text":"- [ ] **위험성평가 작성**", - "styleAttributes":{}, - "x":280, - "y":41020, - "width":1264, - "height":60, - "color":"4" - }, - { - "id":"e07866285076b3ee", - "type":"text", - "text":"[군수계획 업무 전파]\n1. 도로교통공단 전문강사 초빙\n 해빙기 차량사고 예방교육 \n 참석대상자 종합(메모보고 참조)\n * 대상 : 직접운전자, 운행책임자,\n 운전병 전원\n (별) 보고기한 : 2. 26. (목) 한\n\n2. 전반기 운행책임자 자격인증평가\n (공문 참조)\n * 대상 : 453명 / 전 부대(엑셀파일)\n * 국방수송정보체계 접속 후 \n 온라인평가\n (별) 부대(서)별 실시결과 보고(공문)\n : 2. 27.(금) 한 / 군지대대, 군수과 보고\n\n3. 폭염대비 재난대비물자 소요 종합\n (종합 메모보고 발송 예정)\n (별) 소요 종합 후 26년 배정예산 고려\n 예하부대 재배정\n * 대상 물자 : 폭염응급키트, 인삼천, \n 아이스조끼, 아이스팩, 보냉가방 등\n * 올해는 폭염응급키트 구매비용이 \n 추가로 나오지 않습니다.\n\n4. 봄맞이 주둔지, 훈련장 환경정리 추진\n (메모보고 참조)\n (별) 부대별 계획보고 : 3. 5. (목)\n - 연대 : 주간회의 지휘보고에 포함\n - 직할부대 : 참모장님 간담회시 보고", - "styleAttributes":{}, - "x":934, - "y":33320, - "width":408, - "height":880 - }, - { - "id":"b0b81fcded5526ff", - "type":"text", - "text":"- [x] 회식", - "styleAttributes":{}, - "x":934, - "y":33940, - "width":408, - "height":60 - }, - { - "id":"c11a7558a8330b48", - "type":"text", - "text":"- [x] 전역자 이불세탁 소요보고(3월15일기준),박관식 #매월 ~26", - "styleAttributes":{}, - "x":934, - "y":33020, - "width":408, - "height":80 - }, - { - "id":"c8d734ac351ebacc", - "type":"text", - "text":"# 3. 17.( 화 ) 카풀", - "styleAttributes":{}, - "x":708, - "y":40120, - "width":428, - "height":60 - }, - { - "id":"586de2cb8f4139bd", - "type":"text", - "text":"- [x] **병영생활 관 신축 1단계 선행연구 착수토의,~13, 자체,지원과장,교육대장,교지관**", - "styleAttributes":{}, - "x":280, - "y":40180, - "width":856, - "height":60 - }, - { - "id":"31ec9a81627f4b1a", - "type":"text", - "text":"- [x] [[1중대]] 보급,4번창고,1500,박형주,3113개", - "styleAttributes":{}, - "x":708, - "y":40240, - "width":428, - "height":60 - }, - { - "id":"bb5d28c5b52d90c3", - "type":"text", - "text":"- [x] 자동온도조절튀김손 구매규격 의견종합,황인찬,~16", - "styleAttributes":{}, - "x":708, - "y":40300, - "width":428, - "height":60 - }, - { - "id":"ca11837d2b660db7", - "type":"text", - "text":"- [ ] 1중대, 총기 반납1정(725605), 총몽멈치옷확장", - "styleAttributes":{}, - "x":280, - "y":41080, - "width":2100, - "height":60, - "color":"1" - }, - { - "id":"35ac22bfd6bc6eae", - "type":"text", - "text":"- [ ] 욱본 동계 환경오염사고 예방 현장점겸결과보고,~13,자체점검결과보고,신상이", - "styleAttributes":{}, - "x":280, - "y":41140, - "width":2100, - "height":60, - "color":"1" - }, - { - "id":"74b87d0b5c432b7c", - "type":"text", - "text":"- [ ] [[훼손처리 총기]] 재산정리, 이영민,이재성,이승민", - "styleAttributes":{}, - "x":280, - "y":41200, - "width":2100, - "height":60, - "color":"1" - }, - { - "id":"1ddf8ca582f739c3", - "type":"text", - "text":"- [x] **냉난방기 계량기교체(별관), 오후, 중부가스,육영건설, 유영대\n630113-1632325\n010.2871.2632** ", - "styleAttributes":{}, - "x":120, - "y":37160, - "width":856, "height":130 }, { - "id":"0ac526bfd6aefef7", + "id":"62dcc978bcc03154", "type":"text", - "text":"- [x] 대량유류수령 4000,연무5동", + "text":"- [x] 정비지시서 욀결", "styleAttributes":{}, - "x":548, - "y":36780, + "x":2042, + "y":47835, "width":428, "height":60 }, { - "id":"9296f4126cfcdb6d", + "id":"6ae1105f5d5a4c02", "type":"text", - "text":"- [x] 30연대 병영생활관 신축 선행연구 착수토의,1330, 연대장 김낙중실", + "text":"- [x] 병영생활 신축 추가 의견 반영\n- [ ] ", "styleAttributes":{}, - "x":548, - "y":36840, - "width":428, + "x":1160, + "y":43160, + "width":394, "height":60 }, { - "id":"fb32c0e19afa78a8", + "id":"29c7d346b4e8fe88", "type":"text", - "text":"- [x] 가로등, 경계등 ON,OFF 시간 \n점검하고 각부대 조치바랍니다.\n\t* 3. 9. (월) 기준\n\t 소등 : 06:45, 점등 : 18:39\n\t(별) 가로등, 경계등에만 적용됨\n\t* 병영생활관에 부착된 등과 연병장 등은\n\t 취침시간에 소등\n\t(별) 군수과에서 에너지관리 관련\n\t 불시점검하여 우수부대는\n\t 전반기 에너지절약유공자(계획표창)\n\t 표창대상자 1명 선정하겠습니다.\n\t * 점검사항 : 멀티탭 준수,\n\t 불필요 전원 OFF\n\t 가로등 점등 및 소등상태 등", + "text":"# 4. 1.(수)", "styleAttributes":{}, - "x":548, - "y":38260, - "width":428, - "height":440 - }, - { - "id":"ea4811d3ffbe6d41", - "type":"text", - "text":"- [x] 1월 재활용 매각대금\n✔️미제출 : 28,29,30연대\n\n\t1월 음식물 관리대장\n\t✔️미제출 : 28연대, 입심대\n\t\n\t미제출 부대는 익일까지 기존 메모로\n\t제출 부탁드립니다.", - "styleAttributes":{}, - "x":548, - "y":38700, - "width":428, - "height":240 - }, - { - "id":"7cf1125e20ce2661", - "type":"text", - "text":"- [x] [차량사고예방교육 대상자 최신화]\n\t* 3. 5. (목) 15:46 발송메모\n\t\n\t부대별 1차 교육 참석자\n\t2차교육 참석예정인원, 미참석자\n\t최신화하여 의견으로\n\t오늘 중 올려주세요.\n\t* 보고완료 : 25연대, 군지,교지대대\n\t병역심사관리대", - "styleAttributes":{}, - "x":548, - "y":38940, - "width":428, - "height":335 - }, - { - "id":"6991edff103b0c04", - "type":"text", - "text":"- [x] 부유대는 총 1700개입니다\n- [x] 1교 700, 2교 600, 3교 400\n\n- [x] 연결키트 종합\n- [x] 1교:30미리 135세트\n- [x] 2교:30미리 443세트\n- [x] 3교:30미리 160세트\n- [x] 로 보고 하겠습니다", - "styleAttributes":{}, - "x":548, - "y":39275, - "width":428, - "height":245 - }, - { - "id":"f822a7e4ebf42f05", - "type":"text", - "text":"- [x] **[[예산]], 사용자 보수비 계획보고, 안일남,김미화**", - "styleAttributes":{}, - "x":120, - "y":37600, - "width":856, + "x":1216, + "y":45000, + "width":408, "height":60 }, { - "id":"5d2e958af2bf2c64", + "id":"f000f3aa01202a6c", "type":"text", - "text":"- [x] **예산 집행 독촉,홍채림**\n\t- [ ] 지역상생\n\t- [ ] 취사기구유지비 \n\t- [ ] 26-2차 결과공문", + "text":"- [x] . 봄맞이 환경정화활동 적극실시\n\t * 4.2.(목) 지휘보고 포함 결과보고", "styleAttributes":{}, - "x":548, - "y":37840, - "width":428, + "x":360, + "y":45120, + "width":1264, + "height":60 + }, + { + "id":"650a4241c18323a2", + "type":"text", + "text":"- [ ] 4월 은닉 및 초과 재산탄약 회수활동 결과 보고,~4.1, 한서욱", + "styleAttributes":{}, + "x":1216, + "y":45060, + "width":408, + "height":60 + }, + { + "id":"b8fa9b944eca74e6", + "type":"text", + "text":"- [x] 취사장 교육", + "styleAttributes":{}, + "x":1216, + "y":45180, + "width":408, + "height":60 + }, + { + "id":"7ab8d5c34f0d8665", + "type":"text", + "text":"- [x] 연대 전훌훈련평가 예행연습", + "styleAttributes":{}, + "x":1226, + "y":46840, + "width":408, + "height":60 + }, + { + "id":"c6c8d7b855587922", + "type":"text", + "text":"- [x] 사령부 전반기 군수지동방문", + "styleAttributes":{}, + "x":1226, + "y":46900, + "width":408, + "height":60 + }, + { + "id":"5cc20e631b6ab756", + "type":"text", + "text":"- [x] 오늘 1교육대 징집분대장 2명 전입으로 인해 연대무기고에서 총기 및 대검 2정 1540에 수령하겠습니다!", + "styleAttributes":{}, + "x":1634, + "y":47960, + "width":408, "height":120 }, { - "id":"41dcb200cfbde4db", + "id":"a5b76db968407408", "type":"text", - "text":"- [ ] **[[부대운영진단]] 준비**", + "text":"- [ ] 교육과,본부중대재산 워키토키 2대정리,이명세", "styleAttributes":{}, - "x":280, - "y":41320, - "width":2120, - "height":60, + "x":2040, + "y":47895, + "width":430, + "height":65, "color":"1" }, { - "id":"e87e023099e47ad7", + "id":"8cda3e6d3e0f8593", "type":"text", - "text":"- [x] **해빙기 대비 도로교통공단 초빙강사 교육 소요보고,~3.9,유재형**", + "text":"- [x] 1분기위임보수 공사(중대화장실3개소분3천만원) 예산 물품구매 협조,위임보수담당,안일남", "styleAttributes":{}, - "x":120, - "y":36900, - "width":856, + "x":2040, + "y":47960, + "width":430, "height":60 }, { - "id":"bd0350a78cd2ee14", + "id":"f7f007db7a3194d8", "type":"text", - "text":"# 3. 10.( 화 )", + "text":"# 3. 25.(수)", "styleAttributes":{}, - "x":548, - "y":36720, + "x":1146, + "y":42120, + "width":408, + "height":60 + }, + { + "id":"11193a405012894b", + "type":"text", + "text":"- [ ] 28-32 학교기관 조리기구 중기계획 현금배정 소요작성,조태숙,~3.25", + "styleAttributes":{}, + "x":1146, + "y":42500, + "width":408, + "height":60 + }, + { + "id":"4ea45f61eae7116c", + "type":"text", + "text":"- [ ] 발전기 예방정비 기술검사,임헌준,임대원,의무과,추사장", + "styleAttributes":{}, + "x":1226, + "y":48260, + "width":408, + "height":60 + }, + { + "id":"8082198901af2a0b", + "type":"text", + "text":"# 4. 17.(금)", + "styleAttributes":{}, + "x":2042, + "y":48200, "width":428, "height":60 }, { - "id":"c794c0f278ff3a56", + "id":"61e205c093032a84", "type":"text", - "text":"- [x] 3월 안전점검의날 ", + "text":"- [ ] 병영생활관 신축 선행연구퇴의,박관식,4.16 #취소", "styleAttributes":{}, - "x":486, - "y":35060, + "x":1634, + "y":48260, "width":408, + "height":60 + }, + { + "id":"b4ebe82204b7dfa3", + "type":"text", + "text":"- [x] 대형정수기 업체 계속 정비가능여부 확인", + "styleAttributes":{}, + "x":2040, + "y":48020, + "width":430, + "height":60 + }, + { + "id":"671d9e93eb470997", + "type":"text", + "text":"- [ ] 국방군수통합정보체계 상 보급목적코드 및 장비상태코드 입력 확인, 한서욱", + "styleAttributes":{}, + "x":2042, + "y":48260, + "width":428, + "height":60 + }, + { + "id":"ea39ab719b851d27", + "type":"text", + "text":"# 4. 18. (토) 당직", + "styleAttributes":{}, + "x":2470, + "y":48200, + "width":260, "height":60, - "color":"1" + "color":"5" }, { - "id":"7dfea70b51f6f3c1", + "id":"650e05392de57424", "type":"text", - "text":"- [x] 병영생환관 화장실(대변칸) 천장보수 샘플제시,현장토의,최기호", + "text":"# 4. 16.(목)", "styleAttributes":{}, - "x":486, - "y":35300, + "x":1634, + "y":48200, "width":408, "height":60 }, { - "id":"61f6efef25d5c391", + "id":"454827b322a05a94", "type":"text", - "text":"- [x] 핸드토키,1대(cpl10215),정비불가,불용신청,조희철", + "text":"# 4. 15.(수)", "styleAttributes":{}, - "x":486, - "y":35240, + "x":1226, + "y":48200, "width":408, "height":60 }, { - "id":"be48ebe435a2460e", + "id":"901ae0ebbea9300a", "type":"text", - "text":"# 3. 4.( 수 )", + "text":"# 4. 7 . (화) ", "styleAttributes":{}, - "x":486, - "y":35000, - "width":408, + "x":798, + "y":46720, + "width":428, "height":60 }, { - "id":"9b89f886f4f203f0", + "id":"1233d5aa897ce748", "type":"text", - "text":"- [x] **2월 은닉 재산초과 탄약 회수활동 결과보고,~3.4, 한서욱**", + "text":"- [x] 통신장비예방정비,무전기PRC999k", "styleAttributes":{}, - "x":486, - "y":35480, - "width":408, + "x":798, + "y":46780, + "width":428, "height":60 }, { - "id":"127d8cf32276af83", + "id":"ee909a75d90eecef", "type":"text", - "text":"- [ ] [[봅맞이 환경정리]] 계획보고,~3.3(화) 100,유재", + "text":"- [ ] 2교 물탱크 교체 2분기 위임보수 건의 필요", "styleAttributes":{}, - "x":506, - "y":32970, + "x":798, + "y":46840, "width":428, "height":60, "color":"1" }, { - "id":"004a2948a41d5297", + "id":"22eeb17d83225aae", "type":"text", - "text":"- [x] 방탄헬멧\n\t교체소요 재파악합니다\n\t\n\t상태가 크랙가거나 위장포를 씌워서도 사용이 불가한 방탄헬멧 교체 소요를 파악합니다\n\t\n\t기존에 파악 했던 수량\n\t방탄헬멧(중형)391개\n\t부유대 1800개\n\t에서 문의드리는 내용입니다", + "text":"- [x] 중기계획 교육,10시,군재다목적강당", "styleAttributes":{}, - "x":1544, - "y":41380, - "width":418, - "height":260 + "x":798, + "y":46900, + "width":428, + "height":60 }, { - "id":"fc92f776d4ee50ed", + "id":"a64a3e4e45a45d38", "type":"text", - "text":"- [ ] 벼영생활관 신축 착수토의 소요건의,박관식,~3.20 #취소", + "text":"- [x] 연대 창고 중기계획보고,창고,박관식,", "styleAttributes":{}, - "x":1962, - "y":41380, + "x":375, + "y":48378, + "width":1665, + "height":60, + "color":"1" + }, + { + "id":"3d0ac192c43392e7", + "type":"text", + "text":"- [x] 3교 보충역 입영", + "styleAttributes":{}, + "x":1634, + "y":48320, + "width":406, + "height":60 + }, + { + "id":"6df1eaf34780b7a9", + "type":"text", + "text":"- [ ] 간부 성인지교육 신청", + "styleAttributes":{}, + "x":1634, + "y":48445, + "width":406, + "height":60 + }, + { + "id":"09d1b4a074d192a6", + "type":"text", + "text":"- [x] 외부 폐기물 처리소요 보고, 신상이,~4.17", + "styleAttributes":{}, + "x":2042, + "y":48320, + "width":428, + "height":60 + }, + { + "id":"e47d2c9a32f052c2", + "type":"text", + "text":"- [ ] 충성! 보급관님\n1교육대 대검 재산 실셈파악은\n4.17(금) 에 실시하겠습니다!", + "styleAttributes":{}, + "x":2042, + "y":48380, + "width":428, + "height":100, + "color":"1" + }, + { + "id":"64b3e554babd1130", + "type":"text", + "text":"- [ ] 노후 등기구 조사, 조범희,~4.17", + "styleAttributes":{}, + "x":2042, + "y":48480, + "width":428, + "height":60 + }, + { + "id":"1b6b646b465f8e66", + "type":"text", + "text":"- [ ] 안전보건확보의무이행 관련 주둔지내 법정시설요도 작성,아등섭,~3.31", + "styleAttributes":{}, + "x":788, + "y":45300, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"e915b17838612e14", + "type":"text", + "text":"- [ ] 헬스용품 50만원 소요종합", + "styleAttributes":{}, + "x":788, + "y":45360, + "width":428, + "height":60 + }, + { + "id":"8a5ccb897ac08a2c", + "type":"text", + "text":"- [x] 한시적인가 급식 소요파악,숙영인원,1교", + "styleAttributes":{}, + "x":788, + "y":45420, + "width":428, + "height":60 + }, + { + "id":"ba97883af9c6995c", + "type":"text", + "text":"- [ ] 4월 안전점검의 날 행사 일정 종합,김수형, ~3.31", + "styleAttributes":{}, + "x":788, + "y":45240, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"ebbc69dc68babf63", + "type":"text", + "text":"- [x] 건설장비 소요 종합,한서욱,~4.17", + "styleAttributes":{}, + "x":2040, + "y":48600, + "width":428, + "height":60 + }, + { + "id":"3d1076c84eadb0b3", + "type":"text", + "text":"- [ ] 장거리 배차 소요종합,유재형,~4.16", + "styleAttributes":{}, + "x":1634, + "y":48505, + "width":406, + "height":75 + }, + { + "id":"2cdb1ad1d8df5afd", + "type":"text", + "text":"- [ ] 월하준비 시행지침 획인, ", + "styleAttributes":{}, + "x":1634, + "y":48580, + "width":408, + "height":60 + }, + { + "id":"096ad31c759ffd09", + "type":"text", + "text":"[[방역업체]] 방문", + "styleAttributes":{}, + "x":1634, + "y":48640, + "width":408, + "height":60 + }, + { + "id":"91979ff8d4b98b55", + "type":"text", + "text":"- [ ] 해빙기 취약시설 안전점검 결과보고 내용확인,이동섭", + "styleAttributes":{}, + "x":2042, + "y":48540, "width":438, "height":60 }, { - "id":"09a373884add8580", + "id":"7bae2174fc4fb7b5", "type":"text", - "text":"# 3. 11. ( 수 )본부중대 당직근무", + "text":"- [x] 폐자원매각대금 사용계획 소오종합,양지선,~4.17", "styleAttributes":{}, - "x":976, - "y":36720, - "width":408, - "height":60 - }, - { - "id":"cfd75170577b5c93", - "type":"text", - "text":"- [ ] K5방독면 휴대주머니 교체소요 종합,이승민~3.6", - "styleAttributes":{}, - "x":506, - "y":33320, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"51caab59e1f8f46e", - "type":"text", - "text":"- [ ] 7중대 총기 1정(739426) 반납,오세열,김범수", - "styleAttributes":{}, - "x":506, - "y":33380, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"db7d1211fd377634", - "type":"text", - "text":"- [ ] 1교 수통세척예정", - "styleAttributes":{}, - "x":506, - "y":32640, + "x":2042, + "y":48665, "width":428, "height":60 }, { - "id":"dfee52685be388b1", + "id":"0906621464de7e30", "type":"text", - "text":"- [x] [[30연대 26년도 예산]] 배정공문접수", + "text":"- [ ] 2교육대 8중대 방독면 4개 및 입고정비 완결처리,임대원,~5.11", "styleAttributes":{}, - "x":856, - "y":30580, - "width":402, - "height":60 + "x":370, + "y":48440, + "width":1264, + "height":65 }, { - "id":"83e770189723c061", + "id":"d5260f058d7a8aab", "type":"text", - "text":"- [x] 30-1 이불패드매트리스 세닥", + "text":"- [ ] 나침반,비설치형,자기식,003354972,10개\n- [ ] 나침반,자기식,비설치형,M2,1개,005606596", "styleAttributes":{}, - "x":506, - "y":32460, - "width":428, - "height":60 - }, - { - "id":"677ac91935ca8c78", - "type":"text", - "text":"- [ ] [[훼손처리 총기]] 재산정리, 이영민,이재성,이승민", - "styleAttributes":{}, - "x":856, - "y":30640, - "width":402, - "height":60 - }, - { - "id":"8cb4d677a6881d16", - "type":"text", - "text":"- [ ] 가스사용시설 안전관리자 교육,장성국,3.18-20 원격교육.! 3.23-24 소집교육", - "styleAttributes":{}, - "x":506, - "y":33260, - "width":428, - "height":60 - }, - { - "id":"04e64c526d4f71f5", - "type":"text", - "text":"- [x] 2.25(수), 오후에 선임행보관님, 군수담당관은 종합된 의견 가지고 주임원사실에서 토의한번하겠습니다.", - "styleAttributes":{}, - "x":506, - "y":33030, - "width":428, - "height":170, - "color":"1" - }, - { - "id":"1d41a479af4cb5dd", - "type":"text", - "text":"- [ ] 5군지사, 신품 k1방독면 정화통 소요보고,~3.31,김석", - "styleAttributes":{}, - "x":1962, - "y":41440, - "width":438, - "height":60, - "color":"1" - }, - { - "id":"3bf82d1e6e645e2b", - "type":"text", - "text":"- [x] 육사 합동임관식지원\n\t- [ ] 2.19(목) 석식,20금 조식\n\t- [ ] 숙식,2교 2층 3층\n\t- [ ] 250명\n\t- [ ] 별관?", - "styleAttributes":{}, - "x":954, - "y":31440, - "width":408, - "height":180, - "color":"1" - }, - { - "id":"05d7d3e5b4959c1d", - "type":"text", - "text":"- # 2. 19. ( 목 )", - "styleAttributes":{}, - "x":954, - "y":31320, - "width":408, - "height":60 - }, - { - "id":"d4de69032b54791b", - "type":"text", - "text":"- [x] 건설자재 소요파악,~20,황인찬", - "styleAttributes":{}, - "x":1362, - "y":31530, - "width":408, - "height":60 - }, - { - "id":"d638be3b1a97a1b2", - "type":"text", - "text":"- [ ] [[주유취급소 및 유류탱크저장소 화재사고 예방 점검]]결과보고,박관식,~2.20 #미실시", - "styleAttributes":{}, - "x":1362, - "y":31440, - "width":408, - "height":90 - }, - { - "id":"2f80c21e82db6021", - "type":"text", - "text":"- # 2. 20. ( 금 )", - "styleAttributes":{}, - "x":1362, - "y":31320, - "width":408, - "height":60 - }, - { - "id":"6c5c87da61bf6f6e", - "type":"text", - "text":"- [ ] 참모주간 무기고탄약고 점검 #미실시", - "styleAttributes":{}, - "x":1362, - "y":31380, - "width":408, - "height":60 - }, - { - "id":"906bdc4e9034d9f2", - "type":"text", - "text":"- [x] 당직근무 휴식", - "styleAttributes":{}, - "x":954, - "y":31380, - "width":408, - "height":60 - }, - { - "id":"348c26faf9f34580", - "type":"text", - "text":"- [x] CCTV정비비 집행계획작성, 이명세, 조태숙", - "styleAttributes":{}, - "x":1962, - "y":41500, - "width":438, - "height":60 - }, - { - "id":"e164c6cabb7ce365", - "type":"text", - "text":"- [x] 3교 150만원 사용자보수비 집행", - "styleAttributes":{}, - "x":1962, - "y":41620, - "width":438, - "height":60 - }, - { - "id":"928882be046927a9", - "type":"text", - "text":"- [ ] 지원과 사무실개선 집행계획,사용자보수비", - "styleAttributes":{}, - "x":1962, - "y":41560, - "width":438, - "height":60 - }, - { - "id":"1a6b97ea206031fc", - "type":"text", - "text":"- [x] 부대운영자재비 사용 현황 보고, 주임원사님", - "styleAttributes":{}, - "x":1362, - "y":32020, - "width":408, - "height":60 - }, - { - "id":"0d2d1842f603eb80", - "type":"text", - "text":"- [x] 가스업체 소급업체 담당자 처리,1400", - "styleAttributes":{}, - "x":1362, - "y":32080, - "width":408, - "height":60 - }, - { - "id":"0b0865ee05eef2e7", - "type":"text", - "text":"- [ ] 청렴교육 수료증 제출,고재은,나라배움 #미실시-", - "styleAttributes":{}, - "x":1342, - "y":32810, - "width":428, + "x":370, + "y":48510, + "width":1264, "height":70 }, { - "id":"27d89f1ade54ec56", + "id":"56ca3acbc39f184a", "type":"text", - "text":"- [x] 참모주간 무기고탄약고 점검 #미실시-", + "text":"- [x] 부대안전진단 결과 보고 확인,안전실,4.14", "styleAttributes":{}, - "x":1342, - "y":32755, + "x":798, + "y":48260, + "width":430, + "height":60 + }, + { + "id":"88bcc83300977084", + "type":"text", + "text":"- [x] 📝 방탄헬멧 위장보 보급계획\n\t\n\t• 일시: 4월 14일(화) 15:00, (소)408,(중)2076\n\t• 장소: 9번창고(급식유통센터쪽/면수건 수령창고)\n\t• 협조: 물품,물량에 적합한 차량과 상하차 인원 준비부탁드리겠습니다.\n\t• 참조: 자세한 내용은 박형주주무관님메모(4.6) 방탄헬멧 위장포 보급 계획 메모 참조바랍니다.(위장포 1박스당 200ea/박스크기 1파렛트 1단에 3박스 정도 사이즈)\n\t\n\t특이사항발생 시 내용\n\t전파하도록 하겠습니다.\n\t방탄헬멧 위장포 보급,박형주,~4.14,4번창고,1500, ", + "styleAttributes":{}, + "x":798, + "y":48580, + "width":418, + "height":290 + }, + { + "id":"81fafd57c223354f", + "type":"text", + "text":"[[군장검사]] 확인, 1400", + "styleAttributes":{}, + "x":2040, + "y":48725, "width":428, "height":60 }, { - "id":"7f1cb4a3ed4b6523", + "id":"aa5a1a98dc8cef3e", "type":"text", - "text":"- [ ] 원도우11 보안업데이트를 위한 조치,이명세", + "text":"[[월간 지휘관 무기고탄약고 점검]] ", "styleAttributes":{}, - "x":1342, - "y":32695, + "x":2042, + "y":48785, "width":428, "height":60 }, { - "id":"0f9cb0f655d4c755", + "id":"9622b765751deea0", "type":"text", - "text":"- [x] 군수예산 계획보고 수정보고,3건", + "text":"[[대검]] 실셈 1교,1400", "styleAttributes":{}, - "x":1362, - "y":32140, - "width":408, - "height":60 - }, - { - "id":"8730f74c351ffedf", - "type":"text", - "text":"- [ ] 청렴교육 수료증 제출,고재은,나라배움 #미실시", - "styleAttributes":{}, - "x":1362, - "y":31680, - "width":408, - "height":60 - }, - { - "id":"bc8f8307ad0d456e", - "type":"text", - "text":"- [x] 인권교육 수료증 제출,기변,나라배움,인트라넷,고재은", - "styleAttributes":{}, - "x":1362, - "y":31590, - "width":408, - "height":90 - }, - { - "id":"a88a34ed05914cfe", - "type":"text", - "text":"- [ ] 3월 한시적 인가 소요파악 보고,~19,장성국 #진행중", - "styleAttributes":{}, - "x":954, - "y":31800, - "width":816, - "height":60 - }, - { - "id":"cbfb0e874b33409d", - "type":"text", - "text":"- [x] 이재성상사, 손망실 보고서 작성제출 처리, ", - "styleAttributes":{}, - "x":954, - "y":31740, - "width":816, - "height":60 - }, - { - "id":"02858b9ac0d2e2fc", - "type":"text", - "text":"- [x] 4중대 손망실보고서 양식 전달,이재성", - "styleAttributes":{}, - "x":450, - "y":30580, - "width":406, - "height":60, - "color":"1" - }, - { - "id":"b99f4d2d852ed008", - "type":"text", - "text":"# 2. 25.( 수 )", - "styleAttributes":{}, - "x":506, - "y":32400, + "x":2040, + "y":48845, "width":428, "height":60 }, { - "id":"bc75fb65a406576b", + "id":"f83dcbf8aea7338a", "type":"text", - "text":"# 2. 18.( 수 )", + "text":"- [ ] 연대전술훈련평가 ", "styleAttributes":{}, - "x":526, - "y":31320, - "width":428, - "height":60 - }, - { - "id":"98e503a48ee34687", - "type":"text", - "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", - "styleAttributes":{}, - "x":-330, - "y":31920, + "x":375, + "y":48930, "width":2100, - "height":100, - "color":"3" - }, - { - "id":"afbcc78cc9fe2d85", - "type":"text", - "text":"- [x] 연휴전 지휘관 무기고탄약고 점검, 0930,탄약고, 배", - "styleAttributes":{}, - "x":448, - "y":29518, - "width":405, - "height":60, + "height":80, "color":"1" }, { - "id":"840845243459e125", + "id":"969d9e4d9605780e", "type":"text", - "text":"# 2. 11. ( 수 )", + "text":"- [ ] 연대전술훈련평가 ", "styleAttributes":{}, - "x":448, - "y":29458, - "width":408, - "height":60 - }, - { - "id":"b12eaec1bfdbeaed", - "type":"text", - "text":"- [x] [[사이버 보안 진단의 날 시행-1]]사이버 보안진단의날 행사,", - "styleAttributes":{}, - "x":954, - "y":31860, - "width":816, - "height":60 - }, - { - "id":"54c74fb448b4f5b3", - "type":"text", - "text":"추 석", - "styleAttributes":{"textAlign":"center"}, - "x":-330, - "y":31380, - "width":1284, - "height":85, + "x":375, + "y":48930, + "width":2100, + "height":80, "color":"1" }, { - "id":"079a653dd6f377b8", + "id":"892b8a89cb3fa271", "type":"text", - "text":"- [x] 부대운영자재비,250만원배정,추후 추가보고,한승민", + "text":"- [x] 위임보수 2분기 심의결과 확인,박관식,4.14", "styleAttributes":{}, - "x":449, - "y":30520, - "width":405, + "x":798, + "y":48870, + "width":418, "height":60 }, { - "id":"9ac4600fcb25c2b9", + "id":"14406fff6a8712e7", "type":"text", - "text":"- [ ] 화단 보수, 수송부 5톤차량 화단파손 보수요청, 남주영중사(01027605665)", + "text":"- [x] 26년 방역약품 소요파악,한승민,~4.6", "styleAttributes":{}, - "x":-368, - "y":29040, - "width":1211, - "height":60, - "color":"4" - }, - { - "id":"ba43b972d25d7f3c", - "type":"text", - "text":"- [x] 박광현 주무관, 3,4,9,10중대 세는곳 현장확인,오후 #취소", - "styleAttributes":{}, - "x":448, - "y":29578, - "width":405, - "height":60 - }, - { - "id":"6033a57fad35b209", - "type":"text", - "text":"# 2. 13.( 금 ) 당직근무", - "styleAttributes":{}, - "x":1261, - "y":29458, + "x":370, + "y":47140, "width":428, "height":60 }, { - "id":"457b84d873ae2a1b", + "id":"e749340efafac690", "type":"text", - "text":"- [ ] 식당 별관 가스계량기 교체, 영선대 협조/소군수과 보고", + "text":"- [ ] 교육과 이명세상사, 전관방송용앰프 120w 폐처리 기술검사 건의 및 불용결정 신청", "styleAttributes":{}, - "x":853, - "y":29040, - "width":792, - "height":60 - }, - { - "id":"0ca6fb260527f00b", - "type":"text", - "text":"- [x] 전투장비지휘검열 최종결과보고, 원정완", - "styleAttributes":{}, - "x":1261, - "y":29518, - "width":428, - "height":60 - }, - { - "id":"343781935127f18a", - "type":"text", - "text":"- [ ] 사용부대 공사협력관 참석 대상자 보고,박관식,~2.3,2.6, 충청시설단 대회으실(2층) 1030-1130 #취소", - "styleAttributes":{}, - "x":440, - "y":28980, - "width":1205, - "height":60 - }, - { - "id":"ecbc55134953125c", - "type":"text", - "text":"- [x] 대보수 소요종합,~2.6,이수빈", - "styleAttributes":{}, - "x":-375, - "y":29240, - "width":2020, - "height":60, - "color":"1" - }, - { - "id":"411bd7963426fdd6", - "type":"text", - "text":"- [ ] 3교육대, 방독면폐처리 불용승인 4,5,5,23,이국진 #진행중", - "styleAttributes":{}, - "x":-375, - "y":28800, - "width":2020, - "height":60, - "color":"1" - }, - { - "id":"dcdfaf47f5c72b59", - "type":"text", - "text":"- [ ] [[26년 1분기 장비탄약 관리실태 현장 확인,원정완]] 자체점검 결과보고,~28", - "styleAttributes":{ - "border":null - }, - "x":-372, - "y":28860, - "width":2017, - "height":60, - "color":"1" - }, - { - "id":"c52fa49f3162ba5d", - "type":"text", - "text":"- [ ] 불용장비 반납,53군지단,이승민", - "styleAttributes":{}, - "x":1240, - "y":28920, - "width":405, - "height":60 - }, - { - "id":"c42f54047918a85c", - "type":"text", - "text":"- [x] [[전투조키(부수기재포함) 수령]],박형주,우경빈,1500,4번창고", - "styleAttributes":{}, - "x":880, - "y":28920, - "width":360, - "height":60 - }, - { - "id":"0c06c091ed43fe28", - "type":"text", - "text":"- [x] [설 연휴 전 부대별 조치사항 : 2. 12.(목) 10:00 한 완료보고] \n1. (교육사 지시) 무기고,탄약고 출입구(열쇠) 봉인\n * 미사용시설(창고,사무실 등)은\n 해부대 지휘관 판단 하 실시\n2. 연휴 전 화재취약시설 및 장소 \n 일제점검(화재 예방활동)\n (부대별 자체점검)\n * 미사용 전원코드 제거 \n 미사용시설 점검(화재취약요인제거)\n3. 연휴간 급식대책 이상유무 확인\n\n(별) 위 사항 부대별 진행하고\n 2. 12. (목) 10시까지 \n 아래와 같이 단톡방에\n 결과를 보고해주십시요.\n\n(별) 00연대 1,2,3번 완료", - "styleAttributes":{}, - "x":856, - "y":29798, - "width":405, - "height":482 - }, - { - "id":"e7aa5c02ababba8f", - "type":"text", - "text":"- [ ] 1중대, 총기 반납1정(725605), 총몽멈치옷확장", - "styleAttributes":{}, - "x":1261, - "y":29860, + "x":370, + "y":47200, "width":428, "height":60, "color":"1" }, { - "id":"8114629509077a7c", + "id":"b41b39ff0ebe936c", "type":"text", - "text":"- [x] 1분기 바이러스 일제점검,이명세", + "text":" - [x] 정기점검표 양식은 작년에 정기점검 한 자료가 있습니다.\n\t확인하시고 점검 후 공문 보내주시면 종합하겠습니다.\n\t1. 3월 한시인가 결산결과도 보내주시면 종합하겠습니다.", "styleAttributes":{}, - "x":1258, - "y":29798, - "width":431, - "height":62, - "color":"1" + "x":370, + "y":47260, + "width":428, + "height":190 }, { - "id":"66ffcb1141a9bd8d", + "id":"804008abf4d931f6", "type":"text", - "text":"- [x] 교육사 설연휴 공직기강 [[감찰]] 점검, 2.12~13, 훈련소", + "text":"- [x] 대검 수량실셈,2교육대,배성수", "styleAttributes":{}, - "x":856, - "y":30520, - "width":844, - "height":60, - "color":"1" - }, - { - "id":"3487e80da4422c77", - "type":"text", - "text":"- [x] 공문,메모 확인", - "styleAttributes":{}, - "dynamicHeight":false, - "x":856, - "y":30460, - "width":402, + "x":370, + "y":47450, + "width":428, "height":60 }, { - "id":"3ae3ae69f21eb00a", + "id":"7c18b75171ed5b42", "type":"text", - "text":"- [x] 부대운영자재비 소요보고, 한승민", + "text":"- [ ] 국기게양식, [[223. 부대안전점검]]의날 행사 실시", "styleAttributes":{}, - "x":448, - "y":29798, - "width":408, - "height":60, - "color":"1" - }, - { - "id":"9d49829f34735dc0", - "type":"text", - "text":"- [ ] 예산, 사용자 보수비 계획보고, 안일남,김미화", - "styleAttributes":{}, - "x":449, - "y":30338, - "width":1251, - "height":60, - "color":"1" - }, - { - "id":"bbc6c3b06eeb402a", - "type":"text", - "text":"- [ ] 장비지휘검열 확인검열 후속조치, 1분기 총기탄약 점검 후속조치 , 원정완 #취소", - "styleAttributes":{}, - "x":450, - "y":30398, - "width":808, - "height":62 - }, - { - "id":"5806842c6ccff08b", - "type":"text", - "text":"- [x] 차량예방정비,3508-2호", - "styleAttributes":{}, - "x":1261, - "y":29578, + "x":370, + "y":47510, "width":428, "height":60, "color":"1" }, { - "id":"fdb58c815034a85a", + "id":"eec646e444ee55e0", "type":"text", - "text":"- [ ] 욱본 동계 환경오염사고 예방 현장점겸결과보고,~13,자체점검결과보고,신상이 #미실시", + "text":"- [ ] 26년 전반기 안전보건확보의무 이행 자율 점검 결과보고, 이동섭,~6.15", "styleAttributes":{}, - "x":1261, - "y":29638, - "width":428, + "x":375, + "y":49160, + "width":2100, + "height":60 + }, + { + "id":"1c19d6bcf0ba28e7", + "type":"text", + "text":"- [ ] 부대안잔진단 결과 11개과제 호속조치, 실시결과 종합~4.23", + "styleAttributes":{}, + "x":375, + "y":49220, + "width":1672, "height":60, "color":"1" }, { - "id":"387e9c9298b0fd68", - "type":"text", - "text":"- [x] 차량예방정비,3508-1호", - "styleAttributes":{}, - "x":853, - "y":29518, - "width":408, - "height":60, - "color":"1" - }, - { - "id":"41196eef2f0457bf", - "type":"text", - "text":"- # 2. 12. ( 목 )", - "styleAttributes":{}, - "x":853, - "y":29458, - "width":408, - "height":60 - }, - { - "id":"cd494d4b00da0719", - "type":"text", - "text":"- [x] 스틸그레이팅 수령,50개, 샘플확인1교육대, 박성현", - "styleAttributes":{}, - "x":856, - "y":29578, - "width":402, - "height":60 - }, - { - "id":"4185e302a7a88fbc", - "type":"text", - "text":"- [x] 📌공지\n- [x] •군수분야 소통과 공감 일정 통보\n- [x] 일시 : 26. 2. 11(수), 10:00\n - 장소 : 군수지원대대 1층 회의실\n - 내용 : 군수분야 실시 / 예정사항\n 거구자피복 체계개선 교육\n 애로 및 건의사항 접수\n \n\t * 각 부대 지원과장, 군수담당관\n 보충역 교육대 행정보급관 등\n\n많은 관심 가져주시고 일정에 맞춰\n참석해주시면 감사하겠습니다.", - "styleAttributes":{}, - "x":450, - "y":29978, - "width":405, - "height":360 - }, - { - "id":"0bb889ef38507c71", - "type":"text", - "text":"- [x] 부대사, 군수분야, 대규모보수 별관 방수공사 공사비 확인, 이동혁", - "styleAttributes":{}, - "x":450, - "y":29918, - "width":404, - "height":60 - }, - { - "id":"0d48edd732633afe", - "type":"text", - "text":"- [x] 수송부 차량 인계요청후 인수, 0700", - "styleAttributes":{}, - "x":453, - "y":29858, - "width":400, - "height":60 - }, - { - "id":"2c0a0081215237c1", + "id":"d7d5d24f38b94344", "type":"text", "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", "styleAttributes":{}, - "x":-355, - "y":29698, - "width":2044, + "x":375, + "y":49010, + "width":2120, "height":100, "color":"3" }, { - "id":"6b124ac69ca250b0", + "id":"44e3d51fc3ab57cb", "type":"text", - "text":"- [ ] [[가스 계량기 교체 협조, 중부 가스 통화]]", + "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", "styleAttributes":{}, - "x":73, - "y":29638, - "width":780, + "x":375, + "y":49010, + "width":2120, + "height":100, + "color":"3" + }, + { + "id":"419de4e8a096a1ef", + "type":"text", + "text":"- [x] 28-32 국방중기계획작성,~4.15,박관식,연대 교육대 창고(피복,운영, 치장창고)", + "styleAttributes":{}, + "x":375, + "y":49100, + "width":2100, "height":60, "color":"1" }, { - "id":"95a9d73b9bdc059b", + "id":"ac1165f5fcf05514", "type":"text", - "text":"- [x] 훈련병 방탄헬멧 교체소요 파악,박형주,~3.16", + "text":"# 4. 6. (월) ", "styleAttributes":{}, - "x":280, - "y":40240, + "x":370, + "y":46720, "width":428, "height":60 }, { - "id":"bd12352d1e0b7417", + "id":"f314065d7cdcf62e", "type":"text", - "text":"- [ ] 국방군수통합체계 교육인원파악,한서욱 #없음", + "text":"- [x] 통합이동정비, 2교,임대원,오전", "styleAttributes":{}, - "x":280, - "y":40300, + "x":370, + "y":46780, "width":428, "height":60 }, { - "id":"8d4882bf1f138f1c", + "id":"825bd7ceaab851bd", "type":"text", - "text":"- [x] 화장실 천장보수 소요 부대 예산 검토,보고,최기호,~3.13", + "text":"- [x] 유류,가스 결산", "styleAttributes":{}, - "x":280, - "y":41260, + "x":370, + "y":47750, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"1300eaf11478780b", + "type":"text", + "text":"- [x] 2교육대 폐처리 지시서 확인,이국진", + "styleAttributes":{}, + "x":370, + "y":47810, + "width":418, + "height":60 + }, + { + "id":"6a1a7d8b51705b36", + "type":"text", + "text":"# 4. 14 . (화) ", + "styleAttributes":{}, + "x":798, + "y":48200, "width":428, "height":60 }, + { + "id":"a374287b5443553f", + "type":"text", + "text":"# 4. 13. (월) ", + "styleAttributes":{}, + "x":370, + "y":48200, + "width":428, + "height":60 + }, + { + "id":"7b8de56d7386ef24", + "type":"text", + "text":"- [x] 총기보관함 훈련병 생환관 정수대비 보유현황,황인찬,~4.13", + "styleAttributes":{}, + "x":370, + "y":48260, + "width":428, + "height":60 + }, + { + "id":"d221234ac81836ca", + "type":"text", + "text":"- [x] 재정지도방문,훈련소자체,4.13,홍채림", + "styleAttributes":{}, + "x":370, + "y":48320, + "width":428, + "height":60 + }, + { + "id":"1d63e577573b8477", + "type":"text", + "text":"- [ ] 2교 물탱크 교체 2분기 위임보수 건의 필요 #취소", + "styleAttributes":{}, + "x":370, + "y":48640, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"9c83ec6ba5c19383", + "type":"text", + "text":"- [x] 교육과 이명세상사, 전관방송용앰프 120w 폐처리 기술검사 건의 및 불용결정 신청", + "styleAttributes":{}, + "x":370, + "y":48580, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"cedf021003b92d05", + "type":"text", + "text":"- [ ] 장병 생명 안전 직결 물품소요파악, 조태숙,~3.25(수)", + "styleAttributes":{}, + "x":1146, + "y":42180, + "width":408, + "height":60 + }, + { + "id":"2a69e2cc6de9cee3", + "type":"text", + "text":"# 3. 31 . (화) 당직근무", + "styleAttributes":{}, + "x":788, + "y":45000, + "width":428, + "height":60 + }, + { + "id":"0317c1529a191e19", + "type":"text", + "text":"- [x] 3월 안전점검의날 해마결과보고,김수형,~31", + "styleAttributes":{}, + "x":788, + "y":45060, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"b5cd88687b5ec77a", + "type":"text", + "text":"# 3. 30. (월) ", + "styleAttributes":{}, + "x":360, + "y":45000, + "width":428, + "height":60 + }, + { + "id":"58c581afdd6dd819", + "type":"text", + "text":"- [x] 3월 은닉 및 초과탄약 회수활동 결과보고,한서욱,~3.30", + "styleAttributes":{}, + "x":360, + "y":45300, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"4cd42bf705e8b499", + "type":"text", + "text":"- [x] 3교 굴삭기,덤프트럭 배차수령,~31,화단조경목 제거,한서욱", + "styleAttributes":{}, + "x":360, + "y":45240, + "width":428, + "height":60 + }, + { + "id":"b859999b7b75abb3", + "type":"text", + "text":"- [x] 차량5부제 종합 보고,유재형(매월보고)", + "styleAttributes":{}, + "x":360, + "y":45360, + "width":428, + "height":60 + }, + { + "id":"3c950de130712a45", + "type":"text", + "text":"- [x] 상담실 시스템에어컨 이전,박관식,위임보수신청", + "styleAttributes":{}, + "x":370, + "y":46840, + "width":428, + "height":60 + }, + { + "id":"1fc3ffe3287653f8", + "type":"text", + "text":"- [x] 26년 후생용품(이발도구) 납품,조태숙,0930-1000,전기이발기70,미용보28,스펀지130,정대룡,01058479773", + "styleAttributes":{}, + "x":370, + "y":46900, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"97e514c126366fd2", + "type":"text", + "text":"- [x] 26년 해빙기 취약시설 안전점검 결과보고,이동섭,~4.3", + "styleAttributes":{}, + "x":370, + "y":46960, + "width":856, + "height":60, + "color":"1" + }, + { + "id":"8be5b549ce142ae3", + "type":"text", + "text":"- [x] 식중독 발생 현장점검, 식사추진시 청결유지. 수통위생관리, 식사전손씻기", + "styleAttributes":{}, + "x":290, + "y":42240, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"42859274186e0bd0", + "type":"text", + "text":"- [x] 3교육대,수통클린요청일, 880개, 김창규", + "styleAttributes":{}, + "x":1146, + "y":42240, + "width":408, + "height":60 + }, + { + "id":"ce43ab8db535f82d", + "type":"text", + "text":"- [ ] 국방군수통합정보체계 장비정비분야 순회교육,한서욱,~3.24,0930-1530", + "styleAttributes":{}, + "x":718, + "y":42240, + "width":428, + "height":60 + }, + { + "id":"d69de9c19ebb0d3e", + "type":"text", + "text":"담당관 8중대장입니다. \n퇴근했는데 미안합니다. \n중대 옴 의증으로 격리되어 있는 훈련병이 있습니다. \n해당인원 부모님이 대전병원 진료를 희망하고 있어서 인솔이 필요한데\n위 언급했듯이 격리되어있는 인원인데 자차로 인솔하긴 제한되는 실정입니다. \n배차를 사용 일주일전 신청하는것이 맞지만 위 사항은\n\n부모님이 어제 민원소요로 어제 연락오신점\n격리환자로서 개인 자차를 활용하기 제한되는점\n\n위 두가지를 고려하여 혹시 차량 배차를 받을수 있는지 문의합니다. ", + "styleAttributes":{}, + "x":720, + "y":43160, + "width":440, + "height":420 + }, + { + "id":"216f7ac7690a477a", + "type":"text", + "text":"- [ ] 통신장비 폐처리,불용 신청 1대,이명세", + "styleAttributes":{}, + "x":720, + "y":43640, + "width":440, + "height":60 + }, + { + "id":"4c52c3c80ef72775", + "type":"text", + "text":"- [x] 소방점검 후속조치 , 소화기 즉시조치, 독신숙소 5동(소인사과 군숙소담당 자료요구),~3.22,유재형\n- [x] 전승훈, 956-7116,숙소관리관", + "styleAttributes":{}, + "x":290, + "y":43580, + "width":870, + "height":60, + "color":"1" + }, + { + "id":"881a4a3962966bee", + "type":"text", + "text":"- [x] 25년 소방안전점검 후속조치 결과보고,유재형", + "styleAttributes":{}, + "x":290, + "y":43160, + "width":430, + "height":60 + }, + { + "id":"b52998535bb64b70", + "type":"text", + "text":"- [ ] 부유대 조립체 수령,김용대, 1500,9번창고", + "styleAttributes":{}, + "x":290, + "y":43220, + "width":430, + "height":60 + }, + { + "id":"5da31665cde8885a", + "type":"text", + "text":"- [ ] 보호대 수령,1500, 김용대,9번창고 #미리받음", + "styleAttributes":{}, + "x":290, + "y":43280, + "width":430, + "height":60 + }, + { + "id":"4fc1cf0642ba2dd3", + "type":"text", + "text":"[재난 및 안전관리 예산 부대 재배정]\n* 재배정 공문하달(3.16.)\n* 폭염대비 물자(폭염응급키트)\n* 재난예방 보수비(곡괭이, 삽, 마대 등)\n\n(별) 4월 3일 한 집행완료 후 공문보고\n(별) 예산집행 지침 준용, 타용도 사용금지", + "styleAttributes":{}, + "x":290, + "y":43340, + "width":430, + "height":240 + }, { "id":"9171ba9f064917d3", "type":"text", @@ -7139,56 +8707,6 @@ "height":60, "color":"3" }, - { - "id":"66189319c3f2520f", - "type":"text", - "text":"- [x] 1교육대 4중대 소대장 1명 전입으로 인해 총기 1정 오늘 1540에 연대무기고에서 수령하겠습니다, 12중대 1정 들어오고, 대검 1개반납받고, 안나가고", - "styleAttributes":{}, - "x":280, - "y":41440, - "width":428, - "height":140 - }, - { - "id":"abb37c09459c1a3f", - "type":"text", - "text":"- [x] 충성!\n인사행정부사관 상사 고재은입니다.\n연대장 부사관 평정 공개되었습니다.\n확인하시고 동의/비동의 눌러주시기바랍니다!", - "styleAttributes":{}, - "x":280, - "y":41580, - "width":428, - "height":130 - }, - { - "id":"ae5a6a72e07f1c4b", - "type":"text", - "text":"- [x] 침대 연결조립체 수량 재파악 보고\n\t- [ ] 1교 494\n\t- [ ] 2교 488\n\t- [ ] 3교 416", - "styleAttributes":{}, - "x":280, - "y":41710, - "width":428, - "height":140 - }, - { - "id":"6e888f319f08315c", - "type":"text", - "text":"- [x] 분부중대 온풍기 구매 재산등재, 홍채림, 한승민", - "styleAttributes":{}, - "x":280, - "y":41850, - "width":428, - "height":60 - }, - { - "id":"cc6d5d991a583b60", - "type":"text", - "text":"- [ ] 2교육대 한시인가 수정건의,10명,3.30-31 #취소", - "styleAttributes":{}, - "x":280, - "y":41910, - "width":428, - "height":60 - }, { "id":"6d43c74ac31ec9b7", "type":"text", @@ -7199,66 +8717,6 @@ "width":428, "height":60 }, - { - "id":"70aec4e4bd55dde1", - "type":"text", - "text":"# 3. 27.(금) 이발예약 11시, 늦게퇴근", - "styleAttributes":{}, - "x":1962, - "y":42120, - "width":448, - "height":60 - }, - { - "id":"4b0d7c29660a75ee", - "type":"text", - "text":"# 3. 26.(목)", - "styleAttributes":{}, - "x":1554, - "y":42120, - "width":408, - "height":60 - }, - { - "id":"71df38c0aa5b24e0", - "type":"text", - "text":"- [x] 건설장비 지원 종합,한서욱,~3.27", - "styleAttributes":{}, - "x":1962, - "y":42180, - "width":428, - "height":60 - }, - { - "id":"cedf021003b92d05", - "type":"text", - "text":"- [ ] 장병 생명 안전 직결 물품소요파악, 조태숙,~3.25(수)", - "styleAttributes":{}, - "x":1146, - "y":42180, - "width":408, - "height":60 - }, - { - "id":"e5137228f1ca4ac4", - "type":"text", - "text":"- [x] 지원과 회식", - "styleAttributes":{}, - "x":1554, - "y":42180, - "width":408, - "height":60 - }, - { - "id":"f7f007db7a3194d8", - "type":"text", - "text":"# 3. 25.(수)", - "styleAttributes":{}, - "x":1146, - "y":42120, - "width":408, - "height":60 - }, { "id":"4121c448129f5ae3", "type":"text", @@ -7300,32 +8758,215 @@ "height":60 }, { - "id":"4a66d5656e8290fd", + "id":"9dfb70bd04cf8f2c", "type":"text", - "text":"- [x] **26년도 2분기 사용자 보수비 심의 자료 종합보고(연대장님, ~3.3(화), / 지휘관 보고 및 심의, 3.5(목) 13:30, 집무실, 다시 수정해서 공문으로 보고, 지시했던 내용을 누락하지말자** ", + "text":"- [x] 육본 물자처장 부대방문, 1330, 3교햄활관,연대창고,병영식당,이동섭", "styleAttributes":{}, - "x":120, - "y":37290, + "x":290, + "y":42500, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"2dcd12c778bfb693", + "type":"text", + "text":"- [x] 교육사,부대관리 지도방문,~24,감찰,군수,의무,최기호", + "styleAttributes":{}, + "x":290, + "y":42560, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"7cdf73adae8cf062", + "type":"text", + "text":"- [x] 25년 후반기 소방점검 후속조치\n\t 결과보고(이행결과)\n\t * 공사결과 포함하여\n\t 3.20(금) 한 보고", + "styleAttributes":{}, + "x":718, + "y":42500, + "width":428, + "height":60 + }, + { + "id":"27491d0033aaf143", + "type":"text", + "text":"- [ ] . 차량사고예방교육 (2차)\n\t - 3.12(목) 10시 광개토강당\n\t - 최대한 많은 인원참석(열외최소화)\n\t * **열외자는 지휘관주관 교육실시 후**\n\t **공문보고**", + "styleAttributes":{}, + "x":290, + "y":42620, + "width":428, + "height":180 + }, + { + "id":"99f202d4996877aa", + "type":"text", + "text":"- [x] 교육수료주 통합이동정비,3교육", + "styleAttributes":{}, + "x":1136, + "y":40300, + "width":408, + "height":60 + }, + { + "id":"86f5d4cec3a5103f", + "type":"text", + "text":"- [x] 유압크레인 지원소요 종합, 이민학,~3.18", + "styleAttributes":{}, + "x":1136, + "y":40420, + "width":408, + "height":60 + }, + { + "id":"1528230f5fce24eb", + "type":"text", + "text":"- [x] 26-2차 국방구 위함물 안전관리자 양상 교육 대상자 파악 보고,장성국,~3.18", + "styleAttributes":{}, + "x":1136, + "y":40480, + "width":408, + "height":60 + }, + { + "id":"df9822fbac47c9c2", + "type":"text", + "text":"- [ ] **위험성평가 작성**", + "styleAttributes":{}, + "x":280, + "y":41020, + "width":1264, + "height":60, + "color":"4" + }, + { + "id":"66189319c3f2520f", + "type":"text", + "text":"- [x] 1교육대 4중대 소대장 1명 전입으로 인해 총기 1정 오늘 1540에 연대무기고에서 수령하겠습니다, 12중대 1정 들어오고, 대검 1개반납받고, 안나가고", + "styleAttributes":{}, + "x":280, + "y":41440, + "width":428, + "height":140 + }, + { + "id":"8d4882bf1f138f1c", + "type":"text", + "text":"- [x] 화장실 천장보수 소요 부대 예산 검토,보고,최기호,~3.13", + "styleAttributes":{}, + "x":280, + "y":41260, + "width":428, + "height":60 + }, + { + "id":"abb37c09459c1a3f", + "type":"text", + "text":"- [x] 충성!\n인사행정부사관 상사 고재은입니다.\n연대장 부사관 평정 공개되었습니다.\n확인하시고 동의/비동의 눌러주시기바랍니다!", + "styleAttributes":{}, + "x":280, + "y":41580, "width":428, "height":130 }, { - "id":"f9d90e3fc6c75224", + "id":"6e888f319f08315c", "type":"text", - "text":"- [x] **국방부 총기,탄약 점검(훈련소), 1330, 한서욱,1300~1400,전부대,물자관리과 중령 최기영,4급정유진,7급 김지호, CCTV감시적정,30일보관,열쇠이원화관리**", - "styleAttributes":{}, - "x":120, - "y":37840, - "width":428, - "height":120 - }, - { - "id":"091905d9503f6d90", - "type":"text", - "text":"# 3. 16. (월) ", + "text":"- [x] 분부중대 온풍기 구매 재산등재, 홍채림, 한승민", "styleAttributes":{}, "x":280, + "y":41850, + "width":428, + "height":60 + }, + { + "id":"ae5a6a72e07f1c4b", + "type":"text", + "text":"- [x] 침대 연결조립체 수량 재파악 보고\n\t- [ ] 1교 494\n\t- [ ] 2교 488\n\t- [ ] 3교 416", + "styleAttributes":{}, + "x":280, + "y":41710, + "width":428, + "height":140 + }, + { + "id":"cc6d5d991a583b60", + "type":"text", + "text":"- [ ] 2교육대 한시인가 수정건의,10명,3.30-31 #취소", + "styleAttributes":{}, + "x":280, + "y":41910, + "width":428, + "height":60 + }, + { + "id":"8b855b3f52b3837c", + "type":"text", + "text":"- [x] 병영생활 관 신축 1단계 선행연구 착수토의,~13, 연대장님주관", + "styleAttributes":{}, + "x":1136, + "y":40180, + "width":408, + "height":60 + }, + { + "id":"890967733f58876e", + "type":"text", + "text":"# 3. 18. ( 수 )", + "styleAttributes":{}, + "x":1136, "y":40120, + "width":408, + "height":60 + }, + { + "id":"649ed3476e696fdd", + "type":"text", + "text":"고생많으십니다 \n혹시나해서 생수 예산반납 전 한번 더 전달드립니다.\n3월부터는 배출용생수는 도시락 업체에서 제공하기에 따로 신청하시면 안됩니다.\n각 교육대에도 꼭 전달 부탁 드립니다.\n(3월 1주차에 생수업체 통해 신청하신 부분은 제가 인지하고 있어서 1주차에 신청해서 필요한 예상금액 외에는 전액 반납예정입니다)", + "styleAttributes":{}, + "x":976, + "y":39640, + "width":464, + "height":280 + }, + { + "id":"586de2cb8f4139bd", + "type":"text", + "text":"- [x] **병영생활 관 신축 1단계 선행연구 착수토의,~13, 자체,지원과장,교육대장,교지관**", + "styleAttributes":{}, + "x":280, + "y":40180, + "width":856, + "height":60 + }, + { + "id":"c8d734ac351ebacc", + "type":"text", + "text":"# 3. 17.( 화 ) 카풀", + "styleAttributes":{}, + "x":708, + "y":40120, + "width":428, + "height":60 + }, + { + "id":"31ec9a81627f4b1a", + "type":"text", + "text":"- [x] [[1중대]] 보급,4번창고,1500,박형주,3113개", + "styleAttributes":{}, + "x":708, + "y":40240, + "width":428, + "height":60 + }, + { + "id":"95a9d73b9bdc059b", + "type":"text", + "text":"- [x] 훈련병 방탄헬멧 교체소요 파악,박형주,~3.16", + "styleAttributes":{}, + "x":280, + "y":40240, "width":428, "height":60 }, @@ -7340,67 +8981,285 @@ "height":180 }, { - "id":"42859274186e0bd0", + "id":"bb5d28c5b52d90c3", "type":"text", - "text":"- [x] 3교육대,수통클린요청일, 880개, 김창규", + "text":"- [x] 자동온도조절튀김손 구매규격 의견종합,황인찬,~16", "styleAttributes":{}, - "x":1146, - "y":42240, - "width":408, - "height":60 - }, - { - "id":"ce43ab8db535f82d", - "type":"text", - "text":"- [ ] 국방군수통합정보체계 장비정비분야 순회교육,한서욱,~3.24,0930-1530", - "styleAttributes":{}, - "x":718, - "y":42240, + "x":708, + "y":40300, "width":428, "height":60 }, { - "id":"295277c22f3eb53e", + "id":"bd12352d1e0b7417", "type":"text", - "text":"- [ ] TV(37X038075),거치대(37x011486) 불출 tv10,중앙스탠드형2,벽걸이브라겟형8 ", + "text":"- [ ] 국방군수통합체계 교육인원파악,한서욱 #없음", "styleAttributes":{}, - "x":1554, - "y":42240, + "x":280, + "y":40300, + "width":428, + "height":60 + }, + { + "id":"fb32c0e19afa78a8", + "type":"text", + "text":"- [x] 가로등, 경계등 ON,OFF 시간 \n점검하고 각부대 조치바랍니다.\n\t* 3. 9. (월) 기준\n\t 소등 : 06:45, 점등 : 18:39\n\t(별) 가로등, 경계등에만 적용됨\n\t* 병영생활관에 부착된 등과 연병장 등은\n\t 취침시간에 소등\n\t(별) 군수과에서 에너지관리 관련\n\t 불시점검하여 우수부대는\n\t 전반기 에너지절약유공자(계획표창)\n\t 표창대상자 1명 선정하겠습니다.\n\t * 점검사항 : 멀티탭 준수,\n\t 불필요 전원 OFF\n\t 가로등 점등 및 소등상태 등", + "styleAttributes":{}, + "x":548, + "y":38260, + "width":428, + "height":440 + }, + { + "id":"ea4811d3ffbe6d41", + "type":"text", + "text":"- [x] 1월 재활용 매각대금\n✔️미제출 : 28,29,30연대\n\n\t1월 음식물 관리대장\n\t✔️미제출 : 28연대, 입심대\n\t\n\t미제출 부대는 익일까지 기존 메모로\n\t제출 부탁드립니다.", + "styleAttributes":{}, + "x":548, + "y":38700, + "width":428, + "height":240 + }, + { + "id":"bd92ac90717a18d6", + "type":"text", + "text":"- [ ] [군수계획업무전파]\n\t1. 차량사고예방교육 (2차)\n\t - 3.12(목) 10시 광개토강당\n\t - 최대한 많은 인원참석(열외최소화)\n\t * 열외자는 지휘관주관 교육실시 후\n\t 공문보고\n\t1. 소방안전관리자 교육대상자 종합\n\t * 메모보고 참조(오늘중 보고)\n\t * 교육미이수자, 보직교체예정부대\n\t 교육필요\n\t1. 25년 후반기 소방점검 후속조치\n\t 결과보고(이행결과)\n\t * 공사결과 포함하여\n\t 3.20(금) 한 보고 \n\t1. 봄맞이 환경정화활동 적극실시\n\t * 4.2.(목) 지휘보고 포함 결과보고\n\t1. 에너지관리실태 현장확인\n\t * 가로등.경계등 ON OFF\n\t 올바른 멀티탭 사용\n\t 불필요전원코드 제거\n\t (별) 점검결과 우수부대는\n\t 전반기 에너지절약 계획표창반영(1명)", + "styleAttributes":{}, + "x":976, + "y":38660, + "width":408, + "height":700 + }, + { + "id":"7cf1125e20ce2661", + "type":"text", + "text":"- [x] [차량사고예방교육 대상자 최신화]\n\t* 3. 5. (목) 15:46 발송메모\n\t\n\t부대별 1차 교육 참석자\n\t2차교육 참석예정인원, 미참석자\n\t최신화하여 의견으로\n\t오늘 중 올려주세요.\n\t* 보고완료 : 25연대, 군지,교지대대\n\t병역심사관리대", + "styleAttributes":{}, + "x":548, + "y":38940, + "width":428, + "height":335 + }, + { + "id":"6991edff103b0c04", + "type":"text", + "text":"- [x] 부유대는 총 1700개입니다\n- [x] 1교 700, 2교 600, 3교 400\n\n- [x] 연결키트 종합\n- [x] 1교:30미리 135세트\n- [x] 2교:30미리 443세트\n- [x] 3교:30미리 160세트\n- [x] 로 보고 하겠습니다", + "styleAttributes":{}, + "x":548, + "y":39275, + "width":428, + "height":245 + }, + { + "id":"333741a9ae2f78d4", + "type":"text", + "text":"- [x] 교육과구매품 재산증가,이명세, 회의용테이블(37w002126) 5개, TV(37w024149)3개", + "styleAttributes":{}, + "x":976, + "y":38260, "width":408, "height":60 }, { - "id":"17f5aecf3461d93e", + "id":"0c81c9c2179f2f82", "type":"text", - "text":"- [ ] 군수 3월 보급결산,~27\n\t- [ ] [[일일결산]]\n\t- [ ] 국방군수정보체계 재산 수입,불출,반납 처리 정리", + "text":"- [x] Fs연습기간 사고예방교육(군사경찰대장 주관)\n-대상 : 전장병 + 군무원\n- 1,2교육대 : 11일(수) 09시 / 1강의장\n- 3교육대 : 25(수) 14시 / 9강의장\n\n* 본부중대 및 참모부, 의무과는 가용날짜에 참석\n* 교육대는 가용한 강의장알려주십시오.", "styleAttributes":{}, - "x":290, - "y":42300, - "width":2100, - "height":140, - "color":"1" + "x":976, + "y":37020, + "width":408, + "height":210 }, { - "id":"f7c53b5bbce8b2dc", + "id":"5d2e958af2bf2c64", "type":"text", - "text":"- [ ] [[부대안전진단 결과]] 점검,,3.23~27,이동섭,안잔관리체게,시설물,위험물, 총기탄약,환경,23일연대본븐(행정)", + "text":"- [x] **예산 집행 독촉,홍채림**\n\t- [ ] 지역상생\n\t- [ ] 취사기구유지비 \n\t- [ ] 26-2차 결과공문", "styleAttributes":{}, - "x":290, - "y":42440, - "width":2100, - "height":60, - "color":"1" - }, - { - "id":"8be5b549ce142ae3", - "type":"text", - "text":"- [x] 식중독 발생 현장점검, 식사추진시 청결유지. 수통위생관리, 식사전손씻기", - "styleAttributes":{}, - "x":290, - "y":42240, + "x":548, + "y":37840, "width":428, + "height":120 + }, + { + "id":"f822a7e4ebf42f05", + "type":"text", + "text":"- [x] **[[예산]], 사용자 보수비 계획보고, 안일남,김미화**", + "styleAttributes":{}, + "x":120, + "y":37600, + "width":856, + "height":60 + }, + { + "id":"091905d9503f6d90", + "type":"text", + "text":"# 3. 16. (월) ", + "styleAttributes":{}, + "x":280, + "y":40120, + "width":428, + "height":60 + }, + { + "id":"0ac526bfd6aefef7", + "type":"text", + "text":"- [x] 대량유류수령 4000,연무5동", + "styleAttributes":{}, + "x":548, + "y":36780, + "width":428, + "height":60 + }, + { + "id":"9296f4126cfcdb6d", + "type":"text", + "text":"- [x] 30연대 병영생활관 신축 선행연구 착수토의,1330, 연대장 김낙중실", + "styleAttributes":{}, + "x":548, + "y":36840, + "width":428, + "height":60 + }, + { + "id":"9f8204e615d3f374", + "type":"text", + "text":"- [x] 군수사령관 현장방문,1030-1330,9중대 현장방문", + "styleAttributes":{}, + "x":976, + "y":36840, + "width":408, + "height":60 + }, + { + "id":"5a6a61641afc0deb", + "type":"text", + "text":"- [ ] 종군교 직무보수(공병장비기본)~11,한서욱 #취소", + "styleAttributes":{}, + "x":976, + "y":36900, + "width":408, + "height":60 + }, + { + "id":"0b9d8c5bb6b1f67d", + "type":"text", + "text":"- [x] 연결 키트 소요 보고", + "styleAttributes":{}, + "x":976, + "y":37230, + "width":408, + "height":60 + }, + { + "id":"1216f25d5fd1b6bd", + "type":"text", + "text":"- [x] 간부 인성검사", + "styleAttributes":{}, + "x":120, + "y":37480, + "width":1264, + "height":60 + }, + { + "id":"489f562861364417", + "type":"text", + "text":"- [ ] 위험성평가 작성", + "styleAttributes":{}, + "x":120, + "y":37420, + "width":1264, "height":60, - "color":"1" + "color":"3" + }, + { + "id":"9dd4a3872ecf9a44", + "type":"text", + "text":"- [x] 2월 음식물쓰레기 배출일지 제출 및 발생량 결과분석,~11,신상이", + "styleAttributes":{}, + "x":976, + "y":36960, + "width":408, + "height":60 + }, + { + "id":"d90ea66f53f05d2d", + "type":"text", + "text":"- [x] 폭영대비물자소요보고,~3.11,유재형", + "styleAttributes":{}, + "x":976, + "y":36780, + "width":408, + "height":60 + }, + { + "id":"1ddf8ca582f739c3", + "type":"text", + "text":"- [x] **냉난방기 계량기교체(별관), 오후, 중부가스,육영건설, 유영대\n630113-1632325\n010.2871.2632** ", + "styleAttributes":{}, + "x":120, + "y":37160, + "width":856, + "height":130 + }, + { + "id":"09a373884add8580", + "type":"text", + "text":"# 3. 11. ( 수 )본부중대 당직근무", + "styleAttributes":{}, + "x":976, + "y":36720, + "width":408, + "height":60 + }, + { + "id":"e87e023099e47ad7", + "type":"text", + "text":"- [x] **해빙기 대비 도로교통공단 초빙강사 교육 소요보고,~3.9,유재형**", + "styleAttributes":{}, + "x":120, + "y":36900, + "width":856, + "height":60 + }, + { + "id":"bd0350a78cd2ee14", + "type":"text", + "text":"# 3. 10.( 화 )", + "styleAttributes":{}, + "x":548, + "y":36720, + "width":428, + "height":60 + }, + { + "id":"f9d90e3fc6c75224", + "type":"text", + "text":"- [x] **국방부 총기,탄약 점검(훈련소), 1330, 한서욱,1300~1400,전부대,물자관리과 중령 최기영,4급정유진,7급 김지호, CCTV감시적정,30일보관,열쇠이원화관리**", + "styleAttributes":{}, + "x":120, + "y":37840, + "width":428, + "height":120 + }, + { + "id":"c18ff0ad3e0d8896", + "type":"text", + "text":"# 3. 9. (월)", + "styleAttributes":{}, + "x":120, + "y":36720, + "width":428, + "height":60 + }, + { + "id":"4a66d5656e8290fd", + "type":"text", + "text":"- [x] **26년도 2분기 사용자 보수비 심의 자료 종합보고(연대장님, ~3.3(화), / 지휘관 보고 및 심의, 3.5(목) 13:30, 집무실, 다시 수정해서 공문으로 보고, 지시했던 내용을 누락하지말자** ", + "styleAttributes":{}, + "x":120, + "y":37290, + "width":428, + "height":130 }, { "id":"4f47f79c9a3820f6", @@ -7433,1891 +9292,42 @@ "height":60 }, { - "id":"6c901dc787b6b818", + "id":"2bfadb0f94367f7c", "type":"text", - "text":"- [x] 사무실이동", + "text":"- [ ] 체력검정2차", "styleAttributes":{}, - "x":78, - "y":33940, - "width":428, - "height":60 - }, - { - "id":"2c49e0f40c45493a", - "type":"text", - "text":"# 3. 3.( 화 )", - "styleAttributes":{}, - "x":58, - "y":35000, - "width":428, - "height":60 - }, - { - "id":"41534eb35d745a98", - "type":"text", - "text":"- [x] 정거리배차 소요종합, 유재형", - "styleAttributes":{}, - "x":1554, - "y":42500, - "width":400, - "height":60 - }, - { - "id":"4f2105ee4f1c700d", - "type":"text", - "text":"- [ ] 투광등 공사,조범희 주무관(전기),1교5,풋살2,가로등6", - "styleAttributes":{}, - "x":1916, - "y":42500, - "width":474, - "height":60 - }, - { - "id":"7cdf73adae8cf062", - "type":"text", - "text":"- [x] 25년 후반기 소방점검 후속조치\n\t 결과보고(이행결과)\n\t * 공사결과 포함하여\n\t 3.20(금) 한 보고", - "styleAttributes":{}, - "x":718, - "y":42500, - "width":428, - "height":60 - }, - { - "id":"9dfb70bd04cf8f2c", - "type":"text", - "text":"- [x] 육본 물자처장 부대방문, 1330, 3교햄활관,연대창고,병영식당,이동섭", - "styleAttributes":{}, - "x":290, - "y":42500, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"11193a405012894b", - "type":"text", - "text":"- [ ] 28-32 학교기관 조리기구 중기계획 현금배정 소요작성,조태숙,~3.25", - "styleAttributes":{}, - "x":1146, - "y":42500, + "x":1256, + "y":50820, "width":408, "height":60 }, { - "id":"c18ff0ad3e0d8896", + "id":"f7d19a81e410822b", "type":"text", - "text":"# 3. 9. (월)", - "styleAttributes":{}, - "x":120, - "y":36720, - "width":428, - "height":60 - }, - { - "id":"57d2334e0b657d90", - "type":"text", - "text":"- [ ] 2교육대 방독면 폐처리 정비의뢰,강재구\n\t- [ ] 전산상 반납후 전화요청\n\t- [ ] 2교육대 방독면 총 131개 입니다..!\n\t- [ ] 5중대 - 총 22개\n중좌 17개\n대좌 2개\n중우 3개\n\n6중대 - 총 32개\n소좌 3개\n중좌 21개\n대좌 8개\n\n7중대 - 총 65개\n중좌 61개\n대좌 4개\n\n8중대 - 총 12개\n중좌 8개\n중우 4개", - "styleAttributes":{}, - "x":78, - "y":34380, - "width":502, - "height":560, - "color":"1" - }, - { - "id":"9299038c4dff079e", - "type":"text", - "text":"- [ ] 1교육대 K5정화통 반납, 누가?", - "styleAttributes":{}, - "x":64, - "y":33380, - "width":442, - "height":60 - }, - { - "id":"27e54c4ce79d9a0a", - "type":"text", - "text":"- [ ] 위임보수 건의(식당 음료취수기쪽 바닥 타일 박리),연대장님 지시", - "styleAttributes":{}, - "x":78, - "y":32970, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"f7007e71f217c95f", - "type":"text", - "text":"- [x] 총기탄약 국방부 점검,육훈소대상, 자체점검체크리스트 점검실시,후 연대장님 보고", - "styleAttributes":{}, - "x":-260, - "y":36900, - "width":380, - "height":60 - }, - { - "id":"89b46c98d5a009e4", - "type":"text", - "text":"- [x] 4월 간부영내급식 한시인가 소요 종합,장성국", - "styleAttributes":{}, - "x":1554, - "y":42560, - "width":400, - "height":60 - }, - { - "id":"b58b9eedaad70b9a", - "type":"text", - "text":"- [x] 위장포사이즈 파악,박형주", - "styleAttributes":{}, - "x":1554, - "y":42620, - "width":400, - "height":60 - }, - { - "id":"8d8903dfffa152e6", - "type":"text", - "text":"- [ ] 보급품 분배\n\t- [ ] 티비 TV 10대\n\t\t- [ ] 1교 4(스탠드2벽걸이2)\n\t\t- [ ] 2교 2(벽걸이2)\n\t\t- [ ] 3교 4(벽걸이4)\n\t- [x] 방탄헬멧 260\n\t\t- [ ] 1교 30\n\t\t- [ ] 2교 100\n\t\t- [ ] 3교 120\n\t- [x] 방탄 부수기재(내피)1800\n\t\t- [ ] 1교 700\n\t\t- [ ] 2교 600\n\t\t- [ ] 3교 500ㄴ", - "styleAttributes":{}, - "x":1554, - "y":42680, - "width":400, - "height":480 - }, - { - "id":"2dcd12c778bfb693", - "type":"text", - "text":"- [x] 교육사,부대관리 지도방문,~24,감찰,군수,의무,최기호", - "styleAttributes":{}, - "x":290, - "y":42560, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"27491d0033aaf143", - "type":"text", - "text":"- [ ] . 차량사고예방교육 (2차)\n\t - 3.12(목) 10시 광개토강당\n\t - 최대한 많은 인원참석(열외최소화)\n\t * **열외자는 지휘관주관 교육실시 후**\n\t **공문보고**", - "styleAttributes":{}, - "x":290, - "y":42620, - "width":428, - "height":180 - }, - { - "id":"d52123c067d49323", - "type":"text", - "text":"- [x] 카니발 : 01육1292\n (과장님, 중령 송수민, 박민선, 소령 조호현, 중위 조보현)\n* K3 : 209고5623\n (중령 사왕궁, 이운재, 5급 이승환, 최종민)\n\n0920분 도착입니다. 26연대부터 30연대, 23연대 순으로 갑니다", - "styleAttributes":{}, - "x":-350, - "y":34060, - "width":428, - "height":260 - }, - { - "id":"eda3b4fbadb6e51a", - "type":"text", - "text":"- [ ] 해빙기 취약시설 안전점검 결과보고, 이동섭,~3.20", - "styleAttributes":{}, - "x":-350, - "y":34380, - "width":428, - "height":80 - }, - { - "id":"11a9f622200bd214", - "type":"text", - "text":"- [ ] 대전 하나 시티즌 프로 축구 개막전 #취소", - "styleAttributes":{}, - "x":-370, - "y":35060, - "width":428, - "height":60 - }, - { - "id":"d881df080348871d", - "type":"text", - "text":"- [ ] 1중대, 총기 반납1정(725605), 총몽멈치옷확장", - "styleAttributes":{}, - "x":-350, - "y":33320, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"a1f38b3f2fc8fee5", - "type":"text", - "text":"- [ ] 욱본 동계 환경오염사고 예방 현장점겸결과보고,~13,자체점검결과보고,신상이 #미실시", - "styleAttributes":{}, - "x":-350, - "y":33440, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"b006301111973121", - "type":"text", - "text":"- [ ] 예산, 사용자 보수비 계획보고, 안일남,김미화", - "styleAttributes":{}, - "x":-350, - "y":33380, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"9662862419f8a87d", - "type":"text", - "text":"- [ ] [[훼손처리 총기]] 재산정리, 이영민,이재성,이승민", - "styleAttributes":{}, - "x":-350, - "y":33500, - "width":428, - "height":60 - }, - { - "id":"f63a3b6a56b58df9", - "type":"text", - "text":"- [x] [[주유취급소 및 유류탱크저장소 화재사고 예방 점검]]결과보고,박관식,~2.20 #미실시-완료", - "styleAttributes":{}, - "x":-350, - "y":33660, - "width":428, - "height":80 - }, - { - "id":"e4bd3a375e46319e", - "type":"text", - "text":"- [ ] 해빙기 취약시설 일제점검, 이동섭, ~3.27(금),시살물(일반,경계,복지시설/훈련장시설/기타(소방,전기,가스,유류시설)),체크리스트,~4.3(금)한", - "styleAttributes":{}, - "x":290, - "y":42800, - "width":2120, - "height":60 - }, - { - "id":"1a3bf129eb681611", - "type":"text", - "text":"- [ ] **쌍안경,대검 재산 수정**, 대검 박성현이 작성한 한긃파일을 기준으로 총기기준 대검조정소요 작성하여 전파(메모)", - "styleAttributes":{}, - "x":290, - "y":42860, - "width":2120, - "height":60, - "color":"1" - }, - { - "id":"a8b87cf0c929a34e", - "type":"text", - "text":"- [ ] 통신장비 예방정비", - "styleAttributes":{}, - "x":78, - "y":34060, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"a51372ee24af7aba", - "type":"text", - "text":"- [x] 도시락 품평회,1030,식당, 장성국", - "styleAttributes":{}, - "x":78, - "y":32760, - "width":428, - "height":60 - }, - { - "id":"8fc5a0889f11674e", - "type":"text", - "text":"- [ ] 26년 민간위닥 수정계약 공문, 보고, ~25 #미보고", - "styleAttributes":{}, - "x":78, - "y":32700, - "width":428, - "height":60 - }, - { - "id":"c20fad49ee098739", - "type":"text", - "text":"- [x] 차량예방정비,3508-3호", - "styleAttributes":{}, - "x":78, - "y":32460, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"a88beacf318c0b93", - "type":"text", - "text":"# 3. 2. (월) 근무휴식, ", - "styleAttributes":{}, - "x":-370, - "y":35000, - "width":428, - "height":60 - }, - { - "id":"b2488e23f33ecb6b", - "type":"text", - "text":"- [x] 창고저장관리 현장확인,군수사 피복과장등 4명, 박형주 수행, 1100", - "styleAttributes":{}, - "x":-350, - "y":33000, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"68e4cea991228aa3", - "type":"text", - "text":"- [ ] 군수 2월 보급결산,~27\n\t- [ ] [[일일결산]]\n\t- [ ] 국방군수정보체계 재산 수입,불출,반납 처리 정리", - "styleAttributes":{}, - "x":-350, - "y":33060, - "width":428, - "height":140, - "color":"5" - }, - { - "id":"5e927944ebba5925", - "type":"text", - "text":"- [ ] 1교육대 교육수료주 통합이동정비 추속조치,임대원\n\t- [ ] 방독면 폐처리:1중대16,2중대10,3중대9,4중대27\n\t- [ ] 총기 폐처리:2중대 1정(손망실), 4중대2정", - "styleAttributes":{}, - "x":-350, - "y":34460, - "width":428, - "height":220 - }, - { - "id":"72468afad5ffaa63", - "type":"text", - "text":"- [x] 3월 한시인가 의견 월요일까지 부탁드립니다.\n(26.27.29.30.교지대)", - "styleAttributes":{}, - "x":-350, - "y":32820, - "width":428, - "height":80, - "color":"1" - }, - { - "id":"6336f4522d15858c", - "type":"text", - "text":"- [x] 유류탱크저장소 화재사고 예방 점검결과도 부탁드립니다.\n(27연대+교육지원대대)", - "styleAttributes":{}, - "x":-350, - "y":32900, - "width":428, - "height":100 - }, - { - "id":"e8a9b09c59e98068", - "type":"text", - "text":"# 2. 23.( 월 )", - "styleAttributes":{}, - "x":-350, - "y":32400, - "width":428, - "height":60 - }, - { - "id":"e6db88bcbd5a3e7a", - "type":"text", - "text":"- [x] 30-1 담요,침낭 세탁", - "styleAttributes":{}, - "x":-350, - "y":32520, - "width":428, - "height":60 - }, - { - "id":"11736c0142fc864e", - "type":"text", - "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", - "styleAttributes":{}, - "x":290, - "y":42920, - "width":2120, - "height":100, - "color":"3" - }, - { - "id":"48c31d3545a59bdc", - "type":"text", - "text":"- [ ] 봄맞이 환경정리\n\t\t계획보고 3.5주간회의시,연대장\n\t\t환경정리 3.9~4.2\n\t\t결과보고4.2 주간회의시 연대장\n\t\t", - "styleAttributes":{}, - "x":290, - "y":43020, - "width":2120, - "height":140, - "color":"1" - }, - { - "id":"6ae1105f5d5a4c02", - "type":"text", - "text":"- [x] 병영생활 신축 추가 의견 반영\n- [ ] ", - "styleAttributes":{}, - "x":1160, - "y":43160, - "width":394, - "height":60 - }, - { - "id":"881a4a3962966bee", - "type":"text", - "text":"- [x] 25년 소방안전점검 후속조치 결과보고,유재형", - "styleAttributes":{}, - "x":290, - "y":43160, - "width":430, - "height":60 - }, - { - "id":"a963a7248f52ce53", - "type":"text", - "text":"- [x] 버스팀장 09시 인솔\n- [x] 10시 계운과 보안교육 이후 퇴영", - "styleAttributes":{}, - "x":1554, - "y":43160, - "width":400, - "height":60 - }, - { - "id":"d69de9c19ebb0d3e", - "type":"text", - "text":"담당관 8중대장입니다. \n퇴근했는데 미안합니다. \n중대 옴 의증으로 격리되어 있는 훈련병이 있습니다. \n해당인원 부모님이 대전병원 진료를 희망하고 있어서 인솔이 필요한데\n위 언급했듯이 격리되어있는 인원인데 자차로 인솔하긴 제한되는 실정입니다. \n배차를 사용 일주일전 신청하는것이 맞지만 위 사항은\n\n부모님이 어제 민원소요로 어제 연락오신점\n격리환자로서 개인 자차를 활용하기 제한되는점\n\n위 두가지를 고려하여 혹시 차량 배차를 받을수 있는지 문의합니다. ", - "styleAttributes":{}, - "x":720, - "y":43160, - "width":440, - "height":420 - }, - { - "id":"5da31665cde8885a", - "type":"text", - "text":"- [ ] 보호대 수령,1500, 김용대,9번창고 #미리받음", - "styleAttributes":{}, - "x":290, - "y":43280, - "width":430, - "height":60 - }, - { - "id":"b52998535bb64b70", - "type":"text", - "text":"- [ ] 부유대 조립체 수령,김용대, 1500,9번창고", - "styleAttributes":{}, - "x":290, - "y":43220, - "width":430, - "height":60 - }, - { - "id":"8e66b7ebb9b36919", - "type":"text", - "text":"- [ ] 해빙기 차량사고예방 교육,유재형,박성현,충무강당,1000 #미참석", - "styleAttributes":{}, - "x":78, - "y":32640, - "width":428, - "height":60 - }, - { - "id":"69dc038518cf1af0", - "type":"text", - "text":"- [x] 이발,1430", - "styleAttributes":{}, - "x":78, - "y":32520, - "width":428, - "height":60 - }, - { - "id":"675437a043034c50", - "type":"text", - "text":"# 2. 24.( 화 )", - "styleAttributes":{}, - "x":78, - "y":32400, - "width":428, - "height":60 - }, - { - "id":"1f73c91c638bd0f6", - "type":"text", - "text":"# 2. 17.( 화 )", - "styleAttributes":{}, - "x":98, - "y":31320, - "width":428, - "height":60 - }, - { - "id":"18eee28c722ced82", - "type":"text", - "text":"- [ ] 방독면 58개 불용승인 처리에 따른 반납 건의, 이승민, 교육용 교훈처, 운영용 군지대 신청", - "styleAttributes":{}, - "x":-350, - "y":32700, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"eca56377f4dba0b9", - "type":"text", - "text":"- [x] 차량예방정비,9130호", - "styleAttributes":{}, - "x":-350, - "y":32460, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"ef067d2477cbe265", - "type":"text", - "text":"- [x] 3월 군수교 연료취급자 원격교육 대상자 파악,~23,장성국", - "styleAttributes":{}, - "x":-350, - "y":32640, - "width":428, - "height":60 - }, - { - "id":"2ddddd3f85681b40", - "type":"text", - "text":"# 2. 16.( 월 )", - "styleAttributes":{}, - "x":-330, - "y":31320, - "width":428, - "height":60 - }, - { - "id":"4fc1cf0642ba2dd3", - "type":"text", - "text":"[재난 및 안전관리 예산 부대 재배정]\n* 재배정 공문하달(3.16.)\n* 폭염대비 물자(폭염응급키트)\n* 재난예방 보수비(곡괭이, 삽, 마대 등)\n\n(별) 4월 3일 한 집행완료 후 공문보고\n(별) 예산집행 지침 준용, 타용도 사용금지", - "styleAttributes":{}, - "x":290, - "y":43340, - "width":430, - "height":240 - }, - { - "id":"4c52c3c80ef72775", - "type":"text", - "text":"- [x] 소방점검 후속조치 , 소화기 즉시조치, 독신숙소 5동(소인사과 군숙소담당 자료요구),~3.22,유재형\n- [x] 전승훈, 956-7116,숙소관리관", - "styleAttributes":{}, - "x":290, - "y":43580, - "width":870, - "height":60, - "color":"1" - }, - { - "id":"216f7ac7690a477a", - "type":"text", - "text":"- [ ] 통신장비 폐처리,불용 신청 1대,이명세", - "styleAttributes":{}, - "x":720, - "y":43640, - "width":440, - "height":60 - }, - { - "id":"a4f968e2bd1c2967", - "type":"text", - "text":"# 4. 3.(금)", - "styleAttributes":{}, - "x":2032, - "y":45000, - "width":428, - "height":60 - }, - { - "id":"c8f69c02e67654ff", - "type":"text", - "text":"# 4. 2.(목)", - "styleAttributes":{}, - "x":1624, - "y":45000, - "width":408, - "height":60 - }, - { - "id":"29c7d346b4e8fe88", - "type":"text", - "text":"# 4. 1.(수)", - "styleAttributes":{}, - "x":1216, - "y":45000, - "width":408, - "height":60 - }, - { - "id":"8fb6923c263306fa", - "type":"text", - "text":"- [x] 25,26년 불용장비폐처리결과 보고,한서욱,~4.2", - "styleAttributes":{}, - "x":1624, - "y":45060, - "width":408, - "height":60 - }, - { - "id":"40ad2b92473fe6ed", - "type":"text", - "text":"- [x] 3월 한시인가 결산결과 공문으로 보내주시면 확인하겠습니다(~4.5)", - "styleAttributes":{}, - "x":2032, - "y":45060, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"53cd88c837dd21fd", - "type":"text", - "text":"- [x] 부대야전정비지시서 완결, 통신장비, CPL10192 10215 10216,조희철", - "styleAttributes":{}, - "x":1624, - "y":45120, - "width":408, - "height":60 - }, - { - "id":"62a36f30f4613968", - "type":"text", - "text":"- [x] 감찰,손망실 보고서 수정,도장지참,구은지", - "styleAttributes":{}, - "x":2032, - "y":45120, - "width":428, - "height":60 - }, - { - "id":"7a51300d4193f98c", - "type":"text", - "text":"- [x] 3중대 행보관(정현일) 전훌훈련평가관련 탄약,치장물자 분배 계획문의", - "styleAttributes":{}, - "x":1624, - "y":45240, - "width":408, - "height":60 - }, - { - "id":"b5cff9eec56cf03d", - "type":"text", - "text":"- [x] 의무과 인원 5부제 수정", - "styleAttributes":{}, - "x":1624, - "y":45180, - "width":408, - "height":60 - }, - { - "id":"71730e95b25ab133", - "type":"text", - "text":"- [ ] 연대본부 랜드토키 2대 수리부속처리품 재산정리 필요, 이명세", - "styleAttributes":{}, - "x":2032, - "y":45180, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"2a69e2cc6de9cee3", - "type":"text", - "text":"# 3. 31 . (화) 당직근무", - "styleAttributes":{}, - "x":788, - "y":45000, - "width":428, - "height":60 - }, - { - "id":"b5cd88687b5ec77a", - "type":"text", - "text":"# 3. 30. (월) ", - "styleAttributes":{}, - "x":360, - "y":45000, - "width":428, - "height":60 - }, - { - "id":"20f47e98a2ad282d", - "type":"text", - "text":"- [x] [군수과 전파]\n\t국방부 주관 급식개선 민관군협의체 전체회의를 훈련소에서 실시합니다.\n\t(메모보고 참조)\n\t\n\t(별) 추가사항은\n\t 1 5:30 전체회의 종료 후\n\t 국.군수국장님이 \n\t 모든 민간위탁식당을 방문합니다.\n\t* 민간위탁식당 점장이 안내/설명\n\t* 26연대(15:40) --> 27연대(16:00) \n\t --> 30연대(16:20)\n\t* 시간은 대략적인 시간입니다.", - "styleAttributes":{}, - "x":-300, - "y":45000, - "width":428, - "height":380 - }, - { - "id":"f000f3aa01202a6c", - "type":"text", - "text":"- [x] . 봄맞이 환경정화활동 적극실시\n\t * 4.2.(목) 지휘보고 포함 결과보고", - "styleAttributes":{}, - "x":360, - "y":45120, - "width":1264, - "height":60 - }, - { - "id":"0317c1529a191e19", - "type":"text", - "text":"- [x] 3월 안전점검의날 해마결과보고,김수형,~31", - "styleAttributes":{}, - "x":788, - "y":45060, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"4cd42bf705e8b499", - "type":"text", - "text":"- [x] 3교 굴삭기,덤프트럭 배차수령,~31,화단조경목 제거,한서욱", - "styleAttributes":{}, - "x":360, - "y":45240, - "width":428, - "height":60 - }, - { - "id":"650a4241c18323a2", - "type":"text", - "text":"- [ ] 4월 은닉 및 초과 재산탄약 회수활동 결과 보고,~4.1, 한서욱", - "styleAttributes":{}, - "x":1216, - "y":45060, - "width":408, - "height":60 - }, - { - "id":"b8fa9b944eca74e6", - "type":"text", - "text":"- [x] 취사장 교육", - "styleAttributes":{}, - "x":1216, - "y":45180, - "width":408, - "height":60 - }, - { - "id":"ba97883af9c6995c", - "type":"text", - "text":"- [ ] 4월 안전점검의 날 행사 일정 종합,김수형, ~3.31", - "styleAttributes":{}, - "x":788, - "y":45240, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"2bc467a39828447e", - "type":"text", - "text":"- [x] 주간예정사항 작성,이명세 ", - "styleAttributes":{}, - "x":1624, - "y":45300, - "width":408, - "height":60 - }, - { - "id":"58c581afdd6dd819", - "type":"text", - "text":"- [x] 3월 은닉 및 초과탄약 회수활동 결과보고,한서욱,~3.30", - "styleAttributes":{}, - "x":360, - "y":45300, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"1b6b646b465f8e66", - "type":"text", - "text":"- [ ] 안전보건확보의무이행 관련 주둔지내 법정시설요도 작성,아등섭,~3.31", - "styleAttributes":{}, - "x":788, - "y":45300, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"e915b17838612e14", - "type":"text", - "text":"- [ ] 헬스용품 50만원 소요종합", - "styleAttributes":{}, - "x":788, - "y":45360, - "width":428, - "height":60 - }, - { - "id":"8a5ccb897ac08a2c", - "type":"text", - "text":"- [x] 한시적인가 급식 소요파악,숙영인원,1교", - "styleAttributes":{}, - "x":788, - "y":45420, - "width":428, - "height":60 - }, - { - "id":"35b773eb015dc4da", - "type":"text", - "text":"- [x] 26부대안전진단,안전실,(3월예정), 이동섭", - "styleAttributes":{}, - "x":-791, - "y":45380, - "width":491, - "height":60 - }, - { - "id":"0b0127a03b232537", - "type":"text", - "text":"- [x] [[26년 육직부대 부대안전진단점검]], 2.23(월),26(목),이동섭", - "styleAttributes":{}, - "x":-791, - "y":45440, - "width":491, - "height":60 - }, - { - "id":"b859999b7b75abb3", - "type":"text", - "text":"- [x] 차량5부제 종합 보고,유재형(매월보고)", - "styleAttributes":{}, - "x":360, - "y":45360, - "width":428, - "height":60 - }, - {"id":"8e7a3b6468ac3d8d","type":"file","file":"부대운영진단 대비 보안분야 개인조치사항.md","x":-300,"y":45380,"width":428,"height":780}, - { - "id":"cc5b786c98e559ae", - "type":"text", - "text":"- [ ] 5군지사, 신품 k1방독면 정화통 소요보고,~3.31,김석", - "styleAttributes":{}, - "x":360, - "y":45660, - "width":2100, - "height":60, - "color":"1" - }, - { - "id":"5a764e4edd6a4166", - "type":"text", - "text":"- [x] 충성!\n\t3.26.(목)~ 4.2.(목) 2.5톤 추가 배차 올리고 수송부 우선배차 협조 하겠습니다!\n\t\n\t* 1교육대 개인화기, 수류탄 교육, 2교육대 각개전투교육으로 인한 추가 배차입니다.", - "styleAttributes":{}, - "x":-300, - "y":46160, - "width":428, - "height":160 - }, - { - "id":"ce6c04a261eafd3a", - "type":"text", - "text":"- [x] 교육과장 전파\n\t4.3.(금) 09:30~11:30까지\n\t지휘통제기구훈련을 시행합니다.\n\tㆍ참석대상 : 지휘통제실 구성요원\n\t (자리배치도 참조)\n\tㆍ사전 DB구축을 해야하니 내일\n\t 오전까지 인사군수실무자는\n\t 지통실에 와서 수정바랍니다\n\t* 전술훈련평가 점검표 추가 의견으로 달아놨으니 반드시 확인바랍니다.", - "styleAttributes":{}, - "x":1624, - "y":45420, - "width":836, - "height":240, - "color":"1" - }, - { - "id":"6a6d4e37bfef997d", - "type":"text", - "text":"- [ ] 6중대 물자유지비 사용계획보고 작성", - "styleAttributes":{}, - "x":1624, - "y":45360, - "width":408, - "height":60 - }, - { - "id":"7144b05813ca4141", - "type":"text", - "text":"- [x] 충성!\n\t담당관님 4중대장 김승권상사입니다.\n\t오늘 하루도 고생많으셨습니다!\n\t다름이 아니라 차량5부제 제외간부 파일을 의견으로 올려드렸는데 4중대 간부 1명이 누락되어 말씀드립니다.\n\t김윤종상사이며 가족 출근을 시킨 후 부대 출근을 해야되서 5부제 제외차량으로 편성이 필요합니다.\n\t죄송하지만 간부 1명 포함시켜주시면 감사하겠습니다!!\n\t이상입니다. 충성!", - "styleAttributes":{}, - "x":2042, - "y":45720, - "width":418, - "height":360 - }, - { - "id":"53804a2924d935c6", - "type":"text", - "text":"# 4. 9.(목)", - "styleAttributes":{}, - "x":1634, - "y":46720, - "width":408, - "height":60 - }, - { - "id":"7a45c327cbdfecd8", - "type":"text", - "text":"# 4. 10.(금) 정상퇴근1730", - "styleAttributes":{}, - "x":2042, - "y":46720, - "width":428, - "height":60 - }, - { - "id":"ac1165f5fcf05514", - "type":"text", - "text":"# 4. 6. (월) ", - "styleAttributes":{}, - "x":370, - "y":46720, - "width":428, - "height":60 - }, - { - "id":"901ae0ebbea9300a", - "type":"text", - "text":"# 4. 7 . (화) ", - "styleAttributes":{}, - "x":798, - "y":46720, - "width":428, - "height":60 - }, - { - "id":"62354298d7007344", - "type":"text", - "text":"# 4. 8.(수)", - "styleAttributes":{}, - "x":1226, - "y":46720, - "width":408, - "height":60 - }, - { - "id":"89f9935d44ddd651", - "type":"text", - "text":"- [x] 총기보관함 10인용 보급,황인찬,~4.9,56개(24,32),도수하역(인원필요),1교18,2교19,3교 19", - "styleAttributes":{}, - "x":1634, - "y":46780, - "width":408, - "height":60 - }, - { - "id":"be2c8bf0fb4ea944", - "type":"text", - "text":"- [ ] 육군규정 수정 개정소요 제출,~4.10,조태숙 #취소", - "styleAttributes":{}, - "x":2042, - "y":46780, - "width":428, - "height":60 - }, - { - "id":"c2dbf7c0610185a6", - "type":"text", - "text":"- [ ] 모래주머니 소요 종합,황인찬,~4.9 #취소 ", - "styleAttributes":{}, - "x":1634, - "y":46960, - "width":406, - "height":60 - }, - { - "id":"9ebadd4055e8db52", - "type":"text", - "text":"- [x] 주간유류탱크점검,유류소모", - "styleAttributes":{}, - "x":2040, - "y":46960, - "width":430, - "height":60 - }, - { - "id":"d09373eda8f0ac22", - "type":"text", - "text":"- [x] 에방정비,9130호", - "styleAttributes":{}, - "x":1634, - "y":46840, - "width":408, - "height":60 - }, - { - "id":"631741e9b210aaa8", - "type":"text", - "text":"- [x] 밝은눈 안과 출장검진,고재은,4.10,1300-1330,연무관", - "styleAttributes":{}, - "x":2042, - "y":46840, - "width":428, - "height":60 - }, - { - "id":"ce3e16baceeb6154", - "type":"text", - "text":"- [x] 28-32 국방중기계획 작성교육, 남재우, 1000, 교육지원대대장, 교지대 다목적홀", - "styleAttributes":{}, - "x":2042, - "y":46900, - "width":428, - "height":60 - }, - { - "id":"7ab8d5c34f0d8665", - "type":"text", - "text":"- [x] 연대 전훌훈련평가 예행연습", - "styleAttributes":{}, - "x":1226, - "y":46840, - "width":408, - "height":60 - }, - { - "id":"b6dc15cad6ee79a3", - "type":"text", - "text":"- [ ] 체력검정1차 #취소", - "styleAttributes":{}, - "x":1226, - "y":46780, - "width":408, - "height":60 - }, - { - "id":"296224789442e8b1", - "type":"text", - "text":"- [ ] 건설장비 소요종합 보고,한서욱,~4.9 #취소", - "styleAttributes":{}, - "x":1634, - "y":46900, - "width":406, - "height":60 - }, - { - "id":"f314065d7cdcf62e", - "type":"text", - "text":"- [x] 통합이동정비, 2교,임대원,오전", - "styleAttributes":{}, - "x":370, - "y":46780, - "width":428, - "height":60 - }, - { - "id":"3c950de130712a45", - "type":"text", - "text":"- [x] 상담실 시스템에어컨 이전,박관식,위임보수신청", - "styleAttributes":{}, - "x":370, - "y":46840, - "width":428, - "height":60 - }, - { - "id":"1233d5aa897ce748", - "type":"text", - "text":"- [x] 통신장비예방정비,무전기PRC999k", - "styleAttributes":{}, - "x":798, - "y":46780, - "width":428, - "height":60 - }, - { - "id":"ee909a75d90eecef", - "type":"text", - "text":"- [ ] 2교 물탱크 교체 2분기 위임보수 건의 필요", - "styleAttributes":{}, - "x":798, - "y":46840, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"b1d83de61e99015b", - "type":"text", - "text":"- [x] 🌱 실내공기질 측정 예정\n- 금일 : 30-1교(라돈 6지점), 25-2교, 25-3교\n- 익일(예정) : 27-3교, 28연대 식당, 30-2교, 30-3교\n\n각 부대별 인지하시어 인솔 및 측정지점 안내바랍니다.\n\n* 콘센트, 측정기기 공간 확보 필수\n* 순차적으로 연락예정\n* 병영생활시설의 경우 병영생활관에 1지점 이상 설치 필수\n* 실내공기질 측정 기사님 연락처입니다.\n성당-> 30-1교육대 안내부탁드리겠습니다.\n01095570500 백규현기사", - "styleAttributes":{}, - "x":1226, - "y":47140, - "width":408, - "height":430 - }, - { - "id":"1fc3ffe3287653f8", - "type":"text", - "text":"- [x] 26년 후생용품(이발도구) 납품,조태숙,0930-1000,전기이발기70,미용보28,스펀지130,정대룡,01058479773", - "styleAttributes":{}, - "x":370, - "y":46900, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"22eeb17d83225aae", - "type":"text", - "text":"- [x] 중기계획 교육,10시,군재다목적강당", - "styleAttributes":{}, - "x":798, - "y":46900, - "width":428, - "height":60 - }, - { - "id":"97e514c126366fd2", - "type":"text", - "text":"- [x] 26년 해빙기 취약시설 안전점검 결과보고,이동섭,~4.3", - "styleAttributes":{}, - "x":370, - "y":46960, - "width":856, - "height":60, - "color":"1" - }, - { - "id":"4d1d3aed023ce83b", - "type":"text", - "text":"- [ ] 28-32 국방중기계획작성,~4.15,박관식,연대 교육대 창고(피복,운영, 치장창고)", - "styleAttributes":{}, - "x":370, - "y":47020, - "width":2100, - "height":60, - "color":"1" - }, - { - "id":"c6c8d7b855587922", - "type":"text", - "text":"- [x] 사령부 전반기 군수지동방문", - "styleAttributes":{}, - "x":1226, - "y":46900, - "width":408, - "height":60 - }, - { - "id":"586e93f50436381d", - "type":"text", - "text":"- [x] ✔️전반기 교육사 군수통합지도방문\n🌱환경+재난분야는 3.9.(목) 예정입니다.\n각 부대별 미흡사항 있는지 사전 점검 부탁드립니다.", - "styleAttributes":{}, - "x":1634, - "y":47160, - "width":408, - "height":120 - }, - { - "id":"19942abda1789692", - "type":"text", - "text":"- [x] [승용차 2부제(홀짝제) 시행]\n\t(별) 메모보고 참조\n\t\n\t1. 시행일 : 4. 13.(월) 06:30 부\n\t2. 대상 : 군인, 군무원, 근무원 전 차량\n\t * 10인승 이하 승용자동차\n\t1. 시행방법 : 끝자리 숫자가 \n\t 홀수면 홀수일, 짝수면 짝수일 운행\n\t2. 적용시간 : 평일(월~금) 24시간\n\t * 주말, 공휴일, 31일 제외\n\t3. 제외차량 : 기존 5부제 지침 적용\n\t * 추가사항 \n\t - 대중교통 미운행 시간에 출근 하는\n\t 차량 포함(06시 30분 이전 출근)\n\t - 논산에서 버스 첫차 출발시간 고려\n\t (201번 버스 기준 06시에 논산 출발)\n\t (별) 적용제외차량 스티커는\n\t A4 코팅하여 차량 전면\n\t 잘 보이는 곳에 위치\n\t (양식이 다르면 미인정)\n\t\n\t메모보고 참고하시고\n\t기존양식 활용하여\n\t2부제 제외차량 공문으로\n\t보고바랍니다.(4. 10.(금) 한)", - "styleAttributes":{}, - "x":2040, - "y":47160, - "width":450, - "height":615 - }, - { - "id":"f7eb2d8645d88f6a", - "type":"text", - "text":"- [ ] 26년 전반기 안전보건확보의무 이행 자율 점검 결과보고, 이동섭,~6.15", - "styleAttributes":{}, - "x":370, - "y":47080, - "width":2100, - "height":60 - }, - { - "id":"14406fff6a8712e7", - "type":"text", - "text":"- [x] 26년 방역약품 소요파악,한승민,~4.6", - "styleAttributes":{}, - "x":370, - "y":47140, - "width":428, - "height":60 - }, - { - "id":"6a2f7c6d6e9319b6", - "type":"text", - "text":"- [x] 출입신청서 보내드립니다.\n납품일:4월 9일 오후 13시 도착\n품명: 총기보관함 10정용 72개 \n계약자:동광시스템\n\n1.성명: 김종운\n생년월일 : 730123\n주소: 경기도 고양시 덕양구 내유동현대파크빌B동301호\n연락처 : 010-6349-7531\n차종 : 프리마/흰색\n차량번호 : 경기92자2973(5톤)\n2. 성명:김윤성\n생년월일:820220\n연락처:010-7425-1214\n주소:경기도 파주시 심학산로385 운정센트럴 푸르지오아파트 1015동1102호\n차량정보:경기87바2650(구쎈8톤/검정색)", - "styleAttributes":{}, - "x":1634, - "y":47280, - "width":408, - "height":550 - }, - { - "id":"e749340efafac690", - "type":"text", - "text":"- [ ] 교육과 이명세상사, 전관방송용앰프 120w 폐처리 기술검사 건의 및 불용결정 신청", - "styleAttributes":{}, - "x":370, - "y":47200, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"b41b39ff0ebe936c", - "type":"text", - "text":" - [x] 정기점검표 양식은 작년에 정기점검 한 자료가 있습니다.\n\t확인하시고 점검 후 공문 보내주시면 종합하겠습니다.\n\t1. 3월 한시인가 결산결과도 보내주시면 종합하겠습니다.", - "styleAttributes":{}, - "x":370, - "y":47260, - "width":428, - "height":190 - }, - { - "id":"804008abf4d931f6", - "type":"text", - "text":"- [x] 대검 수량실셈,2교육대,배성수", - "styleAttributes":{}, - "x":370, - "y":47450, - "width":428, - "height":60 - }, - { - "id":"357267fce19d565a", - "type":"text", - "text":"- [x] 26년 실내공기질 측정,신상이,~5.4, 1교 라돈, 취사식당4.16-17, 3교4.14-15,윤정현010-5409-8081", - "styleAttributes":{}, - "x":370, - "y":47570, - "width":1264, - "height":60, - "color":"4" - }, - { - "id":"7c18b75171ed5b42", - "type":"text", - "text":"- [ ] 국기게양식, [[223. 부대안전점검]]의날 행사 실시", - "styleAttributes":{}, - "x":370, - "y":47510, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"6b05dafc0aed08b8", - "type":"text", - "text":"- [x] 연대전술훈련평가 자체예행연습,연대장", - "styleAttributes":{}, - "x":370, - "y":47690, - "width":1264, - "height":60, - "color":"1" - }, - { - "id":"98fd06d3ec5017ac", - "type":"text", - "text":"- [x] 사령부 전반기 군수분야지도방문", - "styleAttributes":{}, - "x":370, - "y":47630, - "width":1264, - "height":60, - "color":"1" - }, - { - "id":"0909035d927b14c0", - "type":"text", - "text":"- [x] 군수계획(소방.재난).환경분야는\n내일점검합니다\n(교육사 군수계획장교,환경담당)", - "styleAttributes":{}, - "x":1634, - "y":47830, - "width":408, - "height":130 - }, - { - "id":"62dcc978bcc03154", - "type":"text", - "text":"- [x] 정비지시서 욀결", - "styleAttributes":{}, - "x":2042, - "y":47835, - "width":428, - "height":60 - }, - { - "id":"5f64427bc237e7f2", - "type":"text", - "text":"- [x] 내일 군수통합지도방문(급양)은 현재까지는 직영식당 현장위주로 보신다고합니다.\n어떤거 위주로 보실건지는 확인 후 전파드리겠습니다.\n\n관련해서 군수과장님과 저는 15시부터 28-25-29에 현장확인을 할 예정입니다. ", - "styleAttributes":{}, - "x":1226, - "y":47750, - "width":408, - "height":210 - }, - { - "id":"b50c63e75a26e13d", - "type":"text", - "text":"- [x] 손망실 소집교읅, 구은지, 1030,성당", - "styleAttributes":{}, - "x":2040, - "y":47775, - "width":430, - "height":60 - }, - { - "id":"1300eaf11478780b", - "type":"text", - "text":"- [x] 2교육대 폐처리 지시서 확인,이국진", - "styleAttributes":{}, - "x":370, - "y":47810, - "width":418, - "height":60 - }, - { - "id":"825bd7ceaab851bd", - "type":"text", - "text":"- [x] 유류,가스 결산", - "styleAttributes":{}, - "x":370, - "y":47750, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"a5b76db968407408", - "type":"text", - "text":"- [ ] 교육과,본부중대재산 워키토키 2대정리,이명세", - "styleAttributes":{}, - "x":2040, - "y":47895, - "width":430, - "height":65, - "color":"1" - }, - { - "id":"5cc20e631b6ab756", - "type":"text", - "text":"- [x] 오늘 1교육대 징집분대장 2명 전입으로 인해 연대무기고에서 총기 및 대검 2정 1540에 수령하겠습니다!", - "styleAttributes":{}, - "x":1634, - "y":47960, - "width":408, - "height":120 - }, - { - "id":"8cda3e6d3e0f8593", - "type":"text", - "text":"- [x] 1분기위임보수 공사(중대화장실3개소분3천만원) 예산 물품구매 협조,위임보수담당,안일남", - "styleAttributes":{}, - "x":2040, - "y":47960, - "width":430, - "height":60 - }, - { - "id":"b4ebe82204b7dfa3", - "type":"text", - "text":"- [x] 대형정수기 업체 계속 정비가능여부 확인", - "styleAttributes":{}, - "x":2040, - "y":48020, - "width":430, - "height":60 - }, - { - "id":"8082198901af2a0b", - "type":"text", - "text":"# 4. 17.(금)", - "styleAttributes":{}, - "x":2042, - "y":48200, - "width":428, - "height":60 - }, - { - "id":"671d9e93eb470997", - "type":"text", - "text":"- [ ] 국방군수통합정보체계 상 보급목적코드 및 장비상태코드 입력 확인, 한서욱", - "styleAttributes":{}, - "x":2042, - "y":48260, - "width":428, - "height":60 - }, - { - "id":"a374287b5443553f", - "type":"text", - "text":"# 4. 13. (월) ", - "styleAttributes":{}, - "x":370, - "y":48200, - "width":428, - "height":60 - }, - { - "id":"6a1a7d8b51705b36", - "type":"text", - "text":"# 4. 14 . (화) ", - "styleAttributes":{}, - "x":798, - "y":48200, - "width":428, - "height":60 - }, - { - "id":"650e05392de57424", - "type":"text", - "text":"# 4. 16.(목)", - "styleAttributes":{}, - "x":1634, - "y":48200, - "width":408, - "height":60 - }, - { - "id":"4ea45f61eae7116c", - "type":"text", - "text":"- [ ] 발전기 예방정비 기술검사,임헌준,임대원,의무과,추사장", - "styleAttributes":{}, - "x":1226, - "y":48260, - "width":408, - "height":60 - }, - { - "id":"454827b322a05a94", - "type":"text", - "text":"# 4. 15.(수)", - "styleAttributes":{}, - "x":1226, - "y":48200, - "width":408, - "height":60 - }, - { - "id":"a64a3e4e45a45d38", - "type":"text", - "text":"- [x] 연대 창고 중기계획보고,창고,박관식,", - "styleAttributes":{}, - "x":375, - "y":48378, - "width":1665, - "height":60, - "color":"1" - }, - { - "id":"0906621464de7e30", - "type":"text", - "text":"- [ ] 2교육대 8중대 방독면 4개 및 입고정비 완결처리,임대원,~5.11", - "styleAttributes":{}, - "x":370, - "y":48440, - "width":1264, - "height":65 - }, - { - "id":"d5260f058d7a8aab", - "type":"text", - "text":"- [ ] 나침반,비설치형,자기식,003354972,10개\n- [ ] 나침반,자기식,비설치형,M2,1개,005606596", - "styleAttributes":{}, - "x":370, - "y":48510, - "width":1264, - "height":70 - }, - { - "id":"892b8a89cb3fa271", - "type":"text", - "text":"- [x] 위임보수 2분기 심의결과 확인,박관식,4.14", - "styleAttributes":{}, - "x":798, - "y":48870, - "width":418, - "height":60 - }, - { - "id":"d7d5d24f38b94344", - "type":"text", - "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", - "styleAttributes":{}, - "x":375, - "y":49010, - "width":2120, - "height":100, - "color":"3" - }, - { - "id":"44e3d51fc3ab57cb", - "type":"text", - "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", - "styleAttributes":{}, - "x":375, - "y":49010, - "width":2120, - "height":100, - "color":"3" - }, - { - "id":"419de4e8a096a1ef", - "type":"text", - "text":"- [x] 28-32 국방중기계획작성,~4.15,박관식,연대 교육대 창고(피복,운영, 치장창고)", - "styleAttributes":{}, - "x":375, - "y":49100, - "width":2100, - "height":60, - "color":"1" - }, - { - "id":"eec646e444ee55e0", - "type":"text", - "text":"- [ ] 26년 전반기 안전보건확보의무 이행 자율 점검 결과보고, 이동섭,~6.15", - "styleAttributes":{}, - "x":375, - "y":49160, - "width":2100, - "height":60 - }, - { - "id":"1c19d6bcf0ba28e7", - "type":"text", - "text":"- [ ] 부대안잔진단 결과 11개과제 호속조치, 실시결과 종합~4.23", - "styleAttributes":{}, - "x":375, - "y":49220, - "width":1672, - "height":60, - "color":"1" - }, - { - "id":"99ae1171b57e87f0", - "type":"text", - "text":"- [ ] 가스사용시설 안전관리자 교육,장성국,3.18-20 원격교육.! 3.23-24 소집교육 #취소", - "styleAttributes":{}, - "x":-1640, - "y":49200, - "width":428, - "height":80 - }, - { - "id":"b18fbdb122c094ec", - "type":"text", - "text":"- [x] 26년 2분기 시효도래유류 시험의뢰,~4월한,53군지단 정주원", - "styleAttributes":{}, - "x":-1640, - "y":49000, - "width":428, - "height":60 - }, - { - "id":"2ce539c3e2080717", - "type":"text", - "text":"- [x] 3교육대\ntv받침대(서랍있는것) 1개\n이발용 의자 2개 \n청구 가능한가요?", - "styleAttributes":{}, - "x":-1640, - "y":49060, - "width":428, - "height":140 - }, - { - "id":"50271ab8f2438e6b", - "type":"text", - "text":"- [x] 5부제 차량 운행\n\t1. 대중교통 제한시간대인\n 06시 30분 이전 출근자 제외 가능\n\t2. 11인승 차량 가능\n\t (그런데 11인승 차량이 \n\t 진짜 11인승 기능을 하는지는...)\n\t 10인승 이상을 허용해 준 \n\t 이유가 있을건데\n\t 간부 개인용 카니발 맨 뒤자리\n\t 짐칸으로 활용하는 곳이\n\t 의자형태로 펴서 11인승으로 \n\t 실질적으로 사용중이면\n\t 허용해주면 좋지 않을까 생각됩니다.", - "styleAttributes":{}, - "x":-1640, - "y":49280, - "width":428, - "height":420 - }, - { - "id":"09d1b4a074d192a6", - "type":"text", - "text":"- [x] 외부 폐기물 처리소요 보고, 신상이,~4.17", - "styleAttributes":{}, - "x":2042, - "y":48320, - "width":428, - "height":60 - }, - { - "id":"7b8de56d7386ef24", - "type":"text", - "text":"- [x] 총기보관함 훈련병 생환관 정수대비 보유현황,황인찬,~4.13", - "styleAttributes":{}, - "x":370, - "y":48260, - "width":428, - "height":60 - }, - { - "id":"56ca3acbc39f184a", - "type":"text", - "text":"- [x] 부대안전진단 결과 보고 확인,안전실,4.14", - "styleAttributes":{}, - "x":798, - "y":48260, - "width":430, - "height":60 - }, - { - "id":"d221234ac81836ca", - "type":"text", - "text":"- [x] 재정지도방문,훈련소자체,4.13,홍채림", - "styleAttributes":{}, - "x":370, - "y":48320, - "width":428, - "height":60 - }, - { - "id":"61e205c093032a84", - "type":"text", - "text":"- [ ] 병영생활관 신축 선행연구퇴의,박관식,4.16 #취소", - "styleAttributes":{}, - "x":1634, - "y":48260, - "width":408, - "height":60 - }, - { - "id":"3d0ac192c43392e7", - "type":"text", - "text":"- [x] 3교 보충역 입영", - "styleAttributes":{}, - "x":1634, - "y":48320, - "width":406, - "height":60 - }, - { - "id":"ea39ab719b851d27", - "type":"text", - "text":"# 4. 18. (토) 당직", - "styleAttributes":{}, - "x":2470, - "y":48200, - "width":260, - "height":60, - "color":"5" - }, - { - "id":"91979ff8d4b98b55", - "type":"text", - "text":"- [ ] 해빙기 취약시설 안전점검 결과보고 내용확인,이동섭", - "styleAttributes":{}, - "x":2042, - "y":48540, - "width":438, - "height":60 - }, - { - "id":"e47d2c9a32f052c2", - "type":"text", - "text":"- [ ] 충성! 보급관님\n1교육대 대검 재산 실셈파악은\n4.17(금) 에 실시하겠습니다!", - "styleAttributes":{}, - "x":2042, - "y":48380, - "width":428, - "height":100, - "color":"1" - }, - { - "id":"64b3e554babd1130", - "type":"text", - "text":"- [ ] 노후 등기구 조사, 조범희,~4.17", - "styleAttributes":{}, - "x":2042, - "y":48480, - "width":428, - "height":60 - }, - { - "id":"9c83ec6ba5c19383", - "type":"text", - "text":"- [x] 교육과 이명세상사, 전관방송용앰프 120w 폐처리 기술검사 건의 및 불용결정 신청", - "styleAttributes":{}, - "x":370, - "y":48580, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"88bcc83300977084", - "type":"text", - "text":"- [x] 📝 방탄헬멧 위장보 보급계획\n\t\n\t• 일시: 4월 14일(화) 15:00, (소)408,(중)2076\n\t• 장소: 9번창고(급식유통센터쪽/면수건 수령창고)\n\t• 협조: 물품,물량에 적합한 차량과 상하차 인원 준비부탁드리겠습니다.\n\t• 참조: 자세한 내용은 박형주주무관님메모(4.6) 방탄헬멧 위장포 보급 계획 메모 참조바랍니다.(위장포 1박스당 200ea/박스크기 1파렛트 1단에 3박스 정도 사이즈)\n\t\n\t특이사항발생 시 내용\n\t전파하도록 하겠습니다.\n\t방탄헬멧 위장포 보급,박형주,~4.14,4번창고,1500, ", - "styleAttributes":{}, - "x":798, - "y":48580, - "width":418, - "height":290 - }, - { - "id":"1d63e577573b8477", - "type":"text", - "text":"- [ ] 2교 물탱크 교체 2분기 위임보수 건의 필요 #취소", - "styleAttributes":{}, - "x":370, - "y":48640, - "width":428, - "height":60, - "color":"1" - }, - { - "id":"f83dcbf8aea7338a", - "type":"text", - "text":"- [ ] 연대전술훈련평가 ", - "styleAttributes":{}, - "x":375, - "y":48930, - "width":2100, - "height":80, - "color":"1" - }, - { - "id":"969d9e4d9605780e", - "type":"text", - "text":"- [ ] 연대전술훈련평가 ", - "styleAttributes":{}, - "x":375, - "y":48930, - "width":2100, - "height":80, - "color":"1" - }, - { - "id":"6df1eaf34780b7a9", - "type":"text", - "text":"- [ ] 간부 성인지교육 신청", - "styleAttributes":{}, - "x":1634, - "y":48445, - "width":406, - "height":60 - }, - { - "id":"3d1076c84eadb0b3", - "type":"text", - "text":"- [ ] 장거리 배차 소요종합,유재형,~4.16", - "styleAttributes":{}, - "x":1634, - "y":48505, - "width":406, - "height":75 - }, - { - "id":"2cdb1ad1d8df5afd", - "type":"text", - "text":"- [ ] 월하준비 시행지침 획인, ", - "styleAttributes":{}, - "x":1634, - "y":48580, - "width":408, - "height":60 - }, - { - "id":"9622b765751deea0", - "type":"text", - "text":"[[대검]] 실셈 1교,1400", - "styleAttributes":{}, - "x":2040, - "y":48845, - "width":428, - "height":60 - }, - { - "id":"096ad31c759ffd09", - "type":"text", - "text":"[[방역업체]] 방문", - "styleAttributes":{}, - "x":1634, - "y":48640, - "width":408, - "height":60 - }, - { - "id":"7bae2174fc4fb7b5", - "type":"text", - "text":"- [x] 폐자원매각대금 사용계획 소오종합,양지선,~4.17", - "styleAttributes":{}, - "x":2042, - "y":48665, - "width":428, - "height":60 - }, - { - "id":"ebbc69dc68babf63", - "type":"text", - "text":"- [x] 건설장비 소요 종합,한서욱,~4.17", - "styleAttributes":{}, - "x":2040, - "y":48600, - "width":428, - "height":60 - }, - { - "id":"81fafd57c223354f", - "type":"text", - "text":"[[군장검사]] 확인, 1400", - "styleAttributes":{}, - "x":2040, - "y":48725, - "width":428, - "height":60 - }, - { - "id":"aa5a1a98dc8cef3e", - "type":"text", - "text":"[[월간 지휘관 무기고탄약고 점검]] ", - "styleAttributes":{}, - "x":2042, - "y":48785, - "width":428, - "height":60 - }, - { - "id":"b4e4b55a1c38789a", - "type":"text", - "text":"# 4. 23.(목)", + "text":"에방정비,3508-1호", "styleAttributes":{}, "x":1664, - "y":50760, + "y":50820, "width":408, "height":60 }, { - "id":"e7f847e0b2c6ef54", + "id":"3f2df223b98343f5", "type":"text", - "text":"# 4. 24.(금) 이발예약14시,정상퇴근", + "text":"예방정비,3508-2", "styleAttributes":{}, - "x":2072, - "y":50760, - "width":468, + "x":828, + "y":50820, + "width":428, "height":60 }, { - "id":"e890b5dc4ff9394d", + "id":"123634bc46285cbd", "type":"text", - "text":"# 4. 20. (월) ", + "text":"- [x] 통합이동정비,1교,오후,임대원", "styleAttributes":{}, "x":400, - "y":50760, + "y":50820, "width":428, "height":60 }, @@ -9341,6 +9351,26 @@ "width":408, "height":60 }, + { + "id":"b4e4b55a1c38789a", + "type":"text", + "text":"# 4. 23.(목)", + "styleAttributes":{}, + "x":1664, + "y":50760, + "width":408, + "height":60 + }, + { + "id":"e890b5dc4ff9394d", + "type":"text", + "text":"# 4. 20. (월) ", + "styleAttributes":{}, + "x":400, + "y":50760, + "width":428, + "height":60 + }, { "id":"988cfde9224448af", "type":"text", @@ -9352,56 +9382,16 @@ "height":60 }, { - "id":"2bfadb0f94367f7c", + "id":"e7f847e0b2c6ef54", "type":"text", - "text":"- [ ] 체력검정2차", - "styleAttributes":{}, - "x":1256, - "y":50820, - "width":408, - "height":60 - }, - { - "id":"123634bc46285cbd", - "type":"text", - "text":"- [x] 통합이동정비,1교,오후,임대원", - "styleAttributes":{}, - "x":400, - "y":50820, - "width":428, - "height":60 - }, - { - "id":"3f2df223b98343f5", - "type":"text", - "text":"예방정비,3508-2", - "styleAttributes":{}, - "x":828, - "y":50820, - "width":428, - "height":60 - }, - { - "id":"f7d19a81e410822b", - "type":"text", - "text":"에방정비,3508-1호", - "styleAttributes":{}, - "x":1664, - "y":50820, - "width":408, - "height":60 - }, - { - "id":"122f7f4d6475aa73", - "type":"text", - "text":"- [ ] 부대안잔진단 결과 11개과제 호속조치, 실시결과 종합 보고서작성,4.24~", + "text":"# 4. 24.(금) 이발예약14시,정상퇴근", "styleAttributes":{}, "x":2072, - "y":50880, - "width":428, - "height":90, - "color":"1" + "y":50760, + "width":468, + "height":60 }, + {"id":"8e7a3b6468ac3d8d","type":"file","file":"부대운영진단 대비 보안분야 개인조치사항.md","x":-300,"y":45380,"width":428,"height":780}, { "id":"70d14db4401caf40", "type":"text", @@ -9413,12 +9403,12 @@ "height":60 }, { - "id":"a33d39bdf1308eb7", + "id":"25fe50a1ed4d00ae", "type":"text", - "text":"[[병영생활관신축]] 선행연구 30토의,박관식1030,김낙중", + "text":"- [x] 손망실 소집교읅, 구은지, 1030,성당", "styleAttributes":{}, - "x":1256, - "y":50940, + "x":1664, + "y":50880, "width":408, "height":60 }, @@ -9443,42 +9433,12 @@ "height":60 }, { - "id":"25fe50a1ed4d00ae", + "id":"a33d39bdf1308eb7", "type":"text", - "text":"- [x] 손망실 소집교읅, 구은지, 1030,성당", + "text":"[[병영생활관신축]] 선행연구 30토의,박관식1030,김낙중", "styleAttributes":{}, - "x":1664, - "y":50880, - "width":408, - "height":60 - }, - { - "id":"57c0a1389b463244", - "type":"text", - "text":" [[건설장비]] 지원 종합, 한서욱", - "styleAttributes":{}, - "x":1664, - "y":51000, - "width":408, - "height":60 - }, - { - "id":"00dbce2e0e630b6c", - "type":"text", - "text":"[[1분기 작전지원능력 평가서]] 양식 작성,한서욱,", - "styleAttributes":{}, - "x":2072, - "y":50970, - "width":428, - "height":60 - }, - { - "id":"da757833170da178", - "type":"text", - "text":"[[보급품 수령 , 분배, 반납-1]], 황인찬", - "styleAttributes":{}, - "x":1664, - "y":51060, + "x":1256, + "y":50940, "width":408, "height":60 }, @@ -9502,6 +9462,97 @@ "width":428, "height":60 }, + { + "id":"122f7f4d6475aa73", + "type":"text", + "text":"- [ ] 부대안잔진단 결과 11개과제 호속조치, 실시결과 종합 보고서작성,4.24~", + "styleAttributes":{}, + "x":2072, + "y":50880, + "width":428, + "height":90, + "color":"1" + }, + { + "id":"00dbce2e0e630b6c", + "type":"text", + "text":"[[1분기 작전지원능력 평가서]] 양식 작성,한서욱,", + "styleAttributes":{}, + "x":2072, + "y":50970, + "width":428, + "height":60 + }, + { + "id":"20f47e98a2ad282d", + "type":"text", + "text":"- [x] [군수과 전파]\n\t국방부 주관 급식개선 민관군협의체 전체회의를 훈련소에서 실시합니다.\n\t(메모보고 참조)\n\t\n\t(별) 추가사항은\n\t 1 5:30 전체회의 종료 후\n\t 국.군수국장님이 \n\t 모든 민간위탁식당을 방문합니다.\n\t* 민간위탁식당 점장이 안내/설명\n\t* 26연대(15:40) --> 27연대(16:00) \n\t --> 30연대(16:20)\n\t* 시간은 대략적인 시간입니다.", + "styleAttributes":{}, + "x":-300, + "y":45000, + "width":428, + "height":380 + }, + { + "id":"5a764e4edd6a4166", + "type":"text", + "text":"- [x] 충성!\n\t3.26.(목)~ 4.2.(목) 2.5톤 추가 배차 올리고 수송부 우선배차 협조 하겠습니다!\n\t\n\t* 1교육대 개인화기, 수류탄 교육, 2교육대 각개전투교육으로 인한 추가 배차입니다.", + "styleAttributes":{}, + "x":-300, + "y":46160, + "width":428, + "height":160 + }, + { + "id":"35b773eb015dc4da", + "type":"text", + "text":"- [x] 26부대안전진단,안전실,(3월예정), 이동섭", + "styleAttributes":{}, + "x":-791, + "y":45380, + "width":491, + "height":60 + }, + { + "id":"0b0127a03b232537", + "type":"text", + "text":"- [x] [[26년 육직부대 부대안전진단점검]], 2.23(월),26(목),이동섭", + "styleAttributes":{}, + "x":-791, + "y":45440, + "width":491, + "height":60 + }, + { + "id":"77c8d402a2ab070d", + "type":"text", + "text":"23연대 병영생활 신축 토의자료 공유.23지원과장", + "styleAttributes":{}, + "x":828, + "y":51000, + "width":428, + "height":60 + }, + { + "id":"57c0a1389b463244", + "type":"text", + "text":" [[건설장비]] 지원 종합, 한서욱", + "styleAttributes":{}, + "x":1664, + "y":51000, + "width":408, + "height":60 + }, + { + "id":"da757833170da178", + "type":"text", + "text":"[[보급품 수령 , 분배, 반납-1]], 황인찬", + "styleAttributes":{}, + "x":1664, + "y":51060, + "width":408, + "height":60 + }, { "id":"7683afdd757497d9", "type":"text", @@ -9522,16 +9573,6 @@ "width":428, "height":60 }, - { - "id":"77c8d402a2ab070d", - "type":"text", - "text":"23연대 병영생활 신축 토의자료 공유.23지원과장", - "styleAttributes":{}, - "x":828, - "y":51000, - "width":428, - "height":60 - }, { "id":"f7aa51cec1a78ee3", "type":"text", @@ -9542,6 +9583,17 @@ "width":408, "height":60 }, + { + "id":"838497e14fe81961", + "type":"text", + "text":"- [ ] [[부대안전진단 결과]] 11개과제 호속조치, 실시결과 종합~4.23", + "styleAttributes":{}, + "x":420, + "y":51240, + "width":1652, + "height":60, + "color":"1" + }, { "id":"aa0dbb4c91d5df0e", "type":"text", @@ -9554,15 +9606,14 @@ "color":"1" }, { - "id":"838497e14fe81961", + "id":"dc80d65b13948801", "type":"text", - "text":"- [ ] [[부대안전진단 결과]] 11개과제 호속조치, 실시결과 종합~4.23", + "text":"# 5. 1. (금) ", "styleAttributes":{}, - "x":420, - "y":51240, - "width":1652, - "height":60, - "color":"1" + "x":2072, + "y":52080, + "width":428, + "height":60 }, { "id":"4dfa0fd5cc3ad244", @@ -9584,16 +9635,6 @@ "width":428, "height":60 }, - { - "id":"6e275d8d425b45d5", - "type":"text", - "text":"# 4. 29. (수)", - "styleAttributes":{}, - "x":1256, - "y":52080, - "width":408, - "height":60 - }, { "id":"7b5267ffce286848", "type":"text", @@ -9605,13 +9646,13 @@ "height":60 }, { - "id":"dc80d65b13948801", + "id":"6e275d8d425b45d5", "type":"text", - "text":"# 5. 1. (금) ", + "text":"# 4. 29. (수)", "styleAttributes":{}, - "x":2072, + "x":1256, "y":52080, - "width":428, + "width":408, "height":60 }, { @@ -9679,6 +9720,17 @@ "height":60, "color":"3" }, + { + "id":"3e67671e76be7a3d", + "type":"text", + "text":"- [ ] 26년 [[시설물 정기 자체관리 대상시설 안전점검]],박관식,~5.31", + "styleAttributes":{}, + "x":400, + "y":52540, + "width":1672, + "height":60, + "color":"3" + }, { "id":"339f8a0a85ea77f7", "type":"text", @@ -9690,14 +9742,14 @@ "height":65 }, { - "id":"3e67671e76be7a3d", + "id":"dd76610b84ff7287", "type":"text", - "text":"- [ ] 26년 [[시설물 정기 자체관리 대상시설 안전점검]],박관식,~5.31", + "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", "styleAttributes":{}, - "x":400, - "y":52540, + "x":398, + "y":52732, "width":1672, - "height":60, + "height":100, "color":"3" }, { @@ -9712,15 +9764,54 @@ "color":"4" }, { - "id":"dd76610b84ff7287", + "id":"b18fbdb122c094ec", "type":"text", - "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", + "text":"- [x] 26년 2분기 시효도래유류 시험의뢰,~4월한,53군지단 정주원", + "styleAttributes":{}, + "x":-1640, + "y":49000, + "width":428, + "height":60 + }, + { + "id":"2ce539c3e2080717", + "type":"text", + "text":"- [x] 3교육대\ntv받침대(서랍있는것) 1개\n이발용 의자 2개 \n청구 가능한가요?", + "styleAttributes":{}, + "x":-1640, + "y":49060, + "width":428, + "height":140 + }, + { + "id":"99ae1171b57e87f0", + "type":"text", + "text":"- [ ] 가스사용시설 안전관리자 교육,장성국,3.18-20 원격교육.! 3.23-24 소집교육 #취소", + "styleAttributes":{}, + "x":-1640, + "y":49200, + "width":428, + "height":80 + }, + { + "id":"50271ab8f2438e6b", + "type":"text", + "text":"- [x] 5부제 차량 운행\n\t1. 대중교통 제한시간대인\n 06시 30분 이전 출근자 제외 가능\n\t2. 11인승 차량 가능\n\t (그런데 11인승 차량이 \n\t 진짜 11인승 기능을 하는지는...)\n\t 10인승 이상을 허용해 준 \n\t 이유가 있을건데\n\t 간부 개인용 카니발 맨 뒤자리\n\t 짐칸으로 활용하는 곳이\n\t 의자형태로 펴서 11인승으로 \n\t 실질적으로 사용중이면\n\t 허용해주면 좋지 않을까 생각됩니다.", + "styleAttributes":{}, + "x":-1640, + "y":49280, + "width":428, + "height":420 + }, + { + "id":"760cf391e8182216", + "type":"text", + "text":"- [ ] 26년 전반기 안전보건확보의무 이행 자율 점검 결과보고, 이동섭,~6.15", "styleAttributes":{}, "x":398, - "y":52732, + "y":52832, "width":1672, - "height":100, - "color":"3" + "height":60 }, { "id":"79ac55c09f0cced9", @@ -9734,32 +9825,23 @@ "color":"1" }, { - "id":"760cf391e8182216", + "id":"09e5b16122aa3a16", "type":"text", - "text":"- [ ] 26년 전반기 안전보건확보의무 이행 자율 점검 결과보고, 이동섭,~6.15", + "text":"[[월하준비]] 계획 작성, ~30", "styleAttributes":{}, "x":398, - "y":52832, - "width":1672, - "height":60 + "y":52997, + "width":1264, + "height":60, + "color":"1" }, { - "id":"f4ec90fe1b4ef10b", + "id":"bb18657078ea8878", "type":"text", - "text":"~~[[재난안전통신망]], 운용자 교육,숙달,유재형,==1000==,김낙중영웅실~~", + "text":"~~[[주간 유류탱크 점검]]~~", "styleAttributes":{}, - "x":1256, - "y":53177, - "width":408, - "height":60 - }, - { - "id":"4521e371b5199ead", - "type":"text", - "text":"~~[[실내 공기질 측정]], 1교(5개소~~)", - "styleAttributes":{}, - "x":1256, - "y":53117, + "x":1664, + "y":53057, "width":408, "height":60 }, @@ -9773,16 +9855,6 @@ "width":408, "height":60 }, - { - "id":"bb18657078ea8878", - "type":"text", - "text":"~~[[주간 유류탱크 점검]]~~", - "styleAttributes":{}, - "x":1664, - "y":53057, - "width":408, - "height":60 - }, { "id":"d3906f5b9a0b752e", "type":"text", @@ -9794,44 +9866,13 @@ "height":60 }, { - "id":"b151e5ebb3f7ae85", + "id":"4521e371b5199ead", "type":"text", - "text":"~~[[부대안전진단 결과]] 결과 후속조치 보고,이동섭,~5.1~~", + "text":"~~[[실내 공기질 측정]], 1교(5개소~~)", "styleAttributes":{}, - "x":1664, - "y":53177, + "x":1256, + "y":53117, "width":408, - "height":60, - "color":"1" - }, - { - "id":"c47e4d1e16bb919a", - "type":"text", - "text":"26년 [[월하준비]] 시행 지침, 유재형", - "styleAttributes":{}, - "x":1664, - "y":53237, - "width":408, - "height":70 - }, - { - "id":"69a2b70a782c3a6e", - "type":"text", - "text":"~~[[30연대 26년도 예산]], 견적서 접수, 계획보고,안일남~~", - "styleAttributes":{}, - "x":826, - "y":53057, - "width":430, - "height":60 - }, - { - "id":"f5925b18cfad19ae", - "type":"text", - "text":"~~[[보급품 수령 , 분배, 반납]], 수령, 15시,수리부속창고, 이승민~~", - "styleAttributes":{}, - "x":826, - "y":53177, - "width":430, "height":60 }, { @@ -9845,66 +9886,16 @@ "height":60 }, { - "id":"dbc61657533562bf", + "id":"b151e5ebb3f7ae85", "type":"text", - "text":"~~국방부 종합 지시로 여성필수시설 및 여성화장실 현황 메모에 올렸습니다.~~ \n~~내일 4. 28.(화) 오전까지 작성 부탁드립니다~~. ", + "text":"~~[[부대안전진단 결과]] 결과 후속조치 보고,이동섭,~5.1~~", "styleAttributes":{}, - "x":826, - "y":53237, - "width":430, - "height":140 - }, - { - "id":"b1a08c3d8533d983", - "type":"text", - "text":"- [x] 예방정비,3502호", - "styleAttributes":{}, - "x":826, - "y":53377, - "width":428, - "height":60 - }, - { - "id":"0208b707d3ba8ae1", - "type":"text", - "text":"[[장비]] 재산정리(2,4중대)", - "styleAttributes":{}, - "x":826, - "y":53497, - "width":428, - "height":60 - }, - { - "id":"60ac506e0039fdbb", - "type":"text", - "text":"~~[[연성세제 보급계획]] 불줄~~", - "styleAttributes":{}, - "x":826, - "y":53437, - "width":428, - "height":60 - }, - { - "id":"09e5b16122aa3a16", - "type":"text", - "text":"[[월하준비]] 계획 작성, ~30", - "styleAttributes":{}, - "x":398, - "y":52997, - "width":1264, + "x":1664, + "y":53177, + "width":408, "height":60, "color":"1" }, - { - "id":"9905e0e1a798ca93", - "type":"text", - "text":"- [x] 예방정비,1330호", - "styleAttributes":{}, - "x":398, - "y":53117, - "width":428, - "height":60 - }, { "id":"60409f1eb5897802", "type":"text", @@ -9927,12 +9918,12 @@ "color":"1" }, { - "id":"5675cef2cb7fd98e", + "id":"9905e0e1a798ca93", "type":"text", - "text":"~~계량기 업체, 사용자보수비로 집행, 01071921116~~", + "text":"- [x] 예방정비,1330호", "styleAttributes":{}, - "x":826, - "y":53557, + "x":398, + "y":53117, "width":428, "height":60 }, @@ -9947,42 +9938,92 @@ "height":60 }, { - "id":"c549c1d00f831c7e", + "id":"69a2b70a782c3a6e", "type":"text", - "text":"# 5. 4 . (월) ", + "text":"~~[[30연대 26년도 예산]], 견적서 접수, 계획보고,안일남~~", "styleAttributes":{}, - "x":410, - "y":54400, + "x":826, + "y":53057, + "width":430, + "height":60 + }, + { + "id":"f4ec90fe1b4ef10b", + "type":"text", + "text":"~~[[재난안전통신망]], 운용자 교육,숙달,유재형,==1000==,김낙중영웅실~~", + "styleAttributes":{}, + "x":1256, + "y":53177, + "width":408, + "height":60 + }, + { + "id":"f5925b18cfad19ae", + "type":"text", + "text":"~~[[보급품 수령 , 분배, 반납]], 수령, 15시,수리부속창고, 이승민~~", + "styleAttributes":{}, + "x":826, + "y":53177, + "width":430, + "height":60 + }, + { + "id":"c47e4d1e16bb919a", + "type":"text", + "text":"26년 [[월하준비]] 시행 지침, 유재형", + "styleAttributes":{}, + "x":1664, + "y":53237, + "width":408, + "height":70 + }, + { + "id":"dbc61657533562bf", + "type":"text", + "text":"~~국방부 종합 지시로 여성필수시설 및 여성화장실 현황 메모에 올렸습니다.~~ \n~~내일 4. 28.(화) 오전까지 작성 부탁드립니다~~. ", + "styleAttributes":{}, + "x":826, + "y":53237, + "width":430, + "height":140 + }, + { + "id":"b1a08c3d8533d983", + "type":"text", + "text":"- [x] 예방정비,3502호", + "styleAttributes":{}, + "x":826, + "y":53377, "width":428, "height":60 }, { - "id":"c88d28f1f29e579a", + "id":"60ac506e0039fdbb", "type":"text", - "text":"# 5. 6.(수)", + "text":"~~[[연성세제 보급계획]] 불줄~~", "styleAttributes":{}, - "x":1246, - "y":54400, - "width":408, + "x":826, + "y":53437, + "width":428, "height":60 }, { - "id":"9cbb738d814a8667", + "id":"5675cef2cb7fd98e", "type":"text", - "text":"# 5. 5 . (화) ", + "text":"~~계량기 업체, 사용자보수비로 집행, 01071921116~~", "styleAttributes":{}, - "x":838, - "y":54400, - "width":408, + "x":826, + "y":53557, + "width":428, "height":60 }, { - "id":"d5797f8b13969207", + "id":"0208b707d3ba8ae1", "type":"text", - "text":"# 5. 8. (금) ", + "text":"[[장비]] 재산정리(2,4중대)", "styleAttributes":{}, - "x":2082, - "y":54400, + "x":826, + "y":53497, "width":428, "height":60 }, @@ -9996,10 +10037,50 @@ "width":428, "height":60 }, + { + "id":"9cbb738d814a8667", + "type":"text", + "text":"# 5. 5 . (화) ", + "styleAttributes":{}, + "x":838, + "y":54400, + "width":408, + "height":60 + }, + { + "id":"c88d28f1f29e579a", + "type":"text", + "text":"# 5. 6.(수)", + "styleAttributes":{}, + "x":1246, + "y":54400, + "width":408, + "height":60 + }, + { + "id":"c549c1d00f831c7e", + "type":"text", + "text":"# 5. 4 . (월) ", + "styleAttributes":{}, + "x":410, + "y":54400, + "width":428, + "height":60 + }, + { + "id":"d5797f8b13969207", + "type":"text", + "text":"# 5. 8. (금) ", + "styleAttributes":{}, + "x":2082, + "y":54400, + "width":428, + "height":60 + }, { "id":"525a1f67e97621fc", "type":"text", - "text":"[[대한민국 안전대전환 집중 안전점검]] 결과보고,이동섭", + "text":"~~[[대한민국 안전대전환 집중 안전점검]] 결과보고,이동섭~~", "styleAttributes":{}, "x":410, "y":54460, @@ -10014,7 +10095,7 @@ "styleAttributes":{}, "x":415, "y":54520, - "width":2120, + "width":2095, "height":100, "color":"3" }, @@ -10025,20 +10106,9 @@ "styleAttributes":{}, "x":415, "y":54620, - "width":2100, + "width":2095, "height":60 }, - { - "id":"e74022528663d1cd", - "type":"text", - "text":"- [ ] [[대한민국 안전대전환 집중 안전점검]],~5.15,이동섭", - "styleAttributes":{}, - "x":410, - "y":54780, - "width":1672, - "height":60, - "color":"3" - }, { "id":"70e3756a4107a300", "type":"text", @@ -10046,10 +10116,21 @@ "styleAttributes":{}, "x":410, "y":54680, - "width":1672, + "width":2100, "height":100, "color":"1" }, + { + "id":"e74022528663d1cd", + "type":"text", + "text":"- [ ] [[대한민국 안전대전환 집중 안전점검]],~5.15,이동섭", + "styleAttributes":{}, + "x":410, + "y":54780, + "width":2100, + "height":60, + "color":"3" + }, { "id":"70acb7641eb090b5", "type":"text", @@ -10057,20 +10138,10 @@ "styleAttributes":{}, "x":410, "y":54840, - "width":1672, + "width":2100, "height":60, "color":"3" }, - { - "id":"10277221e91b693d", - "type":"text", - "text":"- [ ] 26년 전반기 안전보건확보의무 이행 자율 점검 결과보고, 이동섭,~6.15", - "styleAttributes":{}, - "x":415, - "y":54900, - "width":1672, - "height":60 - }, { "id":"5ec70a4d8ecdedbd", "type":"text", @@ -10078,51 +10149,31 @@ "styleAttributes":{}, "x":410, "y":54960, - "width":1672, + "width":2100, "height":105, "color":"1" }, { - "id":"4fa9f1831341f6d3", + "id":"10277221e91b693d", "type":"text", - "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#3교육대 화생방 정화통 보유가 없어 추가 보급이 필요]]", + "text":"- [ ] 26년 전반기 안전보건확보의무 이행 자율 점검 결과보고, 이동섭,~6.15", "styleAttributes":{}, - "x":-380, - "y":54990, - "width":620, - "height":75 - }, - { - "id":"b20b938fa91825f1", - "type":"text", - "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#**전교육대 기간병 물자없다.**]]", - "styleAttributes":{}, - "x":-380, - "y":55065, - "width":620, - "height":75 + "x":415, + "y":54900, + "width":2095, + "height":60 }, { "id":"62316c284b3d8c3a", "type":"text", - "text":"9중대장 [[지휘관 교체 재물조사]] ", + "text":"~~9중대장 [[지휘관 교체 재물조사]]~~ ", "styleAttributes":{}, "x":415, "y":55065, - "width":1244, + "width":1239, "height":60, "color":"1" }, - { - "id":"9b3e6880e4ce7597", - "type":"text", - "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#연대 전체 방독면 두건에 개인주기]]", - "styleAttributes":{}, - "x":-380, - "y":55140, - "width":620, - "height":75 - }, { "id":"a0df65869f65c184", "type":"text", @@ -10130,7 +10181,7 @@ "styleAttributes":{}, "x":415, "y":55125, - "width":1264, + "width":1239, "height":65 }, { @@ -10140,144 +10191,10 @@ "styleAttributes":{}, "x":410, "y":55190, - "width":1264, - "height":70, + "width":1244, + "height":66, "color":"4" }, - {"id":"aca9f04b80312249","type":"file","file":"부대운영진단.md","x":-1620,"y":54420,"width":428,"height":910}, - { - "id":"8edf7a0bf9d8fbdc", - "type":"text", - "text":"- [ ] [[inbox/위임보수|위임보수]] 추적확인", - "styleAttributes":{}, - "x":-2080, - "y":54420, - "width":428, - "height":60 - }, - { - "id":"1f56b9f284517a04", - "type":"text", - "text":"- [ ] [[30연대 26년도 예산]]", - "styleAttributes":{}, - "x":-2080, - "y":54480, - "width":428, - "height":60 - }, - { - "id":"652cd6e07c237a4b", - "type":"text", - "text":"- [ ] 1교육대 교육수료주 통합이동정비 추속조치,임대원\n\t- [ ] 방독면 폐처리:1중대16,2중대10,3중대9,4중대27\n\t- [ ] 총기 폐처리:2중대 1정(손망실), 4중대2정", - "styleAttributes":{}, - "x":-2080, - "y":54540, - "width":428, - "height":200 - }, - { - "id":"e96c8048f57d504a", - "type":"text", - "text":"- [ ] 11중대, 핸드토키,1대(cpl10215),정비불가,불용신청,조희철, 연말에 폐처리 요청", - "styleAttributes":{}, - "x":-2080, - "y":54740, - "width":428, - "height":80 - }, - {"id":"a8aeb8498dd3bfb4","type":"file","file":"대검 현황.md","x":-1190,"y":54930,"width":460,"height":960}, - { - "id":"842f931940bac140", - "type":"text", - "text":"[[장비]] 보급예정", - "styleAttributes":{}, - "x":-1190, - "y":54835, - "width":382, - "height":60 - }, - { - "id":"d6da653b113626d6", - "type":"text", - "text":"![[검차#‼️ 12. 29. 검차확인‼️]]", - "styleAttributes":{}, - "x":-1192, - "y":54420, - "width":384, - "height":415 - }, - { - "id":"3db6a78f47c801b5", - "type":"text", - "text":"- [ ] 1분기 장비 탄약 관리실태 현장 확인 결과 조치해야할 사항\n\t- [ ] 관련근거\n\t\t- [ ] 육규 428 군수품 및 재산출납관리 규정\n\t\t- [ ] 유규 465 탄약관리규정\n\t\t- [ ] 육규 471 장비관리규정\n\t\t- [ ] 육규 742 화생방 장비 물자 관리규정\n\t- [ ] 은닉탄 회수함 보완\n\t- [ ] 저장화생방 장비물자 관리제웟표 최신화\n\t- [ ] 부대행정압무 총기결산, 전산대장 내용 누락\n\t- [ ] 총기관리책임관 정(교육대장,) cctv 확인\n\t- [ ] 정비지시서 미완결 처리(7일이내)", - "styleAttributes":{}, - "x":-2080, - "y":54820, - "width":428, - "height":450, - "color":"1" - }, - { - "id":"5b63b712f1db77d7", - "type":"text", - "text":"- [ ] 지역상생 급식비 집행,46백만원,장성국\n\t- [x] 1차 3.21(토)~22(일)\n\t- [ ] 2차 6.6(토)~7(일)\n\t- [ ] 3차 9.19(토)~20(일)\n\t- [ ] 4차 11.14(토)~15(일)", - "styleAttributes":{}, - "x":-2608, - "y":55070, - "width":491, - "height":200, - "color":"1" - }, - { - "id":"38b6436bf2e4854a", - "type":"text", - "text":"- [ ] 26년 육군 안전관리 e러닝 교육,수료증 제출,일반관리자과정,고재은,빅에듀,산업안전보건교육우닌,step", - "styleAttributes":{}, - "x":-2608, - "y":54940, - "width":491, - "height":130 - }, - { - "id":"26a76cd52036d7b8", - "type":"text", - "text":"- [ ] 제설제 보유 13개,전투물자 창고", - "styleAttributes":{}, - "x":-2608, - "y":54880, - "width":491, - "height":60 - }, - { - "id":"00bd4a46ec37b9ee", - "type":"text", - "text":"- [ ] 연무5동 숙소관리\n\t- [ ] 전기검침\n\t- [ ] 보일러 점검(비밀번호:0000)\n- [ ] 난방보일러(왼촉)압력조절 0.4이하\n- [ ] 난방온도 설정", - "styleAttributes":{}, - "x":-2608, - "y":54660, - "width":491, - "height":220 - }, - { - "id":"39bd6d40c2da9931", - "type":"text", - "text":"- [ ] 개인장구류 부족분 현황 (군지대 보급반 김용대 주무관)\n다용도 파우치 -1\n수통파우치 -164\n수류탄파우치 -10\n30발탄창파우치 -20\n차이 발생입니다", - "styleAttributes":{}, - "x":-2608, - "y":54420, - "width":491, - "height":240 - }, - { - "id":"6dfe2fedb8d13dfb", - "type":"text", - "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#3교육대 물자분류 A형 , 목룍표제작]]", - "styleAttributes":{}, - "x":-380, - "y":55218, - "width":620, - "height":75 - }, { "id":"65605a589a2a19a3", "type":"text", @@ -10285,49 +10202,48 @@ "styleAttributes":{}, "x":415, "y":55260, - "width":1264, + "width":2095, "height":60, "color":"1" }, - { - "id":"a700daaea885d709", - "type":"text", - "text":"- [ ] 국방부 나라배움터 인권교육, 자살예방교육 떴습니당.성인지 원격교육\n\n신청하시길 바랍니다~", - "styleAttributes":{}, - "x":-2080, - "y":55270, - "width":428, - "height":130, - "color":"3" - }, - { - "id":"82c4bffbd6a84cde", - "type":"text", - "text":"- [ ] 월간 유류/가스 결산\n\t- 소모:난방유류, 취사장\n\t- 소모:총기손질유\n\t- 소모:취사장,난방용가스소모\n\t- 소모:장비용(발전기,의무과)", - "styleAttributes":{}, - "x":-2608, - "y":55270, - "width":491, - "height":190 - }, - { - "id":"4abea30dab303e41", - "type":"text", - "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#1교육대 물자분류 A형, 목록표제작]]", - "styleAttributes":{}, - "x":-380, - "y":55293, - "width":620, - "height":75 - }, { "id":"89d230ead45725f1", "type":"text", "text":"~~[[실내 공기질 측정]],1교(5개소)~~", "styleAttributes":{}, - "x":427, - "y":55380, - "width":428, + "x":413, + "y":55383, + "width":425, + "height":60 + }, + { + "id":"38b009243714e587", + "type":"text", + "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#운영용 대검 손질 및 정비]]", + "styleAttributes":{}, + "x":2086, + "y":55340, + "width":424, + "height":117 + }, + { + "id":"c30746300da2cbce", + "type":"text", + "text":"~~[[보급품 수령 , 분배, 반납]], 신청,황인찬~~", + "styleAttributes":{}, + "x":1653, + "y":55388, + "width":424, + "height":65 + }, + { + "id":"2842b9a28ec1d123", + "type":"text", + "text":"~~교육수료주 [[통합이동정비]] , 3교,오전,임대원~~", + "styleAttributes":{}, + "x":1246, + "y":55320, + "width":408, "height":60 }, { @@ -10337,28 +10253,28 @@ "styleAttributes":{}, "x":415, "y":55320, - "width":428, + "width":423, "height":60, "color":"1" }, { "id":"84bc085de9e32137", "type":"text", - "text":"- [ ] 체력검정", + "text":"- [ ] 체력검정 #미참석", "styleAttributes":{}, - "x":1675, - "y":55320, - "width":403, + "x":1653, + "y":55328, + "width":424, "height":60 }, { - "id":"c30746300da2cbce", + "id":"5c02d624d7ba49a9", "type":"text", - "text":"[[보급품 수령 , 분배, 반납]], 신청,황인찬", + "text":"~~5월 [[발전기기술검사]] 오전,임대원,임헌준~~", "styleAttributes":{}, - "x":1675, + "x":1246, "y":55380, - "width":403, + "width":408, "height":60 }, { @@ -10366,385 +10282,173 @@ "type":"text", "text":"[[사용자보수심의]] 준비,3분기,박관식", "styleAttributes":{}, - "x":417, - "y":55430, + "x":425, + "y":55446, "width":426, "height":80, "color":"4" }, { - "id":"26cd90fb4a0934a8", + "id":"944b191ed55b91ec", "type":"text", - "text":"~~[[은닉초과재산탄약회수활동]] 결과보고,한서욱~~", + "text":"~~[[inbox/위임보수|위임보수]] 토의.$ 10시, 영선대 회의실~~", "styleAttributes":{}, - "x":1276, - "y":55440, - "width":408, - "height":60, - "color":"1" + "x":1653, + "y":55523, + "width":424, + "height":60 }, { "id":"93a1857d1ba4b868", "type":"text", - "text":"[[예방정비]], 통신장비,앰프", + "text":"~~[[예방정비]], 통신장비,앰프~~", "styleAttributes":{}, - "x":1684, - "y":55440, - "width":403, + "x":1653, + "y":55459, + "width":424, "height":60 }, - { - "id":"2842b9a28ec1d123", - "type":"text", - "text":"교육수료주 [[통합이동정비]] , 3교,오전,임대원", - "styleAttributes":{}, - "x":1267, - "y":55320, - "width":408, - "height":60 - }, - { - "id":"5c02d624d7ba49a9", - "type":"text", - "text":"5월 [[발전기기술검사]] 오전,임대원,임헌준", - "styleAttributes":{}, - "x":1272, - "y":55380, - "width":408, - "height":60 - }, - { - "id":"00a3d07bc3453f39", - "type":"text", - "text":"- [ ] 구형방상외피 추가지급, 1교 916. 2교 916 3쿄 426", - "styleAttributes":{}, - "x":-2080, - "y":55400, - "width":428, - "height":80 - }, - { - "id":"7d21d11648cea686", - "type":"text", - "text":"[[inbox/안전점검의날|안전점검의날]], 5월행사실시,김수형", - "styleAttributes":{}, - "x":417, - "y":55500, - "width":453, - "height":60, - "color":"1" - }, - { - "id":"f3c5bef6ce555b2b", - "type":"text", - "text":"[[부대운영진단 ]] 결과 종합보고,박병노", - "styleAttributes":{}, - "x":1276, - "y":55500, - "width":442, - "height":60, - "color":"1" - }, - { - "id":"944b191ed55b91ec", - "type":"text", - "text":"[[inbox/위임보수|위임보수]] 토의.$ 10시, 영선대 회의실", - "styleAttributes":{}, - "x":1718, - "y":55500, - "width":360, - "height":60 - }, - { - "id":"93ba3ec15627223d", - "type":"text", - "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#**총기전환계획과 물자인수인계 계획은 평가시 무조건 본다.**]]", - "styleAttributes":{}, - "x":-380, - "y":55368, - "width":620, - "height":75 - }, - { - "id":"c56a63ddd55f34ec", - "type":"text", - "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#탄약은 경계태세 1단계 일때 분배한다.]]", - "styleAttributes":{}, - "x":-380, - "y":55443, - "width":620, - "height":75 - }, - { - "id":"63c6112834e79f8c", - "type":"text", - "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#전시 차량]]", - "styleAttributes":{}, - "x":-380, - "y":55518, - "width":620, - "height":75 - }, - { - "id":"13232148bbb26330", - "type":"text", - "text":"- [ ] 2교육대 방독면 폐처리 정비의뢰,강재구\n\t- [ ] 전산상 반납후 전화요청\n\t- [ ] 2교육대 방독면 총 131개 입니다..!\n\t\t- [ ] 5중대 - 총 22개\n\t\t중좌 17개\n\t\t대좌 2개\n\t\t중우 3개\n\t\t\n\t\t- [ ] 6중대 - 총 32개\n\t\t소좌 3개\n\t\t중좌 21개\n\t\t대좌 8개\n\t\t\n\t\t- [ ] 7중대 - 총 65개\n\t\t중좌 61개\n\t\t대좌 4개\n\t\t\n\t\t- [ ] 8중대 - 총 12개\n\t\t중좌 8개\n\t\t중우 4개", - "styleAttributes":{}, - "x":-1620, - "y":55330, - "width":428, - "height":510, - "color":"1" - }, - { - "id":"6c7fc6dd008ac378", - "type":"text", - "text":"- [ ] 3교육대통합이동정비 후속조치\n\t- [ ] 방독면 입고정비:안면부8,휴대주머니68(9중3,20,10중3,8,11중2,25,12중0,15)\n\t- [ ] k2소총:입고정비17(9중5,10중2,11중8,12중2)\n\t- [ ] 통신장비(워키토키):입고정비2(11중1,12중1)", - "styleAttributes":{}, - "x":-2080, - "y":55480, - "width":428, - "height":240 - }, - { - "id":"ac7bf954a65e015d", - "type":"text", - "text":"[[세탁지원]], 크린센터, 김용환", - "styleAttributes":{}, - "x":427, - "y":55560, - "width":355, - "height":60 - }, - { - "id":"be9edd586e47de1a", - "type":"text", - "text":"대검실셈,3교", - "styleAttributes":{}, - "x":1276, - "y":55560, - "width":504, - "height":60 - }, - { - "id":"31fd269faa6681da", - "type":"text", - "text":"1. 관리전환, 12보병여단, 보온배식대 2개, 식기세척기 2개\n2. 에어컨 재산수입 1대?\n3. 다단식운반차 6개 ?\n4. 본부중대, 방독면 폐처리 21개\n5. 3교육대, 방독면 폐처리 37개(교육용은 교훈처 신품지급건의)\n6. ", - "styleAttributes":{}, - "x":-2608, - "y":55460, - "width":491, - "height":270 - }, - { - "id":"1c7a43ac3db7858e", - "type":"text", - "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#입영심사대 인수인계]]", - "styleAttributes":{}, - "x":-380, - "y":55593, - "width":620, - "height":75 - }, - { - "id":"07266264beea378d", - "type":"text", - "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#임무수행철 최신화]]", - "styleAttributes":{}, - "x":-380, - "y":55668, - "width":620, - "height":75 - }, - { - "id":"88a2745dfb50ab28", - "type":"text", - "text":"[[통합이동정비]], 1교 후속조치, ", - "styleAttributes":{}, - "x":427, - "y":55620, - "width":453, - "height":60 - }, - { - "id":"7b0817501c199aaf", - "type":"text", - "text":"- [ ] 3교 기계실 스팀 메인 증기관 감압변 교체,서원석,3분기위임보수반영필요", - "styleAttributes":{}, - "x":-1620, - "y":55840, - "width":428, - "height":90, - "color":"1" - }, - { - "id":"a52417529367df33", - "type":"text", - "text":"- [ ] 장비관리부대장 임무\n\t1. ", - "styleAttributes":{}, - "x":-1620, - "y":55930, - "width":428, - "height":110 - }, - { - "id":"ff3c8beeb2e27fa3", - "type":"text", - "text":"- [ ] 우리연대 구형 침대 전량 교체예정(9월경)\n* 육군 전체물량을 우리쪽으로 불줄예정\n* 조립체가 아니라 침대셋트입니다.(참고로만 알고 계세요.)", - "styleAttributes":{}, - "x":-2080, - "y":55720, - "width":428, - "height":165 - }, - { - "id":"585b5eb83489a820", - "type":"text", - "text":"- [ ] 충성!\n30연대 입니다.\n30연대 공사 가능 기간 3.30.(월)부터 2개 교육대 입영해 있어 가능합니다.\n* 단 2층 손 세척장 철거 기준입니다!!", - "styleAttributes":{}, - "x":-2080, - "y":55885, - "width":428, - "height":195 - }, - { - "id":"305a0d70e23bd9f0", - "type":"text", - "text":"- [ ] 사이버 필수 이수교육 \n\t1. 민주주의와헌법 수호\n\t2. 청령\n\t3. 장애인인식개선\n\t4. 아동학대\n\t5. 자살예방\n\t6. 인권\n\t7. 안전\n\t8. 다문화이해교육\n\t9. 성인지교육\n1. Mmooc\n2. 나라배움터\n3. 산업안전보건교육원\n4. ", - "styleAttributes":{}, - "x":-2640, - "y":55755, - "width":523, - "height":485 - }, - { - "id":"5bd83f9f83052f4e", - "type":"text", - "text":"~~[[예방정비]] , 통신, 999~~", - "styleAttributes":{}, - "x":427, - "y":55680, - "width":453, - "height":60, - "color":"1" - }, - { - "id":"4a554852b2eda5e1", - "type":"text", - "text":"- [ ] 부대운영진단 후속조치 추진2![[부대운영진단#치장물자]]", - "styleAttributes":{}, - "x":427, - "y":55740, - "width":620, - "height":80 - }, { "id":"ea35249138dc263d", "type":"text", "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#무기고]]", "styleAttributes":{}, - "x":427, - "y":55820, - "width":620, - "height":80 + "x":2081, + "y":55457, + "width":429, + "height":133 }, { - "id":"0e5e03cf87567a84", + "id":"7d21d11648cea686", "type":"text", - "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#총기관리]]", + "text":"~~[[inbox/안전점검의날|안전점검의날]], 5월행사실시,김수형~~", "styleAttributes":{}, - "x":427, - "y":55900, - "width":620, - "height":80 + "x":415, + "y":55526, + "width":423, + "height":60, + "color":"1" }, { - "id":"5c0a93a4dd9699f9", + "id":"f3c5bef6ce555b2b", "type":"text", - "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#장비예방정비]]", + "text":"~~[[부대운영진단 ]] 결과 종합보고,박병노~~", "styleAttributes":{}, - "x":427, - "y":55982, - "width":620, - "height":80 + "x":1246, + "y":55493, + "width":408, + "height":60, + "color":"1" }, { - "id":"afac3da5de5fd394", + "id":"26cd90fb4a0934a8", "type":"text", - "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#소방계획서 작성]]", + "text":"~~[[은닉초과재산탄약회수활동]] 결과보고,한서욱~~", "styleAttributes":{}, - "x":427, - "y":56062, - "width":620, - "height":80 + "x":1246, + "y":55433, + "width":408, + "height":60, + "color":"1" }, { - "id":"c8e05f2942445908", + "id":"ac7bf954a65e015d", "type":"text", - "text":"- [x] 부대운영진단 후속조치 추진3![[부대운영진단#연대 총기관리관 인사명령 용어 수정 총기 관리책임관, 총기관리담당관]]", + "text":"~~[[세탁지원]], 크린센터, 김용환~~", "styleAttributes":{}, - "x":427, - "y":56142, - "width":620, - "height":80 + "x":425, + "y":55586, + "width":413, + "height":60 }, { - "id":"38b009243714e587", + "id":"37ed45ba7c64dce9", "type":"text", - "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#운영용 대검 손질 및 정비]]#", + "text":"[[차량 2부제]], 추가", "styleAttributes":{}, - "x":427, - "y":56222, - "width":620, - "height":80 + "x":1653, + "y":55583, + "width":424, + "height":60 }, { - "id":"945e1799f06bb689", + "id":"e399dfd2fbb86722", "type":"text", - "text":"- [ ] 부대운영진단 후속조치 추진#3![[부대운영진단#부대운영진단 정식공문 후속조치내용#치장총기 진고포장 후 용도 변경 조치]]#", + "text":"[[30연대 26년도 예산]], 휘사장,에어커튼,이동엽", "styleAttributes":{}, - "x":427, - "y":56304, - "width":620, - "height":80 + "x":2081, + "y":55590, + "width":429, + "height":73 }, { - "id":"8576fda0725c3569", + "id":"be9edd586e47de1a", "type":"text", - "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#총기함 내부 개인총기 위치 지정 및 정리정돈]]#", + "text":"~~대검실셈,3교~~", "styleAttributes":{}, - "x":427, - "y":56384, - "width":620, - "height":80 + "x":1251, + "y":55553, + "width":403, + "height":60 }, { - "id":"d4014654bec0f85d", + "id":"5bd83f9f83052f4e", "type":"text", - "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#파견자 총기 전산 조치(보관 위치변경)]]#", + "text":"~~[[예방정비]] , 통신, 999~~", "styleAttributes":{}, - "x":427, - "y":56464, - "width":620, - "height":80 + "x":425, + "y":55706, + "width":413, + "height":60, + "color":"1" }, { - "id":"6bcfd307abebf1f1", + "id":"88a2745dfb50ab28", "type":"text", - "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#총기취급인원 신원조사 의뢰]]#", + "text":"[[통합이동정비]], 1교 후속조치, ", "styleAttributes":{}, - "x":427, - "y":56544, - "width":620, - "height":80 + "x":425, + "y":55646, + "width":413, + "height":60 + }, + { + "id":"e1321b58f738b0d5", + "type":"text", + "text":"~~[[정수기]]., 주이원사~~", + "styleAttributes":{}, + "x":1653, + "y":55639, + "width":424, + "height":60 + }, + { + "id":"4a554852b2eda5e1", + "type":"text", + "text":"- [ ] 부대운영진단 후속조치 추진2![[부대운영진단#치장물자]]", + "styleAttributes":{}, + "x":1653, + "y":55703, + "width":424, + "height":97 + }, + { + "id":"f4b7aeb2df0f00a3", + "type":"text", + "text":"[[주간 유류탱크 점검]] #미실시", + "styleAttributes":{}, + "x":2081, + "y":55669, + "width":429, + "height":60 }, { "id":"5c9f335ae7cd5b83", "type":"text", "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#미사용 전투장구류 및 비품 일제 재산정리(야전삽, TV거치대등)]]#", "styleAttributes":{}, - "x":427, - "y":56624, + "x":425, + "y":55928, "width":620, "height":80 }, @@ -10753,38 +10457,28 @@ "type":"text", "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#화생방 물자 신회성 평가후 재산정리 필요(정화통반납)]]#", "styleAttributes":{}, - "x":427, - "y":56704, + "x":425, + "y":55848, "width":620, "height":80 }, { - "id":"f512276f29fdb20e", + "id":"5c0a93a4dd9699f9", "type":"text", - "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#치장물자 실셈후 재포장 상태 확인/조치]]#", + "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#장비예방정비]]", "styleAttributes":{}, - "x":427, - "y":56784, + "x":425, + "y":56008, "width":620, "height":80 }, { - "id":"dd6e18252f55b2ad", + "id":"afac3da5de5fd394", "type":"text", - "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#백신 냉장고 잠금장치 비밀번호 변경 및 잠금상태 유지]]#", + "text":"- [x] 부대운영진단 후속조치 추진3![[부대운영진단#소방계획서 작성]]", "styleAttributes":{}, - "x":427, - "y":56864, - "width":620, - "height":80 - }, - { - "id":"700ea1c28d051364", - "type":"text", - "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#취사기구류(전처리 도구, 취반기) 및 조미료 위생(보관)상태 개선]]#", - "styleAttributes":{}, - "x":427, - "y":56944, + "x":425, + "y":56088, "width":620, "height":80 }, @@ -10793,8 +10487,88 @@ "type":"text", "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#식당 본관 <-> 별관 이동로 정비(미끄럼 방지대책 강구)]]#", "styleAttributes":{}, - "x":427, - "y":57020, + "x":425, + "y":56168, + "width":620, + "height":80 + }, + { + "id":"c8e05f2942445908", + "type":"text", + "text":"- [x] 부대운영진단 후속조치 추진3![[부대운영진단#연대 총기관리관 인사명령 용어 수정 총기 관리책임관, 총기관리담당관]]", + "styleAttributes":{}, + "x":425, + "y":56248, + "width":620, + "height":80 + }, + { + "id":"0e5e03cf87567a84", + "type":"text", + "text":"- [x] 부대운영진단 후속조치 추진3![[부대운영진단#총기관리]]", + "styleAttributes":{}, + "x":425, + "y":56328, + "width":620, + "height":80 + }, + { + "id":"8576fda0725c3569", + "type":"text", + "text":"- [x] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#총기함 내부 개인총기 위치 지정 및 정리정돈]]#", + "styleAttributes":{}, + "x":425, + "y":56490, + "width":620, + "height":80 + }, + { + "id":"945e1799f06bb689", + "type":"text", + "text":"- [x] 부대운영진단 후속조치 추진#3![[부대운영진단#부대운영진단 정식공문 후속조치내용#치장총기 진고포장 후 용도 변경 조치]]#", + "styleAttributes":{}, + "x":425, + "y":56410, + "width":620, + "height":80 + }, + { + "id":"d4014654bec0f85d", + "type":"text", + "text":"- [x] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#파견자 총기 전산 조치(보관 위치변경)]]#", + "styleAttributes":{}, + "x":425, + "y":56570, + "width":620, + "height":80 + }, + { + "id":"6bcfd307abebf1f1", + "type":"text", + "text":"- [x] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#총기취급인원 신원조사 의뢰]]#", + "styleAttributes":{}, + "x":425, + "y":56650, + "width":620, + "height":80 + }, + { + "id":"dd6e18252f55b2ad", + "type":"text", + "text":"- [x] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#백신 냉장고 잠금장치 비밀번호 변경 및 잠금상태 유지]]#", + "styleAttributes":{}, + "x":425, + "y":56730, + "width":620, + "height":80 + }, + { + "id":"700ea1c28d051364", + "type":"text", + "text":"- [x] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#취사기구류(전처리 도구, 취반기) 및 조미료 위생(보관)상태 개선]]#", + "styleAttributes":{}, + "x":425, + "y":56810, "width":620, "height":80 }, @@ -10803,11 +10577,31 @@ "type":"text", "text":"[[장비]] 재산정리(2,4중대)", "styleAttributes":{}, - "x":427, - "y":57100, + "x":425, + "y":56890, "width":620, "height":60 }, + { + "id":"2e2fd29725872ef6", + "type":"text", + "text":"# 5. 15.(금)", + "styleAttributes":{}, + "x":2082, + "y":58760, + "width":428, + "height":60 + }, + { + "id":"aff7041b9b7979b6", + "type":"text", + "text":"[[대한민국 안전대전환 집중 안전점검]] 결과보고,이동섭", + "styleAttributes":{}, + "x":412, + "y":58820, + "width":2100, + "height":60 + }, { "id":"7dd07efd19437afa", "type":"text", @@ -10818,16 +10612,6 @@ "width":428, "height":60 }, - { - "id":"8717d8205a0d0404", - "type":"text", - "text":"# 5. 12 . (화) ", - "styleAttributes":{}, - "x":838, - "y":58760, - "width":428, - "height":60 - }, { "id":"69ded3212949759d", "type":"text", @@ -10838,6 +10622,16 @@ "width":408, "height":60 }, + { + "id":"8717d8205a0d0404", + "type":"text", + "text":"# 5. 12 . (화) ", + "styleAttributes":{}, + "x":838, + "y":58760, + "width":428, + "height":60 + }, { "id":"a9d814a6a172b13e", "type":"text", @@ -10849,95 +10643,598 @@ "height":60 }, { - "id":"2e2fd29725872ef6", + "id":"8edf7a0bf9d8fbdc", "type":"text", - "text":"# 5. 15.(금)", + "text":"- [ ] [[inbox/위임보수|위임보수]] 추적확인", "styleAttributes":{}, - "x":2082, - "y":58760, + "x":-2280, + "y":58780, "width":428, "height":60 }, + {"id":"aca9f04b80312249","type":"file","file":"부대운영진단.md","x":-1820,"y":58780,"width":428,"height":910}, + { + "id":"d6da653b113626d6", + "type":"text", + "text":"![[검차#‼️ 12. 29. 검차확인‼️]]", + "styleAttributes":{}, + "x":-1392, + "y":58780, + "width":384, + "height":415 + }, + { + "id":"4fa9f1831341f6d3", + "type":"text", + "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#3교육대 화생방 정화통 보유가 없어 추가 보급이 필요]]", + "styleAttributes":{}, + "x":-580, + "y":59350, + "width":620, + "height":75, + "color":"1" + }, + { + "id":"70be8c1d0b27783d", + "type":"text", + "text":"- [ ] 26년 전반기 안전보건확보의무 이행 자율 점검 결과보고, 이동섭,~6.15", + "styleAttributes":{}, + "x":412, + "y":59260, + "width":2095, + "height":60 + }, + { + "id":"427c932d3bcb954e", + "type":"text", + "text":"- [ ] [[일일 무기,탄약결산]]\n- [ ] 15:00, 업무 [[일일결산]] \n- [ ] 주단위 유류저장시설 점검 부대일지 입력", + "styleAttributes":{}, + "x":412, + "y":58880, + "width":2095, + "height":100, + "color":"3" + }, + { + "id":"1d6e4b0283705e74", + "type":"text", + "text":"- [ ] 26년 전반기 안전보건확보의무 이행 자율 점검 결과보고, 이동섭,~6.15", + "styleAttributes":{}, + "x":412, + "y":58980, + "width":2095, + "height":60 + }, + { + "id":"76e84e3ef6054e33", + "type":"text", + "text":"- [ ] [[부대운영진단]] 후속조치\n\t![[부대운영진단#연대 창고내 불필요 물자 반납, 불출, 소모하여 제로화]]", + "styleAttributes":{}, + "x":412, + "y":59040, + "width":2100, + "height":100, + "color":"3" + }, + { + "id":"788ad9d5b10f10b7", + "type":"text", + "text":"- [ ] 26년 [[시설물 정기 자체관리 대상시설 안전점검]],박관식,~5.31", + "styleAttributes":{}, + "x":412, + "y":59200, + "width":2100, + "height":60, + "color":"3" + }, + { + "id":"5290d34debf3f857", + "type":"text", + "text":"- [ ] [[대한민국 안전대전환 집중 안전점검]],~5.15,이동섭", + "styleAttributes":{}, + "x":412, + "y":59140, + "width":2100, + "height":60, + "color":"3" + }, + { + "id":"842f931940bac140", + "type":"text", + "text":"[[장비]] 보급예정", + "styleAttributes":{}, + "x":-1390, + "y":59195, + "width":382, + "height":60 + }, + {"id":"a8aeb8498dd3bfb4","type":"file","file":"대검 현황.md","x":-1390,"y":59290,"width":460,"height":960}, + { + "id":"39423ff05676cb95", + "type":"text", + "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#3교육대 화생방 정화통 보유가 없어 추가 보급이 필요]]", + "styleAttributes":{}, + "x":412, + "y":59320, + "width":2100, + "height":105, + "color":"3" + }, + { + "id":"b20b938fa91825f1", + "type":"text", + "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#**전교육대 기간병 물자없다.**]]", + "styleAttributes":{}, + "x":-580, + "y":59425, + "width":620, + "height":75, + "color":"1" + }, + { + "id":"9b3e6880e4ce7597", + "type":"text", + "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#연대 전체 방독면 두건에 개인주기]]", + "styleAttributes":{}, + "x":-580, + "y":59500, + "width":620, + "height":75, + "color":"1" + }, + { + "id":"c008f948961bedd1", + "type":"text", + "text":"- [ ] 나침반,비설치형,자기식,003354972,10개\n- [ ] 나침반,자기식,비설치형,M2,1개,005606596", + "styleAttributes":{}, + "x":412, + "y":59490, + "width":1244, + "height":66, + "color":"4" + }, + { + "id":"1f6f4c9d95ff6612", + "type":"text", + "text":"- [ ] 2교육대 8중대 방독면 4개 및 입고정비 완결처리,임대원,~5.11", + "styleAttributes":{}, + "x":412, + "y":59425, + "width":1239, + "height":65, + "color":"3" + }, + { + "id":"663e20b8d2fe739f", + "type":"text", + "text":"~~[[안전활동유공]]., 대상자 교육대별 1명선정, 주임보고~~", + "styleAttributes":{}, + "x":412, + "y":59816, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"f790aea1aaf2e3b2", + "type":"text", + "text":"[[통합이동정비]], 1교 후속조치, ", + "styleAttributes":{}, + "x":412, + "y":59696, + "width":413, + "height":60, + "color":"3" + }, + { + "id":"5956611612357074", + "type":"text", + "text":"[[장비]] 재산정리(2,4중대)", + "styleAttributes":{}, + "x":412, + "y":59756, + "width":620, + "height":60, + "color":"3" + }, + { + "id":"764887dcab5cf054", + "type":"text", + "text":"[[사용자보수심의]] 준비,3분기,박관식", + "styleAttributes":{}, + "x":412, + "y":59616, + "width":413, + "height":75, + "color":"4" + }, + { + "id":"f512276f29fdb20e", + "type":"text", + "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#치장물자 실셈후 재포장 상태 확인/조치]]#", + "styleAttributes":{}, + "x":415, + "y":59893, + "width":428, + "height":120, + "color":"3" + }, + { + "id":"21fffd15bf8dd4c1", + "type":"text", + "text":"[[발전기가동점검]] ", + "styleAttributes":{}, + "x":2062, + "y":59799, + "width":428, + "height":60 + }, + { + "id":"2bf3fef7750aacbe", + "type":"text", + "text":"[[하게 재난대비계획 기간]], 5.15~10.15,", + "styleAttributes":{}, + "x":2062, + "y":59739, + "width":428, + "height":60 + }, + { + "id":"c8816ab0076b3ec9", + "type":"text", + "text":"[[오수관로공사]], 본부중대옆~영선대 앞 도로, 신사이", + "styleAttributes":{}, + "x":825, + "y":59676, + "width":1672, + "height":60 + }, + { + "id":"7324e76270c1f6bb", + "type":"text", + "text":"[[inbox/위임보수|위임보수]],, 2분기 공사기간, 김광훈", + "styleAttributes":{}, + "x":825, + "y":59616, + "width":1672, + "height":60 + }, + { + "id":"1d02a78f79214a6f", + "type":"text", + "text":"[[월하준비]] 계획 작성, ~30, 계획작성은 취소, 추진진도만 작성", + "styleAttributes":{}, + "x":412, + "y":59556, + "width":2095, + "height":60, + "color":"1" + }, + { + "id":"6dfe2fedb8d13dfb", + "type":"text", + "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#3교육대 물자분류 A형 , 목룍표제작]]", + "styleAttributes":{}, + "x":-580, + "y":59578, + "width":620, + "height":75, + "color":"1" + }, + { + "id":"93ba3ec15627223d", + "type":"text", + "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#**총기전환계획과 물자인수인계 계획은 평가시 무조건 본다.**]]", + "styleAttributes":{}, + "x":-580, + "y":59728, + "width":620, + "height":75, + "color":"1" + }, + { + "id":"f4d43d8cc87c9e26", + "type":"text", + "text":"[[보급품 수령 , 분배, 반납]], 화장지,0830,박형주", + "styleAttributes":{}, + "x":2062, + "y":59919, + "width":428, + "height":60 + }, + { + "id":"3917c6beca5402b8", + "type":"text", + "text":"[[26년 30연대 전술훈련평가 수검자료 정리]] ftx, 1330", + "styleAttributes":{}, + "x":1248, + "y":59919, + "width":403, + "height":61 + }, + { + "id":"bb62396fc8cfcc0d", + "type":"text", + "text":"[[inbox/체육대회|체육대회]], 훈련소주최", + "styleAttributes":{}, + "x":2062, + "y":59859, + "width":428, + "height":60 + }, + { + "id":"29006030772b8796", + "type":"text", + "text":"~~[[정수기]] 업체 방문,~~ ", + "styleAttributes":{}, + "x":1248, + "y":59859, + "width":408, + "height":60 + }, { "id":"3952c15c924eaa9f", "type":"text", "text":"- [ ] 체력측정", "styleAttributes":{}, - "x":1266, - "y":58820, + "x":1245, + "y":59799, "width":408, "height":60 }, { - "id":"aff7041b9b7979b6", + "id":"b1cd0ffcb36c7db0", "type":"text", - "text":"[[대한민국 안전대전환 집중 안전점검]] 결과보고,이동섭", + "text":"~~[[군차량 매연 측정]], 53군지단,ㅡ~~", "styleAttributes":{}, - "x":410, - "y":58880, - "width":2100, + "x":1245, + "y":59739, + "width":408, + "height":60 + }, + { + "id":"dd5604b534ddb209", + "type":"text", + "text":"[[급식운영회의]], 5월, 1330,김낙중영옹실", + "styleAttributes":{}, + "x":1653, + "y":59739, + "width":408, + "height":60 + }, + { + "id":"5020a4baf388a507", + "type":"text", + "text":"~~[[폐자원매각대금]]철 제출, 군수과 환경담당,09시까지 제출~~", + "styleAttributes":{}, + "x":843, + "y":59816, + "width":405, + "height":60 + }, + { + "id":"c56a63ddd55f34ec", + "type":"text", + "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#탄약은 경계태세 1단계 일때 분배한다.]]", + "styleAttributes":{}, + "x":-580, + "y":59803, + "width":620, + "height":75, + "color":"1" + }, + { + "id":"63c6112834e79f8c", + "type":"text", + "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#전시 차량]]", + "styleAttributes":{}, + "x":-580, + "y":59878, + "width":620, + "height":75, + "color":"1" + }, + { + "id":"1c7a43ac3db7858e", + "type":"text", + "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#입영심사대 인수인계]]", + "styleAttributes":{}, + "x":-580, + "y":59953, + "width":620, + "height":75, + "color":"1" + }, + { + "id":"4abea30dab303e41", + "type":"text", + "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#1교육대 물자분류 A형, 목록표제작]]", + "styleAttributes":{}, + "x":-580, + "y":59653, + "width":620, + "height":75, + "color":"1" + }, + { + "id":"07266264beea378d", + "type":"text", + "text":"- [ ] 연대전술훈련평가 ![[26년 30연대 전술훈련평가 수검자료 정리#임무수행철 최신화]]", + "styleAttributes":{}, + "x":-580, + "y":60028, + "width":620, + "height":75, + "color":"1" + }, + { + "id":"bbfb2bcc08b8bfc4", + "type":"text", + "text":"~~[[하계재난대비계획]], 부대별확인사항,요청사항,14시,유재형~~", + "styleAttributes":{}, + "x":417, + "y":60013, + "width":428, "height":60, "color":"1" }, { - "id":"bb62396fc8cfcc0d", + "id":"25b4f80305a7747d", "type":"text", - "text":"[[inbox/체육대회|체육대회]], 훈련소주최", + "text":"[[폐자원매각대금]] 사용심의 보고", "styleAttributes":{}, - "x":2082, - "y":58940, + "x":415, + "y":60073, + "width":430, + "height":60, + "color":"1" + }, + { + "id":"a74cf86f3045e06c", + "type":"text", + "text":"[[지휘관 교체 재물조사]],7중대장(원사이재광)교체예정", + "styleAttributes":{}, + "x":2062, + "y":60043, "width":428, - "height":60 + "height":60, + "color":"1" }, { - "id":"21fffd15bf8dd4c1", + "id":"33318911e40b7df8", "type":"text", - "text":"[[발전기가동점검]] ", + "text":"[[보급품 수령 , 분배, 반납]], 소요파악,박형즈", "styleAttributes":{}, - "x":2082, - "y":58820, + "x":2062, + "y":59979, "width":428, - "height":60 + "height":64 }, { - "id":"534f1176c0a623ad", + "id":"3f0368602761d5d6", "type":"text", - "text":"# 5. 20. (수) ", + "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#화생방 물자 신회성 평가후 재산정리 필요(정화통반납)]]#", "styleAttributes":{}, - "x":1266, - "y":59440, - "width":408, - "height":60 + "x":-580, + "y":60146, + "width":620, + "height":80 }, { - "id":"90e8c058b27a13ab", + "id":"27ccf2defef97fc1", "type":"text", - "text":"# 5. 21.(목)", + "text":"~~취사장 발전기 확인~~", "styleAttributes":{}, - "x":1674, - "y":59440, - "width":408, - "height":60 + "x":415, + "y":60133, + "width":425, + "height":60, + "color":"1" }, { - "id":"4444f28e041bc74b", + "id":"13232148bbb26330", "type":"text", - "text":"# 5. 18. (월) , 당직근무", + "text":"- [ ] 2교육대 방독면 폐처리 정비의뢰,강재구\n\t- [ ] 전산상 반납후 전화요청\n\t- [ ] 2교육대 방독면 총 131개 입니다..!\n\t\t- [ ] 5중대 - 총 22개\n\t\t중좌 17개\n\t\t대좌 2개\n\t\t중우 3개\n\t\t\n\t\t- [ ] 6중대 - 총 32개\n\t\t소좌 3개\n\t\t중좌 21개\n\t\t대좌 8개\n\t\t\n\t\t- [ ] 7중대 - 총 65개\n\t\t중좌 61개\n\t\t대좌 4개\n\t\t\n\t\t- [ ] 8중대 - 총 12개\n\t\t중좌 8개\n\t\t중우 4개", "styleAttributes":{}, - "x":410, - "y":59440, + "x":-1820, + "y":59690, "width":428, - "height":60 + "height":510, + "color":"1" }, { - "id":"fb9016eb2b67d998", + "id":"7b0817501c199aaf", "type":"text", - "text":"# 5. 19.(화) ", + "text":"- [x] 3교 기계실 스팀 메인 증기관 감압변 교체,서원석,3분기위임보수반영필요", "styleAttributes":{}, - "x":838, - "y":59440, + "x":-1820, + "y":60200, "width":428, - "height":60 + "height":90 + }, + { + "id":"f134f587ba6b5ade", + "type":"text", + "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#미사용 전투장구류 및 비품 일제 재산정리(야전삽, TV거치대등)]]#", + "styleAttributes":{}, + "x":-580, + "y":60226, + "width":620, + "height":80 + }, + { + "id":"b36fb22822535957", + "type":"text", + "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#장비예방정비]]", + "styleAttributes":{}, + "x":-580, + "y":60306, + "width":620, + "height":80 + }, + { + "id":"36958e7ae961ca2a", + "type":"text", + "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#식당 본관 <-> 별관 이동로 정비(미끄럼 방지대책 강구)]]#", + "styleAttributes":{}, + "x":-580, + "y":60386, + "width":620, + "height":80 + }, + { + "id":"f1a513b9eed292e8", + "type":"text", + "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#부대운영진단 정식공문 후속조치내용#운영용 대검 손질 및 정비]]", + "styleAttributes":{}, + "x":417, + "y":60200, + "width":424, + "height":117, + "color":"3" + }, + { + "id":"b3d688c0590c16df", + "type":"text", + "text":"- [ ] 부대운영진단 후속조치 추진3![[부대운영진단#무기고]]", + "styleAttributes":{}, + "x":412, + "y":60317, + "width":429, + "height":133, + "color":"3" + }, + { + "id":"ada8f16516dbeddc", + "type":"text", + "text":"- [ ] 부대운영진단 후속조치 추진2![[부대운영진단#치장물자]]", + "styleAttributes":{}, + "x":421, + "y":60523, + "width":424, + "height":97, + "color":"3" + }, + { + "id":"f4e3b223d64de45c", + "type":"text", + "text":"[[30연대 26년도 예산]], 휘사장,에어커튼,이동엽", + "styleAttributes":{}, + "x":412, + "y":60450, + "width":429, + "height":73, + "color":"1" + }, + { + "id":"a52417529367df33", + "type":"text", + "text":"- [ ] 장비관리부대장 임무\n\t1. ", + "styleAttributes":{}, + "x":-1820, + "y":60290, + "width":428, + "height":110 }, { "id":"8470b105289ae4ef", @@ -10945,68 +11242,379 @@ "text":"# 5. 22.(금)", "styleAttributes":{}, "x":2082, - "y":59440, + "y":61280, "width":428, "height":60 }, { - "id":"9d7a0ee2341ffe2f", + "id":"7d3c379bb8889603", "type":"text", - "text":"[[위생지도]] 논산시 보건소 결과 후속조치,이동엽", + "text":"[[하계재난대비계획]] 잭성 보고,,유재형", "styleAttributes":{}, - "x":1266, - "y":59500, - "width":408, + "x":2082, + "y":61460, + "width":428, "height":60 }, { - "id":"1ea626d94260a137", + "id":"e96c8048f57d504a", "type":"text", - "text":"[[지휘관 교체 재물조사]], 한서욱", + "text":"- [ ] 11중대, 핸드토키,1대(cpl10215),정비불가,불용신청,조희철, 연말에 폐처리 요청", "styleAttributes":{}, - "x":1266, - "y":59560, - "width":1244, - "height":60, + "x":-2280, + "y":59100, + "width":428, + "height":80 + }, + { + "id":"3db6a78f47c801b5", + "type":"text", + "text":"- [ ] 1분기 장비 탄약 관리실태 현장 확인 결과 조치해야할 사항\n\t- [ ] 관련근거\n\t\t- [ ] 육규 428 군수품 및 재산출납관리 규정\n\t\t- [ ] 유규 465 탄약관리규정\n\t\t- [ ] 육규 471 장비관리규정\n\t\t- [ ] 육규 742 화생방 장비 물자 관리규정\n\t- [ ] 은닉탄 회수함 보완\n\t- [x] 저장화생방 장비물자 관리제웟표 최신화\n\t- [ ] 부대행정압무 총기결산, 전산대장 내용 누락\n\t- [x] 총기관리책임관 정(교육대장,) cctv 확인\n\t- [x] 정비지시서 미완결 처리(7일이내)", + "styleAttributes":{}, + "x":-2280, + "y":59180, + "width":428, + "height":450, "color":"1" }, { - "id":"c68a86f4bd9762d8", + "id":"1f56b9f284517a04", "type":"text", - "text":"# 5. 27. (수) ", + "text":"- [ ] [[30연대 26년도 예산]]", "styleAttributes":{}, - "x":1266, + "x":-2280, + "y":58840, + "width":428, + "height":60 + }, + { + "id":"a700daaea885d709", + "type":"text", + "text":"- [ ] 국방부 나라배움터 인권교육, 자살예방교육 떴습니당.성인지 원격교육\n\n신청하시길 바랍니다~", + "styleAttributes":{}, + "x":-2280, + "y":59630, + "width":428, + "height":130, + "color":"3" + }, + { + "id":"00a3d07bc3453f39", + "type":"text", + "text":"- [ ] 구형방상외피 추가지급, 1교 916. 2교 916 3쿄 426", + "styleAttributes":{}, + "x":-2280, + "y":59760, + "width":428, + "height":80 + }, + { + "id":"6c7fc6dd008ac378", + "type":"text", + "text":"- [x] 3교육대통합이동정비 후속조치\n\t- [ ] 방독면 입고정비:안면부8,휴대주머니68(9중3,20,10중3,8,11중2,25,12중0,15)\n\t- [ ] k2소총:입고정비17(9중5,10중2,11중8,12중2)\n\t- [ ] 통신장비(워키토키):입고정비2(11중1,12중1)", + "styleAttributes":{}, + "x":-2280, "y":59840, + "width":428, + "height":240 + }, + { + "id":"ff3c8beeb2e27fa3", + "type":"text", + "text":"- [ ] 우리연대 구형 침대 전량 교체예정(9월경)\n* 육군 전체물량을 우리쪽으로 불줄예정\n* 조립체가 아니라 침대셋트입니다.(참고로만 알고 계세요.)", + "styleAttributes":{}, + "x":-2280, + "y":60080, + "width":428, + "height":165 + }, + { + "id":"585b5eb83489a820", + "type":"text", + "text":"- [x] 충성!\n30연대 입니다.\n30연대 공사 가능 기간 3.30.(월)부터 2개 교육대 입영해 있어 가능합니다.\n* 단 2층 손 세척장 철거 기준입니다!!", + "styleAttributes":{}, + "x":-2280, + "y":60245, + "width":428, + "height":195 + }, + { + "id":"652cd6e07c237a4b", + "type":"text", + "text":"- [x] 1교육대 교육수료주 통합이동정비 추속조치,임대원\n\t- [ ] 방독면 폐처리:1중대16,2중대10,3중대9,4중대27\n\t- [ ] 총기 폐처리:2중대 1정(손망실), 4중대2정", + "styleAttributes":{}, + "x":-2280, + "y":58900, + "width":428, + "height":200 + }, + { + "id":"35f76c4ad9109db2", + "type":"text", + "text":"# 5. 29.(금)", + "styleAttributes":{}, + "x":2082, + "y":62680, + "width":428, + "height":60 + }, + { + "id":"7eec20835dc1178d", + "type":"text", + "text":"[[한시인가자]], 소요보고, 장성국", + "styleAttributes":{}, + "x":2082, + "y":62740, + "width":428, + "height":60 + }, + { + "id":"4031ebfabad4bd75", + "type":"text", + "text":"# 6.5.(금)", + "styleAttributes":{}, + "x":2102, + "y":63160, + "width":428, + "height":60 + }, + { + "id":"e54f9c873be884eb", + "type":"text", + "text":"# 6. 12.(금) 당직", + "styleAttributes":{}, + "x":2102, + "y":63480, + "width":428, + "height":60 + }, + { + "id":"cb6208f454d9bb35", + "type":"text", + "text":"# 6. 18.(목)", + "styleAttributes":{}, + "x":1694, + "y":63920, "width":408, "height":60 }, { - "id":"aff9874dc85798fa", + "id":"58136f65d9adcb00", "type":"text", - "text":"- [ ] 체력측정", + "text":"# 6. 19.(금) ", + "styleAttributes":{}, + "x":2102, + "y":63920, + "width":428, + "height":60 + }, + { + "id":"23a8c5720d3c6845", + "type":"text", + "text":"# 6. 16.(화)", + "styleAttributes":{}, + "x":838, + "y":63920, + "width":428, + "height":60 + }, + { + "id":"e78366e7cde6a8d2", + "type":"text", + "text":"# 6. 15. (월)", + "styleAttributes":{}, + "x":410, + "y":63920, + "width":428, + "height":60 + }, + { + "id":"9b014b8d1c4697f7", + "type":"text", + "text":"# 6. 17.(수) ", "styleAttributes":{}, "x":1266, - "y":59900, + "y":63920, + "width":428, + "height":60 + }, + { + "id":"7084af66b57bd104", + "type":"text", + "text":"[[통합이동정비]], 30-3,오후", + "styleAttributes":{}, + "x":838, + "y":63980, "width":260, "height":60 }, { - "id":"ec1447028e625169", + "id":"e4e1a644df2334f0", "type":"text", - "text":"[[혹서기일과]], 적용", + "text":"[[통합이동정비]], 32-2,오후", "styleAttributes":{}, "x":410, - "y":59500, + "y":63980, "width":260, "height":60 }, { - "id":"ce199a5d6d87f992", + "id":"cb5d324a861d414a", "type":"text", - "text":"# 5. 25. (월) ", + "text":"# 6. 25.(목)", + "styleAttributes":{}, + "x":1694, + "y":64360, + "width":408, + "height":60 + }, + { + "id":"283da393ef7564e2", + "type":"text", + "text":"# 6. 26.(금) ", + "styleAttributes":{}, + "x":2102, + "y":64360, + "width":428, + "height":60 + }, + { + "id":"af8cf3610898fdb8", + "type":"text", + "text":"[[하계재난대비계획]] 추진병가회의, 지휘관,지원과장,군수관계관", + "styleAttributes":{}, + "x":1694, + "y":64420, + "width":408, + "height":60 + }, + { + "id":"be9a471813cd2248", + "type":"text", + "text":"# 6. 24.(수) ", + "styleAttributes":{}, + "x":1266, + "y":64360, + "width":428, + "height":60 + }, + { + "id":"f7643eb4a228fdac", + "type":"text", + "text":"[[inbox/위임보수|위임보수]] 3분기 심의,소군수과", + "styleAttributes":{}, + "x":840, + "y":64420, + "width":426, + "height":60 + }, + { + "id":"1bc51ae411f9a33b", + "type":"text", + "text":"[[연대장님 이취임식]],30연대,잠정", "styleAttributes":{}, "x":410, - "y":59840, + "y":64420, + "width":430, + "height":60 + }, + { + "id":"deec07fcca5c6faf", + "type":"text", + "text":"[[통합이동정비]], 30-1,오전", + "styleAttributes":{}, + "x":410, + "y":64480, + "width":260, + "height":60 + }, + { + "id":"9946039e6adc8f5f", + "type":"text", + "text":"# 6. 22. (월)", + "styleAttributes":{}, + "x":410, + "y":64360, + "width":428, + "height":60 + }, + { + "id":"6040486caaa64772", + "type":"text", + "text":"# 6. 23.(화)", + "styleAttributes":{}, + "x":838, + "y":64360, + "width":428, + "height":60 + }, + { + "id":"e763b0dfafc15705", + "type":"text", + "text":"[[하계재난대비계획]] 재난대응훈련,차수벽 설치", + "styleAttributes":{}, + "x":-60, + "y":64360, + "width":390, + "height":60 + }, + { + "id":"2e74e772591d7ed4", + "type":"text", + "text":"# 6. 29. (월)", + "styleAttributes":{}, + "x":410, + "y":64840, + "width":428, + "height":60 + }, + { + "id":"9b4d5e8f19406e04", + "type":"text", + "text":"# 6. 30.(화)", + "styleAttributes":{}, + "x":838, + "y":64840, + "width":428, + "height":60 + }, + { + "id":"0257072ce3614948", + "type":"text", + "text":"# 7.1.(수) ", + "styleAttributes":{}, + "x":1266, + "y":64840, + "width":428, + "height":60 + }, + { + "id":"c0b69dc8945b7748", + "type":"text", + "text":"# 7.2.(목)", + "styleAttributes":{}, + "x":1694, + "y":64840, + "width":408, + "height":60 + }, + { + "id":"1ab492821581257a", + "type":"text", + "text":"# 7.3.(금) ", + "styleAttributes":{}, + "x":2102, + "y":64840, + "width":428, + "height":60 + }, + { + "id":"d56f0b0231c8ad41", + "type":"text", + "text":"[[월하준비]] 추진결과보고", + "styleAttributes":{}, + "x":410, + "y":63220, "width":428, "height":60 }, @@ -11016,37 +11624,68 @@ "text":"# 5. 26.(화)", "styleAttributes":{}, "x":838, - "y":59840, + "y":62680, "width":428, "height":60 }, { - "id":"4092c0c8c120a752", + "id":"ce199a5d6d87f992", "type":"text", - "text":"[[예방정비]], 차량, 9230호, 박승대", + "text":"# 5. 25. (월) ", "styleAttributes":{}, - "x":1674, - "y":59500, - "width":260, + "x":410, + "y":62680, + "width":428, "height":60 }, { - "id":"514f3c26d33910db", + "id":"3cef08511a62070f", "type":"text", - "text":"# 5. 28.(목)", + "text":"# 6. 8. (월)", "styleAttributes":{}, - "x":1674, - "y":59840, - "width":408, + "x":410, + "y":63480, + "width":428, "height":60 }, { - "id":"35f76c4ad9109db2", + "id":"a52b1b5e7c41b62d", "type":"text", - "text":"# 5. 29.(금)", + "text":"[[지휘관 교체 재물조사]],7중대장(원사이재광)교체예정", "styleAttributes":{}, - "x":2082, - "y":59840, + "x":410, + "y":63540, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"b0f873b7f0f1dadd", + "type":"text", + "text":"# 6. 1. (월)", + "styleAttributes":{}, + "x":410, + "y":63160, + "width":428, + "height":60 + }, + { + "id":"00cc7c8a47d3233c", + "type":"text", + "text":"[[보급품 수령 , 분배, 반납]], 개인장구류 불출요청, 김진복", + "styleAttributes":{}, + "x":860, + "y":62920, + "width":406, + "height":60 + }, + { + "id":"e17139b3cd0b2b8f", + "type":"text", + "text":"[[병영생활관신축]], 최종보고", + "styleAttributes":{}, + "x":838, + "y":62860, "width":428, "height":60 }, @@ -11056,39 +11695,99 @@ "text":"[[대한민국 안전대전환 집중 안전점검]] 결과보고,이동섭", "styleAttributes":{}, "x":838, - "y":59960, + "y":62800, "width":428, "height":60, "color":"1" }, + { + "id":"ecce97ce83181d43", + "type":"text", + "text":"# 6. 4.(목)", + "styleAttributes":{}, + "x":1694, + "y":63160, + "width":408, + "height":60 + }, + { + "id":"c68a86f4bd9762d8", + "type":"text", + "text":"# 5. 27. (수) ", + "styleAttributes":{}, + "x":1266, + "y":62680, + "width":408, + "height":60 + }, { "id":"cfc9553527c83b68", "type":"text", "text":"# 6. 2.(화)", "styleAttributes":{}, - "x":410, - "y":60260, + "x":838, + "y":63160, "width":428, "height":60 }, { - "id":"7de05af40151e2e2", + "id":"c6742e18a67768a2", "type":"text", - "text":"# 6. 3.(수) 당직", + "text":"[[재난관계관]]조집교육, 1000", + "styleAttributes":{}, + "x":1220, + "y":62800, + "width":454, + "height":60 + }, + { + "id":"71c40ab01e799a84", + "type":"text", + "text":"# 6. 9.(화)", "styleAttributes":{}, "x":838, - "y":60260, + "y":63480, + "width":428, + "height":60 + }, + { + "id":"ddee5f4f17143b6a", + "type":"text", + "text":"[[inbox/총기탄약|총기탄약]]관리실태 점검, 교육사 최병준,한서욱", + "styleAttributes":{}, + "x":838, + "y":63540, "width":428, "height":60 }, { "id":"68212c5286aec2bf", "type":"text", - "text":"26 소방시설 작동기능점검 , 6.2, ", + "text":"26 [[소방시설]] 작동기능점검 , 6.2, ", "styleAttributes":{}, - "x":410, - "y":60320, - "width":260, + "x":838, + "y":63220, + "width":428, + "height":60 + }, + { + "id":"7de05af40151e2e2", + "type":"text", + "text":"# 6. 3.(수) 당직, 지방선거", + "styleAttributes":{}, + "x":1266, + "y":63160, + "width":428, + "height":60 + }, + { + "id":"618bd027e48ae532", + "type":"text", + "text":"# 6. 11.(목)", + "styleAttributes":{}, + "x":1694, + "y":63480, + "width":408, "height":60 }, { @@ -11096,39 +11795,252 @@ "type":"text", "text":"", "styleAttributes":{}, + "x":1266, + "y":63220, + "width":428, + "height":60 + }, + { + "id":"f3fd2c7c50b4e005", + "type":"text", + "text":"# 6. 10.(수) ", + "styleAttributes":{}, + "x":1266, + "y":63480, + "width":428, + "height":60 + }, + { + "id":"aff9874dc85798fa", + "type":"text", + "text":"- [ ] 체력측정", + "styleAttributes":{}, + "x":1266, + "y":62740, + "width":408, + "height":60 + }, + { + "id":"514f3c26d33910db", + "type":"text", + "text":"# 5. 28.(목)", + "styleAttributes":{}, + "x":1674, + "y":62680, + "width":408, + "height":60 + }, + { + "id":"f7f2ae61eb6c659a", + "type":"text", + "text":"[[inbox/소방|소방]]시설 작동점검(~6.9)", + "styleAttributes":{}, + "x":1674, + "y":61580, + "width":806, + "height":60 + }, + { + "id":"b0983513e81f37b9", + "type":"text", + "text":"[[매연측정]], 4대, 0930-1430,군지대수송부주차장,신상이", + "styleAttributes":{}, + "x":1266, + "y":61520, + "width":816, + "height":60 + }, + { + "id":"a50a8bc3606dfb24", + "type":"text", + "text":"[[대형정수기 필터교체 업체방문]]", + "styleAttributes":{}, "x":838, - "y":60320, + "y":61520, + "width":402, + "height":60 + }, + { + "id":"e59d7ef7c6a0b92e", + "type":"text", + "text":"[[병영생활관신축]], 90%토의", + "styleAttributes":{}, + "x":1674, + "y":61460, + "width":408, + "height":60 + }, + { + "id":"d391595a5c88fbd0", + "type":"text", + "text":"[[위생점검]], 병영식당", + "styleAttributes":{}, + "x":838, + "y":61460, "width":428, "height":60 }, { - "id":"e54f9c873be884eb", + "id":"b3a8f2d7be36a642", "type":"text", - "text":"# 6. 12.(금) 당직", + "text":"[[훈련병]] 입영, 1교", "styleAttributes":{}, - "x":2082, - "y":60720, + "x":410, + "y":61460, "width":428, "height":60 }, { - "id":"37ed45ba7c64dce9", + "id":"c99d70f67cbd41c1", "type":"text", - "text":"[[차량 2부제]], 추가", + "text":"[[소방]] 안전 ftx, ~29", "styleAttributes":{}, - "x":1780, - "y":55560, - "width":260, + "x":410, + "y":61400, + "width":428, "height":60 }, { - "id":"e1321b58f738b0d5", + "id":"1ea626d94260a137", "type":"text", - "text":"[[정수기]]., 주이원사", + "text":"[[지휘관 교체 재물조사]], 한서욱", "styleAttributes":{}, - "x":1780, - "y":55620, - "width":260, + "x":1266, + "y":61400, + "width":1244, + "height":60, + "color":"1" + }, + { + "id":"6af03b71b4bef0b5", + "type":"text", + "text":"[[월하준비]] 추진평가회의(VTC) 1030 지원과장", + "styleAttributes":{}, + "x":838, + "y":61400, + "width":428, + "height":60 + }, + { + "id":"ec1447028e625169", + "type":"text", + "text":"[[혹서기일과]], 적용", + "styleAttributes":{}, + "x":410, + "y":61340, + "width":428, + "height":60 + }, + { + "id":"349a33cd5dab5ac3", + "type":"text", + "text":"[[전술훈련평가]] 30연대", + "styleAttributes":{}, + "x":838, + "y":61340, + "width":428, + "height":60, + "color":"1" + }, + { + "id":"9d7a0ee2341ffe2f", + "type":"text", + "text":"[[위생지도]] 논산시 보건소 결과 후속조치,이동엽", + "styleAttributes":{}, + "x":1266, + "y":61340, + "width":408, + "height":60 + }, + { + "id":"4092c0c8c120a752", + "type":"text", + "text":"[[예방정비]], 차량, 9230호, 박승대", + "styleAttributes":{}, + "x":1674, + "y":61340, + "width":408, + "height":60 + }, + { + "id":"4444f28e041bc74b", + "type":"text", + "text":"# 5. 18. (월) , 당직근무", + "styleAttributes":{}, + "x":410, + "y":61280, + "width":428, + "height":60 + }, + { + "id":"534f1176c0a623ad", + "type":"text", + "text":"# 5. 20. (수) ", + "styleAttributes":{}, + "x":1266, + "y":61280, + "width":408, + "height":60 + }, + { + "id":"90e8c058b27a13ab", + "type":"text", + "text":"# 5. 21.(목)", + "styleAttributes":{}, + "x":1674, + "y":61280, + "width":408, + "height":60 + }, + { + "id":"fb9016eb2b67d998", + "type":"text", + "text":"# 5. 19.(화) ", + "styleAttributes":{}, + "x":838, + "y":61280, + "width":428, + "height":60 + }, + { + "id":"8c8a3a615a00e407", + "type":"text", + "text":"[[보급품 수령 , 분배, 반납]], 재산관리전환", + "styleAttributes":{}, + "x":421, + "y":60760, + "width":422, + "height":60 + }, + { + "id":"d90da80cfa8f0744", + "type":"text", + "text":"[[지휘관 교체 재물조사]] 조사표 작성", + "styleAttributes":{}, + "x":421, + "y":60700, + "width":419, + "height":60 + }, + { + "id":"b02625cd15641827", + "type":"text", + "text":"[[사용자보수심의]] 준비,3분기,박관식", + "styleAttributes":{}, + "x":421, + "y":60620, + "width":426, + "height":80, + "color":"4" + }, + { + "id":"7c400176490cbdba", + "type":"text", + "text":"[[월하약품불출]]", + "styleAttributes":{}, + "x":410, + "y":61520, + "width":437, "height":60 } ], @@ -11276,6 +12188,97 @@ "fromSide":"right", "toNode":"65605a589a2a19a3", "toSide":"left" + }, + { + "id":"b48ea14d52ecc186", + "styleAttributes":{}, + "toFloating":false, + "fromNode":"b43f144fc2adfd71", + "fromSide":"right", + "toNode":"3f0368602761d5d6", + "toSide":"right" + }, + { + "id":"52d6d8584de3c4de", + "styleAttributes":{}, + "toFloating":false, + "fromNode":"5c9f335ae7cd5b83", + "fromSide":"right", + "toNode":"f134f587ba6b5ade", + "toSide":"right" + }, + { + "id":"f34f503dbc85ed7a", + "styleAttributes":{}, + "toFloating":false, + "fromFloating":false, + "fromNode":"5c0a93a4dd9699f9", + "fromSide":"right", + "toNode":"b36fb22822535957", + "toSide":"right" + }, + { + "id":"80430a1b33517226", + "styleAttributes":{}, + "toFloating":false, + "fromNode":"c9ae6cd79ffc2964", + "fromSide":"right", + "toNode":"36958e7ae961ca2a", + "toSide":"right" + }, + { + "id":"54b5cc90435291bf", + "styleAttributes":{}, + "toFloating":false, + "fromNode":"88a2745dfb50ab28", + "fromSide":"right", + "toNode":"f790aea1aaf2e3b2", + "toSide":"left" + }, + { + "id":"41fa11137adab9fb", + "styleAttributes":{}, + "toFloating":false, + "fromNode":"814de1ebfd00a43a", + "fromSide":"right", + "toNode":"5956611612357074", + "toSide":"left" + }, + { + "id":"283f44e23a8b720b", + "styleAttributes":{}, + "toFloating":false, + "fromNode":"38b009243714e587", + "fromSide":"right", + "toNode":"f1a513b9eed292e8", + "toSide":"left" + }, + { + "id":"f5774011138d70a8", + "styleAttributes":{}, + "toFloating":false, + "fromNode":"ea35249138dc263d", + "fromSide":"right", + "toNode":"b3d688c0590c16df", + "toSide":"left" + }, + { + "id":"48b71100d85ce2e1", + "styleAttributes":{}, + "toFloating":false, + "fromNode":"e399dfd2fbb86722", + "fromSide":"right", + "toNode":"f4e3b223d64de45c", + "toSide":"left" + }, + { + "id":"26b93e2bb9dec45b", + "styleAttributes":{}, + "toFloating":false, + "fromNode":"4a554852b2eda5e1", + "fromSide":"right", + "toNode":"ada8f16516dbeddc", + "toSide":"left" } ], "metadata":{ diff --git a/26년 30연대 전술훈련평가 수검자료 정리.md b/26년 30연대 전술훈련평가 수검자료 정리.md index 70e6994..dd00525 100644 --- a/26년 30연대 전술훈련평가 수검자료 정리.md +++ b/26년 30연대 전술훈련평가 수검자료 정리.md @@ -3,8 +3,8 @@ sticker: lucide//star --- # 연대전술훈련평가 ## 3교육대 화생방 정화통 보유가 없어 추가 보급이 필요 - - [ ] 분배예정수량을 분배한다. - - [ ] 어떻게 분배할것인지.. +- [ ] 분배예정수량을 분배한다. + - [ ] 어떻게 분배할것인지.. - [ ] 무기 불출 : 1교육대로 (나는 중간에서 확인임무) - [ ] 탄약 불출 - [ ] 교육용탄으로 추가 수령 @@ -19,19 +19,19 @@ sticker: lucide//star - [ ] 1교육대 9.10중대 - [ ] 2교육대11,12중대 ## **전교육대 기간병 물자없다.** - - [ ] 어떻게 할것인가? - - [ ] 임무수행철에 들어가야 한다 +- [ ] 어떻게 할것인가? + - [ ] 임무수행철에 들어가야 한다 ## 연대 전체 방독면 두건에 개인주기 - - [ ] 규격 : 연대색상, 3x3, 소속,계급,성명 주기 +- [ ] 규격 : 연대색상, 3x3, 소속,계급,성명 주기 ## 3교육대 물자분류: A형 , 목룍표제작 ## 1교육대 물자분류: A형, 목록표제작 ## **총기전환계획과 물자인수인계 계획은 평가시 무조건 본다.** - - [ ] 어디서, 어떻게, 누구에게, 무엇을, 언제부터 언제까지 +- [ ] 어디서, 어떻게, 누구에게, 무엇을, 언제부터 언제까지 ## 탄약은 경계태세 1단계 일때 분배한다. ## 전시 차량 - - [ ] 차량분배:1,2,3교육대 상용짚 1대씩, 본부 5톤 1대, 승합 1대, 의무 구급차 2 - - [ ] 1교 차량건의(5톤 3대) - - [ ] 소군수과 지원건의, 언제까지? +- [ ] 차량분배:1,2,3교육대 상용짚 1대씩, 본부 5톤 1대, 승합 1대, 의무 구급차 2 + - [ ] 1교 차량건의(5톤 3대) + - [ ] 소군수과 지원건의, 언제까지? ## 입영심사대 인수인계 ## 임무수행철 최신화 ## 상황보고 시차별 : 출발, 도착, 하차시등 diff --git a/30연대 26년도 예산.md b/30연대 26년도 예산.md index 45c3053..bb5da2d 100644 --- a/30연대 26년도 예산.md +++ b/30연대 26년도 예산.md @@ -17,10 +17,12 @@ 3. 소도구구매비(0055) 2043820 4. 1차사용(공통), 집행전금액 21317600 집행액 1553600 집행후금액 19764000 5. 2차사용(공통), 집행전잔액 19764000 집행액 464640 집행후금액 19299360 -6. 3차사용(공통,수정), 집행전금액 19299360 집행액 1320000 집행후금액 17979360 -7. -8. -# 물자유지비 +6. ~~3차~~ +7. 3차사용(공통,수정), 집행전금액 19299360 집행액 1320000 집행후금액 17979360 +8. 4차사용(공통), 집행전금액 17979360 집행액 286000 집행후금액 17693360 +9. +10. +# 물자유지비(집행후 국방군수통합정보체계 근거입력) 1. 2300-2332-305-001-000-000-210-01-0010 2. 부대비품유지비 3. 18,000,000원 @@ -42,7 +44,10 @@ 17. 11차 집행, 3중대, 집행전금액 14325300 집행액 265100 집행후금액 14060200 18. 12차 집행, 2,3중대, 집행전금액 14060200 집행액 980000 집행후금액 13080200 19. 13차 집행, 3교육대, 12중대 에어컨, 집행전금액 13080200 집행액 4774000 집행후금액 8306200 -20. +20. 근거입력방법: 정비관리>군직정비수행관리>부대야전정비관리(지상)-육군>물자의무장비정비의뢰등록(육군) +21. 14차 집행, 1교육대, 집행전금액 8306200 집행액 517000 집행후금액 7789200 +22. 15차 집행, 대형정수기, 집행전금액 7789200 집행액 900000 집행후금액 6889200 +23. # 보온대 1. 2300-2332-302-003-000-000-210-11 diff --git a/desktop_hp_obsidian/inbox/수통클린시스템.md b/desktop_hp_obsidian/inbox/수통클린시스템.md index 23af999..f68bc0f 100644 --- a/desktop_hp_obsidian/inbox/수통클린시스템.md +++ b/desktop_hp_obsidian/inbox/수통클린시스템.md @@ -1,11 +1,11 @@ -수거일 -납품일 -계약물량 - -- 박스포장내부 물품보관확인증 동봉 -- 소통 마개 결합상태로 세척 -- 수토뫼관 조기표 제거(라벨지등 양호) -- 수통 외부 변형 제외 -- 포장시 pp박스 사용, 박스당40개 -- 수통일 1일전 소군수과 감독 수랑 검수 +수거일 +납품일 +계약물량 + +- 박스포장내부 물품보관확인증 동봉 +- 소통 마개 결합상태로 세척 +- 수토뫼관 조기표 제거(라벨지등 양호) +- 수통 외부 변형 제외 +- 포장시 pp박스 사용, 박스당40개 +- 수통일 1일전 소군수과 감독 수랑 검수 - \ No newline at end of file diff --git a/inbox/.space/context.mdb b/inbox/.space/context.mdb new file mode 100644 index 0000000..0bb614e Binary files /dev/null and b/inbox/.space/context.mdb differ diff --git a/inbox/.space/views.mdb b/inbox/.space/views.mdb new file mode 100644 index 0000000..c149ef1 Binary files /dev/null and b/inbox/.space/views.mdb differ diff --git a/inbox/개인장구류 불출 문제발생.md b/inbox/개인장구류 불출 문제발생.md index a11d9e4..6b39c19 100644 --- a/inbox/개인장구류 불출 문제발생.md +++ b/inbox/개인장구류 불출 문제발생.md @@ -1,69 +1,97 @@ -25.10.13(월) 경 -박성현하사, 이병운 일병과함께 5톤차량을 타고 군수지원대 (구)부식분배소뒤 창고로 가서 보급품(천막,개인전투용(개선품), 팔꿈치 무릎보호대, 조끼,지상근무자용(기본형))을 받아 -바로옆 자대에서 1교육대 막사 중앙현관에서 불출, 2교육대 불출하고, 3교육대에서 불출간 부족한 수량을 확인()==주무관님 다용도 파우치 -1,수통파우치 -164,수류탄파우치 -10,30발탄창파우치 -20 차이 발생입니다)== - -개인천막 -160 > 2교 80, 3교 80 -팔꿈치,무릎보호대 -400 > -400 > - ---- - -1교육대 - -보호대 -무릎보호대 140개 -팔꿈치보호대 140개 - -전투장구류 -다용도파우치 320개 -수통파우치 320개 -탄창파우치 646개 -수류탄파우치 646개 -조끼조립체 320개 - -이고 수량 이상 없습니다. - ---- -2교육대 -조끼조립체 320 -다용도 파우치 320 -탄알집 파우치 646 -수류탄 파우치 646 -수통파우치 320 - -무릅 보호대 120 -팔꿈치 보호대 120 -수령했습니다. - -천막 -2교육대 20box 80개 이상없습니다. - ---- -3교 수령량 -조끼 340 -탄입집 648 -수류탄파우치 658 -다용도파우치 339 -수통파우치 176 -입니다 - -팔ㆍ무릎 보호대 - -ㅇ각각 총 수령 400 -ㅡ1교 140개 -ㅡ2교 120개 -ㅡ3교 140개 - -25.10.27(월) 1652분 김용대주무관ㅇ님과 통화 -부족한수량 박태영 주무관님과 협조후 가능하면 연락 - -수입 천막,개인전투용(375206185) 160개 -팔꿈치 보호대(37X038603) 400개 -무릎 보호대(37X038602) 400개 -탄입집(375284589) 1940개, 20개 부족 -수류탄파우치(375284590) 1940개, 10개 부족 -수통피(375284592) 980, 164개 부족 -다용도파우치,전투조끼기본형(375284593) 980개, 1개 부족 -조끼조립체, 전투조끼 기본형(375284594) 980개 \ No newline at end of file +25.10.13(월) 경 +박성현하사, 이병운 일병과함께 5톤차량을 타고 군수지원대 (구)부식분배소뒤 창고로 가서 보급품(천막,개인전투용(개선품), 팔꿈치 무릎보호대, 조끼,지상근무자용(기본형))을 받아 +바로옆 자대에서 1교육대 막사 중앙현관에서 불출, 2교육대 불출하고, 3교육대에서 불출간 부족한 수량을 확인()==주무관님 다용도 파우치 -1,수통파우치 -164,수류탄파우치 -10,30발탄창파우치 -20 차이 발생입니다)== + +개인천막 +160 > 2교 80, 3교 80 +팔꿈치,무릎보호대 +400 > +400 > + +--- + +1교육대 + +보호대 +무릎보호대 140개 +팔꿈치보호대 140개 + +전투장구류 +다용도파우치 320개 +수통파우치 320개 +탄창파우치 646개 +수류탄파우치 646개 +조끼조립체 320개 + +이고 수량 이상 없습니다. + +--- +2교육대 +조끼조립체 320 +다용도 파우치 320 +탄알집 파우치 646 +수류탄 파우치 646 +수통파우치 320 + +무릅 보호대 120 +팔꿈치 보호대 120 +수령했습니다. + +천막 +2교육대 20box 80개 이상없습니다. + +--- +3교 수령량 +조끼 340 +탄입집 648 +수류탄파우치 658 +다용도파우치 339 +수통파우치 176 +입니다 + +팔ㆍ무릎 보호대 + +ㅇ각각 총 수령 400 +ㅡ1교 140개 +ㅡ2교 120개 +ㅡ3교 140개 + +25.10.27(월) 1652분 김용대주무관ㅇ님과 통화 +부족한수량 박태영 주무관님과 협조후 가능하면 연락 + +수입 천막,개인전투용(375206185) 160개 +팔꿈치 보호대(37X038603) 400개 +무릎 보호대(37X038602) 400개 +탄입집(375284589) 1940개, 20개 부족 +수류탄파우치(375284590) 1940개, 10개 부족 +수통피(375284592) 980, 164개 부족 +다용도파우치,전투조끼기본형(375284593) 980개, 1개 부족 +조끼조립체, 전투조끼 기본형(375284594) 980개 + +# 26.5.14(목) + - 3교육대 11중대 김진복 상사가 재산정리 원함. + - 다시정리(개인장구류 세트 현황 다시 정리) + +| 구분 | 다용도 파우치 | 수통파우치 | 탄창파우치 | 수류탄파우치 | 조끼조립체 | +| ------------ | ------- | ----- | ----- | ------ | ----- | +| 수령량 | 980 | 980 | 1940 | 1940 | 980 | +| 1교 | 320 | 320 | 646 | 646 | 320 | +| 2교 | 320 | 320 | 646 | 646 | 320 | +| 3교 | 339 | 176 | 628 | 638 | 340 | +| 수령량과 실제수령 차이 | -1 | -164 | -20 | -10 | 0 | + + +| 구분 | 다용도 파우치 | 수통파우치 | 탄창파우치 | 수류탄파우치 | 조끼조립체 | +| ------------ | ------- | ----- | ----- | ------ | ----- | +| 수령량 | 980 | 980 | 1940 | 1940 | 980 | +| 1교 | 320 | 320 | 646 | 646 | 320 | +| 2교 | 320 | 320 | 646 | 646 | 320 | +| 3교 | 339 | 176 | 648 | 648 | 340 | +| 수령량과 실제수령 차이 | -1 | -164 | 0 | 0 | 0 | + + 다용도 파우치 중대별 80개, 마지막 3교 85개 + 수통파우치 중대별 80개, 3교 85개 + 탄창파우치 중대별 161개 162개,3교는 162개 + 수류탄파우치 중대별 161개 162개, 3교는 162개 + 조끼조립체 중대별 80개, 3교 85개 + \ No newline at end of file diff --git a/inbox/당직근무간 특이사항.md b/inbox/당직근무간 특이사항.md index 1b6dfe0..e7ad61e 100644 --- a/inbox/당직근무간 특이사항.md +++ b/inbox/당직근무간 특이사항.md @@ -40,3 +40,17 @@ +# 근무간 주요 착안점 +1. 당직근무자 현황 +2. 총기 관리 + 1. 열쇠이원화 관리 +3. 주요관심사항 + 1. 26년 전반기 생명존중활동 및 생명보호강조기간 인지상태 확인 +4. 식중독 관련 +5. 유동병력관리 + 1. 휴가자 체크리스트 + 2. 복귀자 +6. 응급의료체계 + 1. 야간 환자 발생시 조치 + 2. 인근 병원 +7. 도움배려현황 \ No newline at end of file diff --git a/inbox/보급품 수령 , 분배, 반납.md b/inbox/보급품 수령 , 분배, 반납.md index 7a8387e..791c757 100644 --- a/inbox/보급품 수령 , 분배, 반납.md +++ b/inbox/보급품 수령 , 분배, 반납.md @@ -21,5 +21,14 @@ # 26.4. 천정형선풍기 1교육대 24대를 25연대 6, 교지대대 18대 관리전환예정 - 정현일, 박성현, 황인찬(메모발송) +- 26.5.11(월), 정현일 > 25연대 간부 000(전화번호 01050836360) 10개 가지고 감 + - 전산재산정리 미완료 + +# 26.5.7일한, 오븐기 소요파악,황인찬 + +# 26.5.15일한, 야전배낭셑 소요 파악 +1. 공격배낭,야전배낭,1형(37534) + +# 지급받은 개인장구류 수량 안맞는것에 대한 재산정리후 중대불출 +1. 2026.5.14(목) 전산재산 불출 처리완료(3교 11중대 김진복 상사 의견 수렴후 조치함.) -# 26.5.7일한, 오븐기 소요파악,황인찬 \ No newline at end of file diff --git a/inbox/소방.md b/inbox/소방.md index e4a158a..6ede2bc 100644 --- a/inbox/소방.md +++ b/inbox/소방.md @@ -1,2 +1,4 @@ https://www.safeland.go.kr/somin/infoFireSafetyMgrProcDetail.do +# 전반기 소방시설 작동점검(~6.9) +1. \ No newline at end of file diff --git a/inbox/위임보수.md b/inbox/위임보수.md index 1546783..2614898 100644 --- a/inbox/위임보수.md +++ b/inbox/위임보수.md @@ -30,12 +30,16 @@ 2. 9중대 세면장 누수 1. 설계중 2. 훈련없어 상관없음 + 3. 영선대(김광훈 010-5113-4817),업체 방문예정, 5.11(월) 3. 전교육대 기계실 보일러 보수 1. 계약중(의뢰 4.24) + 2. 5.7(목),영선대(김광훈 010-5113-4817)와 업체 방문, 난방배관, 모터, 후렉시블 교체, 5.15일 공사예정 4. 1교육대 목욕탕 노후배관 보수 1. 계약중(의뢰 4.24) + 2. 5.7(목),영선대(김광훈)와 업체 방문, 배관교체 5. 5중대 측면 화장실 오수관로 교체 1. 계약중(의뢰 4.24) + 2. 5.7(목),영선대(김광훈)와 업체 방문,7중대 같이 못씀, 5.12-14공사예정, 소변기5개와 그배관 교체 6. 3. 계획보수 1. 30연대 노후위생시설보수(24000만원)2작사 설계용역 계약 대기중 @@ -61,4 +65,12 @@ 1. 1교육대,3교육대 해당 2. 사용다보수비로 집행후 보충예정 3. 295000,218400 - 4. \ No newline at end of file + +# 26.3분기 소요 +1. 3교 기계실 스팀 메인 증기관 감압변 교체,서원석,3분기위임보수반영필요 +2. 식당 벗겨짐 공사, 세척장 바닥 코팅 +3. 2분기 부결 + 1. 교육대 중앙 노후창호 + 2. 노후계단 미크럼방지등 + 3. 중대행정반 화장실보수 + 4. 병영식당 본관바닥보수 \ No newline at end of file diff --git a/inbox/총기탄약.md b/inbox/총기탄약.md index bd45f80..f9f4433 100644 --- a/inbox/총기탄약.md +++ b/inbox/총기탄약.md @@ -297,3 +297,17 @@ K5 : 1(무기고1) - 축구화 주인찾아주기 +# 총기전산대장과 총기등록현황 일치여부 +# 총번 이미지 등록 및 이력변경 사유 작성여부 +# 총기탄약 감시용 CCTV 점검(행동화 실태) +1. Cctv녹화영상 30일 이상 보관여부 +2. 열쇠이원화 관리 +3. 당직근무자 총기탄약 수불실태 +4. 사각지역여부 +5. 수불 존 cctv +6. 무기고탄약고 1인출입여부 +# 지휘관 참모 무기고탄약고 주간 월간 점검실태 +1. Cctv영상 확인 여부 +# 무기고탄약고 무인쏴 평가 여부(반기1회) +# 지문인식 잠금장치 상하 구분하여 지문등록 실태 +# 탄약 봉인용 각인, 봉인스티커 관리실태 diff --git a/군차량 매연 측정.md b/군차량 매연 측정.md new file mode 100644 index 0000000..e69de29 diff --git a/대변기 소변기.md b/대변기 소변기.md new file mode 100644 index 0000000..7988ad6 --- /dev/null +++ b/대변기 소변기.md @@ -0,0 +1,4 @@ +대변기 중대별 35 +소변기 중대별 25 +행정반 대,소변기 1 +3층 기간병 대변기 6개, 소변기 12 diff --git a/매연측정.md b/매연측정.md new file mode 100644 index 0000000..4e49871 --- /dev/null +++ b/매연측정.md @@ -0,0 +1 @@ +# 3130, 1330, 3508-1,3508-2 \ No newline at end of file diff --git a/사용자보수심의.md b/사용자보수심의.md new file mode 100644 index 0000000..e69de29 diff --git a/소방시설.md b/소방시설.md index 31e9a6d..5490460 100644 --- a/소방시설.md +++ b/소방시설.md @@ -8,3 +8,5 @@ ![[Resized_20251127_141053.jpeg]] ![[Resized_20251127_141040.jpeg]] + +# 26년 점검,6.2(화) \ No newline at end of file diff --git a/안전활동유공.md b/안전활동유공.md new file mode 100644 index 0000000..77cc735 --- /dev/null +++ b/안전활동유공.md @@ -0,0 +1,5 @@ +![[1778129959563.jpg]] +교육대별 1명씩 선정바랍니다.(교육대장님께 보고드리고 올려주세요) +* 기간 : 5. 11(월) +* 종합 : 군수담당관 + diff --git a/오수관로공사.md b/오수관로공사.md new file mode 100644 index 0000000..e69de29 diff --git a/월하약품불출.md b/월하약품불출.md new file mode 100644 index 0000000..0d6a814 --- /dev/null +++ b/월하약품불출.md @@ -0,0 +1,21 @@ +📝 월하용품 불출계획(10품목) + +• 일시: 5월 18일(월) 15:00 +• 장소: 9번창고 + +• 협조: 물품,물량에 적합한 차량과 상하차 인원 준비부탁드리겠습니다. + +• 참조: 자세한 내용은 김만준주무관님(방역양품 분배계획) 메모 참조바랍니다. + +특이사항발생 시 내용 +전파하도록 하겠습니다. + +분사식살충제 760 +모기항 345 +모기기피제 105 +액체전자모기향,교체용 50 +훈증기 310 +살균소독제 40 +연막 방역용살충제 1 +화장실 나프탈렌 25 +피복용 나프탈렌 53 \ No newline at end of file diff --git a/월하준비.md b/월하준비.md index 9baa2eb..3a627bd 100644 --- a/월하준비.md +++ b/월하준비.md @@ -7,4 +7,7 @@ 월하준비 추진평가회의(vtc):5.15 월하준비 결과보고:5.29 공문보고 -주간상황평가시:6.4 \ No newline at end of file +주간상황평가시:6.4 + +# 5.15 추진경과 자료 보고,메모로 +# 5.19 계회운영처장 주관 회의 \ No newline at end of file diff --git a/위생점검.md b/위생점검.md new file mode 100644 index 0000000..e69de29 diff --git a/위생지도.md b/위생지도.md new file mode 100644 index 0000000..e69de29 diff --git a/일일 무기,탄약결산.md b/일일 무기,탄약결산.md index e8a18e1..377d5cf 100644 --- a/일일 무기,탄약결산.md +++ b/일일 무기,탄약결산.md @@ -14,4 +14,11 @@ 3. 지상조명 지뢰 반납 16발 # 2026.4.13(월) -1. 2중대 전역자 총기 1정 반납, 대검 1정반납(이영민 상사님) \ No newline at end of file +1. 2중대 전역자 총기 1정 반납, 대검 1정반납(이영민 상사님) + +# 26.5.6(수) +1. 전입소대장 총기,대검 불출 1정 + +# 26.5.11(월) +1. 3교 3정 반납,전역자총기 대검포함 +2. \ No newline at end of file diff --git a/일일결산.md b/일일결산.md index 8758e4a..f72aaa2 100644 --- a/일일결산.md +++ b/일일결산.md @@ -180,4 +180,15 @@ # 2026.2.23.(월) 1. 한시인가 급식인원 소요끼니별 파악 하루종일했다. 2. 사무실 바닥 닦고, 코팅제 발랐다. -3. 카풀인원 추어탕 먹었다.(수송행보관님 박성록 원사님 이번주 직보반 가시기전 마지막 환송) \ No newline at end of file +3. 카풀인원 추어탕 먹었다.(수송행보관님 박성록 원사님 이번주 직보반 가시기전 마지막 환송) + +# 2026.5.13(수) +1. 오후 연대전수훈련실시 + 1. 탄약수령 시간이 늦었음. + 2. 3교 인수인계시간 탄약수불 끝나고 바로(3교에 연락할것) + +# 2026.5.14(목) +1. 연대임무수행철 비문(2급) 군수현황 수정(수송,물자,탄약) +2. 3교육대 개인장구류 전산 재산 불출(다용도,수통,탄입집,조끼등) +3. 예산 계획보고(물자유지비,취사기구,) +4. \ No newline at end of file diff --git a/장비.md b/장비.md index 4157e8c..315b77f 100644 --- a/장비.md +++ b/장비.md @@ -7,4 +7,5 @@ # 기존 진행처리 문의, 2,4중대 소총 각 1정 반납?(이재성) # 4중대 소총 손망실 1정 진행 경과 문의(이재성) -# 26.4. 한서욱 주무관, K-3기관총 관리전환예정,연대급부대 \ No newline at end of file +# 26.4. 한서욱 주무관, K-3기관총 관리전환예정,연대급부대 + diff --git a/전술훈련평가.md b/전술훈련평가.md index 18e1a9b..6b1e5aa 100644 --- a/전술훈련평가.md +++ b/전술훈련평가.md @@ -39,4 +39,8 @@ - 군장결속 - 간부비상소집 - 경보전파 -- 대검불출 \ No newline at end of file +- 대검불출 + + +# 육훈소 30연대 +1. 물자인수인계, 3교,사전 연락 \ No newline at end of file diff --git a/정수기.md b/정수기.md index 35adc6b..58d04d8 100644 --- a/정수기.md +++ b/정수기.md @@ -7,4 +7,9 @@ - 6개월단위 점검시 대당 150000원 - 청소,점검,필터 교체(6개월단위) - 6개월만 월단위 점검 가능, 월 44000원에 이용가능 - - + - 2개월단위 점검(0) + - 대당 55000원, 3회 점검 + - 재 통보, 5.11(월) + - 첫방문시 필터교체 165,000(대당) 6대 990,000원 + - 이후 방문시 55,000원(대당)6대 2회 660,000원 + - 합계 1,650,000원 diff --git a/지휘관 교체 재물조사.md b/지휘관 교체 재물조사.md index c3289bb..a3116ab 100644 --- a/지휘관 교체 재물조사.md +++ b/지휘관 교체 재물조사.md @@ -2,3 +2,11 @@ # 장비(화기) 재물조사표 # 탄약 재물조사표 # 1300-1600 + +# 6.10(수) 7중대장(원사이재광) 교체예정 +1. 7중대장 교체 + 전임자: 원사 이재광 + 후임자: 상사 김유승(현 23-10중대장) + + 이취임식: 6.10(수) 예정 + 재물조사 가능기간: 6.8~6.9 diff --git a/통합이동정비.md b/통합이동정비.md index 4d736db..8418d7c 100644 --- a/통합이동정비.md +++ b/통합이동정비.md @@ -2,4 +2,19 @@ # 4월, 1교, 후속조치 1. K5방독면 안면부 폐처리, 20개(7,13,0,0) -2. K2소총, 폐처리 2정(1,0,0,1) \ No newline at end of file +2. K2소총, 폐처리 2정(1,0,0,1) + +# 1교육대 교육수료주 통합이동정비 추속조치,임대원 + - [ ] 방독면 폐처리:1중대16,2중대10,3중대9,4중대27 + - [ ] 총기 폐처리:2중대 1정(손망실), 4중대2정 + + +# 3교육대통합이동정비 후속조치 + - [ ] 방독면 입고정비:안면부8,휴대주머니68(9중3,20,10중3,8,11중2,25,12중0,15) + - [ ] k2소총:입고정비17(9중5,10중2,11중8,12중2) + - [ ] 통신장비(워키토키):입고정비2(11중1,12중1) + + +# 3교 이동정비 후속조치 +1. 10중대 k2소총 3정 반납, 415538,865628,676896 +2. \ No newline at end of file diff --git a/폐자원매각대금.md b/폐자원매각대금.md new file mode 100644 index 0000000..c3891c9 --- /dev/null +++ b/폐자원매각대금.md @@ -0,0 +1 @@ +# 5.15 276명 5000원 1380000원, 미니보쌈,닭강정,탄산 \ No newline at end of file diff --git a/하게 재난대비계획 기간.md b/하게 재난대비계획 기간.md new file mode 100644 index 0000000..e69de29 diff --git a/하계재난대비계획.md b/하계재난대비계획.md new file mode 100644 index 0000000..cb21ec3 --- /dev/null +++ b/하계재난대비계획.md @@ -0,0 +1,15 @@ +# 비상발전기 2대 의무과 5kw, 취사장 300kw +# UPS 9대 +1. 연대본부 :통신서버실 1, 의무실 1 +2. 본부중대 : 행정반 1 +3. 1교육대 : 지휘통제실 1, A중대 1 +4. 2교육대 : 지휘통제실 1, A중대 1 +5. 3교육대 : 지휘통제실 1, A중대 1 +# 배수펌프 : 27개 +1. 통합보일러실 지하 3개 +2. 각교육대별 측면화장실 , 중앙화장실 4개씩 총 12개 +3. 각교육대별 기계실 2개씩 총 6개 +4. 1교 목욕탕 1개 +5. 3교 목욕탕 2개 +6. 병영식당 지하 2개 +7. 본부중대 1개 \ No newline at end of file diff --git a/혹서기일과.md b/혹서기일과.md index f96e753..b50380d 100644 --- a/혹서기일과.md +++ b/혹서기일과.md @@ -3,6 +3,27 @@ - 휴가 출발 0730, 복귀 2000 - 외출외박 복귀 2000 - 간부 오전휴가 출근 1230, 오후휴가 출발 1130 -- 조식 0630, 석식 1630 -- 휴대전화 불출 당직투입 1330, 회수 저녁점호 30분전 +- 간부식당 조식 0630, 석식 1630 +- 영외훈련 교육대 휴대전화 불출 당직투입 1330, 회수 저녁점호 30분전 - 복장, 티셔츠,흑색,곤색,녹색,디지털, 검뱃셔츠 +- 혹서기 일과표 기상 0600 취침 2200 +- 0630-0730 점호,식사 +- 0730-0930 체조 및 일일체력단련 +- 0900-1200 오전일과 +- 1200-1300 중식 +- 1300-1630 오후일과 +- 1630-1730 개인정비 +- 1730-2000 삭식,개인정비 +- 2000-2100 병영생활 임무분담제 +- 2100-2130 저녁점호준비 +- 2130-2200 저녁점호 +- 2200- 0600 취칭 +- 근무투입 평일 일과종료 1시간전 +- 주말,공휴일 0900 +- 근무철수 일과 시작시 + - 영외훈련 0400 + - 영내훈련 0830 + - 기타부대 0730 + - 휴일근무 0900 +- 매주화요일 연무문 혼잡 +-