Pierwszy commit Visual studio

This commit is contained in:
2026-06-08 14:39:37 +02:00
parent e2fc5f8ce4
commit f97e94f7ab
4 changed files with 11 additions and 3 deletions
Binary file not shown.
@@ -101,7 +101,7 @@
"RelativeDocumentMoniker": "Program.cs", "RelativeDocumentMoniker": "Program.cs",
"ToolTip": "\\\\fx2nas\\PROGRAMISCI\\spietrowcow\\VIKING\\FX2_SP_WORKERS\\Program.cs", "ToolTip": "\\\\fx2nas\\PROGRAMISCI\\spietrowcow\\VIKING\\FX2_SP_WORKERS\\Program.cs",
"RelativeToolTip": "Program.cs", "RelativeToolTip": "Program.cs",
"ViewState": "AgIAACsAAAAAAAAAAAAiwEEAAABDAAAAAAAAAA==", "ViewState": "AgIAAGcAAAAAAAAAAAAwwIUAAAAJAAAAAAAAAA==",
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
"WhenOpened": "2026-04-17T06:14:19.546Z", "WhenOpened": "2026-04-17T06:14:19.546Z",
"EditorCaption": "" "EditorCaption": ""
+5 -1
View File
@@ -19,7 +19,7 @@
"DocumentGroups": [ "DocumentGroups": [
{ {
"DockedWidth": 200, "DockedWidth": 200,
"SelectedChildIndex": 14, "SelectedChildIndex": 15,
"Children": [ "Children": [
{ {
"$type": "Bookmark", "$type": "Bookmark",
@@ -69,6 +69,10 @@
"$type": "Bookmark", "$type": "Bookmark",
"Name": "ST:0:0:{57d563b6-44a5-47df-85be-f4199ad6b651}" "Name": "ST:0:0:{57d563b6-44a5-47df-85be-f4199ad6b651}"
}, },
{
"$type": "Bookmark",
"Name": "ST:0:0:{c6f34f0d-7ae5-4f3a-be61-fe0c21ae9eb8}"
},
{ {
"$type": "Document", "$type": "Document",
"DocumentIndex": 1, "DocumentIndex": 1,
+5 -1
View File
@@ -13,7 +13,6 @@ using Soneta.Kalend;
//Workery //Workery
[assembly: Worker(typeof(FX2_SP_WORKERS.PrzeksiegowanieProwizjeButton), typeof(DokEwidencji))] [assembly: Worker(typeof(FX2_SP_WORKERS.PrzeksiegowanieProwizjeButton), typeof(DokEwidencji))]
[assembly: Worker(typeof(FX2_SP_WORKERS.PrzeksiegowanieKosztyButton), typeof(DokEwidencji))] [assembly: Worker(typeof(FX2_SP_WORKERS.PrzeksiegowanieKosztyButton), typeof(DokEwidencji))]
//[assembly: Worker(typeof(FX2_SP_WORKERS.UzupelnijPodmiotOperBankButton), typeof(ZapisyKsiegowe))]
[assembly: Worker(typeof(FX2_SP_WORKERS.ImportRcpCsvButton), typeof(WejsciaWyjsciaI))] [assembly: Worker(typeof(FX2_SP_WORKERS.ImportRcpCsvButton), typeof(WejsciaWyjsciaI))]
namespace FX2_SP_WORKERS namespace FX2_SP_WORKERS
@@ -79,10 +78,12 @@ namespace FX2_SP_WORKERS
return PrzeksiegowanieKoszty.PrzeksiegowanieKosztyFun.Visible(cx); return PrzeksiegowanieKoszty.PrzeksiegowanieKosztyFun.Visible(cx);
} }
} }
internal class UzupelnijPodmiotOperBankButton internal class UzupelnijPodmiotOperBankButton
{ {
[Context] [Context]
public Context context { get; set; } public Context context { get; set; }
[Action( [Action(
"Uzupelnij Podmiot Operacji Bankowej", "Uzupelnij Podmiot Operacji Bankowej",
Description = "Uzupełnia podmiot operacji bankowej na zapisach księgowych powiązanych z wyciągiem bankowym", Description = "Uzupełnia podmiot operacji bankowej na zapisach księgowych powiązanych z wyciągiem bankowym",
@@ -94,6 +95,7 @@ namespace FX2_SP_WORKERS
{ {
return UzupelnijPodmiotOperBankFun.Start(context); return UzupelnijPodmiotOperBankFun.Start(context);
} }
public static bool IsEnabledUzupelnijPodmiotOperBank(Context cx) public static bool IsEnabledUzupelnijPodmiotOperBank(Context cx)
{ {
return true; return true;
@@ -132,10 +134,12 @@ namespace FX2_SP_WORKERS
return ImportRCPFun.Start(context, streamReader); return ImportRCPFun.Start(context, streamReader);
} }
public static bool IsEnabledImportRcpStart(Context cx) public static bool IsEnabledImportRcpStart(Context cx)
{ {
return ImportRCPFun.Enabled(cx); return ImportRCPFun.Enabled(cx);
} }
public static bool IsVisibleImportRcpStart(Context cx) public static bool IsVisibleImportRcpStart(Context cx)
{ {
return ImportRCPFun.Visible(cx); return ImportRCPFun.Visible(cx);