This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Convert Purchase Order to Vendor Bill | |
| # Works for single record or multiple records | |
| log(f"Processing {len(records)} records") | |
| for po in records: | |
| log(f"Processing PO: {po.name}, Model: {po._name}, State: {po.state}") | |