Spurtcommerce
DocumentAPI ReferenceAdd-ons
Addons
Addons
  • catalogue related addons
    • Payment gateway Add-on
    • Product Variant Addon
    • Product Attribute Add-on
    • Question and Answer Add-on
    • Common Product Add-on
    • Ratings and Review Add-on
    • Product QR Add-on
    • Assign Product Price Add-on
  • CMS RELATED ADDONS
    • SEO and Blogs Add-on
  • SALES Related Add-ons
    • Abandoned Cart Add-on
  • MARKETING RELATED ADDONS
    • Related Products Add-on
    • Promotion Widget
    • Coupon Add-on
  • B2B RELATED ADDONS
    • Quotation Request Add-on
    • Chat Add-on
    • Supplier Mangement Add-on
  • Support Ticket Addon
Powered by GitBook
On this page
  • Frontend Setup - Seller Panel:
  • Store Setup
  1. B2B RELATED ADDONS

Quotation Request Add-on

About Add-on

The Installation of Spurtcommerce Quotation request addon will enable the feature of accepting quotation requests from the end customer. When the plugin is installed, the multi-Vendor eCommerce site becomes ready for the admin to enable quotation requests for each product separately. On enabling the quotation request, the customer in the storefront can raise quotation request for a particular product.

Features:

• The quotation request can be enabled or configured for each product separately from the product list page.

• On enabling the toggle, the product detail page will have the option of 'Request a Quote'.

• The Customer can click on the 'Request a Quote'and fill in the form and submit to request for a quotation.

• On submission, the admin and both admin and vendor in Multi vendor platform will receive a the quotation request, which they can view from the quotation requests list.

Frontend Setup - Seller Panel:

Follow these steps to set up the front end for the Quotation addon in Spurtcommerce Seller Panel.

Step 1: Install the Addon:

Locate the Spurtcommerce addon package, typically named seller.addOns.zip.

Extract the zip file and copy the Quotation folder into the addOns folder in your project.

projectFolder -> addOns

After this step, the structure should look like:

projectFolder -> addOns ->catalog -> Quotation

Once completed, proceed to update the configuration.

Step 2: Update the Configuration

After installing the addon, update the add-ons.constant.ts file to include the necessary plugins:

// ----------------------Quotation--------------------------
import * as Quotation from './Quotation/QuotationModule.contant'
// components paths
export const QuotationComponents = Quotation.componentLists;
// route paths
export const QuotationComponentRoutes = Quotation.routePath;

If you wish to uninstall or remove the Quotation addon, replace the component paths and route paths with an empty array.

// ----------------------Quotation--------------------------
import * as Quotation from './Quotation/QuotationModule.contant'
// components paths
export const QuotationComponents =[];
// route paths
export const QuotationComponentRoutes =[];

Step 3: Run the Application:

To run the application with the integrated Quotation addon, use the following command:

$ npm run large-serve

After executing this command, the addon will be available on Spurtcommerce on the designated page.

Step 4: Build the Application

Finally, to prepare the application for deployment, run the build command:

$ npm run large-build

The latest build files will then be ready to deploy to the server.

Store Setup

Follow these steps to set up the Quotation module on the front-end Next.js web store.

Setup Overview:

  • Install the extension

  • Update configuration

  • Integrate the module

  • Run the application

  • Build the application

Step 1: Install the Extension

Locate the Spurtcommerce addon package, typically named addOns.zip.

Extract the zip file and copy the Quotation folder into the addOns folder in your project.

projectFolder -> addOns

After this step, the structure should look like:

projectFolder -> addOns -> Quotation

Once completed, proceed to update the configuration.

Step 2: Update the Configuration

After installing the extension, update the configuration in Spurtcommerce’s addonsconfig.js as follows:

  1. Import the required line into addonsconfig.js.

 import QuotationRequest from './Quotation/QuotationRequest'
 import QuotationList from './Quotation/QuotationList'
import QuotationDetail from './Quotation/QuotationDetail
  1. Add the Quotation plugin to the specified object.

        export const AddonsComponent = {                                                                                                                                        QuotationRequest,
QuotationList,
           QuotationDetail
             }  

Step 3: Run the Application

Once you have integrated the Quotation module, run the application using:

$ npm run dev

This command will launch Spurtcommerce with the integrated Quotation visible on the specified page.

Step 4 : Build the Application

To prepare the application for deployment, execute the following command:

$ npm run build

or

$ yarn run build                                                                                                                             

The latest build files will then be ready for server deployment.

Quotation Add-On

Follow these below steps are installing Quotation addon

App setup

These are the steps that need to be followed to do the front end store setup.

· Installing an extension

· Update the configuration

· Module Detail

· Run the Application

· Make the build

Step 1 : Installing an extension

These are the steps that need to be executed for installation of the extension.

Locate the Spurtcommerce addon package, typically named addons.zip.

Extract the zip file and copy the Quotation folder into the addons folder in your project.

projectFolder->lib->module->add-ons

After this step, the structure should look like:

projectFolder->lib->module->add-ons->Quotation

Once completed, proceed to update the configuration.

Step 2 : Update the configuration

After extracting the add on zip file for changing the configurations in addons.dart, you have to follow the steps below:

Go to

projectFolder->lib->module->add-ons->addonsshared.dart

Then inside addonsShared array paste the following content

{"Quotation": SpurtQuotation(), "data": ""},
{"QuotationList": SpurtQuotationlist(), "data": ""},

After placing the above files it will look like this,

List addonsShared = [

{"Quotation": SpurtQuotation(), "data": ""},

{"QuotationList": SpurtQuotationlist(), "data": ""},

];

Then give the following imports

import 'package:spurtcommerce/module/add-ons/Quotation/Page/makequotation.dart';
import 'package:spurtcommerce/module/add-ons/Quotation/Page/quotationlist.dart'; 

Or

There will be a popup for quick fix

Step 3 : Module details

After executing the above mentioned steps, we have to place these below lines in the module folder to show the Quotation to the user.

Quotation request

Once you finished updating the configuration then in the projectFolder->lib->module->Tab->Product-detailpage->presentation->pages->details.dart

Use this line for view the Quotation

findMyClass('Quotation', {

"details": detail.details,

"price": detail.price,

}),

Quotationlist

you can see quotationlist in the projectFolder->lib->module->Tab->Profile->myaccount.dart

findMyClass("QuotationList", ""),

After insert the line restart your application

Step 4 : Run the application

After integrating the Quotation Module into Spurt Commerce, you can use the following commands to run the application in terminal.

$ flutter run

Or

In Run menu select run without debugging

In case if throws any exception

$ flutter run –no-sound-null-safety

Once you execute the above command you can view the installed module in Spurt Commerce, within the page in which you have integrated

Step 5 : Make the build

In order to build, you need to run the following commands. In order to check the application, run the following commands and build the application.

$flutter build

If you want to split the abi then

$flutter build –split-per-abi

For bundle build

$flutter build appbundle

PreviousCoupon Add-onNextChat Add-on

Last updated 7 months ago