I am trying to integrate a PayPal buy button into my website, and I am using the built-in inventory feature. I am trying to find a way to display how many units are left for inventory, as it will be small group tickets I am selling and I want my customers to know if an event is full or not. how would I display that?
The basic HTML hosted buttons generated by PayPal will not display remaining inventory.
To do so, essentially you need your own database that tracks inventory and displays this value on page load. When processing a transaction, before capturing a payment you should verify that there is enough remaining inventory, and decrement the inventory when the capture is successful.
There are third party solutions that implement such functionality (stock/inventory management), if you are unfamiliar with how to program such a site your self. PayPal's partner directory may be a place to start, and you can also search the web.
Related
I have recently created a list on our team's SharePoint site for tracking the list of action items for the team on a real-time basis and subsequently working to connect it with Excel for report generation. I wanted to add a few more functionalities but, am unable to understand how to go about it. The list of functionalities is as shared below -
Send auto-notification to assigned people in the action item list for all items overdue on a weekly basis.
Send auto-notification to assigned people in the action item list once the deadline for closure (as indicated in the list) is within 15 calendar days on a weekly basis.
Send a auto-summary report to the designated team managers on a weekly basis indicating the list of items overdue and pending for closure in next 7 calendar days.
Any help and guidance on how to add these functionalities to our existing SharePoint list will be highly appreciated.
Thanks in advance.
Note: I am not a SharePoint Developer but, have interest in the topic. I do not have any coding experience. I have been trying to experiment with the tool to reduce some of our mundane activities and hence, wanted to check with the experts if the above functionalities are actually possible.
For these functionalities, I would suggest you build scheduled flow to send notifications evety week.
Hopefully some one will know the answer.
I've been the developing a 3d modelling win-10 universal app which is going to include in app purchases.
What I'd preferably like to happen is that the customer can purchase models, textures, new tools etc via the in-app purchase mechanism.
What I need to know does everything have to be included in the original app or does the in app purchase actually add new code,models etc to the original app.?
If so where is the in-app purchase package uploaded to?
I haven't been able to find anything in the documentation that answers this question
Cheers.
Information on user's in-app purchases will be available to you through the
LicenseInformation.ProductLicenses property as a collection of ProductLicense objects. Each object contains basic information about the purchase like ID and expiration date. It means that it cannot contain any data related to your app.
You should include everting in the original app or you may put purchase related data (lets say your models and textures) on a web server and allow the app to download it after purchasing each in-app product. You can also very the receipt of purchases on the web server before providing data to clients.
I want to make a website for my friend who wants to sell clothing items. I can code a website with html, css and basic Javascript. I think this would be great for a portfolio piece. My only concern is I don't know enough programming to build a shopping cart or the checkout. Or any transaction for that matter. I can code forms but only the design of them. Can someone more experienced lend some advice on what I can do? Is there a way I can design my own website but use something else for the e-commerce part? Thanks in advance.
You have 3 options
Develop the whole store yourself
Use a CMS/Plugin to achieve that (like woocommerce for wordpress)
Make your site simple plain html with links to PayPal or similar's
I think you are looking for the last option here. It doesn't come with a lot of options, but would help you sell products and manage prices/expenses/return/etc. in a trusted service. You can create pricing buttons inside paypal for business website, and place them with html on your website. When the person clicks the button, they would be redirected to paypal's website
PayPal for Business
Premier accounts include all the benefits of Personal accounts, as well as our special features. Business accounts allow you to do business under a company or group name, accept all payment types for low fees, and accept payment from customers without PayPal accounts.
You can find more information on how to proceed on PayPal Developer Wiki
cheers :)
I'm customizing some NetSuite objects (forms, etc) including the Employee Centre's Time Tracking form. We want the people recording time (external contractors) to be able to enter time only against the projects and project tasks they have been explicitly assigned to.
So far it's going well, the only major problem is how to restrict what Customers they can see.
Currently the Customer field is where the system expects them to enter the name of the project, however that field will try to be "helpful" by listing/searching across the names of our customers as well. I'm using a customized version of the OOTB Time Tracking form.
How can I restrict the system so that the user can only see the projects they have been assigned? Or in other words, not see the entire customer base.
It's ok if they can also see the customer to whom the project belongs, and I'm open to solutions that are based on user access in the back-end (member for a group/role whatever, or, changing the way the Customer field works on the custom Time Tracking form.
I would like to create a small Xpages application that can show the calendar of our conference room. My idea is to have a web browser open on the Conference Room TVs so when somebody wants to get in the conference room they will see really quick that there is a meeting scheduled in 10 min.
I have tried using this template from OpenNTF - Link but I couldn't figure out how to pull the data from my Conference room resource into the calendar.
Any other idea how I can accomplish this?
Note: Having the user check the conference room schedule on LN is not an option. They already don't like LN.
Thanks,
Extension Library has a calendar control. It's basically the (8.5) iNotes calendar control, so data is loaded via a REST service. There are two methods of getting the data into a REST service, depending on whether or not the view you're picking up has columns with the programmatic names that are found in a Notes Mail calendar. The documentation in the XPages Extension Library book should cover the basics but, if you need clarification on any of the content, I wrote it.
Modifying the look and feel is not likely to be easy, because it's an XPage version of an IBM-specific Dojo-based control, which is possibly also why no version has been released to use the R9 look and feel.
Alternatively, it would be feasible to build a repeat control layout. Creating a ViewEntryCollection based on a DateRange is key to getting all entries between dates.