Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
linenumberstrue
<barcodes mutliple="false">
	<barcode name="kod" type="CODE_128" pattern="(^KOD.*)" />
</barcodes>
<classify>
	<class-set>
set name="Zestaw klas">
		<start>
			<firstpage modifier="+1" />
		</start>
		<end>
			<lastpage modifier="-1" />
		</end>
		<indexes>
			<index name="kodIndex" type="barcode">kod</index>
		</indexes>
		<class name="Faktury">
			...
			<indexes>
				<index name="kodIndex" type="import">kodIndex</index>
			</indexes>
			<destination>
				<filename>${basename}_${kodIndex}.pdf</filename>
				<directory path="D:/Faktury" />
			</destination>
			...
		</class>
		<class name="Załączniki">
			...
		</class>
	</class-set>
</classify>

...