ERP术语 英文对照参考

客户 Customer

供应商 Supplier

仓库 Stockroom

库存 Inventory

货品 Product

型号 Part Number

销售 Sell

单据 Bill

成本 Cost

交货期 Delivery Period

采购 Purchase

采购申请 Purchase Requisition

采购报价 Purchase Quote

采购退货 Purchase Return

采购订单 Purchase Order

回复交期 Purchase Response

销售报价 Sell Quote

销售订单 Sell Order

销售退货 Sell Return

销售备货 Sell Buffer

未完成销售订单 Outstanding Sell Order

出库单 Stock Out

入库单 Stock In

转仓 Stock Transfer

锁定 Product Hold

借货 Product Lend

收款 Collection

付款 Payment

退款 Refundment

发票 Invoice

应收帐 Account Receivable

应付账 Account Payable

应收帐冲销 Account Receivable Write-off

应付账冲销 Account Payable Write-off

冲销 Write-off

应收账款账龄分析表 accounts receivable aging schedule

已转让应收账款 accounts receivable assigned

应收账款收款期 accounts receivable collection period

已贴现应收账款 accounts receivable discounted

应收账款筹资,应收账款融资 accounts receivable financing

应收账款管理 accounts receivable management

应收账款周转率,应收账款周转次数 accounts receivable turnover

利润 Profit

会计循环 Accounting Procedure/Cycle

会计信息系统 Accounting information System

账户 Ledger

会计科目 Account

会计分录 Journal entry

原始凭证 Source Document

日记账 Journal

总分类账 General Ledger

明细分类账 Subsidiary Ledger

试算平衡 Trial Balance

现金收款日记账 Cash receipt journal

现金付款日记账 Cash disbursements journal

销售日记账 Sales Journal

购货日记账 Purchase Journal

普通日记账 General Journal

分批认定法 Specific identification

加权平均法 Weighted average

先进先出法 First-in, first-out or FIFO

后进先出法 Lost-in, first-out or LIFO

移动平均法 Moving average

上限 Upper limit

下限 Lower limit

订单 Order

在途 On Order

在库 On Hand

审批 Approve

取消审批 Cancel Approved

java-maven-分散打包lib

<?xml version="1.0" encoding="UTF-8"?>
<!--
	<properties>
        依赖输出目录
        <output.dependence.file.path>lib/</output.dependence.file.path>
        jar输出目录
        <output.jar.file.path>bin/</output.jar.file.path>
        配置文件输出目录
        <output.resource.file.path>config/</output.resource.file.path>
    </properties>
 -->

 <build>
        <plugins>
            <!-- 打JAR包,不包含依赖文件;显式剔除配置文件 -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <!--${env.LEARN_HOME}为项目配置的环境变量,下同-->
                    <!-- <outputDirectory>${env.LEARN_HOME}/${output.jar.file.path}</outputDirectory> -->
                    <outputDirectory>bin</outputDirectory>
                    <!-- 将配置文件排除在jar包 -->
                    <excludes>
                        <exclude>application-*.properties</exclude>
                        <exclude>*.yml</exclude>
                        <exclude>*.xml</exclude>
                        <exclude>*.txt</exclude>
                    </excludes>
                    <archive>
                        <!-- 生成的jar中,包含pom.xml和pom.properties这两个文件 -->
                        <addMavenDescriptor>true</addMavenDescriptor>
                        <!-- 生成MANIFEST.MF的设置 -->
                        <manifest>
                            <!--这个属性特别关键,如果没有这个属性,有时候我们引用的包maven库 下面可能会有多个包,并且只有一个是正确的,
                            其余的可能是带时间戳的,此时会在classpath下面把那个带时间戳的给添加上去,然后我们 在依赖打包的时候,
                            打的是正确的,所以两头会对不上,报错。 -->
                            <useUniqueVersions>false</useUniqueVersions>
                            <!-- 为依赖包添加路径, 这些路径会写在MANIFEST文件的Class-Path下 -->
                            <addClasspath>true</addClasspath>
                            <!-- MANIFEST.MF 中 Class-Path 各个依赖加入前缀 -->
                            <!--这个jar所依赖的jar包添加classPath的时候的前缀,需要 下面maven-dependency-plugin插件补充-->
                            <!--一定要找对目录,否则jar找不到依赖lib,前边加../是因为jar在bin下,而bin与lib是平级目录-->
                            <!-- <classpathPrefix>../${output.dependence.file.path}</classpathPrefix> -->
                            <classpathPrefix>lib</classpathPrefix>
                            <!--指定jar启动入口类 -->
                            <!-- <mainClass>com.ieslab.knife4j.demo.DemoApplication</mainClass> -->
                            <mainClass>demo.Application</mainClass>
                        </manifest>
                        <manifestEntries>
                            <!-- 假如这个项目可能要引入一些外部资源,但是你打包的时候并不想把 这些资源文件打进包里面,这个时候你必须在
                            这边额外指定一些这些资源文件的路径,假如你的pom文件里面配置了 <scope>system</scope>,就是你依赖是你本地的
                            资源,这个时候使用这个插件,classPath里面是不会添加,所以你得手动把这个依赖添加进这个地方 -->
                            <!--MANIFEST.MF 中 Class-Path 加入自定义路径,多个路径用空格隔开 -->
                            <!--此处resources文件夹的内容,需要maven-resources-plugin插件补充上-->
                            <!-- <Class-Path>../${output.resource.file.path}</Class-Path> -->
                            <Class-Path>config/</Class-Path>
                        </manifestEntries>
                    </archive>
                </configuration>
            </plugin>

            <!-- 复制依赖的jar包到指定的文件夹里 -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <executions>
                    <execution>
                        <id>copy-dependencies</id>
                        <phase>package</phase>
                        <goals>
                            <goal>copy-dependencies</goal>
                        </goals>
                        <configuration>
                            <!-- 拷贝项目依赖包到指定目录下 -->
                            <!-- <outputDirectory>${env.LEARN_HOME}/${output.dependence.file.path}</outputDirectory> -->
                            <outputDirectory>bin/lib</outputDirectory>
                            <!-- 是否排除间接依赖,间接依赖也要拷贝 -->
                            <excludeTransitive>false</excludeTransitive>
                            <!-- 是否带上版本号 -->
                            <stripVersion>false</stripVersion>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <!-- 用于复制指定的文件 -->
            <plugin>
            	<groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <executions>
                    <!-- 复制配置文件 -->
                    <execution>
                        <id>copy-resources</id>
                        <phase>package</phase>
                        <goals>
                            <goal>copy-resources</goal>
                        </goals>
                        <configuration>
                            <resources>
                                <resource>
                                    <directory>src/main/resources</directory>
                                    <includes>
                                    	<!--将如下格式配置文件拷贝-->
                                        <exclude>application-*.properties</exclude>
                                        <exclude>*.yml</exclude>
                                        <exclude>*.xml</exclude>
                                        <exclude>*.txt</exclude>
                                    </includes>
                                </resource>
                            </resources>
                            <!--输出路径-->
                            <!-- <outputDirectory>${env.LEARN_HOME}/${output.resource.file.path}</outputDirectory> -->
                            <outputDirectory>bin/config/</outputDirectory>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

替换 pom.xml 中 build 段

===========
参考
https://blog.csdn.net/shaofengzong/article/details/121191018