Compare commits
2 Commits
0b4173014f
...
b693d8a092
| Author | SHA1 | Date | |
|---|---|---|---|
| b693d8a092 | |||
| 96e54a686b |
Submodule EtchBendLines updated: 1e66f9d960...f664bd79a4
@@ -5,7 +5,7 @@ using System.IO;
|
||||
|
||||
namespace ExportDXF
|
||||
{
|
||||
public class ExportBomToExcel
|
||||
public class BomToExcel
|
||||
{
|
||||
public string TemplatePath
|
||||
{
|
||||
@@ -92,7 +92,7 @@
|
||||
<Compile Include="BendOrientation.cs" />
|
||||
<Compile Include="Bounds.cs" />
|
||||
<Compile Include="DrawingInfo.cs" />
|
||||
<Compile Include="ExportBomToExcel.cs" />
|
||||
<Compile Include="BomToExcel.cs" />
|
||||
<Compile Include="Extensions.cs" />
|
||||
<Compile Include="ItemExtractor.cs" />
|
||||
<Compile Include="Forms\ViewFlipDeciderComboboxItem.cs" />
|
||||
|
||||
@@ -424,7 +424,7 @@ namespace ExportDXF.Forms
|
||||
var bomName = drawingInfo != null ? string.Format("{0} {1} BOM", drawingInfo.JobNo, drawingInfo.DrawingNo) : "BOM";
|
||||
var bomFile = Path.Combine(savePath, bomName + ".xlsx");
|
||||
|
||||
var excelReport = new ExportBomToExcel();
|
||||
var excelReport = new BomToExcel();
|
||||
excelReport.CreateBOMExcelFile(bomFile, items.ToList());
|
||||
}
|
||||
catch (Exception ex)
|
||||
@@ -528,7 +528,8 @@ namespace ExportDXF.Forms
|
||||
|
||||
drawingModel.SaveAs(savePath);
|
||||
|
||||
EtchBendLines.Program.AddEtchLines(savePath);
|
||||
var etcher = new EtchBendLines.Etcher();
|
||||
etcher.AddEtchLines(savePath);
|
||||
|
||||
Print(partModel.GetTitle() + " - Saved to \"" + savePath + "\"", Color.Green);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user