Page MenuHomePhabricator

Update PhortuneMerchant to Modular Transactions
ClosedPublic

Authored by chad on Mar 30 2017, 3:58 PM.
Tags
None
Referenced Files
Unknown Object (File)
Oct 19 2024, 7:58 PM
Unknown Object (File)
Oct 14 2024, 12:38 PM
Unknown Object (File)
Sep 5 2024, 3:55 AM
Unknown Object (File)
Sep 4 2024, 2:39 PM
Unknown Object (File)
Aug 29 2024, 10:39 AM
Unknown Object (File)
Aug 28 2024, 8:22 PM
Unknown Object (File)
Aug 19 2024, 11:44 AM
Unknown Object (File)
Aug 19 2024, 1:21 AM
Subscribers

Details

Summary

Modernize PhortuneMerchant for Modular Transactions. Also changed the language of "Members" to "Managers", which I think fits better given the power/capability.

Test Plan
  • Create a new Merchant
  • Test not filling in a name, see error
  • Test removing myself, see error
  • Edit an existing Merchant
  • Add new managers
  • Test removing myself, see error
  • Replace Picture
  • Update various fields, contact info, email, footer
  • Verify transactions are now nice and pretty

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

epriestley added inline comments.
src/applications/phortune/editor/PhortuneMerchantEditor.php
20–21

You can get rid of these, ModularTransactions figures them out automatically (part of the motivation is that you don't have to edit Editor -- or anything else in the upstream -- to add new transaction types).

src/applications/phortune/storage/PhortuneMerchantTransaction.php
17–19

Can we avoid adding new types of mail tags? Per elsewhere, I believe things will work fine without this code: mail tags are not required, and we didn't have them before.

src/applications/phortune/xaction/PhortuneMerchantInvoiceEmailTransaction.php
73

More correct as if (strlen(...))

76

Technically this one should probably be if (!strlen(...)).

77

newInvalidError

85

This should be newInvalidError().

Usage is:

  • When a field is missing but required, use newRequiredError().
  • When a field is present and invalid, use newInvalidError().

The big difference is that newRequriedError() gets ignored if setContinueOnMissingFields(true) is set on the Editor.

src/applications/phortune/xaction/PhortuneMerchantNameTransaction.php
38

This one is right ("required").

47

newInvalidError

This revision is now accepted and ready to land.Apr 11 2017, 11:45 AM
chad marked 8 inline comments as done.
  • per comments
This revision was automatically updated to reflect the committed changes.