Assembly: Implement Bill Of Materials (#14198)
* Assembly: Implementation of BOM * Assembly: BOM: make it possible for BOM to be made without an assembly.
This commit is contained in:
@@ -59,3 +59,21 @@ int ViewProviderSpreadsheetPy::setCustomAttributes(const char* /*attr*/, PyObjec
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
PyObject* ViewProviderSpreadsheetPy::showSheetMdi(PyObject* args)
|
||||
{
|
||||
if (!PyArg_ParseTuple(args, "")) {
|
||||
return nullptr;
|
||||
}
|
||||
this->getViewProviderSheetPtr()->showSheetMdi();
|
||||
Py_Return;
|
||||
}
|
||||
|
||||
PyObject* ViewProviderSpreadsheetPy::exportAsFile(PyObject* args)
|
||||
{
|
||||
if (!PyArg_ParseTuple(args, "")) {
|
||||
return nullptr;
|
||||
}
|
||||
this->getViewProviderSheetPtr()->exportAsFile();
|
||||
Py_Return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user