Service update, import changes from web_portal
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
using System.Collections;
|
||||
using Microsoft.SharePoint.Client;
|
||||
using Microsoft.VisualBasic;
|
||||
|
||||
namespace console_spo_utils.Constants;
|
||||
namespace library_spo_utils.Constants;
|
||||
|
||||
internal static class Folders
|
||||
{
|
||||
@@ -24,10 +25,10 @@ internal static class Folders
|
||||
{
|
||||
var itemQuickMenu = new Dictionary<string, string>
|
||||
{
|
||||
{ $"Commerciale {projName}", $"{subSiteUrl}/Commerciale%20{projName}" },
|
||||
{ $"Documenti {projName}", $"{subSiteUrl}/Documenti%20{projName}" },
|
||||
{ $"Media {projName}", $"{subSiteUrl}/Media%20{projName}" },
|
||||
{ $"SottoCommesse {projName}", $"{subSiteUrl}/SottoCommesse%20{projName}" }
|
||||
{ $"Commerciale {projName}", $"{subSiteUrl}/Commerciale%20{projName.Replace("-","")}" },
|
||||
{ $"Documenti {projName}", $"{subSiteUrl}/Documenti%20{projName.Replace("-","")}" },
|
||||
{ $"Media {projName}", $"{subSiteUrl}/Media%20{projName.Replace("-","")}" },
|
||||
{ $"SottoCommesse {projName}", $"{subSiteUrl}/SottoCommesse%20{projName.Replace("-", "")}" }
|
||||
};
|
||||
return itemQuickMenu;
|
||||
}
|
||||
@@ -47,33 +48,52 @@ internal static class Folders
|
||||
{
|
||||
get
|
||||
{
|
||||
return new string[]
|
||||
return new string[]
|
||||
{
|
||||
"09_Documenti_Tecnici",
|
||||
"12_Disegni_Costruttivi",
|
||||
"13_Manuali",
|
||||
"09_Documenti_Tecnici",
|
||||
"12_Disegni_Costruttivi",
|
||||
"13_Manuali",
|
||||
"15_Documentazione_Elettrica",
|
||||
"16_Liste_Ricambi"
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
internal static IEnumerable OfferDocSet
|
||||
internal static IEnumerable OfferDocSet(string rev) =>
|
||||
new string[]
|
||||
{
|
||||
rev,
|
||||
$"{rev}/01_Costificazione",
|
||||
$"{rev}/02_Offerta",
|
||||
$"{rev}/03_Meeting",
|
||||
$"{rev}/04_Corrispondenza",
|
||||
$"{rev}/08_Specifiche_Tecniche",
|
||||
$"{rev}/10_Fornitori",
|
||||
$"{rev}/11_Documenti_Tecnici",
|
||||
$"{rev}/14_Foto"
|
||||
};
|
||||
|
||||
|
||||
|
||||
internal static IEnumerable PurchasingOneNoteDir(string year) =>
|
||||
new string[]
|
||||
{
|
||||
$"{year}",
|
||||
$"{year}/Ordini di Acquisto",
|
||||
$"{year}/DDT di Acquisto",
|
||||
$"{year}/Richieste di Acquisto"
|
||||
};
|
||||
|
||||
|
||||
internal static IEnumerable PurchasingOrder
|
||||
{
|
||||
get
|
||||
{
|
||||
string rev = "Rev. 1"; //TODO: Definire revisione
|
||||
return new string[]
|
||||
return new string[]
|
||||
{
|
||||
rev,
|
||||
$"{rev}/01_Costificazione",
|
||||
$"{rev}/02_Offerta",
|
||||
$"{rev}/03_Meeting",
|
||||
$"{rev}/04_Corrispondenza",
|
||||
$"{rev}/08_Specifiche_Tecniche",
|
||||
$"{rev}/10_Fornitori",
|
||||
$"{rev}/11_Documenti_Tecnici",
|
||||
$"{rev}/14_Foto"
|
||||
"Conferma ordine",
|
||||
"Offerte",
|
||||
"Richiesta di Offerta"
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user