42 lines
945 B
C#
42 lines
945 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// ERP系统控制
|
|
/// </summary>
|
|
public class ERPSystemControl : MonoBehaviour
|
|
{
|
|
/// <summary>
|
|
/// ERP系统控制单例
|
|
/// </summary>
|
|
public static ERPSystemControl Instance;
|
|
/// <summary>
|
|
/// 维护货物交接单
|
|
/// </summary>
|
|
public ERPMaintainGoodsHandoverForm _ERPMaintainGoodsHandoverForm;
|
|
/// <summary>
|
|
/// 维护到货验收单
|
|
/// </summary>
|
|
public ERPMaintainArrivalInspectionForm _ERPMaintainArrivalInspectionForm;
|
|
/// <summary>
|
|
/// SAP上下架功能
|
|
/// </summary>
|
|
public QueryExecutionStatusMaterial _QueryExecutionStatusMaterial;
|
|
private void Awake()
|
|
{
|
|
Instance = this;
|
|
}
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|