order2 = frepple.demand(name="order 2", item=item, quantity=10, priority=2, \ due=datetime.datetime(2009,3,2,8,30,0), customer=mycustomer, maxlateness=0) order3 = frepple.demand(name="order 3", item=item, quantity=10, priority=3, \ due=datetime.datetime(2009,3,2,20,0,0), customer=mycustomer, maxlateness=0) ### print("\nCreating a solver and running it") frepple.solver_mrp(name="MRP", constraints=7, loglevel=0).solve() ### print("\nEchoing the model to a file") printModel("output.1.xml") ### print("\nSaving the model to an XML-file") frepple.saveXMLfile("output.2.xml") ### print("\nPrinting some models in XML format") print(mycustomer.toXML()) print(locA.toXML()) print(opplan.toXML()) print(item.toXML()) print(order1.toXML()) print(buf1.toXML()) print(makeoper.toXML()) for i in frepple.problems(): print(i.toXML()) ### print("\nPrinting some models in XML format to a file")
def run(database=DEFAULT_DB_ALIAS, **kwargs): import frepple frepple.saveXMLfile("output.1.xml", "BASE")
def run(database=DEFAULT_DB_ALIAS, **kwargs): import frepple frepple.saveXMLfile("output.1.xml","BASE")