If I'm reading it correctly, your problem is that in your second block you're deleting $sale_items->{$salesKey}, and then in the condition to the third block you're checking $sale_items->{$salesKey}{amount}, which is recreating $sale_items->{$salesKey}. Probably the easiest way would be to next things a little, and reduce some of the repetition (like having exactly the same conditions on the warn and delete. In particular, doing the check for the amounts in an else (or elsif) will make sure you don't try to check something you've already deleted.
foreach my $paymentRow ( @$payments ) { foreach my $salesKey ( keys %$sale_items ) { ### make sure we're applying the right line items ... next if ( $paymentRow->{creditacct} != $sale_items->{$salesKey}{debitacct} ); next unless $paymentRow->{ppid} == $sale_items->{$salesKey}{ppid}; ## if payment can be applied, ## apply it and delete the row from payments/credits array if ( $paymentRow->{amount} == $sale_items->{$salesKey}{amount}){ warn "DELETING ... {$salesKey} "; delete $sale_items->{$salesKey}; undef( $paymentRow ); } elsif ($paymentRow->{amount} < $sale_items->{$salesKey}{amount}){ $sale_items->{$salesKey}{amount} -= $paymentRow->{amount}; } } }

In reply to Re: deleting key/value from hashref by Eimi Metamorphoumai
in thread deleting key/value from hashref by geektron

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.