Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
416 changes: 416 additions & 0 deletions FiscalApi.Samples.NetFramework/BillOfLadingReferenceForm.Designer.cs

Large diffs are not rendered by default.

3,029 changes: 3,029 additions & 0 deletions FiscalApi.Samples.NetFramework/BillOfLadingReferenceForm.cs

Large diffs are not rendered by default.

416 changes: 416 additions & 0 deletions FiscalApi.Samples.NetFramework/BillOfLadingValueForm.Designer.cs

Large diffs are not rendered by default.

3,119 changes: 3,119 additions & 0 deletions FiscalApi.Samples.NetFramework/BillOfLadingValueForm.cs

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Fiscalapi, Version=4.0.360.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Fiscalapi.4.0.360\lib\net461\Fiscalapi.dll</HintPath>
<Reference Include="Fiscalapi, Version=4.0.372.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Fiscalapi.4.0.372\lib\net461\Fiscalapi.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Bcl.AsyncInterfaces, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.Bcl.AsyncInterfaces.8.0.0\lib\netstandard2.0\Microsoft.Bcl.AsyncInterfaces.dll</HintPath>
Expand Down Expand Up @@ -108,6 +108,18 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="BillOfLadingReferenceForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="BillOfLadingReferenceForm.Designer.cs">
<DependentUpon>BillOfLadingReferenceForm.cs</DependentUpon>
</Compile>
<Compile Include="BillOfLadingValueForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="BillOfLadingValueForm.Designer.cs">
<DependentUpon>BillOfLadingValueForm.cs</DependentUpon>
</Compile>
<Compile Include="CreditNoteInvoiceValueForm.cs">
<SubType>Form</SubType>
</Compile>
Expand Down
4 changes: 2 additions & 2 deletions FiscalApi.Samples.NetFramework/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ public Form1()
Settings = new FiscalapiSettings
{
ApiUrl = "https://test.fiscalapi.com",
ApiKey = "sk_test_b4f8cc00_d02a_4ecc_a68a_f87ae970958c",
Tenant = "275510ee-f64d-435a-9e92-1553d8f10a7e",
ApiKey = "api_key",
Tenant = "tenant_id",
};

// Create directory if not exists
Expand Down
3 changes: 2 additions & 1 deletion FiscalApi.Samples.NetFramework/InvoiceReferenceForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,8 @@ private void button13_Click(object sender, EventArgs e)

private void button14_Click(object sender, EventArgs e)
{

BillOfLadingReferenceForm billOfLadingReferenceForm = new BillOfLadingReferenceForm(_settings);
billOfLadingReferenceForm.ShowDialog();
}
}
}
3 changes: 2 additions & 1 deletion FiscalApi.Samples.NetFramework/InvoiceValueForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,8 @@ private void button9_Click_1(object sender, EventArgs e)

private void button13_Click_1(object sender, EventArgs e)
{

BillOfLadingValueForm cartaporteForm = new BillOfLadingValueForm(_settings);
cartaporteForm.ShowDialog();
}

private void button10_Click_1(object sender, EventArgs e)
Expand Down