I found the solution
In the file: administrator/component/com_virtuemart/pdf/delivery.pdf.php
You need to change the following lines:
// PDF
// SKU
$pdf->SetFont($pdfFont,'',7);
$pdf->Cell(15,5,$db->f('order_item_sku'),0,0,'L');
if($d['gen'] == 'bill') {
$pdf->Cell(70,5,$db->f('order_item_name'),0,0,'L');
$pdf->Cell(7,5,$db->f('product_quantity'),0,0,'C');
// $pdf->Cell(8,5,$db->f('product_quantity_delivered'),0,0,'C');
// $pdf->Cell(10,5,$remaining,0,0,'C');
$pdf->Cell(18,5,$pdf->unhtmlentities($CURRENCY_DISPLAY->getFullValue($price_without_tax['item'])),0,0,'R');
$pdf->Cell(19,5,$pdf->unhtmlentities($CURRENCY_DISPLAY->getFullValue($price_without_tax['sum'])),0,0,'R');
$pdf->Cell(12,5,$pdf->unhtmlentities($CURRENCY_DISPLAY->getFullValue($price_tax['sum'])),0,0,'R');
$pdf->Cell(19,5,$pdf->unhtmlentities($CURRENCY_DISPLAY->getFullValue($price_with_tax['sum'])),0,0,'R');
} else {
$pdf->Cell(70,5,$db->f('order_item_name'),0,0,'L');
$pdf->Cell(10,5,$db->f('product_quantity'),0,0,'C');
$pdf->Cell(10,5,$db->f('product_quantity_delivered'),0,0,'C');
$pdf->Cell(20,5,$remaining,0,0,'C');
}
With This:
// PDF
// This is where the order details are placed in the PDF the second number Y in rows: Cell(X,Y,$............. is the
// position of the order details.
// SKU
$pdf->SetFont($pdfFont,'',7);
$pdf->Cell(15,200,$db->f('order_item_sku'),0,0,'L');
if($d['gen'] == 'bill') {
$pdf->Cell(70,200,$db->f('order_item_name'),0,0,'L');
$pdf->Cell(7,200,$db->f('product_quantity'),0,0,'C');
// $pdf->Cell(8,200,$db->f('product_quantity_delivered'),0,0,'C');
// $pdf->Cell(10,200,$remaining,0,0,'C');
$pdf->Cell(18,200,$pdf->unhtmlentities($CURRENCY_DISPLAY->getFullValue($price_without_tax['item'])),0,0,'R');
$pdf->Cell(19,200,$pdf->unhtmlentities($CURRENCY_DISPLAY->getFullValue($price_without_tax['sum'])),0,0,'R');
$pdf->Cell(12,200,$pdf->unhtmlentities($CURRENCY_DISPLAY->getFullValue($price_tax['sum'])),0,0,'R');
$pdf->Cell(19,200,$pdf->unhtmlentities($CURRENCY_DISPLAY->getFullValue($price_with_tax['sum'])),0,0,'R');
} else {
$pdf->Cell(70,200,$db->f('order_item_name'),0,0,'L');
$pdf->Cell(10,200,$db->f('product_quantity'),0,0,'C');
$pdf->Cell(10,200,$db->f('product_quantity_delivered'),0,0,'C');
$pdf->Cell(20,200,$remaining,0,0,'C');
}
And this:
$pdf->Ln(5);
$pdf->SetX(110);
$pdf->SetFont($pdfFont,'B',9);
$pdf->Cell(40,5,$VM_LANG->_('VM_DELIVERY_PRINT_SUBTOTAL_LBL').' :',0,0,'R');
$pdf->SetFont($pdfFont,'',9);
$pdf->Cell(30,5,$pdf->unhtmlentities($CURRENCY_DISPLAY->getFullValue($without_tax['item_total'])),0,0,'R');
with this:
// This is the posistion of the Total values $pdf->Ln(190)
$pdf->Ln(110);
$pdf->SetX(110);
$pdf->SetFont($pdfFont,'B',9);
$pdf->Cell(40,5,$VM_LANG->_('VM_DELIVERY_PRINT_SUBTOTAL_LBL').' :',0,0,'R');
$pdf->SetFont($pdfFont,'',9);
$pdf->Cell(30,5,$pdf->unhtmlentities($CURRENCY_DISPLAY->getFullValue($without_tax['item_total'])),0,0,'R');
Please pay attention to the comments I have made, maybe you will need to adjust these settings a little to fit your report correctly