Integrating Tailwind css with Vuejs

Tailwind CSS is a styling framework that we configure with front-end frameworks for better UI. We can easily use classes and styles using Tailwind as inline styles or classes. When it comes to integration, similar to any other application, integrating Tailwind with Vue.js is also easy and follows almost the same process. Here’s how it… Continue reading Integrating Tailwind css with Vuejs

Proposal for Max discount and Promotion

Proposal Summary  This proposal outlines a comprehensive solution for implementing the maximum discount and promotion. The automation focuses on approving sales orders based on the maximum discount and automatically applying the promotion according to the item and location. This automation aims to streamline the sales process, enhance efficiency, and ensure compliance with discount policies and… Continue reading Proposal for Max discount and Promotion

Adding New Menu in Payload

How to Create a New Menu in Payload ? Create a Custom Component: Create a React component for your new menu. import { slateEditor } from ‘@payloadcms/richtext-slate’ import path from ‘path’ import type { CollectionConfig } from ‘payload/types’ export const Test: CollectionConfig = {  slug: ‘test’,  upload: {   staticDir: path.resolve(__dirname, ‘../../../test’),  },  access: {   read:… Continue reading Adding New Menu in Payload

Inbound and Outbound Single Sign-On in NetSuite

Inbound Single Sign-On Inbound SSO allows users to access NetSuite using credentials from an external identity provider (IdP). In this case, NetSuite is the service provider (SP), and the authentication is managed by the external IdP. How it Works: User Attempts to Access NetSuite: The user tries to access their NetSuite account. Redirect to Identity… Continue reading Inbound and Outbound Single Sign-On in NetSuite

Single Sign On for NetSuite

To set up Single Sign-On (SSO) in NetSuite, you need to configure both NetSuite and your Identity Provider (IdP). Here’s a detailed step-by-step guide: Step 1: Enable SAML 2.0 in NetSuite Log in to NetSuite with an administrator role. Navigate to Setup -> Company -> Enable Features. Under the SuiteCloud tab, check the SAML Single… Continue reading Single Sign On for NetSuite

Based on the roles how to give access for the logged in customer.

Based on the logged in customer we can set the permissions to the deposit and cancel payment pages. In the Firebase for the employees based on the required email NetSuite will show the roles and update it to the firebase for all the employees and users check the loge in values and role of the… Continue reading Based on the roles how to give access for the logged in customer.

Using react how to add password Strength bar in the login page.

using this we can show the password Strength based on the score and letters. A password checker that evaluates the strength of a user’s password displays a warning message if the password is considered strong notify the user to update the password in the backend. The criteria for strong password. Common criteria include: Minimum length… Continue reading Using react how to add password Strength bar in the login page.