Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Short Refactoring Tip: let the object do it for you

by Ovid (Cardinal)
on May 19, 2003 at 21:31 UTC ( [id://259306]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    if ($po->status->name eq 'Pending') {
        # po can be sent
    ...
    if ($po->status->name eq 'Pending' || $po->status->name eq 'Sent') {
        # po can be cancelled
    }
    
  2. or download this
    if ($po->can_send) {
        # po can be sent
    ...
    if ($po->can_cancel) {
        # po can be cancelled
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlmeditation [id://259306]
Front-paged by diotalevi
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (5)
As of 2024-03-28 08:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found