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
Month: June 2024
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
Applied Bill Payment Appears in A/P Aging Report
Bill Payment appears in an A/P Aging Detail report even if it is already applied to a Bill. The Bill Payment appears as if it is not applied to any Bill because the Bill Payment’s Date is earlier than that of the Bill and aging the report as of a period before the Bill will… Continue reading Applied Bill Payment Appears in A/P Aging Report
Create Navigation in a Center Type
There may be scenarios that the user role may have access to certain records but there will not be any navigation path available to that record from the corresponding center type. For example, for the HR role, permission is provided to create the vendor bills. But from the HR center, there is no navigation path… Continue reading Create Navigation in a Center Type
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.
How to set flag for the invoices based on the amount of the receipts
using this we can set the flag for the invoice which are paid and calculate the amount based on the receipt. As shown in the below image once the amount is receipt is created for that invoice we can set Invoice_flag to true so based on this we can show only the open invoice on… Continue reading How to set flag for the invoices based on the amount of the receipts
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.