-
Notifications
You must be signed in to change notification settings - Fork 2
/
BoM_Commands_A3.py
156 lines (128 loc) · 6.26 KB
/
BoM_Commands_A3.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# ***************************************************************************
# * Copyright (c) 2023 Paul Ebbers [email protected] *
# * *
# * This file is part of the FreeCAD CAx development system. *
# * *
# * This program is free software; you can redistribute it and/or modify *
# * it under the terms of the GNU Lesser General Public License (LGPL) *
# * as published by the Free Software Foundation; either version 2 of *
# * the License, or (at your option) any later version. *
# * for detail see the LICENCE text file. *
# * *
# * FreeCAD is distributed in the hope that it will be useful, *
# * but WITHOUT ANY WARRANTY; without even the implied warranty of *
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
# * GNU Lesser General Public License for more details. *
# * *
# * You should have received a copy of the GNU Library General Public *
# * License along with FreeCAD; if not, write to the Free Software *
# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
# * USA *
# * *
# ***************************************************************************/
# FreeCAD init script of the Work Features module
import FreeCAD as App
import FreeCADGui as Gui
# Define the translation
translate = App.Qt.translate
class CreatePartsOnlyBOM_A3_Class:
def GetResources(self):
return {
"Pixmap": "Assembly3-Parts.svg", # the name of a svg file available in the resources
"MenuText": "Create a parts only BoM",
"ToolTip": "Create a parts only Bill of Materials in a spreadsheet",
}
def Activated(self):
from GetBOM_A3 import BomFunctions
BomFunctions.Start("PartsOnly")
return
def IsActive(self):
"""Here you can define if the command must be active or not (greyed) if certain conditions
are met or not. This function is optional."""
# Set the default state
result = False
# Get for the active document.
ActiveDoc = App.activeDocument()
if ActiveDoc is not None:
# Check if the document has any pages. If so the result is True and the command is activated.
pages = App.ActiveDocument.findObjects("TechDraw::DrawPage")
if pages is not None:
result = True
return result
class CreateSummarizedBOM_A3_Class:
def GetResources(self):
return {
"Pixmap": "Assembly3-Summary.svg", # the name of a svg file available in the resources
"MenuText": "Create a summarized BoM",
"ToolTip": "Create a summary of all the parts and assemblies in a spreadsheet",
}
def Activated(self):
from GetBOM_A3 import BomFunctions
BomFunctions.Start("Summarized")
return
def IsActive(self):
"""Here you can define if the command must be active or not (greyed) if certain conditions
are met or not. This function is optional."""
# Set the default state
result = False
# Get for the active document.
ActiveDoc = App.activeDocument()
if ActiveDoc is not None:
# Check if the document has any pages. If so the result is True and the command is activated.
pages = App.ActiveDocument.findObjects("TechDraw::DrawPage")
if pages is not None:
result = True
return result
class CreateTotalBOM_A3_Class:
def GetResources(self):
return {
"Pixmap": "Assembly3-Total.svg", # the name of a svg file available in the resources
"MenuText": "Create a overall BoM",
"ToolTip": "Create a Bill of Materials in a spreadsheet",
}
def Activated(self):
from GetBOM_A3 import BomFunctions
BomFunctions.Start("Total")
return
def IsActive(self):
"""Here you can define if the command must be active or not (greyed) if certain conditions
are met or not. This function is optional."""
# Set the default state
result = False
# Get for the active document.
ActiveDoc = App.activeDocument()
if ActiveDoc is not None:
# Check if the document has any pages. If so the result is True and the command is activated.
pages = App.ActiveDocument.findObjects("TechDraw::DrawPage")
if pages is not None:
result = True
return result
class CreateRawBOM_A3_Class:
def GetResources(self):
return {
"Pixmap": "Assembly3-Raw.svg", # the name of a svg file available in the resources
"MenuText": "Create the raw BoM",
"ToolTip": "Create a Bill of Materials in a spreadsheet, as is.",
}
def Activated(self):
from GetBOM_A3 import BomFunctions
BomFunctions.Start("Raw")
return
def IsActive(self):
"""Here you can define if the command must be active or not (greyed) if certain conditions
are met or not. This function is optional."""
# Set the default state
result = False
# Get for the active document.
ActiveDoc = App.activeDocument()
if ActiveDoc is not None:
# Check if the document has any pages. If so the result is True and the command is activated.
pages = App.ActiveDocument.findObjects("TechDraw::DrawPage")
if pages is not None:
result = True
return result
# Add the commands to the Gui
Gui.addCommand("CreateBOM_PartsOnly_Assembly3", CreatePartsOnlyBOM_A3_Class())
Gui.addCommand("CreateBOM_Summary_Assembly3", CreateSummarizedBOM_A3_Class())
Gui.addCommand("CreateBOM_Total_Assembly3", CreateTotalBOM_A3_Class())
Gui.addCommand("CreateBOM_Raw_Assembly3", CreateRawBOM_A3_Class())