BizDoc.Infrastructure.Mfg 8.5.12

dotnet add package BizDoc.Infrastructure.Mfg --version 8.5.12
NuGet\Install-Package BizDoc.Infrastructure.Mfg -Version 8.5.12
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BizDoc.Infrastructure.Mfg" Version="8.5.12" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BizDoc.Infrastructure.Mfg --version 8.5.12
#r "nuget: BizDoc.Infrastructure.Mfg, 8.5.12"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install BizDoc.Infrastructure.Mfg as a Cake Addin
#addin nuget:?package=BizDoc.Infrastructure.Mfg&version=8.5.12

// Install BizDoc.Infrastructure.Mfg as a Cake Tool
#tool nuget:?package=BizDoc.Infrastructure.Mfg&version=8.5.12

QAD/MFG for BizDoc

Adds Mfg components to BizDoc and provide read & write access to MFG database.

Setup

program.cs

builder.Services.AddBizDoc().
	AddMfg(options => options.ConnectionString = "DSN=mfg-here")

app.UseBizDoc().
    UseMfg();
Name Usage
AddDbContext<TDbContext>()
UseEmployeeIdentity()
UseExchangeRate()
UseAnalysis()
SynchronizeAnalysis()
SynchronizeCurrencyExchange()
UseMfg().SynchronizeCurrencyExchange(Cron.Daily());

Web project should be configured to build as x64, to support ODBC.

Mapping User Identity to Employee

Some features like widgets require mapping between BizDoc user and Mfg employee.

If the employee id is a claim of ClaimsPrincipal, set the EmployeeIdClaimType in options.

AddBizDoc().
    AddMfg(configure =>
    {
        // identity from employee id
        configure.UserIdentity = ctx =>
            ctx.MfgStorage.Users.
                FirstOrDefault(u => u.EmailAddress == ctx.Identity)?.
                    UserId;
        // employee id from identity
        configure.EmployeeId = ctx =>
            ctx.Employee.Custom1;
    });

Components

BizDoc components automatically registered in configuration file.

Types

Name Usage
Domains
Locations domain, site
Entities
Sites domain
CostCeners domain
Projects domain
ProjectTypes domain
BudgetAccounts domain, costCenter
SubAccounts domain, costCenter and account
Departments domain
RequisitionCategories
Customers domain
ServiceEngineers site
RequisitionJobs
Vendors domain
Salespersons domain
ObjectTypes
Currencies
Countries

w/ f Nodes

DepartmentManager, document owner employee department.

RequisitionApprover, employee of RequisitionApprover based on effective date, site, entity, sub-account and cost-center range.

PurchaseApprover, employee of PurchaseApprovalCode based on document site, product line, account, sub-account and cost-center.

Attributes

EmployeeCountry EmployeeDomain Attribute EmployeeDepartment EmployeeCustom (Template) EngineerSite EngineerEntity EngineerLocation EngineerLocationProject EngineerLocationCostCenter EngineerCustom (Template)

Rules

EmployeeDepartment EmployeeCustom (Template) EngineerSite EngineerCustom (Template)

Analysis

Use the Architecture utility to add analysis of Mfg.

Purchase

BizDoc analyse requsitions, purchase orders and vouchers.

In addition to year, quarter and month of purchase order due, axes can refer to vendor, domain, cost-center, site, project and account.

To add custom axes, implement AxesMappingPolicy and set one of or GlobalRequesitionMapping, RequisitionMapping, PurchaseOrderMapping, DistributedSiteRequisition, DistributedSiteOrder, WorkOrderMapping and VoucherMapping in options. To disregard any of the policies, set it to AxesMappingPolicy.IgnorePolicy.

Sales Orders

In addition to year, quarter and month of order details due, axes can refer to customer, engineer, cost-center, account, site and project.

To add custom axes, implement AxesMappingPolicy and set SalesOrderMapping, SalesQuotationMapping and ProjectRealizationMapping in options.

Using quantity

Axis type quantity.

Column Mapping

To override default column mapping, implement AxesMappingPolicy.

public class MyPurchaseMapping : AxesMappingPolicy {
    public MyPurchaseMapping() {
        Mapping["site"] = "pod_po_site";
    }
}

In program.cs:

builder.Services.AddBizDoc().
	AddMfg(options => {
        options.PurchaseOrderMappingPolicy = new MyPurchaseMapping();
    });

Widgets

My Depatment Peers.

Departments Performance.

Domains Performance.

Workflow

Department Manager.

Document owner department manager.

Requisition Approver

Per requsition job.

By site, entity, cost-center range, sub-account range and effective date.

Rules

Employee Department.

Database

Access database by injecting the MfgStorage service.

public class MyClass
{
    private readonly MfgStorage _mfgStorage;

    public MyCLass(MfgStorage mfgStorage)
    {
        _mfgStorage = mfgStorage;
    }
    private void Iterate() {
        foreach(var site in _mfgStorage.Sites) {
        }
    }
}

Listing

User can search for Mfg PO, SO or Voucher by typing into BizDoc search box.

Angular

npm @bizdoc/mfg package.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.5.12 93 3/16/2024
8.5.11 91 2/13/2024
8.4.11 90 2/11/2024
8.4.10 87 2/10/2024
8.4.9 91 2/7/2024
8.4.8 108 1/17/2024
8.4.7 86 1/16/2024
8.4.5 82 1/14/2024
8.3.5 82 1/14/2024
8.3.4 82 1/12/2024
7.3.4 147 12/12/2023
7.3.3 132 11/23/2023
7.3.2 107 11/23/2023
7.2.2 109 11/20/2023
7.1.2 142 8/14/2023
7.1.1 139 6/2/2023
7.1.0 155 5/4/2023
7.0.0 310 11/28/2022
6.8.12 362 11/6/2022
6.8.11 329 11/6/2022
6.8.10 345 11/1/2022
6.8.9 333 11/1/2022
6.8.8 348 10/31/2022
6.8.7 374 10/27/2022
6.8.6 357 10/27/2022
6.8.5 372 10/24/2022
6.8.4 379 10/20/2022
6.8.3 409 10/19/2022
6.8.2 365 10/18/2022
6.8.1 362 10/18/2022
6.8.0 396 10/16/2022
6.7.37 379 9/7/2022
6.7.36 375 9/3/2022
6.7.35 403 8/9/2022
6.7.33 394 8/9/2022
6.7.32 386 8/8/2022
6.7.31 378 8/8/2022
6.7.30 375 8/8/2022
6.7.29 383 8/8/2022
6.7.28 385 8/8/2022
6.7.27 388 8/8/2022
6.7.25 390 8/5/2022
6.7.24 374 8/4/2022
6.7.23 393 8/4/2022
6.7.22 383 8/4/2022
6.7.21 386 8/3/2022
6.7.20 393 8/3/2022
6.7.19 391 8/3/2022
6.7.18 392 8/2/2022
6.7.17 399 8/1/2022
6.7.16 408 7/29/2022
6.7.13 393 7/28/2022
6.7.9 392 7/26/2022
6.7.8 392 7/24/2022
6.7.6 389 7/22/2022
6.7.5 407 7/20/2022
6.7.4 429 7/18/2022
6.7.3 412 7/18/2022
6.7.2 408 7/18/2022
6.7.1 422 7/18/2022
6.7.0 445 7/10/2022
6.6.9 434 7/4/2022
6.6.8 421 7/3/2022
6.6.7 404 6/30/2022
6.6.4 452 6/26/2022
6.6.2 415 6/9/2022
6.6.1 423 6/9/2022
6.6.0 413 6/6/2022
6.5.15 416 5/31/2022
6.5.14 422 5/14/2022
6.5.13 410 5/12/2022
6.5.12 405 5/10/2022
6.5.11 412 5/9/2022