There is no "out-of-the-box" solution for pushing MemberMouse sales data into Google Analytics.
1. Follow the instructions in this Google article to enable eCommerce tracking:
https://support.google.com/analytics/answer/1009612?hl=en#Enable
2. When you've set everything up that Google needs, you'll add a tracking code to the confirmation page where you want the tracking to happen as described in this Google article:
https://support.google.com/tagmanager/answer/6107169
3. You'll replace the hard-coded data with order data SmartTags as follows:
<script> gtag("event", "purchase", { transaction_id: "[MM_Order_Data name='id']", affiliation: "Site Name", value: [MM_Order_Data name='total' doFormat='false'], shipping: [MM_Order_Data name='shipping' doFormat='false'], currency: "USD", coupon: "[MM_Order_Data name='couponCode']", items: [ { item_id: "[MM_Order_Data name='productId']", item_name: "[MM_Order_Data name='productName']", affiliation: "Site Name", coupon: "[MM_Order_Data name='couponCode']", currency: "USD", discount: [MM_Order_Data name='discount' doFormat='false'], price: [MM_Order_Data name='subtotal' doFormat='false'], quantity: 1 } ] }); </script>