protected void createDeliveryNote() {
try {
final DeliveryNote deliveryNote = new DeliveryNote();
String userNumber = getNextUserNumber(DeliveryNote.class);
deliveryNote.setDataFromTransaction(getOrderConfirmation(), userNumber);
JbsOptionPane dialog = JbsOptionPane.showMessageDialog(this, JbsL10N.getString("OrderConfirmation.msgToDeliveryNote"), JbsL10N.getString("OrderConfirmation.formTitle"), JbsOptionPane.INFORMATION_MESSAGE);
dialog.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
FmDeliveryNoteEdit fmDeliveryNoteEdit = new FmDeliveryNoteEdit();
fmDeliveryNoteEdit.showForm(DlgState.dsCopy, deliveryNote);
addAction(PnOfferEdit.ACTION_TODELIVERYNOTE);