From Traditional to Toon Shading: How Lighting Techniques Shape Animation Styles

Lighting is an essential aspect of animation that significantly influences the overall aesthetic, mood, and emotional impact of animated works. From traditional hand-drawn animations to modern 3D computer-generated imagery (CGI), lighting techniques have evolved, allowing animators to explore a diverse range of styles and storytelling possibilities. This article delves into how various lighting techniques, from… Continue reading From Traditional to Toon Shading: How Lighting Techniques Shape Animation Styles

Published
Categorized as Design

Saved search to find Sales Reps with the same name as the Partner

 /**        * Finds the internal ID of an employee based on the partner name.        *        * @param {string} partnerName – The name of the partner to search for.        * @returns {string|null} The internal ID of the employee or null if not found.  … Continue reading Saved search to find Sales Reps with the same name as the Partner

Mass Update Script to update a custom field in the partner record

/** * @NApiVersion 2.1 * @NScriptType MassUpdateScript */ define([‘N/record’, ‘N/search’, ‘N/log’],     /**  * @param{record} record  * @param{search} search  * @param{log} log  */     (record, search, log) => {         /**          * Finds the internal ID of an employee based on the partner name.    … Continue reading Mass Update Script to update a custom field in the partner record

Portlet Script to display the custom report in the dashboard

/**  * @NApiVersion 2.1  * @NScriptType Portlet  */ define([‘N/ui/serverWidget’, ‘N/log’, ‘N/url’, ‘N/https’,‘N/runtime’], (serverWidget, log, url, https,runtime) => {     function render(params) {         try {             let portlet = params.portlet;             portlet.title = ‘Report’;             //… Continue reading Portlet Script to display the custom report in the dashboard

Create a custom page to show the Sales Vs Quota this Month Report

/**  * @NApiVersion 2.1  * @NScriptType Suitelet  */ define([‘N/record’, ‘N/ui/serverWidget’, ‘N/search’, ‘N/query’, ‘N/runtime’],     (record, serverWidget, search, query, runtime) => {         /**          * Entry point for the Suitelet          * @param {Object} context – The context of the Suitelet request      … Continue reading Create a custom page to show the Sales Vs Quota this Month Report

Dynamic Budget Calculations in the Cart Page

Overview This document outlines the implementation of dynamic budget calculations for item groups within the shopping cart, along with the development and enhancement of real-time budget updates. It captures all code modifications related to the project. Implement dynamic budget calculations for each item group and ensure the real-time update of the remaining balance in the… Continue reading Dynamic Budget Calculations in the Cart Page

Real-Time Item Category-Based Budget Calculation in Header of the GoodEarth Website

Requirement To improve the accuracy and visibility of budget details on the GoodEarth website, this task involves two primary objectives: Real-Time Data Update: Implement backend functionality to enable real-time updates for item group balances. This ensures users see current, accurate budget information as it changes. Solution Overview The solution consists of the following components: Backend… Continue reading Real-Time Item Category-Based Budget Calculation in Header of the GoodEarth Website

Adding Delivery Notice on Bulk Fiber Items in Webstore

Task Summary: The objective of this task is to enhance the Product Detail Page (PDP) by adding a custom delivery notice for bulk fiber items purchased by the foot. This message, “All custom cut orders have a 2-business day lead time following the date the order or PO is received,” will be displayed based on… Continue reading Adding Delivery Notice on Bulk Fiber Items in Webstore

Unsetting the location field for line items when convering quote to sales order

Problem: The location field at the line level is not being populated when a quote is converted to a sales order using the credit card payment method via the webstore. However, the location is correctly set when using invoice payments. Inconsistent behavior in sales order creation, leading to incomplete or incorrect location data based on… Continue reading Unsetting the location field for line items when convering quote to sales order

Category-Based Budget Calculation in User Order History List page

Requirement Enhance the “My Account” Order History List page on the eCommerce site to display category-specific budget information. This includes showing budget details and remaining balances for item categories within the “Approval” section and adding a dropdown on the User’s History page to view budget balances by category via a button click for improved usability.… Continue reading Category-Based Budget Calculation in User Order History List page