DS changes for new printers - Celerant
The database part of this where I created the records for store 25 to add those 2 tag template you have and assign them to printer 1 and 2 is something that I can do for the remaining stores pretty quickly. I just need to know the store numbers and I can run a script to create those records. Or should I just create it for every store?
For the DS changes, it's just a matter of making the following changes in the DeviceServiceConfig.xml file in C:\Celerant\DS
Currently you will see 1 section for the "LabelPrinterRequest", that entire section needs to be replaced with this:
<WiredInterconnect id="LabelPrinterRequest" enabled="true">
<type>PRINTER</type>
<logicalName>ZDesigner TLP 3844-Z</logicalName>
<propertyPack>
<descriptant>Label Printer</descriptant>
<property key="PRINTER_NUM">1</property>
</propertyPack>
</WiredInterconnect>
The logicalName section is where you would put in the name of printer 1.
You can then paste the section again under the last /WiredInterconnect to create the second record for printer 2, similar to below, again replacing logicalName with the name of the second printer:
<WiredInterconnect id="LabelPrinterRequest" enabled="true">
<type>PRINTER</type>
<logicalName>ZDesigner TLP 3844-Z</logicalName>
<propertyPack>
<descriptant>Label Printer</descriptant>
<property key="PRINTER_NUM">2</property>
</propertyPack>
</WiredInterconnect>